diff --git a/icons.qrc b/icons.qrc new file mode 100644 index 0000000..3d31be5 --- /dev/null +++ b/icons.qrc @@ -0,0 +1,106 @@ + + + database_add.png + database_go.png + database_refresh.png + database_save.png + table_add.png + table_delete.png + table_edit.png + tag_blue_add.png + tag_blue_delete.png + page_edit.png + page_delete.png + page_add.png + page_green.png + table.png + tag_blue.png + view-refresh.png + picture_delete.png + picture.png + picture_add.png + script.png + script_add.png + script_delete.png + wrench.png + help.png + tab_add.png + resultset_next.png + page_save.png + page_white_database.png + plugin_add.png + plugin_delete.png + table_save.png + resultset_last.png + layout_sidebar.png + bullet_arrow_down.png + bullet_arrow_up.png + sqlitebrowser.png + internet-web-browser.png + package.png + package_go.png + page_key.png + key.png + document-open.png + chart_curve.png + cog.png + clear_filters.png + page_copy.png + resultset_previous.png + resultset_first.png + picture_edit.png + script_edit.png + tag_blue_edit.png + folder.png + database.png + cog_go.png + page_paste.png + folder_user.png + server_go.png + page_find.png + cross.png + page_white_copy.png + page_copy_sql.png + text_replace.png + picture_save.png + application_side_list.png + database_link.png + text_indent.png + printer.png + package_save.png + cancel.png + comment_block.png + hourglass.png + table_row_delete.png + table_row_insert.png + textfield_delete.png + filter.png + tab.png + package_rename.png + page_foreign_key.png + save_all.png + page_white_text.png + color_swatch.png + edit_cond_formats.png + clear_sorting.png + bullet_arrow_bottom.png + bullet_arrow_top.png + text_bold.png + text_italic.png + text_underline.png + text_align_center.png + text_align_justify.png + text_align_left.png + text_align_right.png + page_paintbrush.png + text_paintbrush.png + style.png + style_edit.png + style_delete.png + style_add.png + application_link.png + document-link.png + application_go.png + server_add.png + + diff --git a/src/PluginWBFZExchangePlugin/CMDExcuteApp.cpp b/src/PluginWBFZExchangePlugin/CMDExcuteApp.cpp new file mode 100644 index 0000000..831a492 --- /dev/null +++ b/src/PluginWBFZExchangePlugin/CMDExcuteApp.cpp @@ -0,0 +1,86 @@ +#include "CMDExcuteApp.h" +#include +#include +#include +#include +#include +#include "ui_CMDExcuteApp.h" + + +CMDExcuteApp::CMDExcuteApp(QWidget* parent) +{ + this->ui=new Ui::cmdExcuteWindows ; + this->ui->setupUi(this); + this->cmd = new QProcess(); + connect(this->cmd, SIGNAL(readyReadStandardOutput()), this, SLOT(on_readoutput())); + connect(this->cmd, SIGNAL(readyReadStandardError()), this, SLOT(on_readerror())); + +} + +CMDExcuteApp::~CMDExcuteApp() +{ + if (nullptr != this->cmd) { + + delete this->cmd; + this->cmd = nullptr; + + } +} + +int CMDExcuteApp::excuteCmd(QString cmdText) +{ + qDebug() << u8"执行命令:" << cmdText ; + this->ui->textEdit->append("cmd.exe\n"); + this->cmd->start("cmd.exe"); + this->cmd->waitForStarted(); //等待程序启动 + this->ui->textEdit->append(QString::QString(cmdText)); + this->ui->textEdit->append("\n"); + this->cmd->write(cmdText.toUtf8().constData()); + + this->cmd->close(); + this->waitExcutedFinish(); + return 0; +} + +int CMDExcuteApp::excuteCmd(QString exePath, QString params) +{ + qDebug() << u8"执行命令:" << exePath<setWindowTitle(exePath); + QString program = QString::QString(exePath); + QStringList prams_txt; + prams_txt.append(QString::QString(params)); + this->cmd->start(program, prams_txt); + //this->cmd->waitForFinished(); + this->show(); + this->waitExcutedFinish(); + return 0; +} + +int CMDExcuteApp::waitExcutedFinish() +{ + while (!this->cmd->waitForFinished()) { + qDebug() << u8"运行状态:" << this->cmd->state(); + QCoreApplication::processEvents(); + } + qDebug() << u8"退出循环运行状态:" << this->cmd->state(); + qDebug() << u8"退出循环码:" << this->cmd->exitCode(); + this->on_readerror(); + this->on_readoutput(); + emit this->callbackExcuteResult(); + return 0; +} + +int CMDExcuteApp::on_readerror() +{ + QString out = this->cmd->readAllStandardError().data(); + qDebug()<ui->textEdit->append(out); + return 0; +} +int CMDExcuteApp::on_readoutput() +{ + QString out = this->cmd->readAllStandardOutput().data(); + qDebug() << u8"on_readoutput:\t" << out; + this->ui->textEdit->append(out); //将输出信息读取到编辑框 + return 0; +} \ No newline at end of file diff --git a/src/PluginWBFZExchangePlugin/CMDExcuteApp.h b/src/PluginWBFZExchangePlugin/CMDExcuteApp.h new file mode 100644 index 0000000..c5c1ba9 --- /dev/null +++ b/src/PluginWBFZExchangePlugin/CMDExcuteApp.h @@ -0,0 +1,47 @@ +#pragma once + +#ifndef CMDEXCUTEAPP_H +#define CMDEXCUTEAPP_H +#include "WBFZExchangePluginAPI.h" +#include +#include +#include +class QObject; +class QMainWindow; + +class MOCCMDEXCUTEAPP:public QObject{ + Q_OBJECT +public: + MOCCMDEXCUTEAPP()=default; + ~MOCCMDEXCUTEAPP()=default; +}; + + + +namespace Ui{ + class cmdExcuteWindows; +} +class CMDExcuteApp : public QMainWindow +{ + Q_OBJECT + +public: + CMDExcuteApp(QWidget* parent = nullptr); + ~CMDExcuteApp(); + int excuteCmd(QString cmdText); + int excuteCmd(QString exePath,QString params); + int waitExcutedFinish(); +private: + Ui::cmdExcuteWindows* ui; + QProcess* cmd; + +signals: + void callbackExcuteResult(); + +private slots: + int on_readoutput(); + int on_readerror(); +}; + + +#endif \ No newline at end of file diff --git a/src/PluginWBFZExchangePlugin/CMDExcuteApp.ui b/src/PluginWBFZExchangePlugin/CMDExcuteApp.ui new file mode 100644 index 0000000..6473855 --- /dev/null +++ b/src/PluginWBFZExchangePlugin/CMDExcuteApp.ui @@ -0,0 +1,26 @@ + + + cmdExcuteWindows + + + + 0 + 0 + 568 + 260 + + + + cmd + + + + + + + + + + + + diff --git a/src/PluginWBFZExchangePlugin/EchoTableEditWindow.cpp b/src/PluginWBFZExchangePlugin/EchoTableEditWindow.cpp new file mode 100644 index 0000000..caf0637 --- /dev/null +++ b/src/PluginWBFZExchangePlugin/EchoTableEditWindow.cpp @@ -0,0 +1,394 @@ +#include "EchoTableEditWindow.h" +#include "TableProcess/TableMainWindow.h" +#include "TableProcess/TableViewModel.h" +#include "SharedModuleLib/BaseUiTool.h" +#include "LAMPImageCreateClass.h" + +#include +#include +#include +#include +#include +#include +#include +#include "ui_EchoTableEditWindow.h" + + +EchoTableEditWindow::EchoTableEditWindow(QWidget* parent) +{ + DebugInfo(" EchoTableEditWindow::EchoTableEditWindow has init\n"); + this->FILEOPENLOCK = false; + this->CheckFieldContextHasEmptyCeilLOCK = false; + DebugInfo(" EchoTableEditWindow::EchoTableEditWindow has init ui\n"); + + this->ui=new Ui::EchoTableEditWindow ; + this->ui->setupUi(this); + DebugInfo(" EchoTableEditWindow::EchoTableEditWindow has init ui finish\n"); + this->setWindowTitle(u8"FEKO Simulation Echo Result Convert "); + this->initTableViewContextMenu(); + this->initTableViewStatusBarControl(); + DebugInfo(" EchoTableEditWindow::EchoTableEditWindow has init initTableViewContextMenu finish\n"); + // 定标常数界面关闭 + this->ui->tab_calibration->setEnabled(false); + this->ui->tabWidget->removeTab(1);// 删除定标常数界面 + DebugInfo(" EchoTableEditWindow::EchoTableEditWindow has init finish\n"); +} + +EchoTableEditWindow::~EchoTableEditWindow() +{ + delete this->statusprogressBar; + delete this->tableViewContextMenu; + delete this->m_undoStack; +} + +int EchoTableEditWindow::initTableViewContextMenu() +{ + //qDebug() << u8"正在初始化contextMenu"; + m_undoStack = new QUndoStack(this); //存放命令的栈 + + this->ui->tableView->setContextMenuPolicy(Qt::CustomContextMenu); + //this->ui->tableView->setFocusPolicy(Qt::NoFocus); // 允许快捷键 + this->tableViewContextMenu = new QMenu(this->ui->tableView); // 表格控件的右键菜单 + + QAction* m_undoAction = m_undoStack->createUndoAction(this, u8"撤销");//添加QAction,Ctrl-Z作为回撤的快捷键 + m_undoAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Z)); + QObject::connect(m_undoAction, SIGNAL(triggered()), this, SLOT(tableView_UndoAction())); + + QAction* m_redoAction = m_undoStack->createRedoAction(this, u8"重做");//添加QAction,Ctrl-Y左右前进的快捷键 + m_redoAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Y)); + QObject::connect(m_redoAction, SIGNAL(triggered()), this, SLOT(tableView_RedoAction())); + + this->tableViewContextMenu->addAction(m_undoAction); + this->tableViewContextMenu->addAction(m_redoAction); + + + QAction *copyAction= this->tableViewContextMenu->addAction(u8"复制"); // 复制 + copyAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_C)); + QObject::connect(copyAction, SIGNAL(triggered()), this, SLOT(tableView_CopyAction())); + + QAction* PasteAction = this->tableViewContextMenu->addAction(u8"粘贴"); // 粘贴 + PasteAction->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_V)); + QObject::connect(PasteAction, SIGNAL(triggered()), this, SLOT(tableView_PasteAction())); + + QAction* CheckFieldHasEmptyCeilAction = this->tableViewContextMenu->addAction(u8"检查单元格为空"); + QObject::connect(CheckFieldHasEmptyCeilAction, SIGNAL(triggered()), this, SLOT(tableView_CheckFieldHasEmptyCeilAction())); + //qDebug() << u8"初始化contextMenu结束"; + return 0; +} + +void EchoTableEditWindow::ShowTableViewContextMenu(QPoint p) +{ + //qDebug() << u8"正在展示tableview 右键菜单"; + //Q_UNUSED(pos); + this->tableViewContextMenu->exec(QCursor::pos()); +} + +void EchoTableEditWindow::tableView_CopyAction() +{ + //qDebug() << u8"正在启动tableview 右键复制代码"; + QItemSelectionModel* selectionModel = this->ui->tableView->selectionModel(); + QModelIndexList selectedIndexes = selectionModel->selectedIndexes(); + if (selectedIndexes.count() == 0) { + return; + } + + QTableView* tableView = this->ui->tableView; // Your table view object + + /* + * a\tb\tc\n + * d\tf\te\n + **/ + int min_row, max_row, min_col, max_col; + min_row = selectedIndexes.at(0).row(); + max_row = selectedIndexes.at(0).row(); + min_col = selectedIndexes.at(0).column(); + max_col = selectedIndexes.at(0).column(); + for (int i = 0; i < selectedIndexes.count(); i++) { + min_row = min_row > selectedIndexes.at(i).row() ? selectedIndexes.at(i).row() : min_row; + max_row = max_row < selectedIndexes.at(i).row() ? selectedIndexes.at(i).row() : max_row; + min_col = min_col > selectedIndexes.at(i).column() ? selectedIndexes.at(i).column() : min_col; + max_col = max_col < selectedIndexes.at(i).column() ? selectedIndexes.at(i).column() : max_col; + } + std::vector> copylist(max_row-min_row+1); + for (int i = min_row; i <= max_row; i++) { + copylist[i - min_row] = std::vector(max_col - min_col + 1); + } +// qDebug() << u8"minRow"<horizontalHeader(); + //for (int i = 0; i < header->count(); i++) { + // QVariant headerData = header->model()->headerData(i, Qt::Horizontal); + // clipboardData.insert(i, headerData.toString()); + //} +// qDebug() << u8"============================"; +// qDebug() << clipboardText; +// qDebug() << u8"============================"; + + QApplication::clipboard()->setText(clipboardText); +} + +int EchoTableEditWindow::setDragDropOverwriteMode(bool flag) { + this->ui->tableView->setDragDropOverwriteMode(flag); + return 0; +} + +int EchoTableEditWindow::setTablCalibrationTab(bool flag) +{ + if (flag) { + this->ui->tab_calibration->setEnabled(true); + this->ui->tabWidget->insertTab(1, this->ui->tab_calibration, u8"定标常数"); + } + else { + this->ui->tab_calibration->setEnabled(false); + this->ui->tabWidget->removeTab(1);// 删除定标常数界面 + } + return 0; +} + +void EchoTableEditWindow::tableView_PasteAction() { +// qDebug() << u8"正在启动tableview 右键粘贴代码"; + QTableView* tableview = this->ui->tableView; + QClipboard* clipboard = QApplication::clipboard(); + QString clipboardData = QApplication::clipboard()->text(); + QItemSelectionModel* selectionModel = this->ui->tableView->selectionModel(); + QModelIndexList selectedIndexes = selectionModel->selectedIndexes(); + this->m_undoStack->push(new PasteCommand(this->ui->tableView, selectedIndexes, clipboardData)); + tableview->show(); +} + +void EchoTableEditWindow::tableView_UndoAction() +{ +// qDebug() << u8"正在撤销命令"; + int index = this->m_undoStack->index(); + this->m_undoStack->setIndex(index); +} + +void EchoTableEditWindow::tableView_RedoAction() +{ +// qDebug() << u8"正在重做命令"; + int index = this->m_undoStack->index(); + this->m_undoStack->setIndex(index ); +} + + +// 检查存在空单元格的列,并修改展示 +void EchoTableEditWindow::tableView_CheckFieldHasEmptyCeilAction() +{ + this->ui->statusbar->showMessage(u8"正在检查存在空数据的单元列"); + size_t colcount = this->ui->tableView->model()->columnCount(); + size_t rowcount = this->ui->tableView->model()->rowCount(); + this->statusprogressBar->setRange(0, colcount - 1); + this->statusprogressBar->setValue(0); + QList cellIndexes; + for (int j = 0; j < colcount; j++) { + for (int i = 0; i < rowcount; i++) { + if (this->ui->tableView->model()->index(i, j).data().toString().count() < 1) { + cellIndexes.append(this->ui->tableView->model()->index(i, j)); + break; + } + } + this->statusprogressBar->setValue(j); + } + if (cellIndexes.count() == 0) { + return; + } + else {} + this->ui->statusbar->showMessage(u8"正在选择空格"); + this->statusprogressBar->setRange(0, cellIndexes.count()-1); + this->statusprogressBar->setValue(0); + QItemSelectionModel* selectionModel = this->ui->tableView->selectionModel(); + for (int i = 0; i < cellIndexes.count(); i++) { + selectionModel->select(cellIndexes[i], QItemSelectionModel::Select); + this->statusprogressBar->setValue(i); + } + this->ui->tableView->show(); + this->ui->tableView->scrollTo(cellIndexes[0], QAbstractItemView::EnsureVisible); + + +} + +void EchoTableEditWindow::on_actionOpen_triggered() +{ + this->OpenCSVDialog(); +} + +void EchoTableEditWindow::on_actionSave_triggered() +{ + this->SaveCSVDialog(); +} + +void EchoTableEditWindow::on_actionSaveAs_triggered() +{ + this->SaveAsDialog(); +} + +void EchoTableEditWindow::on_actionEchoSplitExport_triggered() +{ + // 在窗口关闭事件中询问用户是否关闭 + QMessageBox::StandardButton reply; + qDebug() << u8"检查乱码文件所在位置"; + reply = QMessageBox::question(this, u8"询问", u8"导出回波文件前,请保存文件", QMessageBox::Yes | QMessageBox::No); + if (reply == QMessageBox::Yes) { + // 用户点击了"Yes"按钮,关闭窗口 + this->SaveCSVDialog(); + } + else { + // 用户点击了"No"按钮,取消关闭操作 + return; + } + // 保存并导出回波文件 + + this->ui->statusbar->showMessage(u8"正在分析回波文件"); + this->statusprogressBar->setRange(0,100); + this->statusprogressBar->setValue(10); + FEKOBase::NearFieldEchoCSVParser nearfilePraseclass; + QString echocsvfilepath = this->model->getCSVPath(); + if (!nearfilePraseclass.parseCSV(echocsvfilepath)) { + QMessageBox::warning(this, u8"警告", u8"回波文件结构解析错误,请检查文件"); + return; + } + this->statusprogressBar->setValue(25); + QMessageBox::information(this, u8"信息", u8"请分别为theta极化、phi极化、R极化分量回波指定保存路径"); + + QString thetafilepath = getSaveFilePath( + this, + QString::fromUtf8(u8"另存为"), + QString::fromUtf8(u8"theta文件 (*.theta)"));//多组扩展名用双分号";;"隔开 + + QString phifilepath = getSaveFilePath( + this, + QString::fromUtf8(u8"另存为"), + QString::fromUtf8(u8"phi文件 (*.phi)"));//多组扩展名用双分号";;"隔开 + + QString Rfilepath = getSaveFilePath( + this, + QString::fromUtf8(u8"另存为"), + QString::fromUtf8(u8"R文件 (*.R)"));//多组扩展名用双分号";;"隔开 + + + this->ui->statusbar->showMessage(u8"正在导出theta极化"); + nearfilePraseclass.toThetapolar(thetafilepath); + this->statusprogressBar->setValue(50); + this->ui->statusbar->showMessage(u8"正在导出phi极化"); + nearfilePraseclass.toPhiPolar(phifilepath); + this->statusprogressBar->setValue(75); + + this->ui->statusbar->showMessage(u8"正在导出R极化"); + nearfilePraseclass.toRPolar(Rfilepath); + this->statusprogressBar->setValue(99); + QMessageBox::information(this, u8"信息", u8"极化回波已经保存完毕"); + + // 询问用户是否关闭窗口 + + reply = QMessageBox::question(this, u8"提示", u8"是否直接进行成像?",QMessageBox::Yes | QMessageBox::No); + if (reply == QMessageBox::Yes) { + LAMPImageCreateClass* imagewindows = new LAMPImageCreateClass; + imagewindows->show(); + } + else { + return; + } +} + +void EchoTableEditWindow::on_actionCalibrationConst_triggered() +{ + +} + + + + +int EchoTableEditWindow::LockFileOpen(bool flag) +{ + this->FILEOPENLOCK = flag; + return 0; +} + +int EchoTableEditWindow::setCheckFieldContextHasEmptyCeilLOCK(bool flag) +{ + this->CheckFieldContextHasEmptyCeilLOCK = flag; + return 0; +} + +int EchoTableEditWindow::loadTablemode(std::shared_ptr mode) +{ + this->model = mode; + this->ui->tableView->setModel(this->model.get()); + if (this->model->rowCount() > 1e4) { + this->ui->tableView->horizontalHeader()->setSectionResizeMode(QHeaderView::Interactive); + } + return 0; +} + +int EchoTableEditWindow::setTableViewAutoSort(bool flag) +{ + this->ui->tableView->setSortingEnabled(flag); + return flag; +} + +int EchoTableEditWindow::initTableViewStatusBarControl() +{ + this->statusprogressBar = new QProgressBar(); + this->statusprogressBar->setRange(0, 100); // 设置进度条范围 + this->statusprogressBar->setValue(0); // 设置当前进度 + this->ui->statusbar->addPermanentWidget(this->statusprogressBar); // 在状态栏中添加进度条 + + return 0; +} + + + +int EchoTableEditWindow::OpenCSVDialog() +{ + if (this->FILEOPENLOCK) { + return 0; + } + else {} + QString tableFilepath = getOpenFilePath( + this, + QString::fromUtf8(u8"打开表格文件"), + QString::fromUtf8(u8"csv文件 (*.csv);;xls文件(*.xls)")); + + + this->ui->statusbar->showMessage(u8"正在打开文件...."); + std::shared_ptr< FEKOResultCsvTableModel> tablemode = std::make_shared< FEKOResultCsvTableModel>(); + tablemode->loadCSVFilePath(tableFilepath); + this->loadTablemode(tablemode); + this->setTableViewAutoSort(true); + this->LockFileOpen(); + this->ui->statusbar->showMessage(u8"文件打开结束"); + return -1; +} + + +int EchoTableEditWindow::SaveCSVDialog() +{ + this->model->saveFilePath(); + return 0; +} + +int EchoTableEditWindow::SaveAsDialog() +{ + QString filepath = getSaveFilePath( + this, + QString::fromUtf8(u8"另存为"), + QString::fromUtf8(u8"csv文件 (*.csv)"));//多组扩展名用双分号";;"隔开 + this->model->saveAsFilePath(filepath); + return 0; +} diff --git a/src/PluginWBFZExchangePlugin/EchoTableEditWindow.h b/src/PluginWBFZExchangePlugin/EchoTableEditWindow.h new file mode 100644 index 0000000..dcf3c41 --- /dev/null +++ b/src/PluginWBFZExchangePlugin/EchoTableEditWindow.h @@ -0,0 +1,102 @@ +#pragma once +#ifndef ECHOTABLEEDITWINDOW_H +#define ECHOTABLEEDITWINDOW_H +#include "WBFZExchangePluginAPI.h" +#include "AllHead.h" +#include + +#include "TableProcess/TableViewModel.h" +#include +#include +#include +#include + +class QObject; +class QMainWindow; +/* +* 命令 +***/ + + +namespace Ui { + class EchoTableEditWindow; +} + +/* +* 表格编辑窗体情况分析 +****/ +class EchoTableEditWindow : public QMainWindow +{ + Q_OBJECT +public: + bool FILEOPENLOCK; + bool CheckFieldContextHasEmptyCeilLOCK; +private: + std::shared_ptr model; + QMenu* tableViewContextMenu; + QUndoStack* m_undoStack; + + /*菜单*/ + QProgressBar* statusprogressBar; + + +public: + EchoTableEditWindow(QWidget* parent = nullptr); + ~EchoTableEditWindow(); + + int initTableViewStatusBarControl(); + int initTableViewContextMenu(); // 初始化上下文菜单 + int LockFileOpen(bool flag=true); // 锁定文件,不允许进行重新打开文件 + int setCheckFieldContextHasEmptyCeilLOCK(bool flag=true);// 允许启动当前字段中存在空格检查,-- 提供给FEKOResult分析使用 + int loadTablemode(std::shared_ptr mode); // 加载tableview 使用的model + int setTableViewAutoSort(bool flag); + int setDragDropOverwriteMode(bool flag); // 是否禁用列调换 + + int setTablCalibrationTab(bool flag); + +private: + Ui::EchoTableEditWindow* ui; + int OpenCSVDialog(); + int SaveCSVDialog(); + int SaveAsDialog(); + + +public slots: + + + // tableview 右键菜单 + void ShowTableViewContextMenu(QPoint p); + void tableView_CopyAction(); + void tableView_PasteAction(); + void tableView_UndoAction(); + void tableView_RedoAction(); + void tableView_CheckFieldHasEmptyCeilAction(); + + void on_actionOpen_triggered(); + void on_actionSave_triggered(); + void on_actionSaveAs_triggered(); + + void on_actionEchoSplitExport_triggered(); // 回波数据导出 + void on_actionCalibrationConst_triggered(); // 计算定标常数 + + + + +protected: // 重写函数 + void closeEvent(QCloseEvent* event) override { + // 在窗口关闭事件中询问用户是否关闭 + QMessageBox::StandardButton reply; + reply = QMessageBox::question(this, u8"Close", u8"您回波数据导出了吗?", QMessageBox::Yes | QMessageBox::No); + + if (reply == QMessageBox::Yes) { + // 用户点击了"Yes"按钮,关闭窗口 + event->accept(); + } + else { + // 用户点击了"No"按钮,取消关闭操作 + event->ignore(); + } + }; +}; + +#endif // !ECHOTABLEEDITWINDOW_H \ No newline at end of file diff --git a/src/PluginWBFZExchangePlugin/EchoTableEditWindow.ui b/src/PluginWBFZExchangePlugin/EchoTableEditWindow.ui new file mode 100644 index 0000000..04f9a5a --- /dev/null +++ b/src/PluginWBFZExchangePlugin/EchoTableEditWindow.ui @@ -0,0 +1,285 @@ + + + EchoTableEditWindow + + + + 0 + 0 + 752 + 520 + + + + 回波表格处理 + + + + + + + true + + + 0 + + + + 回波文件 + + + + + + + + + + 定标常数 + + + + + + + 0 + 25 + + + + + 16777215 + 25 + + + + 定标球大小 + + + + + + + + 0 + 25 + + + + + 16777215 + 25 + + + + 0.001 + + + + + + + + + + + + + + + + toolBar + + + TopToolBarArea + + + false + + + + + + 0 + 0 + 752 + 26 + + + + + 文件 + + + + + + + + 回波工具 + + + + + + + + 定标工具 + + + + + + + + + + + 打开文件 + + + + + 保存文件 + + + + + 另存为 + + + + + 展示所有字段 + + + + + 添加字段 + + + + + 移除字段 + + + + + 编辑字段 + + + + + 创建新文件 + + + + + FEKO检查 + + + + + 森林目标属性表检查 + + + + + 农作物目标属性表检查 + + + + + 草地目标属性表检查 + + + + + 水体目标属性表检查 + + + + + 土壤目标属性表检查 + + + + + 动态水体目标属性表检查 + + + + + 道路目标属性表检查 + + + + + 人工目标属性表检查 + + + + + 几何校正场景属性表检查 + + + + + 辐射校正场景属性表检查 + + + + + 陆表场景属性表检查 + + + + + 水体场景属性表检查 + + + + + 植被场景属性表检查 + + + + + ExportThetaData + + + + + exportData + + + + + 回波切分导出 + + + + + 回波定位 + + + + + 计算定标常数 + + + + + 导入定标常数表 + + + + + + + OpenCSVDialog() + SaveCSVDialog() + SaveAsDialog() + ShowTableViewContextMenu(QPoint) + + diff --git a/src/PluginWBFZExchangePlugin/FEKOResultImport.cpp b/src/PluginWBFZExchangePlugin/FEKOResultImport.cpp new file mode 100644 index 0000000..d5326e7 --- /dev/null +++ b/src/PluginWBFZExchangePlugin/FEKOResultImport.cpp @@ -0,0 +1,427 @@ +#include "FEKOResultImport.h" +#include "FileOperator.h" +#include "SharedModuleLib/BaseUiTool.h" +#include "TaskTreeClass.h" +#include "EchoTableEditWindow.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "CMDExcuteApp.h" +#include +#include +#include +#include "ui_FEKOResultImport.h" +FEKOResultImport::FEKOResultImport(QWidget* parent) +{ + //this->setAttribute(Qt::WidgetAttribute::WA_DeleteOnClose); + //this->setWindowModality(Qt::WindowModality::WindowModal); + this->ui=new Ui::FEKOResultImportWindow ;this->ui->setupUi(this); + this->ListViewmodel = new QStandardItemModel(this); + this->ui->listView->setModel(this->ListViewmodel); + this->selectListViewmodel = new QStandardItemModel(this); + this->selectListViewmodel->clear(); + this->ListViewmodel->clear(); + this->p = nullptr; +} + +FEKOResultImport::~FEKOResultImport() +{ + if (nullptr == this->ListViewmodel || NULL == this->ListViewmodel) {} + else { + this->ListViewmodel->clear(); + delete this->ListViewmodel; + this->ListViewmodel = nullptr; + } + if (nullptr == this->selectListViewmodel || NULL == this->selectListViewmodel) {} + else { + this->selectListViewmodel->clear(); // 释放所有对象的内存 + delete this->selectListViewmodel; + this->selectListViewmodel = nullptr; + } + if (nullptr == this->p) {} + else { + this->p->close(); + //delete this->p; + this->p = nullptr; + } +} + +QString FEKOResultImport::getFEKOPreFileName() +{ + return this->FEKOPreFileName; + return QString(); +} + +int FEKOResultImport::setFEKOPreFileName(QString preFileName) +{ + this->FEKOPreFileName = preFileName; + return 0; +} + +int FEKOResultImport::setNearFieldNames(std::vector nearFieldNames) +{ + this->nearFieldNames.clear(); + this->nearFieldNames.shrink_to_fit(); + this->nearFieldNames = nearFieldNames; + return 0; +} + +std::vector FEKOResultImport::getNearFieldNames() +{ + return this->nearFieldNames; +} + +int FEKOResultImport::setFarFieldNames(std::vector farFieldNames) +{ + this->farFieldNames.clear(); + this->farFieldNames.shrink_to_fit(); + this->farFieldNames = farFieldNames; + return 0; +} + +std::vector FEKOResultImport::getFarFieldNames() +{ + return this->farFieldNames; +} + +int FEKOResultImport::setSelectFieldNames(std::vector SelectFieldNames, bool nearOrfar) +{ + if (nearOrfar) { + this->ui->NearradioButton->setChecked(1); + this->ui->FarradioButton->setChecked(0); + } + else { + this->ui->NearradioButton->setChecked(0); + this->ui->FarradioButton->setChecked(1); + } + // 剔除数据 + this->ListViewmodel->clear(); + this->selectListViewmodel->clear(); + // 重新分配数据 + for (int i = 0; i < SelectFieldNames.size(); i++) { + QStandardItem* item = new QStandardItem(QString::QString(SelectFieldNames[i])); + this->selectListViewmodel->appendRow(item); + } + std::unordered_set selectSET; + for (int i = 0; i < SelectFieldNames.size(); i++) { + selectSET.insert(SelectFieldNames[i]);// 插入 + } + if (nearOrfar) { + + for (int i = 0; i < this->nearFieldNames.size(); i++) + { + if (selectSET.insert(this->nearFieldNames[i]).second)//判断是否能插入成功 + { + QStandardItem* item = new QStandardItem(QString::QString(this->nearFieldNames[i])); + this->ListViewmodel->appendRow(item); + } + else { + + } + } + + } + else { + + for (int i = 0; i < this->farFieldNames.size(); i++) + { + if (selectSET.insert(this->farFieldNames[i]).second)//判断是否能插入成功 + { + QStandardItem* item = new QStandardItem(QString::QString(this->farFieldNames[i])); + this->ListViewmodel->appendRow(item); + } + else { + + } + } + } + this->ui->listView->setModel(this->ListViewmodel); + this->ui->SelectlistView->setModel(this->selectListViewmodel); + return 0; +} + +std::vector FEKOResultImport::getSelectFieldNames() +{ + std::vector result(0); + this->selectListViewmodel = (QStandardItemModel*)(this->ui->SelectlistView->model()); + int selectCount = this->ui->SelectlistView->model()->rowCount(); + for (int i = 0; i < selectCount; i++) { + QStandardItem* listItem = this->selectListViewmodel->item(i); + result.push_back(listItem->text()); + } + return result; +} + +int FEKOResultImport::setFEKOResultCSVPath(QString csvPath) +{ + this->FEKOResultCSVPath = csvPath; + return 0; +} + +QString FEKOResultImport::getFEKOResultCSVPath() +{ + return this->FEKOResultCSVPath; +} + +int FEKOResultImport::setFEKOPreProjectFolderPath(QString FolderPath) +{ + this->FEKOProjectFolderPath = FolderPath; + return 0; +} + +QString FEKOResultImport::getFEKOPreProjectFolderPath() +{ + return this->FEKOProjectFolderPath; +} + +int FEKOResultImport::initView() +{ + this->ui->FolderPathtextEdit->setText(this->FEKOProjectFolderPath); + this->ui->PreFileNametextEdit->setText(this->FEKOPreFileName); + this->ui->csvPathText->setText(this->FEKOResultCSVPath); + this->ui->NearradioButton->setChecked(this->getNearChecked()); + this->ui->FarradioButton->setChecked(this->getFarChecked()); + this->InitListView(); + return 0; +} + +int FEKOResultImport::InitListView() +{ + this->ListViewmodel->clear(); + this->selectListViewmodel->clear(); + if (this->ui->FarradioButton->isChecked()) { + for (int i = 0; i < this->farFieldNames.size(); i++) { + QStandardItem* item = new QStandardItem(QString::QString(this->farFieldNames[i])); + this->ListViewmodel->appendRow(item); + } + } + else { + this->ui->NearradioButton->setChecked(true); + for (int i = 0; i < this->nearFieldNames.size(); i++) { + QStandardItem* item = new QStandardItem(QString::QString(this->nearFieldNames[i])); + this->ListViewmodel->appendRow(item); + } + } + this->ui->listView->setModel(this->ListViewmodel); + this->ui->SelectlistView->setModel(this->selectListViewmodel); + + return 0; +} + +bool FEKOResultImport::getNearChecked() +{ + return this->ui->NearradioButton->isChecked(); + +} + +bool FEKOResultImport::getFarChecked() +{ + return this->ui->FarradioButton->isChecked(); + +} + +bool FEKOResultImport::getSaveSucessfully() +{ + return this->saveSucessfully; +} + +QString FEKOResultImport::getSaveCsvFilePath() +{ + return this->FEKOResultCSVPath; + +} + +// 打开文件,并寻找pre文件 +int FEKOResultImport::OpenPrejectFolderPath() { + //打开单个文件 + QString prefileNamePath = getOpenFilePath( + this, + QString::fromUtf8(u8"选择.pre 文件"), + QString::fromUtf8(u8"pre文件 (*.pre)"));//多组扩展名用双分号";;"隔开 + this->FEKOProjectFolderPath = getParantFromPath(prefileNamePath); + this->FEKOPreFileName = getFileNameFromPath(prefileNamePath); + this->farFieldNames = getFilelist(this->FEKOProjectFolderPath, ".ffe"); + this->nearFieldNames = getFilelist(this->FEKOProjectFolderPath, ".efe"); + // 修改显示 + this->ListViewmodel->clear(); + this->ui->FolderPathtextEdit->setText(this->FEKOProjectFolderPath); + this->ui->PreFileNametextEdit->setText(this->FEKOPreFileName); + if (this->ui->FarradioButton->isChecked()) { + for (int i = 0; i < this->farFieldNames.size(); i++) { + QStandardItem* item = new QStandardItem(QString::QString(this->farFieldNames[i])); + this->ListViewmodel->appendRow(item); + } + } + else { + this->ui->NearradioButton->setChecked(true); + for (int i = 0; i < this->nearFieldNames.size(); i++) { + QStandardItem* item = new QStandardItem(QString::QString(this->nearFieldNames[i])); + this->ListViewmodel->appendRow(item); + } + } + + this->ui->listView->setModel(this->ListViewmodel); + qDebug()<<(u8"farField Number:"+QString::number(this->farFieldNames.size()) + "\n" + u8"NearField Number:" + QString::number(this->nearFieldNames.size()) + "\n"); + return -1; +} + + + +void FEKOResultImport::waitCMDExcute() +{ + qDebug() << u8"转换程序执行结束"; + if (isExists(this->FEKOResultCSVPath)) { + messageLog(u8"FEKOResult 保存成功\n路径:\t" + this->FEKOResultCSVPath, 1); + this->saveSucessfully = true; + this->p->close(); + delete p; + this->p = nullptr; + } + else { + messageLog(u8"FEKOResult 保存失败\n路径:\t" + this->FEKOResultCSVPath, 1); + this->saveSucessfully = false; + } + + // 触发结果时间 + qDebug() << u8"准备执行转换结果编辑功能"; + emit this->callbackFekoResultImport(this); + +} + +int FEKOResultImport::closeWindows() +{ + this->close(); + return 0; +} + +int FEKOResultImport::NearRadioButtonSelect(bool selectTrue) +{ + this->ui->NearradioButton->setChecked(selectTrue); + this->ui->FarradioButton->setChecked(!selectTrue); + this->InitListView(); + return 0; +} + +int FEKOResultImport::FarRadioButtonSelect(bool selectsign) +{ + this->ui->NearradioButton->setChecked(!selectsign); + this->ui->FarradioButton->setChecked(selectsign); + this->InitListView(); + return 0; +} + +int FEKOResultImport::FEKOResultImportButtonClick() +{ + if (isExists(this->FEKOResultCSVPath)) { + QFile file(this->FEKOResultCSVPath); + if (!file.open(QIODevice::ReadWrite)) { + QMessageBox::information(nullptr, u8"文件被占用", this->FEKOResultCSVPath); + return 2; + } + else { + file.close(); + removeFile(this->FEKOResultCSVPath); + } + + } + + QString csvpramarPath = this->FEKOResultCSVPath; + csvpramarPath= csvpramarPath.replace(this->FEKOResultCSVPath.size() - 4, 4, ".params"); + // 获取选择文件 + std::vector selectfiles = this->getSelectFieldNames(); + QString parmas_text = this->FEKOResultCSVPath +"\n";// 输出路径 + for (int i = 0; i < selectfiles.size(); i++) { + parmas_text = parmas_text + selectfiles[i] + "\n"; + } + if (isExists(csvpramarPath)) { + removeFile(csvpramarPath); + } + + + writeUTF8StringFile(csvpramarPath, (parmas_text)); + // 拼接命令行 + QString cmdtext = u8""; + if (this->ui->NearradioButton->isChecked()) { + cmdtext = cmdtext + u8"NearField2csvTool.exe"; + } + else { + cmdtext = cmdtext + u8"FarField2csvTool.exe"; + } + if (nullptr != this->p) { + this->p->close(); + delete this->p; + this->p = nullptr; + } + this->p = new CMDExcuteApp(); + QObject::connect(this->p, SIGNAL(callbackExcuteResult()), this, SLOT(waitCMDExcute())); + this->p->setAttribute(Qt::WA_DeleteOnClose);; + this->p->show(); + this->p->excuteCmd(cmdtext, csvpramarPath); + + return 0; +} + +int FEKOResultImport::AddFekoResultClick() +{ + QModelIndexList sourcelist=this->ui->listView->selectionModel()->selectedIndexes(); + std::vector deleteRowids(0); + for (int i = 0; i < sourcelist.count(); i++) { + deleteRowids.push_back(sourcelist[i].row()); + qDebug() << ("deletaRowids add :"+QString::number(sourcelist[i].row())+"\n"); + } + std::sort(deleteRowids.begin(), deleteRowids.end()); + for (int i = deleteRowids.size() - 1; i >= 0; i--) { + int select_Idx = deleteRowids[i]; + QList listItem = this->ListViewmodel->takeRow(select_Idx); + int nRightCount = this->selectListViewmodel->rowCount(); + this->selectListViewmodel->insertRow(nRightCount, listItem); + qDebug() << ("selectListViewmodel insertRow : "+ QString::number(select_Idx) +"-->" + QString::number(nRightCount) + "\n"); + } + + this->ui->listView->setModel(this->ListViewmodel); + this->ui->SelectlistView->setModel(this->selectListViewmodel); + return 0; +} + +int FEKOResultImport::DeleteFekoResultClick() +{ + + QModelIndexList sourcelist = this->ui->SelectlistView->selectionModel()->selectedIndexes(); + std::vector deleteRowids(0); + for (int i = 0; i < sourcelist.count(); i++) { + deleteRowids.push_back(sourcelist[i].row()); + } + std::sort(deleteRowids.begin(), deleteRowids.end()); + for (int i = deleteRowids.size() - 1; i >= 0; i--) { + int select_Idx = deleteRowids[i]; + QList listItem = this->selectListViewmodel->takeRow(select_Idx); + int nRightCount = this->ListViewmodel->rowCount(); + this->ListViewmodel->insertRow(nRightCount, listItem); + qDebug() << ("ListViewmodel insertRow : " + QString::number(select_Idx) + "-->" + QString::number(nRightCount) + "\n"); + } + this->ui->listView->setModel(this->ListViewmodel); + this->ui->SelectlistView->setModel(this->selectListViewmodel); + + return 0; +} + +int FEKOResultImport::SaveCsvFilePath() +{ + //打开单个文件 + QString csvfileNamePath = getSaveFilePath( + this, + QString::fromUtf8(u8"保存FEKO解析结果 csv "), + QString::fromUtf8(u8"csv文件 (*.csv)"));//多组扩展名用双分号";;"隔开 + this->FEKOResultCSVPath = csvfileNamePath; + this->ui->csvPathText->setPlainText(csvfileNamePath); + return 0; +} diff --git a/src/PluginWBFZExchangePlugin/FEKOResultImport.h b/src/PluginWBFZExchangePlugin/FEKOResultImport.h new file mode 100644 index 0000000..edfb107 --- /dev/null +++ b/src/PluginWBFZExchangePlugin/FEKOResultImport.h @@ -0,0 +1,89 @@ +#pragma once + +#ifndef FEKORESULTIMPORT_H +#define FEKORESULTIMPORT_H +#include "WBFZExchangePluginAPI.h" +#include "WBFZExchangePluginAPI.h" +#include +#include + +#include "TaskTreeClass.h" +#include "CMDExcuteApp.h" +#include +#include +#include +#include +#include +#include +class QObject; +class QMainWindow; + +namespace Ui{ + class FEKOResultImportWindow; +} + +class FEKOResultImport : public QMainWindow +{ + Q_OBJECT + +public: + QString FEKOProjectFolderPath; + QString FEKOPreFileName; + std::vector nearFieldNames; + std::vector farFieldNames; + QString FEKOResultCSVPath; +private : + QStandardItemModel* ListViewmodel; + QStandardItemModel* selectListViewmodel; + bool saveSucessfully; + CMDExcuteApp* p; + +public: + FEKOResultImport(QWidget* parent = nullptr); + ~FEKOResultImport(); + + QString getFEKOPreFileName(); + int setFEKOPreFileName(QString preFileName); + + int setNearFieldNames(std::vector nearFieldNames); + std::vector getNearFieldNames(); + + int setFarFieldNames(std::vector farFieldNames); + std::vector getFarFieldNames(); + + int setSelectFieldNames(std::vector SelectFieldNames,bool nearOrfar); + std::vector getSelectFieldNames(); + + int setFEKOResultCSVPath(QString csvPath); + QString getFEKOResultCSVPath(); + + int setFEKOPreProjectFolderPath(QString FolderPath); + QString getFEKOPreProjectFolderPath(); + + int initView(); + int InitListView(); + bool getNearChecked(); + bool getFarChecked(); + bool getSaveSucessfully(); + QString getSaveCsvFilePath(); + +private: + Ui::FEKOResultImportWindow* ui; + +signals: + void callbackFekoResultImport(FEKOResultImport* obj); + +public slots: // 信号(或者事件) + int OpenPrejectFolderPath(); + int closeWindows(); + int NearRadioButtonSelect(bool); + int FarRadioButtonSelect(bool); + int FEKOResultImportButtonClick(); // 执行导入 + int AddFekoResultClick(); + int DeleteFekoResultClick(); + int SaveCsvFilePath(); + void waitCMDExcute(); // 导入完成 +}; + + +#endif diff --git a/src/PluginWBFZExchangePlugin/FEKOResultImport.ui b/src/PluginWBFZExchangePlugin/FEKOResultImport.ui new file mode 100644 index 0000000..7e67281 --- /dev/null +++ b/src/PluginWBFZExchangePlugin/FEKOResultImport.ui @@ -0,0 +1,425 @@ + + + FEKOResultImportWindow + + + + 0 + 0 + 621 + 458 + + + + + 621 + 331 + + + + FEKO近场文件导入 + + + + + + + QLayout::SetDefaultConstraint + + + + + + 16777215 + 30 + + + + pre工程路径: + + + + + + + false + + + + 16777215 + 30 + + + + + + + + + 16777215 + 30 + + + + 打开 + + + + + + + + + + + + 16777215 + 30 + + + + FEKO结果输出地址 + + + + + + + false + + + + 16777215 + 30 + + + + + + + + + 16777215 + 30 + + + + 选择保存文件 + + + + + + + + + + + + 16777215 + 30 + + + + .pre文件名 + + + + + + + false + + + + 16777215 + 30 + + + + + + + + NearField + + + + + + + FarField + + + + + + + + + + + + 0 + 200 + + + + QAbstractItemView::MultiSelection + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + >> + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + << + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + 0 + 200 + + + + QAbstractItemView::MultiSelection + + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + 导入FEKO结果 + + + + + + + + 16777215 + 30 + + + + 取消 + + + + + + + + + + + + OKpushButton + clicked() + FEKOResultImportWindow + OpenPrejectFolderPath() + + + 802 + 52 + + + 519 + 99 + + + + + NearradioButton + clicked(bool) + FEKOResultImportWindow + NearRadioButtonSelect(bool) + + + 728 + 175 + + + 471 + 112 + + + + + FarradioButton + clicked(bool) + FEKOResultImportWindow + FarRadioButtonSelect(bool) + + + 802 + 175 + + + 504 + 86 + + + + + ImportpushButton + clicked() + FEKOResultImportWindow + FEKOResultImportButtonClick() + + + 721 + 435 + + + 514 + 158 + + + + + deletepushButton + clicked() + FEKOResultImportWindow + DeleteFekoResultClick() + + + 443 + 354 + + + 507 + 274 + + + + + AddpushButton + clicked() + FEKOResultImportWindow + AddFekoResultClick() + + + 443 + 277 + + + 542 + 212 + + + + + CancelpushButton + clicked() + FEKOResultImportWindow + closeWindows() + + + 802 + 435 + + + 547 + 48 + + + + + pushButton + clicked() + FEKOResultImportWindow + SaveCsvFilePath() + + + 757 + 106 + + + 767 + 136 + + + + + + OpenPrejectFolderPath() + closeWindows() + NearRadioButtonSelect(bool) + FarRadioButtonSelect(bool) + FEKOResultImportButtonClick() + AddFekoResultClick() + DeleteFekoResultClick() + SaveCsvFilePath() + + diff --git a/src/PluginWBFZExchangePlugin/TaskTreeClass.cpp b/src/PluginWBFZExchangePlugin/TaskTreeClass.cpp new file mode 100644 index 0000000..ae5c9e3 --- /dev/null +++ b/src/PluginWBFZExchangePlugin/TaskTreeClass.cpp @@ -0,0 +1,226 @@ +#include "TaskTreeClass.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + + + +TaskNode::TaskNode(QWidget* parent) :QCheckBox(parent) +{ + this->status = TaskStatusEnum::wait; + this->setText("TaskNode"); + this->description = "TaskNode"; + this->TaskXmlPath = ""; + + this->setContextMenuPolicy(Qt::CustomContextMenu); + this->ContentListContextMenu = new QMenu(this); // 表格控件的右键菜单 + QObject::connect(this, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(ShowContentListContextMenu(QPoint))); + + //// 加载数据 + //QAction* action_Node_ExcuteTask_Action = this->ContentListContextMenu->addAction(u8"加载"); + //QObject::connect(action_Node_ExcuteTask_Action, SIGNAL(triggered()), this, SLOT(ExcuteTask())); + + // 重命名 + QAction* action_rename=this->ContentListContextMenu->addAction(u8"重命名"); + QObject::connect(action_rename, SIGNAL(triggered()), this, SLOT(renameNode())); + + // 移除 + QAction* action_remove = this->ContentListContextMenu->addAction(u8"移除"); + QObject::connect(action_remove, SIGNAL(triggered()), this, SLOT(deleteNode())); + +} + +TaskNode::~TaskNode() +{ + this->Nodelist.clear(); +} + +QString TaskNode::getName() +{ + return this->text(); +} + +int TaskNode::setName(QString name) +{ + this->setText(name); + return 0; +} + +QString TaskNode::getTaskName() +{ + return this->text(); +} + +int TaskNode::loadXmlDocument(QString xmlFilePath, QDomDocument& doc) +{ + QFile file(xmlFilePath.toUtf8().constData()); //相对路径、绝对路径、资源路径都可以 + if (!file.open(QFile::ReadOnly)) //可以用QIODevice,Truncate表示清空原来的内容 + { + QString tiptext = "File isn't opened in readonly mode ,file path "+ xmlFilePath; + qDebug() << tiptext.toUtf8().constData(); + return 2; + } + + QTextStream stream(&file); + QTextCodec* codec = QTextCodec::codecForName(u8"UTF-8"); + stream.setCodec(codec); + QString content = stream.readAll(); + file.close(); + if (!doc.setContent(content)) // 关联文件流 + { + QString tiptext = u8"File isn't readed in xml format ,file path " + xmlFilePath; + qDebug() << tiptext.toUtf8().constData(); + file.close(); + return 3; + } + file.close(); // 文件读取结束 + return -1; +} + +int TaskNode::writeXmlDocument(QDomDocument& doc) +{ + + QFile wfile(this->TaskXmlPath.toUtf8().constData()); // 保存 XML 文件 + if (wfile.open(QFile::ReadWrite | QFile::Text)) + { + QTextStream out(&wfile); + doc.save(out, QDomNode::EncodingFromDocument); + wfile.close(); + } + return -1; +} + +int TaskNode::loadXmlFile(QString xmlFilePath) +{ + return 0; +} + +int TaskNode::saveXmlFile() +{ + return 0; +} + + +int TaskNode::addNode(std::shared_ptr n) +{ + this->Nodelist.push_back(n); + return 0; +} + +std::shared_ptr TaskNode::getNode(int nid) +{ + if (nid < this->Nodelist.size()) { + return this->Nodelist[nid]; + } + return std::shared_ptr(nullptr); +} + +std::shared_ptr TaskNode::getNode(QString nodename) +{ + for (int i = 0; i < this->Nodelist.size(); i++) { + if (strcmp(nodename.toUtf8().constData(), this->Nodelist[i]->getName().toUtf8().constData()) == 0) { + return this->Nodelist[i]; + } + } + return std::shared_ptr(nullptr); +} + +std::shared_ptr TaskNode::removeAt(int nid) +{ + if (nid < this->Nodelist.size()) { + std::shared_ptr result = this->Nodelist[nid]; + this->Nodelist.erase(this->Nodelist.begin()+nid); // 删除 nid + return result; + } + return std::shared_ptr(nullptr); +} + +std::shared_ptr TaskNode::removeByName(QString nodename) +{ + for (int i = 0; i < this->Nodelist.size(); i++) { + if (strcmp(nodename.toUtf8().constData(), this->Nodelist[i]->getName().toUtf8().constData()) == 0) { + std::shared_ptr result = this->Nodelist[i]; + this->Nodelist.erase(this->Nodelist.begin() + i); // 删除 nid + return result; + } + } + return std::shared_ptr(nullptr); +} + +TaskStatusEnum TaskNode::getStatus() +{ + return this->status; + // return TaskStatusEnum(); +} + +int TaskNode::setStatus(TaskStatusEnum taskstatus) +{ + this->status = taskstatus; + return 0; +} + +void TaskNode::renameNode() +{ + QString newName=QInputDialog::getText(this, u8"重命名", u8"请输入新的名称", QLineEdit::Normal, this->text()); + emit this->renameNode(this->text(), newName); +} + +void TaskNode::deleteNode() +{ + this->FinishTask(); + emit this->deleteNode(this->text()); +} + +void TaskNode::copyNewNode() +{ + + emit this->copyNewNode(this->CopyToNew()); +} + +void TaskNode::ShowContentListContextMenu(QPoint p) +{ + this->ContentListContextMenu->exec(QCursor::pos()); +} + +int TaskNode::ExcuteTask() +{ + this->status = TaskStatusEnum::excuting; + return 0; +} + +int TaskNode::FinishTask() +{ + return 0; +} + +TaskNode* TaskNode::CopyToNew() +{ + return nullptr; +} + +int TaskNode::preView() +{ + return 0; +} + + +int TaskTreeClass::loadXmlFile(QString xmlFilePath) +{ + return 0; +} + +int TaskTreeClass::saveXmlFile() +{ + return 0; +} + diff --git a/src/PluginWBFZExchangePlugin/TaskTreeClass.h b/src/PluginWBFZExchangePlugin/TaskTreeClass.h new file mode 100644 index 0000000..707a144 --- /dev/null +++ b/src/PluginWBFZExchangePlugin/TaskTreeClass.h @@ -0,0 +1,105 @@ +#pragma once +/* +* 所有的功能指针传递 都是使用 共享指针,不手动释放 +* 定义各种任务管理类 +* 任务管理类以树状节点进行保存, +* 树状节点都是一个树,具有完整的任务管理能力 +* 任务按照 制备任务、测量任务、仿真任务 +* 任务基类: +* 1.任务名 +* 2. 任务描述 +* 3. 子任务项 +* 4. 节点类型 -- 文件节点、任务节点、 +* 5. 当前节点操作窗口 +* 仿真任务: +* +* +* +* +***/ + +#ifndef TASKTREECLASS_H +#define TASKTREECLASS_H +#include "WBFZExchangePluginAPI.h" +#include "AllHead.h" +#include +#include +#include +#include +#include +#include +#include +#include //rapidxml::file +#include //rapidxml::print +#include +#include +class QObject; +class QCheckBox; + +class TaskNode :public QCheckBox +{ + Q_OBJECT // 每个子类必须使用这个宏 +public: + QString TaskXmlPath; +public: + QMenu* ContentListContextMenu; + QString description; // 描述 + TaskStatusEnum status; + std::vector> Nodelist; +public: + TaskNode(QWidget* parent = nullptr); + ~TaskNode(); +public: + QString getName(); + int setName(QString anme); + QString getTaskName(); + virtual int ExcuteTask(); // 任务执行操作 + virtual int FinishTask(); + virtual TaskNode* CopyToNew(); + + + int loadXmlDocument(QString xmlfilepath, QDomDocument& doc); + int writeXmlDocument(QDomDocument& doc); + virtual int preView(); // 预览信息 + + virtual int loadXmlFile(QString xmlFilePath); // 加载任务文件,必须重写 + virtual int saveXmlFile(); // 保存任务文件,必须重写 + + virtual int addNode(std::shared_ptr n); + virtual std::shared_ptr getNode(int nid); + virtual std::shared_ptr getNode(QString nodename); + virtual std::shared_ptr removeAt(int nid); + virtual std::shared_ptr removeByName(QString nodename); + virtual TaskStatusEnum getStatus(); + virtual int setStatus(TaskStatusEnum taskstatus); + +public slots: + void ShowContentListContextMenu(QPoint p); + void renameNode(); + void deleteNode(); + void copyNewNode(); + +signals: + void renameNode(QString oldname,QString newname); + void deleteNode(QString name); + void copyNewNode(TaskNode* sendernode); +}; + + +/// +/// 任务管理地址 +/// +class TaskTreeClass:public QObject +{ + Q_OBJECT +public: + QString TaskName; + std::vector tasknodes; +public: + virtual int loadXmlFile(QString xmlFilePath); // 加载任务文件,必须重写 + virtual int saveXmlFile(); // 保存任务文件,必须重写 +}; + + + +#endif \ No newline at end of file diff --git a/src/ScattingAntParams/A1_ant.ffe b/src/ScattingAntParams/A1_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/A1_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/A2_ant.ffe b/src/ScattingAntParams/A2_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/A2_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/F10_ant.ffe b/src/ScattingAntParams/F10_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/F10_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/F11_ant.ffe b/src/ScattingAntParams/F11_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/F11_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/F12_ant.ffe b/src/ScattingAntParams/F12_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/F12_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/F1_ant.ffe b/src/ScattingAntParams/F1_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/F1_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/F2_ant.ffe b/src/ScattingAntParams/F2_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/F2_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/F3_ant.ffe b/src/ScattingAntParams/F3_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/F3_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/F4_ant.ffe b/src/ScattingAntParams/F4_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/F4_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/F5_ant.ffe b/src/ScattingAntParams/F5_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/F5_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/F6_ant.ffe b/src/ScattingAntParams/F6_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/F6_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/F7_ant.ffe b/src/ScattingAntParams/F7_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/F7_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/F8_ant.ffe b/src/ScattingAntParams/F8_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/F8_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/F9_ant.ffe b/src/ScattingAntParams/F9_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/F9_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/S10_ant.ffe b/src/ScattingAntParams/S10_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/S10_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/S12_ant.ffe b/src/ScattingAntParams/S12_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/S12_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/S1_ant.ffe b/src/ScattingAntParams/S1_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/S1_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/S3_ant.ffe b/src/ScattingAntParams/S3_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/S3_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/S5_ant.ffe b/src/ScattingAntParams/S5_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/S5_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/S8_ant.ffe b/src/ScattingAntParams/S8_ant.ffe new file mode 100644 index 0000000..102afab --- /dev/null +++ b/src/ScattingAntParams/S8_ant.ffe @@ -0,0 +1,2717 @@ +##File Type: Far field +##File Format: 7 +##Source: ant_SAR_new +##Date: 2023-11-24 01:22:36 +** File exported by Altair Feko - Solver (par) Version 2020.1-535 from 2020-08-13 + + +#Configuration Name: Horn_conical1_sigle_f +#Request Name: Horn_conical1_FarField_sigle_f +#Frequency: 9.00000000E+009 +#Coordinate System: Spherical +#No. of Theta Samples: 37 +#No. of Phi Samples: 73 +#Result Type: Gain +#No. of Header Lines: 1 +# "Theta" "Phi" "Re(Etheta)" "Im(Etheta)" "Re(Ephi)" "Im(Ephi)" "Gain(Theta)" "Gain(Phi)" "Gain(Total)" + 0.00000000E+000 0.00000000E+000 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 0.00000000E+000 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 0.00000000E+000 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 0.00000000E+000 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 0.00000000E+000 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 0.00000000E+000 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 0.00000000E+000 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 0.00000000E+000 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 0.00000000E+000 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 0.00000000E+000 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 0.00000000E+000 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 0.00000000E+000 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 0.00000000E+000 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 0.00000000E+000 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 0.00000000E+000 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 0.00000000E+000 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 0.00000000E+000 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 0.00000000E+000 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 0.00000000E+000 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 0.00000000E+000 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 0.00000000E+000 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 0.00000000E+000 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 0.00000000E+000 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 0.00000000E+000 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 0.00000000E+000 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 0.00000000E+000 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 0.00000000E+000 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 0.00000000E+000 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 0.00000000E+000 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 0.00000000E+000 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 0.00000000E+000 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 0.00000000E+000 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 0.00000000E+000 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 0.00000000E+000 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 0.00000000E+000 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 0.00000000E+000 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 0.00000000E+000 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+000 -3.59896778E+000 2.12097502E+000 -4.06807853E+001 2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+000 -3.35002106E+000 2.12214221E+000 -3.80721293E+001 2.59059796E+001 -5.81228874E+000 1.54860945E+001 1.55181824E+001 + 1.00000000E+001 5.00000000E+000 -2.68445097E+000 2.07632540E+000 -3.06626848E+001 2.75042217E+001 -7.16496091E+000 1.45174987E+001 1.45468798E+001 + 1.50000000E+001 5.00000000E+000 -1.83974289E+000 1.86369028E+000 -1.99177986E+001 2.77753116E+001 -9.41653510E+000 1.28966153E+001 1.29220366E+001 + 2.00000000E+001 5.00000000E+000 -1.12250833E+000 1.47269137E+000 -8.51627606E+000 2.48758079E+001 -1.24270287E+001 1.06183645E+001 1.06398512E+001 + 2.50000000E+001 5.00000000E+000 -7.20183433E-001 1.08397380E+000 3.99882424E-001 1.87711443E+001 -1.54902360E+001 7.69327846E+000 7.71409419E+000 + 3.00000000E+001 5.00000000E+000 -5.31760341E-001 9.22521879E-001 4.94795297E+000 1.15394103E+001 -1.72330824E+001 4.19816358E+000 4.22928809E+000 + 3.50000000E+001 5.00000000E+000 -2.59922261E-001 9.72002574E-001 5.74429363E+000 5.74591564E+000 -1.77252062E+001 4.17751919E-001 4.83848574E-001 + 4.00000000E+001 5.00000000E+000 2.20900284E-001 9.18453769E-001 5.01662029E+000 2.26868754E+000 -1.82731340E+001 -2.96215729E+000 -2.83615704E+000 + 4.50000000E+001 5.00000000E+000 6.44199163E-001 5.13930716E-001 4.22860128E+000 6.03684499E-002 -1.94590588E+001 -5.25368720E+000 -5.09183104E+000 + 5.00000000E+001 5.00000000E+000 6.56286070E-001 -5.76285075E-002 3.05398549E+000 -1.83984121E+000 -2.14032850E+001 -6.73642177E+000 -6.59061184E+000 + 5.50000000E+001 5.00000000E+000 2.97521821E-001 -3.73931727E-001 9.44913119E-001 -2.87145629E+000 -2.41926077E+001 -8.16993744E+000 -8.06274927E+000 + 6.00000000E+001 5.00000000E+000 -4.44217051E-002 -3.06613633E-001 -1.20072572E+000 -2.13428820E+000 -2.79564639E+001 -9.99921836E+000 -9.93025680E+000 + 6.50000000E+001 5.00000000E+000 -1.42636194E-001 -1.12206353E-001 -1.85298199E+000 -2.31868639E-001 -3.26018842E+001 -1.23536073E+001 -1.23127834E+001 + 7.00000000E+001 5.00000000E+000 -1.12830932E-001 -2.89125488E-003 -8.25098807E-001 1.09321370E+000 -3.67270928E+001 -1.50464004E+001 -1.50170073E+001 + 7.50000000E+001 5.00000000E+000 -8.04871093E-002 6.26542459E-002 5.13126491E-001 9.05252433E-001 -3.76066166E+001 -1.74331017E+001 -1.73915724E+001 + 8.00000000E+001 5.00000000E+000 1.18275666E-003 1.20973324E-001 8.65950525E-001 -1.15228906E-001 -3.61242996E+001 -1.89524192E+001 -1.88699172E+001 + 8.50000000E+001 5.00000000E+000 1.21796709E-001 7.21164470E-002 2.41154717E-001 -7.20236042E-001 -3.47605658E+001 -2.01675351E+001 -2.00192673E+001 + 9.00000000E+001 5.00000000E+000 1.20277185E-001 -7.58796596E-002 -4.09653745E-001 -4.48644219E-001 -3.47197668E+001 -2.21070921E+001 -2.18754159E+001 + 9.50000000E+001 5.00000000E+000 -3.22892799E-002 -1.18063465E-001 -3.93210288E-001 1.19058689E-001 -3.60229310E+001 -2.55050578E+001 -2.51357400E+001 + 1.00000000E+002 5.00000000E+000 -1.12394673E-001 2.68029861E-002 4.11022136E-002 2.42402764E-001 -3.65233812E+001 -2.99646523E+001 -2.90979755E+001 + 1.05000000E+002 5.00000000E+000 1.45175768E-002 1.39350418E-001 2.16277149E-001 -7.09512959E-002 -3.48494591E+001 -3.06343802E+001 -2.92391417E+001 + 1.10000000E+002 5.00000000E+000 1.49816458E-001 3.83325467E-002 -8.48447951E-003 -2.55668807E-001 -3.39919202E+001 -2.96201720E+001 -2.82674214E+001 + 1.15000000E+002 5.00000000E+000 7.52413364E-002 -1.09709104E-001 -1.88974335E-001 -9.82726745E-002 -3.52994255E+001 -3.12109324E+001 -2.97805428E+001 + 1.20000000E+002 5.00000000E+000 -8.25227326E-002 -6.04690194E-002 -9.51073950E-002 6.85402360E-002 -3.75804907E+001 -3.63976345E+001 -3.39386157E+001 + 1.25000000E+002 5.00000000E+000 -6.46761106E-002 1.04127040E-001 3.09787180E-002 3.86972635E-002 -3.60102351E+001 -4.38741741E+001 -3.53524470E+001 + 1.30000000E+002 5.00000000E+000 9.44558333E-002 1.21909053E-001 3.11616225E-002 -6.18324267E-003 -3.40157088E+001 -4.77383937E+001 -3.38352160E+001 + 1.35000000E+002 5.00000000E+000 1.40438553E-001 -2.29743479E-002 5.69840913E-002 3.88575788E-002 -3.47140835E+001 -4.10050859E+001 -3.37977337E+001 + 1.40000000E+002 5.00000000E+000 5.51754588E-003 -9.79958847E-002 1.63265110E-001 2.77808995E-002 -3.79406043E+001 -3.33966804E+001 -3.20893460E+001 + 1.45000000E+002 5.00000000E+000 -1.16954331E-001 1.21640497E-002 1.74321865E-001 -5.17633762E-002 -3.63714536E+001 -3.25844855E+001 -3.10673491E+001 + 1.50000000E+002 5.00000000E+000 -7.54790437E-002 1.67764376E-001 6.79776366E-002 5.14881926E-002 -3.24839504E+001 -3.91619724E+001 -3.16386134E+001 + 1.55000000E+002 5.00000000E+000 5.71096211E-002 1.95663185E-001 1.44700691E-001 4.76725865E-001 -3.15932576E+001 -2.38303870E+001 -2.31582511E+001 + 1.60000000E+002 5.00000000E+000 1.16136025E-001 8.92263086E-002 6.90578294E-001 1.00829822E+000 -3.44644546E+001 -1.60362695E+001 -1.59743446E+001 + 1.65000000E+002 5.00000000E+000 3.53704859E-002 -3.77034400E-002 1.64745753E+000 1.30964924E+000 -4.35091338E+001 -1.13151585E+001 -1.13125388E+001 + 1.70000000E+002 5.00000000E+000 -1.25010711E-001 -9.96853610E-002 2.67568099E+000 1.26967553E+000 -3.37020746E+001 -8.34784518E+000 -8.33520570E+000 + 1.75000000E+002 5.00000000E+000 -2.66010896E-001 -1.01396308E-001 3.42484000E+000 1.06500221E+000 -2.86913515E+001 -6.68482813E+000 -6.65755296E+000 + 1.80000000E+002 5.00000000E+000 -3.20675596E-001 -9.30487464E-002 3.69375888E+000 9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.00000000E+001 -7.13083667E+000 4.29847545E+000 -4.02123119E+001 2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.00000000E+001 -6.63306066E+000 4.30318067E+000 -3.76327022E+001 2.56159406E+001 1.81325475E-001 1.53862219E+001 1.55152919E+001 + 1.00000000E+001 1.00000000E+001 -5.30565477E+000 4.20346197E+000 -3.03070031E+001 2.71948463E+001 -1.16804475E+000 1.44175324E+001 1.45359166E+001 + 1.50000000E+001 1.00000000E+001 -3.62406725E+000 3.76449176E+000 -1.96842552E+001 2.74609737E+001 -3.41604356E+000 1.27965374E+001 1.28991932E+001 + 2.00000000E+001 1.00000000E+001 -2.20045617E+000 2.96954461E+000 -8.41318029E+000 2.45922630E+001 -6.42393560E+000 1.05181387E+001 1.06050793E+001 + 2.50000000E+001 1.00000000E+001 -1.40595316E+000 2.18362880E+000 3.99840804E-001 1.85552222E+001 -9.48872671E+000 7.59283234E+000 7.67705145E+000 + 3.00000000E+001 1.00000000E+001 -1.03514020E+000 1.85506216E+000 4.89388414E+000 1.14049652E+001 -1.12340742E+001 4.09735817E+000 4.22277481E+000 + 3.50000000E+001 1.00000000E+001 -4.94874367E-001 1.94691206E+000 5.67909120E+000 5.67782269E+000 -1.17196764E+001 3.16399766E-001 5.79990712E-001 + 4.00000000E+001 1.00000000E+001 4.60334732E-001 1.83115759E+000 4.95853596E+000 2.24135533E+000 -1.22578554E+001 -3.06401253E+000 -2.57029310E+000 + 4.50000000E+001 1.00000000E+001 1.29522914E+000 1.01807785E+000 4.17930700E+000 5.93099272E-002 -1.34422469E+001 -5.35554695E+000 -4.72838605E+000 + 5.00000000E+001 1.00000000E+001 1.30849167E+000 -1.19489483E-001 3.01834566E+000 -1.81864148E+000 -1.54070218E+001 -6.83803683E+000 -6.27269377E+000 + 5.50000000E+001 1.00000000E+001 5.88887661E-001 -7.40981972E-001 9.33552636E-001 -2.83824357E+000 -1.82561881E+001 -8.27138008E+000 -7.85606994E+000 + 6.00000000E+001 1.00000000E+001 -8.80968887E-002 -5.98871587E-001 -1.18739980E+000 -2.10928761E+000 -2.21388547E+001 -1.01002627E+001 -9.83681990E+000 + 6.50000000E+001 1.00000000E+001 -2.75755567E-001 -2.10249311E-001 -1.83186356E+000 -2.28534863E-001 -2.69778040E+001 -1.24535719E+001 -1.23029772E+001 + 7.00000000E+001 1.00000000E+001 -2.10758342E-001 3.71409411E-003 -8.15474135E-001 1.08110797E+000 -3.13014630E+001 -1.51450050E+001 -1.50410299E+001 + 7.50000000E+001 1.00000000E+001 -1.44077697E-001 1.29285511E-001 5.07221179E-001 8.94921047E-001 -3.20413078E+001 -1.75330059E+001 -1.73818673E+001 + 8.00000000E+001 1.00000000E+001 1.86066409E-002 2.40513606E-001 8.55466519E-001 -1.13757764E-001 -3.01297994E+001 -1.90583214E+001 -1.87315852E+001 + 8.50000000E+001 1.00000000E+001 2.56348432E-001 1.39004832E-001 2.37650099E-001 -7.11129529E-001 -2.84824347E+001 -2.02797316E+001 -1.96679901E+001 + 9.00000000E+001 1.00000000E+001 2.49172807E-001 -1.56975391E-001 -4.05112007E-001 -4.41976415E-001 -2.83968956E+001 -2.22220147E+001 -2.12833354E+001 + 9.50000000E+001 1.00000000E+001 -5.69162622E-002 -2.39035606E-001 -3.87854001E-001 1.19190530E-001 -2.99697570E+001 -2.56132297E+001 -2.42564002E+001 + 1.00000000E+002 1.00000000E+001 -2.15246037E-001 5.06851488E-002 4.21431659E-002 2.40327523E-001 -3.08854325E+001 -3.00309027E+001 -2.74268840E+001 + 1.05000000E+002 1.00000000E+001 3.84998267E-002 2.72775133E-001 2.15161038E-001 -7.04108658E-002 -2.89767468E+001 -3.06814020E+001 -2.67356688E+001 + 1.10000000E+002 1.00000000E+001 3.05635637E-001 6.95584278E-002 -7.78052831E-003 -2.53460064E-001 -2.78551143E+001 -2.96962257E+001 -2.56685288E+001 + 1.15000000E+002 1.00000000E+001 1.54504500E-001 -2.23769141E-001 -1.86876788E-001 -9.75735185E-002 -2.90894618E+001 -3.13004220E+001 -2.70454377E+001 + 1.20000000E+002 1.00000000E+001 -1.58603381E-001 -1.23449863E-001 -9.41662526E-002 6.79151561E-002 -3.17152415E+001 -3.64816881E+001 -3.04646621E+001 + 1.25000000E+002 1.00000000E+001 -1.20688895E-001 2.02800644E-001 3.08548584E-002 3.86919545E-002 -3.03204298E+001 -4.38884602E+001 -3.01335326E+001 + 1.30000000E+002 1.00000000E+001 1.94765206E-001 2.34594250E-001 3.13592385E-002 -5.82983612E-003 -2.80951746E+001 -4.77036373E+001 -2.80479060E+001 + 1.35000000E+002 1.00000000E+001 2.81727349E-001 -5.41527286E-002 5.68920758E-002 3.84589225E-002 -2.86243600E+001 -4.10429560E+001 -2.83823854E+001 + 1.40000000E+002 1.00000000E+001 1.06601712E-002 -1.99721022E-001 1.61839971E-001 2.74906799E-002 -3.17576763E+001 -3.34732555E+001 -2.95209986E+001 + 1.45000000E+002 1.00000000E+001 -2.31435252E-001 2.27980429E-002 1.72817902E-001 -5.10183422E-002 -3.04479774E+001 -3.26638315E+001 -2.84057899E+001 + 1.50000000E+002 1.00000000E+001 -1.46515145E-001 3.32131227E-001 6.79245874E-002 5.10631277E-002 -2.65800831E+001 -3.91924177E+001 -2.63483892E+001 + 1.55000000E+002 1.00000000E+001 1.16704492E-001 3.85689580E-001 1.43988462E-001 4.71221750E-001 -2.56732782E+001 -2.39263311E+001 -2.17022520E+001 + 1.60000000E+002 1.00000000E+001 2.30772164E-001 1.73979798E-001 6.83652699E-001 9.96378916E-001 -2.85603545E+001 -1.61345264E+001 -1.58929434E+001 + 1.65000000E+002 1.00000000E+001 6.67558685E-002 -7.53394305E-002 1.62942538E+000 1.29399659E+000 -3.77213941E+001 -1.14141755E+001 -1.14040234E+001 + 1.70000000E+002 1.00000000E+001 -2.53655958E-001 -1.94053513E-001 2.64564468E+000 1.25432948E+000 -2.76925857E+001 -8.44729110E+000 -8.39592413E+000 + 1.75000000E+002 1.00000000E+001 -5.33707718E-001 -1.93908100E-001 3.38602552E+000 1.05197139E+000 -2.26939602E+001 -6.78452798E+000 -6.67454379E+000 + 1.80000000E+002 1.00000000E+001 -6.41387627E-001 -1.76169786E-001 3.65175429E+000 9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+001 -1.06084356E+001 6.44326189E+000 -3.94377986E+001 2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+001 -9.86551443E+000 6.45143666E+000 -3.69068768E+001 2.51309285E+001 3.65006008E+000 1.52180500E+001 1.55106492E+001 + 1.00000000E+001 1.50000000E+001 -7.88625551E+000 6.29856211E+000 -2.97206235E+001 2.66785679E+001 2.30173910E+000 1.42492672E+001 1.45181230E+001 + 1.50000000E+001 1.50000000E+001 -5.38047468E+000 5.63654734E+000 -1.93007096E+001 2.69378140E+001 5.48230633E-002 1.26281619E+001 1.28618904E+001 + 2.00000000E+001 1.50000000E+001 -3.26128049E+000 4.44357839E+000 -8.24563456E+000 2.41217239E+001 -2.95243782E+000 1.03496112E+001 1.05480469E+001 + 2.50000000E+001 1.50000000E+001 -2.08075513E+000 3.26630514E+000 3.97353595E-001 1.81980533E+001 -6.01808918E+000 7.42406173E+000 7.61633551E+000 + 3.00000000E+001 1.50000000E+001 -1.53061614E+000 2.77312233E+000 4.80312742E+000 1.11833852E+001 -7.76420179E+000 3.92816179E+000 4.21276519E+000 + 3.50000000E+001 1.50000000E+001 -7.26204327E-001 2.90687312E+000 5.57095073E+000 5.56599859E+000 -8.24705731E+000 1.46518782E-001 7.33655422E-001 + 4.00000000E+001 1.50000000E+001 6.96256480E-001 2.73007490E+000 4.86270521E+000 2.19653471E+000 -8.78135115E+000 -3.23453061E+000 -2.16644945E+000 + 4.50000000E+001 1.50000000E+001 1.93673593E+000 1.51459424E+000 4.09812987E+000 5.75972457E-002 -9.96458576E+000 -5.52593486E+000 -4.19098934E+000 + 5.00000000E+001 1.50000000E+001 1.95116445E+000 -1.80717087E-001 2.95978634E+000 -1.78371757E+000 -1.19355325E+001 -7.00774230E+000 -5.79697330E+000 + 5.50000000E+001 1.50000000E+001 8.75806585E-001 -1.10292337E+000 9.15189037E-001 -2.78366666E+000 -1.48042350E+001 -8.44041048E+000 -7.53781950E+000 + 6.00000000E+001 1.50000000E+001 -1.31466111E-001 -8.86801795E-001 -1.16510660E+000 -2.06855847E+000 -1.87275632E+001 -1.02684831E+001 -9.68957528E+000 + 6.50000000E+001 1.50000000E+001 -4.06969571E-001 -3.06458123E-001 -1.79708503E+000 -2.23630931E-001 -2.36364504E+001 -1.26203970E+001 -1.22896201E+001 + 7.00000000E+001 1.50000000E+001 -3.06805674E-001 1.04475659E-002 -7.99914944E-001 1.06091242E+000 -2.80362061E+001 -1.53100780E+001 -1.50842230E+001 + 7.50000000E+001 1.50000000E+001 -2.06319905E-001 1.94604187E-001 4.97444609E-001 8.78106515E-001 -2.87238570E+001 -1.76988020E+001 -1.73686846E+001 + 8.00000000E+001 1.50000000E+001 3.56089294E-002 3.57846753E-001 8.38763393E-001 -1.11168514E-001 -2.66617730E+001 -1.92300897E+001 -1.85088876E+001 + 8.50000000E+001 1.50000000E+001 3.88496247E-001 2.05021211E-001 2.32757039E-001 -6.96603743E-001 -2.49237659E+001 -2.04591350E+001 -1.91310495E+001 + 9.00000000E+001 1.50000000E+001 3.76252393E-001 -2.36368942E-001 -3.97133901E-001 -4.32141561E-001 -2.48242405E+001 -2.24070980E+001 -2.04393331E+001 + 9.50000000E+001 1.50000000E+001 -8.05770060E-002 -3.58129610E-001 -3.79293622E-001 1.18149668E-001 -2.64832363E+001 -2.57968041E+001 -2.31161724E+001 + 1.00000000E+002 1.50000000E+001 -3.16255784E-001 7.36840326E-002 4.30950602E-002 2.36101561E-001 -2.75481623E+001 -3.01741968E+001 -2.56553472E+001 + 1.05000000E+002 1.50000000E+001 6.17590562E-002 4.03803882E-001 2.12575983E-001 -6.98269416E-002 -2.55546786E+001 -3.07832211E+001 -2.44151886E+001 + 1.10000000E+002 1.50000000E+001 4.58686740E-001 1.00601108E-001 -7.13467710E-003 -2.49960012E-001 -2.43441432E+001 -2.98175594E+001 -2.32599518E+001 + 1.15000000E+002 1.50000000E+001 2.32776123E-001 -3.35554564E-001 -1.83865439E-001 -9.66162029E-002 -2.55570259E+001 -3.14295857E+001 -2.45579113E+001 + 1.20000000E+002 1.50000000E+001 -2.32865014E-001 -1.85409352E-001 -9.31589797E-002 6.67169426E-002 -2.83040354E+001 -3.65959438E+001 -2.77039103E+001 + 1.25000000E+002 1.50000000E+001 -1.75423164E-001 2.99457361E-001 3.00679557E-002 3.86743175E-002 -2.69705112E+001 -4.39767840E+001 -2.68848338E+001 + 1.30000000E+002 1.50000000E+001 2.93418823E-001 3.44990418E-001 3.11863096E-002 -5.13701361E-003 -2.46585753E+001 -4.77829616E+001 -2.46374749E+001 + 1.35000000E+002 1.50000000E+001 4.20465980E-001 -8.50668869E-002 5.63151128E-002 3.79204339E-002 -2.51296676E+001 -4.11421090E+001 -2.50222297E+001 + 1.40000000E+002 1.50000000E+001 1.54500712E-002 -2.99806134E-001 1.59051851E-001 2.71266898E-002 -2.82301784E+001 -3.36232066E+001 -2.71280990E+001 + 1.45000000E+002 1.50000000E+001 -3.44238343E-001 3.33783465E-002 1.69863476E-001 -4.96192519E-002 -2.70006814E+001 -3.28208898E+001 -2.59907564E+001 + 1.50000000E+002 1.50000000E+001 -2.16482249E-001 4.93981915E-001 6.73653346E-002 5.06114768E-002 -2.31413281E+001 -3.92661621E+001 -2.30366022E+001 + 1.55000000E+002 1.50000000E+001 1.75303319E-001 5.72748433E-001 1.42361306E-001 4.62443919E-001 -2.22303213E+001 -2.40841011E+001 -2.00487427E+001 + 1.60000000E+002 1.50000000E+001 3.43506130E-001 2.57409778E-001 6.71769288E-001 9.77050756E-001 -2.51242846E+001 -1.62989560E+001 -1.57641031E+001 + 1.65000000E+002 1.50000000E+001 9.75135080E-002 -1.12363442E-001 1.59918570E+000 1.26855383E+000 -3.43278241E+001 -1.15806642E+001 -1.15576541E+001 + 1.70000000E+002 1.50000000E+001 -3.80434045E-001 -2.86904096E-001 2.59556975E+000 1.22944850E+000 -2.42174063E+001 -8.61474353E+000 -8.49681784E+000 + 1.75000000E+002 1.50000000E+001 -7.97360399E-001 -2.84925614E-001 3.32146285E+000 1.03094190E+000 -1.92235201E+001 -6.95246383E+000 -6.70236384E+000 + 1.80000000E+002 1.50000000E+001 -9.57218310E-001 -2.57950067E-001 3.58195765E+000 9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+001 -1.40052979E+001 8.53901122E+000 -3.83631397E+001 2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+001 -1.30227809E+001 8.55056210E+000 -3.59001953E+001 2.44546278E+001 6.07227908E+000 1.49788733E+001 1.55043873E+001 + 1.00000000E+001 2.00000000E+001 -1.04065972E+001 8.34570501E+000 -2.89080562E+001 2.59592929E+001 4.72442551E+000 1.40099985E+001 1.44939531E+001 + 1.50000000E+001 2.00000000E+001 -7.09554756E+000 7.46565151E+000 -1.87701702E+001 2.62097851E+001 2.47794061E+000 1.23887858E+001 1.28108937E+001 + 2.00000000E+001 2.00000000E+001 -4.29682012E+000 5.88360007E+000 -8.01504209E+000 2.34677654E+001 -5.29245883E-001 1.01100811E+001 1.04696238E+001 + 2.50000000E+001 2.00000000E+001 -2.73936378E+000 4.32373770E+000 3.92303760E-001 1.77023980E+001 -3.59568941E+000 7.18426738E+000 7.53280157E+000 + 3.00000000E+001 2.00000000E+001 -2.01438392E+000 3.66965321E+000 4.67627254E+000 1.08764370E+001 -5.34215045E+000 3.68787042E+000 4.19949332E+000 + 3.50000000E+001 2.00000000E+001 -9.52191427E-001 3.84455562E+000 5.42063782E+000 5.41137002E+000 -5.82303149E+000 -9.46244536E-002 9.34508129E-001 + 4.00000000E+001 2.00000000E+001 9.26834601E-001 3.60844126E+000 4.72980093E+000 2.13462034E+000 -6.35465278E+000 -3.47652716E+000 -1.67110800E+000 + 4.50000000E+001 2.00000000E+001 2.56392266E+000 1.99982928E+000 3.98560618E+000 5.53265349E-002 -7.53651786E+000 -5.76778252E+000 -3.55242243E+000 + 5.00000000E+001 2.00000000E+001 2.57963166E+000 -2.40818898E-001 2.87871412E+000 -1.73517273E+000 -9.50966837E+000 -7.24856072E+000 -5.22329448E+000 + 5.50000000E+001 2.00000000E+001 1.15629502E+000 -1.45717194E+000 8.90063102E-001 -2.70797008E+000 -1.23872838E+001 -8.68010530E+000 -7.13929076E+000 + 6.00000000E+001 2.00000000E+001 -1.74188114E-001 -1.16848014E+000 -1.13381383E+000 -2.01238635E+000 -1.63306256E+001 -1.05069734E+001 -9.49776272E+000 + 6.50000000E+001 2.00000000E+001 -5.35441020E-001 -4.00259110E-001 -1.74879726E+000 -2.17346988E-001 -2.12763603E+001 -1.28571475E+001 -1.22732444E+001 + 7.00000000E+001 2.00000000E+001 -4.00385800E-001 1.72716926E-002 -7.78628485E-001 1.03262904E+000 -2.57208596E+001 -1.55446249E+001 -1.51464271E+001 + 7.50000000E+001 2.00000000E+001 -2.66756922E-001 2.58150380E-001 4.83705130E-001 8.54968550E-001 -2.63859873E+001 -1.79334955E+001 -1.73537649E+001 + 8.00000000E+001 2.00000000E+001 5.20543833E-002 4.72017439E-001 8.15943696E-001 -1.07313386E-001 -2.42468466E+001 -1.94708227E+001 -1.82226377E+001 + 8.50000000E+001 2.00000000E+001 5.17108317E-001 2.69606985E-001 2.26669797E-001 -6.76687209E-001 -2.24625819E+001 -2.07089001E+001 -1.84875188E+001 + 9.00000000E+001 2.00000000E+001 5.00405900E-001 -3.13349682E-001 -3.85629335E-001 -4.19346491E-001 -2.23553068E+001 -2.26655375E+001 -1.94973527E+001 + 9.50000000E+001 2.00000000E+001 -1.03055896E-001 -4.74255357E-001 -3.67653697E-001 1.15711951E-001 -2.40578850E+001 -2.60595320E+001 -2.19340961E+001 + 1.00000000E+002 2.00000000E+001 -4.14483741E-001 9.56588468E-002 4.36829641E-002 2.29667813E-001 -2.52029838E+001 -3.04021678E+001 -2.40567008E+001 + 1.05000000E+002 2.00000000E+001 8.41911667E-002 5.31311789E-001 2.08285576E-001 -6.90238108E-002 -2.31638163E+001 -3.09527995E+001 -2.24954149E+001 + 1.10000000E+002 2.00000000E+001 6.07717765E-001 1.31152895E-001 -6.56703431E-003 -2.44872627E-001 -2.19067652E+001 -2.99965798E+001 -2.12800230E+001 + 1.15000000E+002 2.00000000E+001 3.09402998E-001 -4.44132625E-001 -1.79727330E-001 -9.52053343E-002 -2.31100679E+001 -3.16120750E+001 -2.25364941E+001 + 1.20000000E+002 2.00000000E+001 -3.04647130E-001 -2.45798072E-001 -9.18166828E-002 6.49002281E-002 -2.59251663E+001 -3.67602313E+001 -2.55808571E+001 + 1.25000000E+002 2.00000000E+001 -2.28334202E-001 3.93291338E-001 2.87389113E-002 3.84333855E-002 -2.46226954E+001 -4.41554731E+001 -2.45746004E+001 + 1.30000000E+002 2.00000000E+001 3.89671161E-001 4.52112218E-001 3.05857470E-002 -4.28892776E-003 -2.22609696E+001 -4.79835567E+001 -2.22493566E+001 + 1.35000000E+002 2.00000000E+001 5.55502444E-001 -1.15552027E-001 5.51489874E-002 3.71786263E-002 -2.27008219E+001 -4.13206885E+001 -2.26415524E+001 + 1.40000000E+002 2.00000000E+001 1.97772507E-002 -3.97462483E-001 1.54853723E-001 2.66840107E-002 -2.57818446E+001 -3.38529950E+001 -2.51525896E+001 + 1.45000000E+002 2.00000000E+001 -4.54505505E-001 4.38620127E-002 1.65447670E-001 -4.75928054E-002 -2.45874645E+001 -3.30600171E+001 -2.40102357E+001 + 1.50000000E+002 2.00000000E+001 -2.84823295E-001 6.52072668E-001 6.62643000E-002 5.01010637E-002 -2.07342298E+001 -3.93893401E+001 -2.06754362E+001 + 1.55000000E+002 2.00000000E+001 2.32455802E-001 7.55370886E-001 1.39772120E-001 4.50429175E-001 -1.98223420E+001 -2.43067162E+001 -1.84994495E+001 + 1.60000000E+002 2.00000000E+001 4.53443796E-001 3.38843574E-001 6.54956657E-001 9.50452350E-001 -2.27212262E+001 -1.65323958E+001 -1.55964245E+001 + 1.65000000E+002 2.00000000E+001 1.27369100E-001 -1.48508621E-001 1.55692387E+000 1.23352156E+000 -3.19490489E+001 -1.18173903E+001 -1.17754608E+001 + 1.70000000E+002 2.00000000E+001 -5.04403812E-001 -3.77532401E-001 2.52581495E+000 1.19523073E+000 -2.17911060E+001 -8.85293227E+000 -8.63757740E+000 + 1.75000000E+002 2.00000000E+001 -1.05496859E+000 -3.73756706E-001 3.23163711E+000 1.00207732E+000 -1.68001999E+001 -7.19134835E+000 -6.74037056E+000 + 1.80000000E+002 2.00000000E+001 -1.26576398E+000 -3.37767193E-001 3.48490014E+000 9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.50000000E+001 -1.72955715E+001 1.05697735E+001 -3.69965143E+001 2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.50000000E+001 -1.60808345E+001 1.05845806E+001 -3.46203372E+001 2.35921775E+001 7.91085869E+000 1.46646567E+001 1.54966868E+001 + 1.00000000E+001 2.50000000E+001 -1.28474934E+001 1.03293275E+001 -2.78755375E+001 2.50424649E+001 6.56323798E+000 1.36956919E+001 1.44640355E+001 + 1.50000000E+001 2.50000000E+001 -8.75620392E+000 9.23791684E+000 -1.80967776E+001 2.52823848E+001 4.31691699E+000 1.20743758E+001 1.27472881E+001 + 2.00000000E+001 2.50000000E+001 -5.29913304E+000 7.27867392E+000 -7.72331271E+000 2.26353456E+001 1.30955392E+000 9.79551730E+000 1.03710793E+001 + 2.50000000E+001 2.50000000E+001 -3.37669546E+000 5.34786019E+000 3.84557696E-001 1.70720722E+001 -1.75772458E+000 6.86942082E+000 7.42770651E+000 + 3.00000000E+001 2.50000000E+001 -2.48272968E+000 4.53776806E+000 4.51415438E+000 1.04865600E+001 -3.50441108E+000 3.37245446E+000 4.18327743E+000 + 3.50000000E+001 2.50000000E+001 -1.17115861E+000 4.75276726E+000 5.22923496E+000 5.21522357E+000 -3.98356470E+000 -4.11080528E-001 1.17040336E+000 + 4.00000000E+001 2.50000000E+001 1.15023134E+000 4.45959980E+000 4.56080252E+000 2.05615445E+000 -4.51288276E+000 -3.79412566E+000 -1.12835191E+000 + 4.50000000E+001 2.50000000E+001 3.17200120E+000 2.47021592E+000 3.84253550E+000 5.25764480E-002 -5.69313725E+000 -6.08533621E+000 -2.87451098E+000 + 5.00000000E+001 2.50000000E+001 3.18924947E+000 -2.99221957E-001 2.77568913E+000 -1.67325841E+000 -7.66667532E+000 -7.56485904E+000 -4.60516886E+000 + 5.50000000E+001 2.50000000E+001 1.42844922E+000 -1.80108556E+000 8.58399601E-001 -2.61156846E+000 -1.05485696E+001 -8.99493249E+000 -6.69234400E+000 + 6.00000000E+001 2.50000000E+001 -2.15817491E-001 -1.44201298E+000 -1.09361272E+000 -1.94110790E+000 -1.45029181E+001 -1.08202867E+001 -9.27212594E+000 + 6.50000000E+001 2.50000000E+001 -6.60314220E-001 -4.91193654E-001 -1.68721777E+000 -2.09790136E-001 -1.94707855E+001 -1.31684531E+001 -1.22542563E+001 + 7.00000000E+001 2.50000000E+001 -4.91023807E-001 2.40863371E-002 -7.51752143E-001 9.96330874E-001 -2.39460184E+001 -1.58533719E+001 -1.52270101E+001 + 7.50000000E+001 2.50000000E+001 -3.25038550E-001 3.19556650E-001 4.66007301E-001 8.25601409E-001 -2.46027515E+001 -1.82419706E+001 -1.73388083E+001 + 8.00000000E+001 2.50000000E+001 6.78599760E-002 5.82207209E-001 7.87077827E-001 -1.02182104E-001 -2.24183520E+001 -1.97855655E+001 -1.78951345E+001 + 8.50000000E+001 2.50000000E+001 6.41195392E-001 3.32196847E-001 2.19430722E-001 -6.51449090E-001 -2.06060782E+001 -2.10341602E+001 -1.78045469E+001 + 9.00000000E+001 2.50000000E+001 6.20552019E-001 -3.87339008E-001 -3.70620258E-001 -4.03689635E-001 -2.04940251E+001 -2.30025965E+001 -1.85593491E+001 + 9.50000000E+001 2.50000000E+001 -1.24255019E-001 -5.86377055E-001 -3.53026543E-001 1.11786525E-001 -2.22242085E+001 -2.64073733E+001 -2.08201776E+001 + 1.00000000E+002 2.50000000E+001 -5.09066269E-001 1.16571608E-001 4.37377956E-002 2.20993108E-001 -2.34210599E+001 -3.07240653E+001 -2.26799205E+001 + 1.05000000E+002 2.50000000E+001 1.05777108E-001 6.54272747E-001 2.02095978E-001 -6.78968977E-002 -2.13512744E+001 -3.12029031E+001 -2.09236478E+001 + 1.10000000E+002 2.50000000E+001 7.51598505E-001 1.60845955E-001 -6.14985447E-003 -2.37950617E-001 -2.00643099E+001 -3.02458703E+001 -1.96665785E+001 + 1.15000000E+002 2.50000000E+001 3.83710165E-001 -5.48712289E-001 -1.74310978E-001 -9.31113976E-002 -2.12626388E+001 -3.18618463E+001 -2.08998948E+001 + 1.20000000E+002 2.50000000E+001 -3.73435358E-001 -3.04100422E-001 -8.98697597E-002 6.24872404E-002 -2.41249184E+001 -3.69934933E+001 -2.39061706E+001 + 1.25000000E+002 2.50000000E+001 -2.78973684E-001 4.83612535E-001 2.70343683E-002 3.77932389E-002 -2.28410359E+001 -4.44356065E+001 -2.28110561E+001 + 1.30000000E+002 2.50000000E+001 4.82820556E-001 5.55106560E-001 2.95424984E-002 -3.47134526E-003 -2.04444558E+001 -4.83100095E+001 -2.04373621E+001 + 1.35000000E+002 2.50000000E+001 6.85791573E-001 -1.45408820E-001 5.33168007E-002 3.61602655E-002 -2.08636800E+001 -4.15977685E+001 -2.08271585E+001 + 1.40000000E+002 2.50000000E+001 2.35914412E-002 -4.91941596E-001 1.49225129E-001 2.61467183E-002 -2.39302598E+001 -3.41703413E+001 -2.35376183E+001 + 1.45000000E+002 2.50000000E+001 -5.61382766E-001 5.41769387E-002 1.59583589E-001 -4.49863838E-002 -2.27530648E+001 -3.33866495E+001 -2.23930656E+001 + 1.50000000E+002 2.50000000E+001 -3.50995064E-001 8.05177454E-001 6.45946657E-002 4.94790221E-002 -1.89051011E+001 -3.95695043E+001 -1.88679915E+001 + 1.55000000E+002 2.50000000E+001 2.87726199E-001 9.32124412E-001 1.36174775E-001 4.35219455E-001 -1.79937697E+001 -2.45987184E+001 -1.71354181E+001 + 1.60000000E+002 2.50000000E+001 5.59722976E-001 4.17626823E-001 6.33268599E-001 9.16765961E-001 -2.08969619E+001 -1.68390784E+001 -1.54000775E+001 + 1.65000000E+002 2.50000000E+001 1.56065879E-001 -1.83515429E-001 1.50290579E+000 1.18916933E+000 -3.01416467E+001 -1.21284756E+001 -1.20603895E+001 + 1.70000000E+002 2.50000000E+001 -6.24639400E-001 -4.65252573E-001 2.43688283E+000 1.15194497E+000 -1.99492371E+001 -9.16592657E+000 -8.81765092E+000 + 1.75000000E+002 2.50000000E+001 -1.30457622E+000 -4.59726730E-001 3.11722419E+000 9.65600885E-001 -1.49607494E+001 -7.50522635E+000 -6.78766345E+000 + 1.80000000E+002 2.50000000E+001 -1.56467643E+000 -4.15013706E-001 3.36132044E+000 8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 3.00000000E+001 -2.04542153E+001 1.25200934E+001 -3.53483230E+001 2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 3.00000000E+001 -1.90164085E+001 1.25380086E+001 -3.30770606E+001 2.25501330E+001 9.37170576E+000 1.42697456E+001 1.54877717E+001 + 1.00000000E+001 3.00000000E+001 -1.51903744E+001 1.22343407E+001 -2.66309783E+001 2.39350254E+001 8.02420138E+000 1.33006932E+001 1.44291645E+001 + 1.50000000E+001 3.00000000E+001 -1.03497998E+001 1.09398767E+001 -1.72857669E+001 2.41626169E+001 5.77790929E+000 1.16792788E+001 1.26724884E+001 + 2.00000000E+001 3.00000000E+001 -6.26056227E+000 8.61820280E+000 -7.37284038E+000 2.16307702E+001 2.77022929E+000 9.40026915E+000 1.02541316E+001 + 2.50000000E+001 3.00000000E+001 -3.98785346E+000 6.33086983E+000 3.73973029E-001 1.63119183E+001 -2.97953994E-001 6.47387590E+000 7.30276755E+000 + 3.00000000E+001 3.00000000E+001 -2.93205963E+000 5.37080528E+000 4.31784997E+000 1.00168506E+001 -2.04485593E+000 2.97627368E+000 4.16451708E+000 + 3.50000000E+001 3.00000000E+001 -1.38147339E+000 5.62452008E+000 4.99813925E+000 4.97920632E+000 -2.52239800E+000 -8.08491009E-001 1.42885982E+000 + 4.00000000E+001 3.00000000E+001 1.36464208E+000 5.27704915E+000 4.35700914E+000 1.96183561E+000 -3.04955418E+000 -4.19300511E+000 -5.73455585E-001 + 4.50000000E+001 3.00000000E+001 3.75624876E+000 2.92226602E+000 3.67001191E+000 4.94028782E-002 -4.22800835E+000 -6.48437062E+000 -2.20097288E+000 + 5.00000000E+001 3.00000000E+001 3.77541990E+000 -3.55323188E-001 2.65145135E+000 -1.59841078E+000 -6.20090302E+000 -7.96253539E+000 -3.98270342E+000 + 5.50000000E+001 3.00000000E+001 1.69040067E+000 -2.13199551E+000 8.20395843E-001 -2.49509977E+000 -9.08451205E+000 -9.39091486E+000 -6.22471190E+000 + 6.00000000E+001 3.00000000E+001 -2.55851301E-001 -1.70550021E+000 -1.04477189E+000 -1.85513742E+000 -1.30448186E+001 -1.12145702E+001 -9.02368432E+000 + 6.50000000E+001 3.00000000E+001 -7.80692498E-001 -5.78859726E-001 -1.61268565E+000 -2.00953807E-001 -1.80262144E+001 -1.35605970E+001 -1.22327714E+001 + 7.00000000E+001 3.00000000E+001 -5.78296012E-001 3.07222411E-002 -7.19356391E-001 9.52226327E-001 -2.25232632E+001 -1.62427710E+001 -1.53244200E+001 + 7.50000000E+001 3.00000000E+001 -3.80918683E-001 3.78490031E-001 4.44506382E-001 7.90069593E-001 -2.31792510E+001 -1.86308674E+001 -1.73246918E+001 + 8.00000000E+001 3.00000000E+001 8.29349958E-002 6.87728497E-001 7.52260857E-001 -9.59304417E-002 -2.09674638E+001 -2.01810805E+001 -1.75461975E+001 + 8.50000000E+001 3.00000000E+001 7.59895234E-001 3.92286745E-001 2.10931385E-001 -6.21057512E-001 -1.91373751E+001 -2.14417577E+001 -1.71281872E+001 + 9.00000000E+001 3.00000000E+001 7.35708232E-001 -4.57853973E-001 -3.52288426E-001 -3.85180701E-001 -1.90227041E+001 -2.34252992E+001 -1.76781879E+001 + 9.50000000E+001 3.00000000E+001 -1.44136163E-001 -6.93569817E-001 -3.35502392E-001 1.06456930E-001 -2.07730764E+001 -2.68479715E+001 -1.98147812E+001 + 1.00000000E+002 3.00000000E+001 -5.99249356E-001 1.36418972E-001 4.32321339E-002 2.10116486E-001 -2.20069230E+001 -3.11492338E+001 -2.15076366E+001 + 1.05000000E+002 3.00000000E+001 1.26516021E-001 7.71769524E-001 1.93927268E-001 -6.64254377E-002 -1.99135872E+001 -3.15439337E+001 -1.96250236E+001 + 1.10000000E+002 3.00000000E+001 8.89310319E-001 1.89310860E-001 -5.97723705E-003 -2.29069898E-001 -1.86049675E+001 -3.05761906E+001 -1.83375305E+001 + 1.15000000E+002 3.00000000E+001 4.55042850E-001 -6.48617523E-001 -1.67570810E-001 -9.01384179E-002 -1.98005105E+001 -3.21908322E+001 -1.95569989E+001 + 1.20000000E+002 3.00000000E+001 -4.38829729E-001 -3.59853541E-001 -8.71225502E-002 5.95648895E-002 -2.26990568E+001 -3.73103121E+001 -2.25513995E+001 + 1.25000000E+002 3.00000000E+001 -3.26990568E-001 5.69823814E-001 2.51267763E-002 3.66628614E-002 -2.14274712E+001 -4.48216920E+001 -2.14076390E+001 + 1.30000000E+002 3.00000000E+001 5.72199149E-001 6.53247723E-001 2.80949952E-002 -2.82242516E-003 -1.90039616E+001 -4.87623174E+001 -1.89993726E+001 + 1.35000000E+002 3.00000000E+001 8.10391829E-001 -1.74401689E-001 5.08009850E-002 3.47993855E-002 -1.94079860E+001 -4.19901246E+001 -1.93840873E+001 + 1.40000000E+002 3.00000000E+001 2.68992407E-002 -5.82536015E-001 1.42193691E-001 2.54813574E-002 -2.24628011E+001 -3.45836268E+001 -2.22041554E+001 + 1.45000000E+002 3.00000000E+001 -6.64027904E-001 6.42249251E-002 1.52314392E-001 -4.18769048E-002 -2.12943419E+001 -3.38072185E+001 -2.10574245E+001 + 1.50000000E+002 3.00000000E+001 -4.14473691E-001 9.52099648E-001 6.23391029E-002 4.86694654E-002 -1.74511827E+001 -3.98163167E+001 -1.74260630E+001 + 1.55000000E+002 3.00000000E+001 3.40696356E-001 1.10162683E+000 1.31526549E-001 4.16862770E-001 -1.65411150E+001 -2.49664955E+001 -1.59579873E+001 + 1.60000000E+002 3.00000000E+001 6.61521379E-001 4.93131030E-001 6.06787610E-001 8.76217196E-001 -1.94483833E+001 -1.72249233E+001 -1.51855875E+001 + 1.65000000E+002 3.00000000E+001 1.83368489E-001 -2.17132450E-001 1.43747932E+000 1.13583346E+000 -2.87059791E+001 -1.25196865E+001 -1.24164148E+001 + 1.70000000E+002 3.00000000E+001 -7.40236056E-001 -5.49402633E-001 2.32941782E+000 1.09992808E+000 -1.84853772E+001 -9.55942414E+000 -9.03611213E+000 + 1.75000000E+002 3.00000000E+001 -1.54428604E+000 -5.42183673E-001 2.97908606E+000 9.21793494E-001 -1.34991324E+001 -7.89976407E+000 -6.84308565E+000 + 1.80000000E+002 3.00000000E+001 -1.85168074E+000 -4.89101714E-001 3.21215907E+000 8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+001 -2.34571902E+001 1.43751279E+001 -3.34311096E+001 2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+001 -2.18071720E+001 1.43959732E+001 -3.12821270E+001 2.13364163E+001 1.05644078E+001 1.37864216E+001 1.54779034E+001 + 1.00000000E+001 3.50000000E+001 -1.74174284E+001 1.40462434E+001 -2.51839021E+001 2.26453643E+001 9.21695463E+000 1.28172841E+001 1.43902882E+001 + 1.50000000E+001 3.50000000E+001 -1.18642270E+001 1.25585854E+001 -1.63434220E+001 2.28589431E+001 6.97061555E+000 1.11957774E+001 1.25882477E+001 + 2.00000000E+001 3.50000000E+001 -7.17379844E+000 9.89200724E+000 -6.96647504E+000 2.04616473E+001 3.96253297E+000 8.91662160E+000 1.01210068E+001 + 2.50000000E+001 3.50000000E+001 -4.56817234E+000 7.26529015E+000 3.60409546E-001 1.54277675E+001 8.93376166E-001 5.98992417E+000 7.16023383E+000 + 3.00000000E+001 3.50000000E+001 -3.35893184E+000 6.16239218E+000 4.08867556E+000 9.47103435E+000 -8.53783287E-001 2.49163413E+000 4.14368901E+000 + 3.50000000E+001 3.50000000E+001 -1.58154993E+000 6.45310430E+000 4.72905216E+000 4.70531349E+000 -1.32980439E+000 -1.29452537E+000 1.69817090E+000 + 4.00000000E+001 3.50000000E+001 1.56834237E+000 6.05450297E+000 4.12003297E+000 1.85252142E+000 -1.85488445E+000 -4.68082021E+000 -3.16434545E-002 + 4.50000000E+001 3.50000000E+001 4.31208347E+000 3.35257090E+000 3.46943116E+000 4.58480554E-002 -3.03142191E+000 -6.97258313E+000 -1.55918176E+000 + 5.00000000E+001 3.50000000E+001 4.33362859E+000 -4.08553328E-001 2.50694247E+000 -1.51125194E+000 -5.00304453E+000 -8.44938651E+000 -3.38267046E+000 + 5.50000000E+001 3.50000000E+001 1.94027311E+000 -2.44726608E+000 7.76241901E-001 -2.35945039E+000 -7.88678143E+000 -9.87596673E+000 -5.75816840E+000 + 6.00000000E+001 3.50000000E+001 -2.93800772E-001 -1.95701500E+000 -9.87745627E-001 -1.75500793E+000 -1.18498289E+001 -1.16978549E+001 -8.76287721E+000 + 6.50000000E+001 3.50000000E+001 -8.95642476E-001 -6.62835805E-001 -1.52570872E+000 -1.90738810E-001 -1.68389462E+001 -1.40417229E+001 -1.22086169E+001 + 7.00000000E+001 3.50000000E+001 -6.61761482E-001 3.69691553E-002 -6.81496651E-001 9.00694021E-001 -2.13509446E+001 -1.67210643E+001 -1.54359104E+001 + 7.50000000E+001 3.50000000E+001 -4.34214807E-001 4.34600929E-001 4.19512124E-001 7.48481620E-001 -2.20102525E+001 -1.91084594E+001 -1.73110758E+001 + 8.00000000E+001 3.50000000E+001 9.71427384E-002 7.87986097E-001 7.11685420E-001 -8.88411037E-002 -1.97826288E+001 -2.06655913E+001 -1.71914093E+001 + 8.50000000E+001 3.50000000E+001 8.72436432E-001 4.49472354E-001 2.00985217E-001 -5.85823346E-001 -1.79414742E+001 -2.19399016E+001 -1.64856217E+001 + 9.00000000E+001 3.50000000E+001 8.45031468E-001 -5.24461791E-001 -3.30979800E-001 -3.63818886E-001 -1.78259366E+001 -2.39419363E+001 -1.68757495E+001 + 9.50000000E+001 3.50000000E+001 -1.62660992E-001 -7.95051263E-001 -3.15233189E-001 9.99602745E-002 -1.95925198E+001 -2.73897623E+001 -1.89252956E+001 + 1.00000000E+002 3.50000000E+001 -6.84402084E-001 1.55164886E-001 4.22489132E-002 1.97200707E-001 -2.08546002E+001 -3.16854354E+001 -2.05099685E+001 + 1.05000000E+002 3.50000000E+001 1.46358139E-001 8.82987200E-001 1.83857905E-001 -6.46281828E-002 -1.87417096E+001 -3.19828966E+001 -1.85405373E+001 + 1.10000000E+002 3.50000000E+001 1.01991772E+000 2.16236361E-001 -6.10291657E-003 -2.18256530E-001 -1.74162502E+001 -3.09957677E+001 -1.72298362E+001 + 1.15000000E+002 3.50000000E+001 5.22805920E-001 -7.43238701E-001 -1.59561619E-001 -8.61917617E-002 -1.86101274E+001 -3.26080095E+001 -1.84405034E+001 + 1.20000000E+002 3.50000000E+001 -5.00490956E-001 -4.12654851E-001 -8.35032858E-002 5.62482776E-002 -2.15380054E+001 -3.77195550E+001 -2.14346222E+001 + 1.25000000E+002 3.50000000E+001 -3.72111482E-001 6.51383615E-001 2.31464214E-002 3.50538637E-002 -2.02752164E+001 -4.53122161E+001 -2.02616206E+001 + 1.30000000E+002 3.50000000E+001 6.57161700E-001 7.45909739E-001 2.63249604E-002 -2.39565692E-003 -1.78298702E+001 -4.93353341E+001 -1.78268006E+001 + 1.35000000E+002 3.50000000E+001 9.28446646E-001 -2.02267301E-001 4.76584407E-002 3.30581190E-002 -1.82219891E+001 -4.25097325E+001 -1.82058380E+001 + 1.40000000E+002 3.50000000E+001 2.97484623E-002 -6.68576332E-001 1.33849369E-001 2.46388031E-002 -2.12668973E+001 -3.51014584E+001 -2.10909029E+001 + 1.45000000E+002 3.50000000E+001 -7.61621910E-001 7.38918999E-002 1.43718030E-001 -3.83732979E-002 -2.01030307E+001 -3.43292066E+001 -1.99419339E+001 + 1.50000000E+002 3.50000000E+001 -4.74759234E-001 1.09168737E+000 5.94911038E-002 4.75746868E-002 -1.62642641E+001 -4.01423239E+001 -1.62465185E+001 + 1.55000000E+002 3.50000000E+001 3.90969539E-001 1.26256069E+000 1.25791333E-001 3.95415838E-001 -1.53557851E+001 -2.54187520E+001 -1.49475449E+001 + 1.60000000E+002 3.50000000E+001 7.58064019E-001 5.64760694E-001 5.75628871E-001 8.29075261E-001 -1.82669991E+001 -1.76979826E+001 -1.49628784E+001 + 1.65000000E+002 3.50000000E+001 2.09065987E-001 -2.49117213E-001 1.36107561E+000 1.07391464E+000 -2.75349652E+001 -1.29988781E+001 -1.28486869E+001 + 1.70000000E+002 3.50000000E+001 -8.50316260E-001 -6.29349218E-001 2.20420343E+000 1.03958195E+000 -1.72897475E+001 -1.00411957E+001 -9.29146796E+000 + 1.75000000E+002 3.50000000E+001 -1.77227388E+000 -6.20503061E-001 2.81826480E+000 8.70991392E-001 -1.23057101E+001 -8.38269427E+000 -6.90522929E+000 + 1.80000000E+002 3.50000000E+001 -2.12459265E+000 -5.59467363E-001 3.03855122E+000 7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 4.00000000E+001 -2.62816417E+001 1.61207590E+001 -3.12594653E+001 1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 4.00000000E+001 -2.44318995E+001 1.61443251E+001 -2.92492109E+001 1.99602577E+001 1.15541227E+001 1.32042198E+001 1.54673734E+001 + 1.00000000E+001 4.00000000E+001 -1.95117369E+001 1.57512322E+001 -2.35453685E+001 2.11832589E+001 1.02066819E+001 1.22349996E+001 1.43484924E+001 + 1.50000000E+001 4.00000000E+001 -1.32880054E+001 1.40817160E+001 -1.52770202E+001 2.13812226E+001 7.96025136E+000 1.06134067E+001 1.24966600E+001 + 2.00000000E+001 4.00000000E+001 -8.03193786E+000 1.10904017E+001 -6.50748941E+000 1.91368321E+001 4.95171501E+000 8.33411270E+000 9.97450060E+000 + 2.50000000E+001 4.00000000E+001 -5.11325974E+000 8.14403004E+000 3.43743552E-001 1.44263914E+001 1.88153214E+000 5.40711221E+000 7.00296563E+000 + 3.00000000E+001 4.00000000E+001 -3.76008912E+000 6.90650544E+000 3.82818487E+000 8.85342742E+000 1.34053517E-001 1.90810491E+000 4.12134165E+000 + 3.50000000E+001 4.00000000E+001 -1.76985635E+000 7.23216251E+000 4.42396309E+000 4.39586085E+000 -3.40543778E-001 -1.87956453E+000 1.96806540E+000 + 4.00000000E+001 4.00000000E+001 1.75973020E+000 6.78595760E+000 3.85177249E+000 1.72922004E+000 -8.63636622E-001 -5.26788189E+000 4.80440245E-001 + 4.50000000E+001 4.00000000E+001 4.83514474E+000 3.75781636E+000 3.24246853E+000 4.19576553E-002 -2.03821649E+000 -7.56026446E+000 -9.64722181E-001 + 5.00000000E+001 4.00000000E+001 4.85950230E+000 -4.58432772E-001 2.34331093E+000 -1.41255696E+000 -4.00819189E+000 -9.03576321E+000 -2.82148955E+000 + 5.50000000E+001 4.00000000E+001 2.17616219E+000 -2.74436835E+000 7.26160372E-001 -2.20573998E+000 -6.89103854E+000 -1.04605267E+001 -5.30864001E+000 + 6.00000000E+001 4.00000000E+001 -3.29264909E-001 -2.19461324E+000 -9.23133361E-001 -1.64140491E+000 -1.08546716E+001 -1.22806478E+001 -8.49909458E+000 + 6.50000000E+001 4.00000000E+001 -1.00422971E+000 -7.42614192E-001 -1.42697744E+000 -1.79014810E-001 -1.58473915E+001 -1.46223487E+001 -1.21815181E+001 + 7.00000000E+001 4.00000000E+001 -7.40913125E-001 4.26357381E-002 -6.38286197E-001 8.42267038E-001 -2.03688037E+001 -1.72986634E+001 -1.55576061E+001 + 7.50000000E+001 4.00000000E+001 -4.84737413E-001 4.87504303E-001 3.91435737E-001 7.01059981E-001 -2.10332867E+001 -1.96848829E+001 -1.72966619E+001 + 8.00000000E+001 4.00000000E+001 1.10307842E-001 8.82417059E-001 6.65685849E-001 -8.12345320E-002 -1.87976883E+001 -2.12489237E+001 -1.68423139E+001 + 8.50000000E+001 4.00000000E+001 9.78095984E-001 5.03433971E-001 1.89432588E-001 -5.46197835E-001 -1.69502315E+001 -2.25382245E+001 -1.58910938E+001 + 9.00000000E+001 4.00000000E+001 9.47806288E-001 -5.86745513E-001 -3.07155753E-001 -3.39682495E-001 -1.68351688E+001 -2.45619251E+001 -1.61578362E+001 + 9.50000000E+001 4.00000000E+001 -1.79756389E-001 -8.90170319E-001 -2.92486988E-001 9.26131876E-002 -1.86154651E+001 -2.80414183E+001 -1.81461015E+001 + 1.00000000E+002 4.00000000E+001 -7.64001644E-001 1.72704790E-001 4.09043243E-002 1.82552292E-001 -1.99001811E+001 -3.23380123E+001 -1.96592467E+001 + 1.05000000E+002 4.00000000E+001 1.65167872E-001 9.87191338E-001 1.72118817E-001 -6.24932105E-002 -1.77705790E+001 -3.25241341E+001 -1.76276038E+001 + 1.10000000E+002 4.00000000E+001 1.14253321E+000 2.41404229E-001 -6.48188158E-003 -2.05658399E-001 -1.64314519E+001 -3.15112660E+001 -1.62986676E+001 + 1.15000000E+002 4.00000000E+001 5.86483706E-001 -8.31981580E-001 -1.50391823E-001 -8.13149743E-002 -1.76242535E+001 -3.31202448E+001 -1.75034359E+001 + 1.20000000E+002 4.00000000E+001 -5.58086518E-001 -4.62153333E-001 -7.90705904E-002 5.26296256E-002 -2.05765313E+001 -3.82254615E+001 -2.05025390E+001 + 1.25000000E+002 4.00000000E+001 -4.14106674E-001 7.27771195E-001 2.11455782E-002 3.30612717E-002 -1.93204890E+001 -4.59027833E+001 -1.93109593E+001 + 1.30000000E+002 4.00000000E+001 7.37081098E-001 8.32527245E-001 2.43307134E-002 -2.14920065E-003 -1.68569516E+001 -5.00216550E+001 -1.68548565E+001 + 1.35000000E+002 4.00000000E+001 1.03916001E+000 -2.28732556E-001 4.40129928E-002 3.09428113E-002 -1.72393825E+001 -4.31626197E+001 -1.72282931E+001 + 1.40000000E+002 4.00000000E+001 3.22044917E-002 -7.49428745E-001 1.24345080E-001 2.35639405E-002 -2.02758878E+001 -3.57327066E+001 -2.01539907E+001 + 1.45000000E+002 4.00000000E+001 -8.53383674E-001 8.30615680E-002 1.33908046E-001 -3.46102431E-002 -1.91146711E+001 -3.49615312E+001 -1.90031111E+001 + 1.50000000E+002 4.00000000E+001 -5.31380027E-001 1.22285066E+000 5.60567536E-002 4.60814560E-002 -1.52798527E+001 -4.05638137E+001 -1.52670074E+001 + 1.55000000E+002 4.00000000E+001 4.38174446E-001 1.41368728E+000 1.18943844E-001 3.70948765E-001 -1.43730574E+001 -2.59672021E+001 -1.40821574E+001 + 1.60000000E+002 4.00000000E+001 8.48629779E-001 6.31959736E-001 5.39944614E-001 7.75653704E-001 -1.72880891E+001 -1.82691227E+001 -1.47406637E+001 + 1.65000000E+002 4.00000000E+001 2.32973842E-001 -2.79237088E-001 1.27421023E+000 1.00387538E+000 -2.65645449E+001 -1.35766754E+001 -1.33637117E+001 + 1.70000000E+002 4.00000000E+001 -9.54036167E-001 -7.04492010E-001 2.06215861E+000 9.71370026E-001 -1.62971281E+001 -1.06217672E+001 -9.58138877E+000 + 1.75000000E+002 4.00000000E+001 -1.98680240E+000 -6.94092610E-001 2.63597526E+000 8.13583380E-001 -1.13153047E+001 -8.96449865E+000 -6.97244708E+000 + 1.80000000E+002 4.00000000E+001 -2.38133512E+000 -6.25575127E-001 2.84181817E+000 7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 4.50000000E+001 -2.89060740E+001 1.77437013E+001 -2.88499176E+001 1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 4.50000000E+001 -2.68706319E+001 1.77697467E+001 -2.69937950E+001 1.84321255E+001 1.23826077E+001 1.25088652E+001 1.54564952E+001 + 1.00000000E+001 4.50000000E+001 -2.14574021E+001 1.73363071E+001 -2.17278871E+001 1.95598033E+001 1.10351549E+001 1.15395639E+001 1.43049783E+001 + 1.50000000E+001 4.50000000E+001 -1.46103684E+001 1.54976533E+001 -1.40947702E+001 1.97406431E+001 8.78860762E+000 9.91789148E+000 1.24001521E+001 + 2.00000000E+001 4.50000000E+001 -8.82853485E+000 1.22042670E+001 -5.99954152E+000 1.76663635E+001 5.77959221E+000 7.63846959E+000 9.81803594E+000 + 2.50000000E+001 4.50000000E+001 -5.61903369E+000 8.96043779E+000 3.23885060E-001 1.33154470E+001 2.70835705E+000 4.71117678E+000 6.83451218E+000 + 3.00000000E+001 4.50000000E+001 -4.13249134E+000 7.59752390E+000 3.53816939E+000 8.16888735E+000 9.60500521E-001 1.21145083E+000 4.09808798E+000 + 3.50000000E+001 4.50000000E+001 -1.94492891E+000 7.95575662E+000 4.08513050E+000 4.05344356E+000 4.87217136E-001 -2.57777472E+000 2.22997552E+000 + 4.00000000E+001 4.50000000E+001 1.93735363E+000 7.46576135E+000 3.55437230E+000 1.59306823E+000 -3.39992906E-002 -5.96824214E+000 9.52510171E-001 + 4.50000000E+001 4.50000000E+001 5.32136230E+000 4.13481570E+000 2.99103182E+000 3.77963414E-002 -1.20664791E+000 -8.26139288E+000 -4.25608841E-001 + 5.00000000E+001 4.50000000E+001 5.34887668E+000 -5.04600931E-001 2.16189417E+000 -1.30320075E+000 -3.17477575E+000 -9.73566848E+000 -2.30849031E+000 + 5.50000000E+001 4.50000000E+001 2.39614852E+000 -3.02094631E+000 6.70445403E-001 -2.03527048E+000 -6.05608535E+000 -1.11586556E+001 -4.88719751E+000 + 6.00000000E+001 4.50000000E+001 -3.61978822E-001 -2.41637089E+000 -8.51607941E-001 -1.51517320E+000 -1.00188532E+001 -1.29770200E+001 -8.24049325E+000 + 6.50000000E+001 4.50000000E+001 -1.10556973E+000 -8.17568248E-001 -1.31733329E+000 -1.65692058E-001 -1.50122755E+001 -1.53164252E+001 -1.21513884E+001 + 7.00000000E+001 4.50000000E+001 -8.15163319E-001 4.76153698E-002 -5.89949950E-001 7.77568213E-001 -1.95388216E+001 -1.79891584E+001 -1.56849342E+001 + 7.50000000E+001 4.50000000E+001 -5.32217320E-001 5.36795173E-001 3.60702289E-001 6.48163984E-001 -2.02090717E+001 -2.03731220E+001 -1.72800223E+001 + 8.00000000E+001 4.50000000E+001 1.22261715E-001 9.70431102E-001 6.14720066E-001 -7.33739749E-002 -1.79708198E+001 -2.19435210E+001 -1.65076245E+001 + 8.50000000E+001 4.50000000E+001 1.07616475E+000 5.53877515E-001 1.76220797E-001 -5.02712297E-001 -1.61203949E+001 -2.32487898E+001 -1.53513929E+001 + 9.00000000E+001 4.50000000E+001 1.04338767E+000 -6.44290806E-001 -2.81303818E-001 -3.12973184E-001 -1.60066972E+001 -2.52967125E+001 -1.55232109E+001 + 9.50000000E+001 4.50000000E+001 -1.95314960E-001 -9.78357815E-001 -2.67647533E-001 8.47167308E-002 -1.77988275E+001 -2.88125765E+001 -1.74678816E+001 + 1.00000000E+002 4.50000000E+001 -8.37594568E-001 1.88873786E-001 3.92694876E-002 1.66582377E-001 -1.91024301E+001 -3.31110492E+001 -1.89332168E+001 + 1.05000000E+002 4.50000000E+001 1.82731708E-001 1.08369933E+000 1.59031115E-001 -5.99298843E-002 -1.69585743E+001 -3.31721612E+001 -1.68559421E+001 + 1.10000000E+002 4.50000000E+001 1.25629054E+000 2.64686017E-001 -6.95593919E-003 -1.91476531E-001 -1.56080796E+001 -3.21304683E+001 -1.55124145E+001 + 1.15000000E+002 4.50000000E+001 6.45634021E-001 -9.14234474E-001 -1.40162901E-001 -7.56728898E-002 -1.68001473E+001 -3.37349557E+001 -1.67130626E+001 + 1.20000000E+002 4.50000000E+001 -6.11257180E-001 -5.08028704E-001 -7.39728351E-002 4.87401972E-002 -1.97732023E+001 -3.88311455E+001 -1.97195848E+001 + 1.25000000E+002 4.50000000E+001 -4.52754290E-001 7.98468392E-001 1.90929838E-002 3.08165135E-002 -1.85226109E+001 -4.65918939E+001 -1.85158420E+001 + 1.30000000E+002 4.50000000E+001 8.11354094E-001 9.12560050E-001 2.21963851E-002 -1.96779297E-003 -1.60435520E+001 -5.08188621E+001 -1.60421059E+001 + 1.35000000E+002 4.50000000E+001 1.14177703E+000 -2.53536989E-001 4.00271965E-002 2.85070495E-002 -1.64178499E+001 -4.39496444E+001 -1.64101900E+001 + 1.40000000E+002 4.50000000E+001 3.43262316E-002 -8.24496186E-001 1.13881085E-001 2.22091667E-002 -1.94472128E+001 -3.64873632E+001 -1.93621947E+001 + 1.45000000E+002 4.50000000E+001 -9.38585672E-001 9.16279484E-002 1.23028326E-001 -3.07338056E-002 -1.82878349E+001 -3.57155019E+001 -1.82100096E+001 + 1.50000000E+002 4.50000000E+001 -5.83897260E-001 1.34457774E+000 5.20561694E-002 4.40725595E-002 -1.44564959E+001 -4.11018903E+001 -1.44471035E+001 + 1.55000000E+002 4.50000000E+001 4.81968675E-001 1.55385932E+000 1.10974559E-001 3.43551689E-001 -1.35513407E+001 -2.66276260E+001 -1.33425672E+001 + 1.60000000E+002 4.50000000E+001 9.32556753E-001 6.94216932E-001 4.99928590E-001 7.16311524E-001 -1.64700276E+001 -1.89530863E+001 -1.45261630E+001 + 1.65000000E+002 4.50000000E+001 2.54934833E-001 -3.07270348E-001 1.17748355E+000 9.26237297E-001 -2.57534376E+001 -1.42675372E+001 -1.39695420E+001 + 1.70000000E+002 4.50000000E+001 -1.05059235E+000 -7.74267870E-001 1.90433298E+000 8.95813552E-001 -1.54657612E+001 -1.13154835E+001 -9.90234314E+000 + 1.75000000E+002 4.50000000E+001 -2.18623448E+000 -7.62396563E-001 2.43359643E+000 7.50007677E-001 -1.04861545E+001 -9.65947206E+000 -7.04287299E+000 + 1.80000000E+002 4.50000000E+001 -2.61995420E+000 -6.86921887E-001 2.62345716E+000 6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 5.00000000E+001 -3.13105137E+001 1.92316034E+001 -2.62208046E+001 1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 5.00000000E+001 -2.91048280E+001 1.92598542E+001 -2.45330519E+001 1.67636473E+001 1.30780835E+001 1.16805615E+001 1.54455954E+001 + 1.00000000E+001 5.00000000E+001 -2.32396657E+001 1.87893713E+001 -1.97453191E+001 1.77873265E+001 1.17306035E+001 1.07111798E+001 1.42610345E+001 + 1.50000000E+001 5.00000000E+001 -1.58213421E+001 1.67955840E+001 -1.28057431E+001 1.79496402E+001 9.48392657E+000 9.08943390E+000 1.23014579E+001 + 2.00000000E+001 5.00000000E+001 -9.55764749E+000 1.32251192E+001 -5.44663430E+000 1.60613913E+001 6.47442839E+000 6.80989697E+000 9.65570097E+000 + 2.50000000E+001 5.00000000E+001 -6.08175359E+000 9.70834912E+000 3.00796320E-001 1.21034141E+001 3.40214760E+000 3.88233238E+000 6.65917312E+000 + 3.00000000E+001 5.00000000E+001 -4.47334431E+000 8.23027099E+000 3.22066040E+000 7.42275854E+000 1.65387369E+000 3.81916272E-001 4.07459565E+000 + 3.50000000E+001 5.00000000E+001 -2.10539221E+000 8.61842150E+000 3.71506394E+000 3.68088671E+000 1.18178472E+000 -3.40883410E+000 2.47702941E+000 + 4.00000000E+001 5.00000000E+001 2.09991925E+000 8.08867733E+000 3.23017934E+000 1.44529827E+000 6.62309081E-001 -6.80144202E+000 1.37861988E+000 + 4.50000000E+001 5.00000000E+001 5.76700212E+000 4.48055706E+000 2.71720274E+000 3.34536396E-002 -5.08489443E-001 -9.09540786E+000 5.46686550E-002 + 5.00000000E+001 5.00000000E+001 5.79786032E+000 -5.46810962E-001 1.96418151E+000 -1.18410542E+000 -2.47469294E+000 -1.05685549E+001 -1.84849441E+000 + 5.50000000E+001 5.00000000E+001 2.59834190E+000 -3.27485542E+000 6.09483742E-001 -1.84945873E+000 -5.35407206E+000 -1.19898603E+001 -4.50123503E+000 + 6.00000000E+001 5.00000000E+001 -3.91817582E-001 -2.62043375E+000 -7.73842949E-001 -1.37729296E+000 -9.31501582E+000 -1.38064635E+001 -7.99397961E+000 + 6.50000000E+001 5.00000000E+001 -1.19886731E+000 -8.86965637E-001 -1.19770404E+000 -1.50771392E-001 -1.43071770E+001 -1.61432349E+001 -1.21185918E+001 + 7.00000000E+001 5.00000000E+001 -8.83862749E-001 5.19223710E-002 -5.36832683E-001 7.07224129E-001 -1.88358489E+001 -1.88112871E+001 -1.58132506E+001 + 7.50000000E+001 5.00000000E+001 -5.76266265E-001 5.82080022E-001 3.27668460E-001 5.90251607E-001 -1.95119293E+001 -2.11911108E+001 -1.72605646E+001 + 8.00000000E+001 5.00000000E+001 1.32894008E-001 1.05137725E+000 5.59293553E-001 -6.54091260E-002 -1.72744970E+001 -2.27667140E+001 -1.61944521E+001 + 8.50000000E+001 5.00000000E+001 1.16593272E+000 6.00468713E-001 1.61420306E-001 -4.55881383E-001 -1.54233190E+001 -2.40884953E+001 -1.48696034E+001 + 9.00000000E+001 5.00000000E+001 1.13113296E+000 -6.96693772E-001 -2.53840845E-001 -2.83987581E-001 -1.53114438E+001 -2.61623082E+001 -1.49683368E+001 + 9.50000000E+001 5.00000000E+001 -2.09223270E-001 -1.05906655E+000 -2.41145782E-001 7.64798312E-002 -1.71137705E+001 -2.97166765E+001 -1.68815862E+001 + 1.00000000E+002 5.00000000E+001 -9.04754203E-001 2.03489291E-001 3.73316395E-002 1.49712129E-001 -1.84335828E+001 -3.40113922E+001 -1.83149895E+001 + 1.05000000E+002 5.00000000E+001 1.98803064E-001 1.17186024E+000 1.44908338E-001 -5.67758001E-002 -1.62777644E+001 -3.39364217E+001 -1.62039363E+001 + 1.10000000E+002 5.00000000E+001 1.36034057E+000 2.86008582E-001 -7.29957137E-003 -1.75887291E-001 -1.49176999E+001 -3.28663441E+001 -1.48486027E+001 + 1.15000000E+002 5.00000000E+001 6.99865180E-001 -9.89367414E-001 -1.28925379E-001 -6.94833179E-002 -1.61092968E+001 -3.44642979E+001 -1.60463271E+001 + 1.20000000E+002 5.00000000E+001 -6.59614903E-001 -5.49970867E-001 -6.83759514E-002 4.45448862E-002 -1.91005348E+001 -3.95440793E+001 -1.90614977E+001 + 1.25000000E+002 5.00000000E+001 -4.87817821E-001 8.62962895E-001 1.69036662E-002 2.84316627E-002 -1.78544248E+001 -4.73879631E+001 -1.78495921E+001 + 1.30000000E+002 5.00000000E+001 8.79414790E-001 9.85474838E-001 1.99701815E-002 -1.71098499E-003 -1.53617200E+001 -5.17391036E+001 -1.53607200E+001 + 1.35000000E+002 5.00000000E+001 1.23557708E+000 -2.76451947E-001 3.58627895E-002 2.58381569E-002 -1.57289648E+001 -4.48698170E+001 -1.57236750E+001 + 1.40000000E+002 5.00000000E+001 3.61493115E-002 -8.93223713E-001 1.02676148E-001 2.05463240E-002 -1.87521947E+001 -3.73786017E+001 -1.86930139E+001 + 1.45000000E+002 5.00000000E+001 -1.01656750E+000 9.95030981E-002 1.11241449E-001 -2.68824011E-002 -1.75943718E+001 -3.66066815E+001 -1.75401915E+001 + 1.50000000E+002 5.00000000E+001 -6.31909675E-001 1.45594785E+000 4.75236793E-002 4.14420420E-002 -1.37660633E+001 -4.17841056E+001 -1.37592141E+001 + 1.55000000E+002 5.00000000E+001 5.22041067E-001 1.68203124E+000 1.01894696E-001 3.13342762E-001 -1.28624307E+001 -2.74215600E+001 -1.27130208E+001 + 1.60000000E+002 5.00000000E+001 1.00924606E+000 7.51070097E-001 4.55820152E-001 6.51454345E-001 -1.57845651E+001 -1.97702041E+001 -1.43250664E+001 + 1.65000000E+002 5.00000000E+001 2.74818800E-001 -3.33007436E-001 1.07158038E+000 8.41578059E-001 -2.50735977E+001 -1.50914682E+001 -1.46759137E+001 + 1.70000000E+002 5.00000000E+001 -1.13922878E+000 -8.38154655E-001 1.73190102E+000 8.13487425E-001 -1.47674570E+001 -1.21422215E+001 -1.02491241E+001 + 1.75000000E+002 5.00000000E+001 -2.36904587E+000 -8.24899728E-001 2.21266153E+000 6.80748453E-001 -9.79004154E+000 -1.04874348E+001 -7.11445474E+000 + 1.80000000E+002 5.00000000E+001 -2.83863384E+000 -7.43040757E-001 2.38513006E+000 6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 5.50000000E+001 -3.34766614E+001 2.05731414E+001 -2.33921355E+001 1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 5.50000000E+001 -3.11175043E+001 2.06032924E+001 -2.18857129E+001 1.49675227E+001 1.36603642E+001 1.06911152E+001 1.54350036E+001 + 1.00000000E+001 5.50000000E+001 -2.48450194E+001 2.00993259E+001 -1.76127703E+001 1.58793018E+001 1.23128473E+001 9.72165193E+000 1.42180022E+001 + 1.50000000E+001 5.50000000E+001 -1.69118158E+001 1.79655807E+001 -1.14197979E+001 1.60218077E+001 1.00660369E+001 8.09983811E+000 1.22035706E+001 + 2.00000000E+001 5.50000000E+001 -1.02138762E+001 1.41451740E+001 -4.85307383E+000 1.43340956E+001 7.05607096E+000 5.82020098E+000 9.49224976E+000 + 2.50000000E+001 5.50000000E+001 -6.49804371E+000 1.03821295E+001 2.74509496E-001 1.07995287E+001 3.98278732E+000 2.89239419E+000 6.48202214E+000 + 3.00000000E+001 5.50000000E+001 -4.78012311E+000 8.80004635E+000 2.87793099E+000 6.62081574E+000 2.23408634E+000 -6.08655586E-001 4.05157295E+000 + 3.50000000E+001 5.50000000E+001 -2.24998212E+000 9.21520274E+000 3.31650970E+000 3.28119478E+000 1.76306783E+000 -4.40082534E+000 2.70388504E+000 + 4.00000000E+001 5.50000000E+001 2.24628367E+000 8.64993396E+000 2.88170555E+000 1.28719992E+000 1.24517477E+000 -7.79542940E+000 1.75562281E+000 + 4.50000000E+001 5.50000000E+001 6.16868583E+000 4.79225634E+000 2.42318225E+000 2.90370728E-002 7.61015810E-002 -1.00901618E+001 4.75173871E-001 + 5.00000000E+001 5.50000000E+001 6.20288368E+000 -5.84894820E-001 1.75176971E+000 -1.05620550E+000 -1.88819021E+000 -1.15623129E+001 -1.44360680E+000 + 5.50000000E+001 5.50000000E+001 2.78094349E+000 -3.50416572E+000 5.43751897E-001 -1.64977844E+000 -4.76542321E+000 -1.29821277E+001 -4.15551874E+000 + 6.00000000E+001 5.50000000E+001 -4.18754176E-001 -2.80506188E+000 -6.90466971E-001 -1.22883876E+000 -8.72393366E+000 -1.47969888E+001 -7.76527401E+000 + 6.50000000E+001 5.50000000E+001 -1.28342321E+000 -9.50022462E-001 -1.06903796E+000 -1.34356018E-001 -1.37135858E+001 -1.71305824E+001 -1.20840521E+001 + 7.00000000E+001 5.50000000E+001 -9.46339542E-001 5.56758795E-002 -4.79365942E-001 6.31798560E-001 -1.82425609E+001 -1.97922689E+001 -1.59383552E+001 + 7.50000000E+001 5.50000000E+001 -6.16393041E-001 6.23001087E-001 2.92581722E-001 5.27807956E-001 -1.89244948E+001 -2.21652828E+001 -1.72390605E+001 + 8.00000000E+001 5.50000000E+001 1.42176826E-001 1.12455347E+000 4.99869845E-001 -5.73768221E-002 -1.66900343E+001 -2.37445225E+001 -1.59089529E+001 + 8.50000000E+001 5.50000000E+001 1.24670042E+000 6.42800664E-001 1.45181683E-001 -4.06117812E-001 -1.48394597E+001 -2.50831581E+001 -1.44471308E+001 + 9.00000000E+001 5.50000000E+001 1.21036391E+000 -7.43583428E-001 -2.25048611E-001 -2.53039215E-001 -1.47295168E+001 -2.71837922E+001 -1.44894683E+001 + 9.50000000E+001 5.50000000E+001 -2.21400025E-001 -1.13173590E+000 -2.13357769E-001 6.79889772E-002 -1.65404996E+001 -3.07763139E+001 -1.63797534E+001 + 1.00000000E+002 5.50000000E+001 -9.65059154E-001 2.16404067E-001 3.50080390E-002 1.32264135E-001 -1.78743641E+001 -3.50555960E+001 -1.77920378E+001 + 1.05000000E+002 5.50000000E+001 2.13159314E-001 1.25105732E+000 1.29965492E-001 -5.28542248E-002 -1.57086805E+001 -3.48372414E+001 -1.56559225E+001 + 1.10000000E+002 5.50000000E+001 1.45387568E+000 3.05310261E-001 -7.30483613E-003 -1.58989026E-001 -1.43405449E+001 -3.37420058E+001 -1.42909819E+001 + 1.15000000E+002 5.50000000E+001 7.48813536E-001 -1.05676359E+000 -1.16668932E-001 -6.29278020E-002 -1.55319568E+001 -3.53304068E+001 -1.54867010E+001 + 1.20000000E+002 5.50000000E+001 -7.02769267E-001 -5.87672762E-001 -6.23895644E-002 3.99698938E-002 -1.85396250E+001 -4.03827439E+001 -1.85113074E+001 + 1.25000000E+002 5.50000000E+001 -5.19046253E-001 9.20768272E-001 1.44916124E-002 2.59558694E-002 -1.72971074E+001 -4.83153897E+001 -1.72936736E+001 + 1.30000000E+002 5.50000000E+001 9.40749614E-001 1.05075014E+000 1.76592761E-002 -1.27037954E-003 -1.47919720E+001 -5.28166317E+001 -1.47912877E+001 + 1.35000000E+002 5.50000000E+001 1.31988170E+000 -2.97289824E-001 3.16428958E-002 2.30310136E-002 -1.51528834E+001 -4.59267686E+001 -1.51492508E+001 + 1.40000000E+002 5.50000000E+001 3.76814291E-002 -9.55106547E-001 9.09333737E-002 1.85727412E-002 -1.81707160E+001 -3.84265465E+001 -1.81299627E+001 + 1.45000000E+002 5.50000000E+001 -1.08674440E+000 1.06618366E-001 9.87126925E-002 -2.31681244E-002 -1.70143570E+001 -3.76581713E+001 -1.69770717E+001 + 1.50000000E+002 5.50000000E+001 -6.75057816E-001 1.55613867E+000 4.25061785E-002 3.81112473E-002 -1.31886999E+001 -4.26473404E+001 -1.31837832E+001 + 1.55000000E+002 5.50000000E+001 5.58112723E-001 1.79726627E+000 9.17403112E-002 2.80476242E-001 -1.22864434E+001 -2.83791629E+001 -1.21809496E+001 + 1.60000000E+002 5.50000000E+001 1.07816402E+000 8.02108817E-001 4.07907352E-001 5.81535288E-001 -1.52117715E+001 -2.07492781E+001 -1.41416579E+001 + 1.65000000E+002 5.50000000E+001 2.92521296E-001 -3.56252475E-001 9.57268343E-001 7.50528106E-001 -2.45052337E+001 -1.60769020E+001 -1.54941450E+001 + 1.70000000E+002 5.50000000E+001 -1.21924391E+000 -8.95674741E-001 1.54615495E+000 7.25015815E-001 -1.41824495E+001 -1.31302698E+001 -1.06142729E+001 + 1.75000000E+002 5.50000000E+001 -2.53383722E+000 -8.81131164E-001 1.97484680E+000 6.06332055E-001 -9.20715900E+000 -1.14766105E+001 -7.18500064E+000 + 1.80000000E+002 5.50000000E+001 -3.03570976E+000 -7.93504638E-001 2.12865068E+000 5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 6.00000000E+001 -3.53880315E+001 2.17581053E+001 -2.03854380E+001 1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 6.00000000E+001 -3.28933642E+001 2.17898220E+001 -1.90719251E+001 1.30574261E+001 1.41437369E+001 9.49881399E+000 1.54250426E+001 + 1.00000000E+001 6.00000000E+001 -2.62613043E+001 2.12561565E+001 -1.53464748E+001 1.38502459E+001 1.27961772E+001 8.52926505E+000 1.41772350E+001 + 1.50000000E+001 6.00000000E+001 -1.78736056E+001 1.89986812E+001 -9.94750244E+000 1.39717981E+001 1.05492361E+001 6.90738747E+000 1.21096662E+001 + 2.00000000E+001 6.00000000E+001 -1.07923954E+001 1.49574067E+001 -4.22342773E+000 1.24975980E+001 7.53883372E+000 4.62766676E+000 9.33304270E+000 + 2.50000000E+001 6.00000000E+001 -6.86490905E+000 1.09767112E+001 2.45141052E-001 9.41371224E+000 4.46462611E+000 1.69965545E+000 6.30886449E+000 + 3.00000000E+001 6.00000000E+001 -5.05058823E+000 9.30264824E+000 2.51249555E+000 5.76920991E+000 2.71552270E+000 -1.80194810E+000 4.02974884E+000 + 3.50000000E+001 6.00000000E+001 -2.37756692E+000 9.74167975E+000 2.89243970E+000 2.85750683E+000 2.24544976E+000 -5.59537054E+000 2.90649454E+000 + 4.00000000E+001 6.00000000E+001 2.37543520E+000 9.14526032E+000 2.51160269E+000 1.12008468E+000 1.72896083E+000 -8.99171656E+000 2.08209538E+000 + 4.50000000E+001 6.00000000E+001 6.52338991E+000 5.06740577E+000 2.11125249E+000 2.46551029E-002 5.61451494E-001 -1.12871113E+001 8.36312116E-001 + 5.00000000E+001 6.00000000E+001 6.56072920E+000 -6.18713888E-001 1.52632535E+000 -9.20439128E-001 -1.40101125E+000 -1.27585026E+001 -1.09438205E+000 + 5.50000000E+001 6.00000000E+001 2.94230914E+000 -3.70713801E+000 4.73795374E-001 -1.43773103E+000 -4.27601607E+000 -1.41772087E+001 -3.85301326E+000 + 6.00000000E+001 6.00000000E+001 -4.42789507E-001 -2.96865891E+000 -6.02058069E-001 -1.07094455E+000 -8.23174195E+000 -1.59904746E+001 -7.55901246E+000 + 6.50000000E+001 6.00000000E+001 -1.35860863E+000 -1.00597871E+000 -9.32270508E-001 -1.16629954E-001 -1.32181726E+001 -1.83202240E+001 -1.20491623E+001 + 7.00000000E+001 6.00000000E+001 -1.00194323E+000 5.90371396E-002 -4.18023101E-001 5.51776616E-001 -1.77465926E+001 -2.09733321E+001 -1.60566347E+001 + 7.50000000E+001 6.00000000E+001 -6.52069822E-001 6.59242007E-001 2.55594027E-001 4.61290338E-001 -1.84345574E+001 -2.33362303E+001 -1.72174196E+001 + 8.00000000E+001 6.00000000E+001 1.50149116E-001 1.18925681E+000 4.36823992E-001 -4.92440234E-002 -1.62043125E+001 -2.49175328E+001 -1.56563201E+001 + 8.50000000E+001 6.00000000E+001 1.31781322E+000 6.80412642E-001 1.27673863E-001 -3.53705155E-001 -1.43550836E+001 -2.62737687E+001 -1.40844910E+001 + 9.00000000E+001 6.00000000E+001 1.28038056E+000 -7.84648803E-001 -1.95068466E-001 -2.20387189E-001 -1.42469488E+001 -2.84022139E+001 -1.40832494E+001 + 9.50000000E+001 6.00000000E+001 -2.31825290E-001 -1.19580056E+000 -1.84530167E-001 5.92278378E-002 -1.60650989E+001 -3.20313299E+001 -1.59565260E+001 + 1.00000000E+002 6.00000000E+001 -1.01810479E+000 2.27544106E-001 3.21938648E-002 1.14396389E-001 -1.74109660E+001 -3.62792439E+001 -1.73549705E+001 + 1.05000000E+002 6.00000000E+001 2.25643860E-001 1.32073453E+000 1.14277098E-001 -4.80447198E-002 -1.52372459E+001 -3.59124606E+001 -1.52002281E+001 + 1.10000000E+002 6.00000000E+001 1.53617406E+000 3.22510304E-001 -6.85883247E-003 -1.40793461E-001 -1.38623756E+001 -3.47965628E+001 -1.38274921E+001 + 1.15000000E+002 6.00000000E+001 7.92135326E-001 -1.11586891E+000 -1.03344654E-001 -5.60846610E-002 -1.50539599E+001 -3.63716650E+001 -1.50220139E+001 + 1.20000000E+002 6.00000000E+001 -7.40368330E-001 -6.20841457E-001 -5.60221322E-002 3.49459473E-002 -1.80769480E+001 -4.13839424E+001 -1.80567144E+001 + 1.25000000E+002 6.00000000E+001 -5.46195798E-001 9.71450392E-001 1.18212831E-002 2.33584221E-002 -1.68371312E+001 -4.94193282E+001 -1.68347354E+001 + 1.30000000E+002 6.00000000E+001 9.94907812E-001 1.10790098E+000 1.52407114E-002 -6.14508805E-004 -1.43202896E+001 -5.41113475E+001 -1.43198339E+001 + 1.35000000E+002 6.00000000E+001 1.39407327E+000 -3.15900886E-001 2.74279586E-002 2.01588571E-002 -1.46753266E+001 -4.71389002E+001 -1.46728646E+001 + 1.40000000E+002 6.00000000E+001 3.89100796E-002 -1.00969803E+000 7.88108659E-002 1.63097766E-002 -1.76882321E+001 -3.96646598E+001 -1.76607679E+001 + 1.45000000E+002 6.00000000E+001 -1.14860933E+000 1.12919929E-001 8.55935514E-002 -1.96633249E-002 -1.65332877E+001 -3.89063286E+001 -1.65082136E+001 + 1.50000000E+002 6.00000000E+001 -7.13027052E-001 1.64442839E+000 3.70597737E-002 3.40422283E-002 -1.27100049E+001 -4.37433552E+001 -1.27065829E+001 + 1.55000000E+002 6.00000000E+001 5.89936893E-001 1.89874012E+000 8.05747434E-002 2.45149234E-001 -1.18089757E+001 -2.95443884E+001 -1.17364301E+001 + 1.60000000E+002 6.00000000E+001 1.13884281E+000 8.46975697E-001 3.56528445E-001 5.07055055E-001 -1.47371991E+001 -2.19327371E+001 -1.39790226E+001 + 1.65000000E+002 6.00000000E+001 3.07961287E-001 -3.76825004E-001 8.35394774E-001 6.53766879E-001 -2.40340071E+001 -1.72658409E+001 -1.64363125E+001 + 1.70000000E+002 6.00000000E+001 -1.28999777E+000 -9.46398219E-001 1.34849629E+000 6.31067503E-001 -1.36965080E+001 -1.43214604E+001 -1.09874526E+001 + 1.75000000E+002 6.00000000E+001 -2.67934519E+000 -9.30667519E-001 1.72195910E+000 5.27322975E-001 -8.72322887E+000 -1.26687527E+001 -7.25224260E+000 + 1.80000000E+002 6.00000000E+001 -3.20968210E+000 -8.37929469E-001 1.85597098E+000 4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 6.50000000E+001 -3.70300774E+001 2.27774769E+001 -1.72235951E+001 1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 6.50000000E+001 -3.44189127E+001 2.28103985E+001 -1.61130982E+001 1.10479036E+001 1.45386753E+001 8.03857929E+000 1.54160181E+001 + 1.00000000E+001 6.50000000E+001 -2.74778008E+001 2.22510131E+001 -1.29636707E+001 1.17156098E+001 1.31910695E+001 7.06893561E+000 1.41400519E+001 + 1.50000000E+001 6.50000000E+001 -1.86995094E+001 1.98869614E+001 -8.40005109E+000 1.18152139E+001 1.09440052E+001 5.44699647E+000 1.20229955E+001 + 2.00000000E+001 6.50000000E+001 -1.12889783E+001 1.56556079E+001 -3.56248511E+000 1.05658655E+001 7.93321153E+000 3.16721094E+000 9.18390247E+000 + 2.50000000E+001 6.50000000E+001 -7.17974441E+000 1.14876266E+001 2.12900665E-001 7.95649812E+000 4.85819201E+000 2.39040723E-001 6.14609674E+000 + 3.00000000E+001 6.50000000E+001 -5.28279418E+000 9.73438980E+000 2.12710404E+000 4.87441816E+000 3.10874422E+000 -3.26301824E+000 4.00984672E+000 + 3.50000000E+001 6.50000000E+001 -2.48716302E+000 1.01939786E+001 2.44604182E+000 2.41306193E+000 2.63949162E+000 -7.05748345E+000 3.08185668E+000 + 4.00000000E+001 6.50000000E+001 2.48647541E+000 9.57090832E+000 2.12265006E+000 9.45258784E-001 2.12420858E+000 -1.04552470E+001 2.35761676E+000 + 4.50000000E+001 6.50000000E+001 6.82843655E+000 5.30381064E+000 1.78375964E+000 2.03958980E-002 9.58067028E-001 -1.27512125E+001 1.13910636E+000 + 5.00000000E+001 6.50000000E+001 6.86854746E+000 -6.48113979E-001 1.28956258E+000 -7.77762047E-001 -1.00271156E+000 -1.42222959E+001 -8.00559087E-001 + 5.50000000E+001 6.50000000E+001 3.08099993E+000 -3.88219330E+000 4.00201305E-001 -1.21484985E+000 -3.87551869E+000 -1.56406176E+001 -3.59549298E+000 + 6.00000000E+001 6.50000000E+001 -4.63883488E-001 -3.10978813E+000 -5.09173180E-001 -9.04789995E-001 -7.82831406E+000 -1.74527132E+001 -7.37886727E+000 + 6.50000000E+001 6.50000000E+001 -1.42382746E+000 -1.05416951E+000 -7.88337542E-001 -9.78210841E-002 -1.28112054E+001 -1.97779034E+001 -1.20155508E+001 + 7.00000000E+001 6.50000000E+001 -1.05008219E+000 6.21319921E-002 -3.53292938E-001 4.67603571E-001 -1.73388633E+001 -2.24196315E+001 -1.61648210E+001 + 7.50000000E+001 6.50000000E+001 -6.82817301E-001 6.90519580E-001 2.16815803E-001 3.91125773E-001 -1.80331287E+001 -2.47684576E+001 -1.71978729E+001 + 8.00000000E+001 6.50000000E+001 1.56874885E-001 1.24485135E+000 3.70468118E-001 -4.09599305E-002 -1.58077297E+001 -2.63507235E+001 -1.54404543E+001 + 8.50000000E+001 6.50000000E+001 1.37870390E+000 7.12846430E-001 1.09048313E-001 -2.98842747E-001 -1.39601850E+001 -2.77267653E+001 -1.37814705E+001 + 9.00000000E+001 6.50000000E+001 1.34051642E+000 -8.19658809E-001 -1.63952450E-001 -1.86219329E-001 -1.38536042E+001 -2.98856588E+001 -1.37466446E+001 + 9.50000000E+001 6.50000000E+001 -2.40547668E-001 -1.25073452E+000 -1.54778307E-001 5.01279335E-002 -1.56774630E+001 -3.35511097E+001 -1.56071719E+001 + 1.00000000E+002 6.50000000E+001 -1.06353707E+000 2.36916344E-001 2.88103138E-002 9.61136086E-002 -1.70331201E+001 -3.77491353E+001 -1.69964470E+001 + 1.05000000E+002 6.50000000E+001 2.36178490E-001 1.38043171E+000 9.78017543E-002 -4.23243130E-002 -1.48529073E+001 -3.72260502E+001 -1.48278338E+001 + 1.10000000E+002 6.50000000E+001 1.60664307E+000 3.37501263E-001 -5.97249886E-003 -1.21260061E-001 -1.34725824E+001 -3.60936285E+001 -1.34488963E+001 + 1.15000000E+002 6.50000000E+001 8.29513683E-001 -1.16623771E+000 -8.89031414E-002 -4.89152063E-002 -1.46647763E+001 -3.76516251E+001 -1.46429987E+001 + 1.20000000E+002 6.50000000E+001 -7.72136345E-001 -6.49220165E-001 -4.91818405E-002 2.94439950E-002 -1.77023888E+001 -4.26120927E+001 -1.76883893E+001 + 1.25000000E+002 6.50000000E+001 -5.69061721E-001 1.01465025E+000 8.93554634E-003 2.05416134E-002 -1.64644173E+001 -5.07731842E+001 -1.64628073E+001 + 1.30000000E+002 6.50000000E+001 1.04150520E+000 1.15651210E+000 1.26814457E-002 1.94649659E-004 -1.39363114E+001 -5.57141086E+001 -1.39360230E+001 + 1.35000000E+002 6.50000000E+001 1.45761758E+000 -3.32160599E-001 2.32119929E-002 1.72519130E-002 -1.42857712E+001 -4.85542363E+001 -1.42841462E+001 + 1.40000000E+002 6.50000000E+001 3.98184655E-002 -1.05661502E+000 6.64057172E-002 1.37951993E-002 -1.72940081E+001 -4.11509034E+001 -1.72761760E+001 + 1.45000000E+002 6.50000000E+001 -1.20172929E+000 1.18361255E-001 7.20091297E-002 -1.63955731E-002 -1.61404472E+001 -4.04112525E+001 -1.61242331E+001 + 1.50000000E+002 6.50000000E+001 -7.45548837E-001 1.72019334E+000 3.12454988E-002 2.92456153E-002 -1.23193671E+001 -4.51502310E+001 -1.23171047E+001 + 1.55000000E+002 6.50000000E+001 6.17298238E-001 1.98574165E+000 6.84889240E-002 2.07605617E-001 -1.14194221E+001 -3.09850617E+001 -1.13716877E+001 + 1.60000000E+002 6.50000000E+001 1.19087986E+000 8.85366271E-001 3.02071346E-001 4.28560771E-001 -1.43501992E+001 -2.33865790E+001 -1.38392825E+001 + 1.65000000E+002 6.50000000E+001 3.21078144E-001 -3.94561896E-001 7.06881900E-001 5.52018582E-001 -2.36493633E+001 -1.87237511E+001 -1.75124521E+001 + 1.70000000E+002 6.50000000E+001 -1.35091886E+000 -9.89945792E-001 1.14042603E+000 5.32350996E-001 -1.32992179E+001 -1.57810399E+001 -1.13549071E+001 + 1.75000000E+002 6.50000000E+001 -2.80445264E+000 -9.73136000E-001 1.45592244E+000 4.44319590E-001 -8.32778760E+000 -1.41290029E+001 -7.31391500E+000 + 1.80000000E+002 6.50000000E+001 -3.35922682E+000 -8.75977151E-001 1.56916623E+000 3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 7.00000000E+001 -3.83903020E+001 2.36234982E+001 -1.39306702E+001 8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 7.00000000E+001 -3.56825586E+001 2.36572423E+001 -1.30317414E+001 8.95426153E+000 1.48529047E+001 6.20098140E+000 1.54082089E+001 + 1.00000000E+001 7.00000000E+001 -2.84853063E+001 2.30762805E+001 -1.04824692E+001 9.49166160E+000 1.35052511E+001 5.23122404E+000 1.41076881E+001 + 1.50000000E+001 7.00000000E+001 -1.93833546E+001 2.06235999E+001 -6.78917941E+000 9.56848978E+000 1.12580747E+001 3.60922216E+000 1.19467439E+001 + 2.00000000E+001 7.00000000E+001 -1.17000170E+001 1.62344339E+001 -2.87521900E+000 8.55360681E+000 8.24694608E+000 1.32939463E+000 9.05086685E+000 + 2.50000000E+001 7.00000000E+001 -7.44033819E+000 1.19110379E+001 1.78093165E-001 6.43895526E+000 5.17125484E+000 -1.59887774E+000 6.00044145E+000 + 3.00000000E+001 7.00000000E+001 -5.47509187E+000 1.00921125E+001 1.72472838E+000 3.94319815E+000 3.42154877E+000 -5.10127658E+000 3.99255235E+000 + 3.50000000E+001 7.00000000E+001 -2.57794275E+000 1.05687802E+001 1.98070816E+000 1.95117597E+000 2.95298865E+000 -8.89654772E+000 3.22778957E+000 + 4.00000000E+001 7.00000000E+001 2.57860855E+000 9.92366603E+000 1.71775099E+000 7.64007886E-001 2.43869230E+000 -1.22953789E+001 2.58229977E+000 + 4.50000000E+001 7.00000000E+001 7.08148942E+000 5.49961125E+000 1.44311429E+000 1.63083526E-002 1.27368705E+000 -1.45919378E+001 1.38477213E+000 + 5.00000000E+001 7.00000000E+001 7.12386814E+000 -6.72899786E-001 1.04323666E+000 -6.29173990E-001 -6.85613011E-001 -1.60635750E+001 -5.61513982E-001 + 5.50000000E+001 7.00000000E+001 3.19581286E+000 -4.02789679E+000 3.23573380E-001 -9.82726661E-001 -3.55635695E+000 -1.74828374E+001 -3.38397621E+000 + 6.00000000E+001 7.00000000E+001 -4.81913730E-001 -3.22718404E+000 -4.12394362E-001 -7.31606935E-001 -7.50625170E+000 -1.92946584E+001 -7.22767776E+000 + 6.50000000E+001 7.00000000E+001 -1.47849288E+000 -1.09407133E+000 -6.38221016E-001 -7.81657344E-002 -1.24855727E+001 -2.16144246E+001 -1.19848225E+001 + 7.00000000E+001 7.00000000E+001 -1.09024918E+000 6.49969386E-002 -2.85680833E-001 3.79754029E-001 -1.70125835E+001 -2.42407549E+001 -1.62596180E+001 + 7.50000000E+001 7.00000000E+001 -7.08269612E-001 7.16575056E-001 1.76380376E-001 3.17757025E-001 -1.77133090E+001 -2.65701507E+001 -1.71820958E+001 + 8.00000000E+001 7.00000000E+001 1.62402291E-001 1.29082335E+000 3.01130283E-001 -3.24903250E-002 -1.54929651E+001 -2.81531531E+001 -1.52637443E+001 + 8.50000000E+001 7.00000000E+001 1.42892375E+000 7.39707296E-001 8.94450810E-002 -2.41734311E-001 -1.36472033E+001 -2.95544788E+001 -1.35371652E+001 + 9.00000000E+001 7.00000000E+001 1.39020154E+000 -8.48464494E-001 -1.31741236E-001 -1.50694049E-001 -1.35418674E+001 -3.17509152E+001 -1.34767615E+001 + 9.50000000E+001 7.00000000E+001 -2.47666046E-001 -1.29609932E+000 -1.24152837E-001 4.06232411E-002 -1.53699907E+001 -3.54576541E+001 -1.53276363E+001 + 1.00000000E+002 7.00000000E+001 -1.10108141E+000 2.44586950E-001 2.48288122E-002 7.73453340E-002 -1.67329426E+001 -3.95838767E+001 -1.67104745E+001 + 1.05000000E+002 7.00000000E+001 2.44749327E-001 1.42980352E+000 8.04561078E-002 -3.57609027E-002 -1.45475535E+001 -3.88843540E+001 -1.45315835E+001 + 1.10000000E+002 7.00000000E+001 1.66483927E+000 3.50157575E-001 -4.75137427E-003 -1.00353208E-001 -1.31630713E+001 -3.77381571E+001 -1.31479525E+001 + 1.15000000E+002 7.00000000E+001 8.60669655E-001 -1.20755585E+000 -7.33301161E-002 -4.13042137E-002 -1.43563665E+001 -3.92761237E+001 -1.43423993E+001 + 1.20000000E+002 7.00000000E+001 -7.97895576E-001 -6.72606718E-001 -4.17189456E-002 2.34893390E-002 -1.74080800E+001 -4.41759450E+001 -1.73989486E+001 + 1.25000000E+002 7.00000000E+001 -5.87504798E-001 1.05009769E+000 5.95080177E-003 1.73759824E-002 -1.61712202E+001 -5.24978697E+001 -1.61702084E+001 + 1.30000000E+002 7.00000000E+001 1.08022278E+000 1.19626654E+000 9.95903980E-003 1.01756470E-003 -1.36322244E+001 -5.77690535E+001 -1.36320569E+001 + 1.35000000E+002 7.00000000E+001 1.51008222E+000 -3.45953880E-001 1.89385348E-002 1.42909765E-002 -1.39763360E+001 -5.02741936E+001 -1.39753175E+001 + 1.40000000E+002 7.00000000E+001 4.04028801E-002 -1.09553952E+000 5.37552008E-002 1.10726791E-002 -1.69800432E+001 -4.29896317E+001 -1.69691719E+001 + 1.45000000E+002 7.00000000E+001 -1.24573822E+000 1.22895880E-001 5.80526678E-002 -1.33515525E-002 -1.58279082E+001 -4.22782104E+001 -1.58180848E+001 + 1.50000000E+002 7.00000000E+001 -7.72400072E-001 1.78290365E+000 2.51252605E-002 2.37813915E-002 -1.20089379E+001 -4.69981704E+001 -1.20075613E+001 + 1.55000000E+002 7.00000000E+001 6.40012077E-001 2.05767150E+000 5.55995370E-002 1.68136186E-001 -1.11099333E+001 -3.28145961E+001 -1.10807015E+001 + 1.60000000E+002 7.00000000E+001 1.23393655E+000 9.17027887E-001 2.44970792E-001 3.46643219E-001 -1.40428782E+001 -2.52216289E+001 -1.37238280E+001 + 1.65000000E+002 7.00000000E+001 3.31828237E-001 -4.09319383E-001 5.72720220E-001 4.46047378E-001 -2.33434937E+001 -2.05606751E+001 -1.87226039E+001 + 1.70000000E+002 7.00000000E+001 -1.40151067E+000 -1.02599134E+000 9.23533496E-001 4.29609415E-001 -1.29829117E+001 -1.76187165E+001 -1.16992745E+001 + 1.75000000E+002 7.00000000E+001 -2.90819776E+000 -1.00821697E+000 1.17876337E+000 3.57949698E-001 -8.01312016E+000 -1.59669022E+001 -7.36784776E+000 + 1.80000000E+002 7.00000000E+001 -3.48320580E+000 -9.07358119E-001 1.27041917E+000 3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 7.50000000E+001 -3.94583532E+001 2.42897303E+001 -1.05317246E+001 6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 7.50000000E+001 -3.66747020E+001 2.43238989E+001 -9.85129274E+000 6.79245016E+000 1.50920848E+001 3.78047880E+000 1.54018574E+001 + 1.00000000E+001 7.50000000E+001 -2.92762032E+001 2.37256401E+001 -7.92171808E+000 7.19536167E+000 1.37443828E+001 2.81056606E+000 1.40812438E+001 + 1.50000000E+001 7.50000000E+001 -1.99200378E+001 2.12029361E+001 -5.12707696E+000 7.24876724E+000 1.14971080E+001 1.18849338E+000 1.18838678E+001 + 2.00000000E+001 7.50000000E+001 -1.20225368E+001 1.66894510E+001 -2.16675169E+000 6.47616091E+000 8.48570941E+000 -1.09134313E+000 8.93983397E+000 + 2.50000000E+001 7.50000000E+001 -7.64487314E+000 1.22437645E+001 1.41112960E-001 4.87260795E+000 5.40950840E+000 -4.01963667E+000 5.87854520E+000 + 3.00000000E+001 7.50000000E+001 -5.62612659E+000 1.03731997E+001 1.30853968E+000 2.98254556E+000 3.65965006E+000 -7.52223161E+000 3.97847860E+000 + 3.50000000E+001 7.50000000E+001 -2.64923445E+000 1.08633292E+001 1.50001758E+000 1.47522814E+000 3.19164796E+000 -1.13180487E+001 3.34273882E+000 + 4.00000000E+001 7.50000000E+001 2.65114352E+000 1.02008673E+001 1.29993132E+000 5.77593485E-001 2.67809633E+000 -1.47176130E+001 2.75649121E+000 + 4.50000000E+001 7.50000000E+001 7.28056236E+000 5.65329085E+000 1.09180010E+000 1.23901722E-002 1.51395935E+000 -1.70150851E+001 1.57447263E+000 + 5.00000000E+001 7.50000000E+001 7.32461380E+000 -6.92835224E-001 7.89146199E-001 -4.75744794E-001 -4.44127680E-001 -1.84889962E+001 -3.76532871E-001 + 5.50000000E+001 7.50000000E+001 3.28579143E+000 -4.14296826E+000 2.44512537E-001 -7.43041418E-001 -3.31304037E+000 -1.99117242E+001 -3.21902332E+000 + 6.00000000E+001 7.50000000E+001 -4.96673930E-001 -3.31976701E+000 -3.12371386E-001 -5.52691274E-001 -7.26021668E+000 -2.17249875E+001 -7.10758203E+000 + 6.50000000E+001 7.50000000E+001 -1.52203405E+000 -1.12531469E+000 -4.82995980E-001 -5.78825796E-002 -1.22361349E+001 -2.40377078E+001 -1.19583778E+001 + 7.00000000E+001 7.50000000E+001 -1.12203483E+000 6.75705458E-002 -2.15722849E-001 2.88794362E-001 -1.67626585E+001 -2.66411275E+001 -1.63375418E+001 + 7.50000000E+001 7.50000000E+001 -7.28195519E-001 7.37175288E-001 1.34491146E-001 2.41698773E-001 -1.74696931E+001 -2.89415426E+001 -1.71707647E+001 + 8.00000000E+001 7.50000000E+001 1.66744122E-001 1.32680315E+000 2.29234040E-001 -2.38287776E-002 -1.52543213E+001 -3.05262488E+001 -1.51271995E+001 + 8.50000000E+001 7.50000000E+001 1.46814892E+000 7.60701137E-001 6.90203899E-002 -1.82669074E-001 -1.34103194E+001 -3.19656334E+001 -1.33501685E+001 + 9.00000000E+001 7.50000000E+001 1.42900149E+000 -8.70980499E-001 -9.85315307E-002 -1.14001869E-001 -1.33059151E+001 -3.42173132E+001 -1.32708488E+001 + 9.50000000E+001 7.50000000E+001 -2.53292779E-001 -1.33156687E+000 -9.27276253E-002 3.06897690E-002 -1.51368775E+001 -3.79828983E+001 -1.51143840E+001 + 1.00000000E+002 7.50000000E+001 -1.13054353E+000 2.50643515E-001 2.02707425E-002 5.80433507E-002 -1.65043784E+001 -4.20036653E+001 -1.64921535E+001 + 1.05000000E+002 7.50000000E+001 2.51381851E-001 1.46860673E+000 6.21984444E-002 -2.84747495E-002 -1.43149801E+001 -4.10765516E+001 -1.43058354E+001 + 1.10000000E+002 7.50000000E+001 1.71045527E+000 3.60345728E-001 -3.33433865E-003 -7.80970205E-002 -1.29276752E+001 -3.99179084E+001 -1.29189990E+001 + 1.15000000E+002 7.50000000E+001 8.85364681E-001 -1.23963532E+000 -5.66701285E-002 -3.31279935E-002 -1.41225671E+001 -4.14347749E+001 -1.41145103E+001 + 1.20000000E+002 7.50000000E+001 -8.17568629E-001 -6.90857337E-001 -3.34888108E-002 1.71556836E-002 -1.71877890E+001 -4.62684329E+001 -1.71824255E+001 + 1.25000000E+002 7.50000000E+001 -6.01461607E-001 1.07761493E+000 3.02619825E-003 1.37447466E-002 -1.59514794E+001 -5.48101898E+001 -1.59509146E+001 + 1.30000000E+002 7.50000000E+001 1.11080333E+000 1.22695990E+000 7.07680916E-003 1.67713060E-003 -1.34020878E+001 -6.05444433E+001 -1.34020040E+001 + 1.35000000E+002 7.50000000E+001 1.55114560E+000 -3.57162910E-001 1.45295414E-002 1.12168106E-002 -1.37410956E+001 -5.25031822E+001 -1.37405181E+001 + 1.40000000E+002 7.50000000E+001 4.06851111E-002 -1.12621653E+000 4.08534199E-002 8.18211434E-003 -1.67404050E+001 -4.53831376E+001 -1.67344728E+001 + 1.45000000E+002 7.50000000E+001 -1.28032958E+000 1.26473423E-001 4.37883191E-002 -1.04879044E-002 -1.55898990E+001 -4.47090847E+001 -1.55845828E+001 + 1.50000000E+002 7.50000000E+001 -7.93401008E-001 1.83211934E+000 1.87591313E-002 1.77527612E-002 -1.17729745E+001 -4.95368219E+001 -1.17722478E+001 + 1.55000000E+002 7.50000000E+001 6.57924121E-001 2.11403984E+000 4.20454352E-002 1.27074705E-001 -1.08747486E+001 -3.52461451E+001 -1.08589050E+001 + 1.60000000E+002 7.50000000E+001 1.26773673E+000 9.41758021E-001 1.85703295E-001 2.61932313E-001 -1.38094300E+001 -2.76461625E+001 -1.36335219E+001 + 1.65000000E+002 7.50000000E+001 3.40181475E-001 -4.20975055E-001 4.33960074E-001 3.36651984E-001 -2.31106693E+001 -2.29833887E+001 -2.00362628E+001 + 1.70000000E+002 7.50000000E+001 -1.44135760E+000 -1.05426416E+000 6.99483915E-001 3.23615202E-001 -1.27419827E+001 -2.00406093E+001 -1.20001560E+001 + 1.75000000E+002 7.50000000E+001 -2.98978200E+000 -1.03564618E+000 8.92595492E-001 2.68865898E-001 -7.77357646E+000 -1.83882313E+001 -7.41206835E+000 + 1.80000000E+002 7.50000000E+001 -3.58067547E+000 -9.31833543E-001 9.62003449E-001 2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 8.00000000E+001 -4.02261025E+001 2.47711030E+001 -7.05262608E+000 4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 8.00000000E+001 -3.73878061E+001 2.48052887E+001 -6.59594114E+000 4.57894107E+000 1.52602552E+001 3.15281289E-001 1.53971616E+001 + 1.00000000E+001 8.00000000E+001 -2.98445131E+001 2.41941209E+001 -5.30085953E+000 4.84423201E+000 1.39125050E+001 -6.54898191E-001 1.40616354E+001 + 1.50000000E+001 8.00000000E+001 -2.03055577E+001 2.16205175E+001 -3.42629854E+000 4.87376180E+000 1.16651472E+001 -2.27707062E+000 1.18369166E+001 + 2.00000000E+001 8.00000000E+001 -1.22542086E+001 1.70171740E+001 -1.44232283E+000 4.34937973E+000 8.65354989E+000 -4.55685193E+000 8.85612041E+000 + 2.50000000E+001 8.00000000E+001 -7.79192589E+000 1.24833072E+001 1.02431405E-001 3.26935181E+000 5.57701610E+000 -7.48501281E+000 5.78645973E+000 + 3.00000000E+001 8.00000000E+001 -5.73483440E+000 1.05755910E+001 8.81876068E-001 1.99965234E+000 3.82712216E+000 -1.09875775E+001 3.96813052E+000 + 3.50000000E+001 8.00000000E+001 -2.70051671E+000 1.10754454E+001 1.00770980E+000 9.88653361E-001 3.35953257E+000 -1.47836203E+001 3.42562629E+000 + 4.00000000E+001 8.00000000E+001 2.70350774E+000 1.04004020E+001 8.72333055E-001 3.87258479E-001 2.84645986E+000 -1.81836374E+001 2.88058443E+000 + 4.50000000E+001 8.00000000E+001 7.42404294E+000 5.76367358E+000 7.32381028E-001 8.58582526E-003 1.68288736E+000 -2.04831685E+001 1.70918176E+000 + 5.00000000E+001 8.00000000E+001 7.46911896E+000 -7.07666806E-001 5.29136185E-001 -3.18629637E-001 -2.74307893E-001 -2.19634483E+001 -2.44971776E-001 + 5.50000000E+001 8.00000000E+001 3.35022015E+000 -4.22631679E+000 1.63603900E-001 -4.97578518E-001 -3.14170750E+000 -2.33954476E+001 -3.10093475E+000 + 6.00000000E+001 8.00000000E+001 -5.07906409E-001 -3.38666186E+000 -2.09845756E-001 -3.69404869E-001 -7.08647201E+000 -2.52138505E+001 -7.02013962E+000 + 6.50000000E+001 8.00000000E+001 -1.55392909E+000 -1.14766889E+000 -3.23850891E-001 -3.71564057E-002 -1.20592774E+001 -2.75148090E+001 -1.19373447E+001 + 7.00000000E+001 8.00000000E+001 -1.14513119E+000 6.97246125E-002 -1.43990542E-001 1.95409807E-001 -1.65853312E+001 -3.00760072E+001 -1.63951477E+001 + 7.50000000E+001 8.00000000E+001 -7.42479735E-001 7.52123848E-001 9.14384303E-002 1.63561551E-001 -1.72981057E+001 -3.23237822E+001 -1.71636813E+001 + 8.00000000E+001 8.00000000E+001 1.69881772E-001 1.35255490E+000 1.55329879E-001 -1.49970119E-002 -1.50874315E+001 -3.39131104E+001 -1.50308876E+001 + 8.50000000E+001 8.00000000E+001 1.49616411E+000 7.75640724E-001 4.79607917E-002 -1.22055211E-001 -1.32451316E+001 -3.54238002E+001 -1.32189132E+001 + 9.00000000E+001 8.00000000E+001 1.45662239E+000 -8.87153687E-001 -6.45091638E-002 -7.63978142E-002 -1.31413826E+001 -3.77793504E+001 -1.31264807E+001 + 9.50000000E+001 8.00000000E+001 -2.57512525E-001 -1.35690998E+000 -6.06542330E-002 2.03656623E-002 -1.49738219E+001 -4.16573509E+001 -1.49645116E+001 + 1.00000000E+002 8.00000000E+001 -1.15178147E+000 2.55157989E-001 1.51992695E-002 3.82467569E-002 -1.63430315E+001 -4.54898031E+001 -1.63377490E+001 + 1.05000000E+002 8.00000000E+001 2.56119651E-001 1.49666136E+000 4.30842751E-002 -2.06019996E-002 -1.41506815E+001 -4.41978308E+001 -1.41463876E+001 + 1.10000000E+002 8.00000000E+001 1.74328285E+000 3.67927306E-001 -1.84061768E-003 -5.46107040E-002 -1.27618828E+001 -4.30280208E+001 -1.27578000E+001 + 1.15000000E+002 8.00000000E+001 9.03392130E-001 -1.26238858E+000 -3.90391926E-002 -2.43147617E-002 -1.39588010E+001 -4.45248567E+001 -1.39549905E+001 + 1.20000000E+002 8.00000000E+001 -8.31165101E-001 -7.03875943E-001 -2.44107681E-002 1.05508485E-002 -1.70366467E+001 -4.92830476E+001 -1.70340584E+001 + 1.25000000E+002 8.00000000E+001 -6.10937472E-001 1.09711101E+000 3.23287869E-004 9.58410701E-003 -1.58004733E+001 -5.81425352E+001 -1.58002200E+001 + 1.30000000E+002 8.00000000E+001 1.13304762E+000 1.24849749E+000 4.07082614E-003 2.00735050E-003 -1.32414367E+001 -6.46396068E+001 -1.32414052E+001 + 1.35000000E+002 8.00000000E+001 1.58059454E+000 -3.65662351E-001 9.91745250E-003 7.95086605E-003 -1.35756678E+001 -5.56948423E+001 -1.35754012E+001 + 1.40000000E+002 8.00000000E+001 4.07158969E-002 -1.14844915E+000 2.76773513E-002 5.15377308E-003 -1.65708163E+001 -4.87879819E+001 -1.65682105E+001 + 1.45000000E+002 8.00000000E+001 -1.30525144E+000 1.29040353E-001 2.92610094E-002 -7.74542637E-003 -1.54223824E+001 -4.81586122E+001 -1.54200701E+001 + 1.50000000E+002 8.00000000E+001 -8.08412476E-001 1.86748865E+000 1.22046899E-002 1.12948346E-002 -1.16074079E+001 -5.33611199E+001 -1.16071179E+001 + 1.55000000E+002 8.00000000E+001 6.70910935E-001 2.15446450E+000 2.79829665E-002 8.47903353E-002 -1.07097606E+001 -3.87625904E+001 -1.07029660E+001 + 1.60000000E+002 8.00000000E+001 1.29206536E+000 9.59402499E-001 1.24780177E-001 1.75090864E-001 -1.36457004E+001 -3.11295590E+001 -1.35688668E+001 + 1.65000000E+002 8.00000000E+001 3.46118122E-001 -4.29429728E-001 2.91701584E-001 2.24659707E-001 -2.29468057E+001 -2.64571338E+001 -2.13462565E+001 + 1.70000000E+002 8.00000000E+001 -1.47013013E+000 -1.07455083E+000 4.70004785E-001 2.15164647E-001 -1.25724376E+001 -2.35101372E+001 -1.22358663E+001 + 1.75000000E+002 8.00000000E+001 -3.04857670E+000 -1.05521659E+000 5.99603134E-001 1.77740822E-001 -7.60512543E+000 -2.18554543E+001 -7.44490577E+000 + 1.80000000E+002 8.00000000E+001 -3.65089405E+000 -9.49217151E-001 6.46266305E-001 1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 8.50000000E+001 -4.06877069E+001 2.50639526E+001 -3.51985286E+000 2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 8.50000000E+001 -3.78164544E+001 2.50977463E+001 -3.29044291E+000 2.33060120E+000 1.53601254E+001 -5.66764440E+000 1.53942682E+001 + 1.00000000E+001 8.50000000E+001 -3.01859412E+001 2.44781400E+001 -2.63978498E+000 2.45622024E+000 1.40123276E+001 -6.63857820E+000 1.40495523E+001 + 1.50000000E+001 8.50000000E+001 -2.05370400E+001 2.18731388E+001 -1.69967426E+000 2.46162419E+000 1.17649034E+001 -8.26101125E+000 1.18078613E+001 + 2.00000000E+001 8.50000000E+001 -1.23933578E+001 1.72150963E+001 -7.07259978E-001 2.18950435E+000 8.75318248E+000 -1.05405479E+001 8.80398307E+000 + 2.50000000E+001 8.50000000E+001 -7.88046709E+000 1.26278693E+001 6.25784134E-002 1.64136540E+000 5.67650154E+000 -1.34680933E+001 5.72906621E+000 + 3.00000000E+001 8.50000000E+001 -5.80043929E+000 1.06977973E+001 4.48202331E-001 1.00186342E+000 3.92669063E+000 -1.69700220E+001 3.96187523E+000 + 3.50000000E+001 8.50000000E+001 -2.73141037E+000 1.12035401E+001 5.07650127E-001 4.94936641E-001 3.45935348E+000 -2.07656693E+001 3.47573909E+000 + 4.00000000E+001 8.50000000E+001 2.73526882E+000 1.05207284E+001 4.38198092E-001 1.94238520E-001 2.94647064E+000 -2.41660242E+001 2.95490618E+000 + 4.50000000E+001 8.50000000E+001 7.51072616E+000 5.82991740E+000 3.67499716E-001 4.79550696E-003 1.78312660E+000 -2.64726274E+001 1.78961122E+000 + 5.00000000E+001 8.50000000E+001 7.55615319E+000 -7.17160412E-001 2.65097120E-001 -1.59066907E-001 -1.73545569E-001 -2.79748929E+001 -1.66346280E-001 + 5.50000000E+001 8.50000000E+001 3.38860980E+000 -4.27708843E+000 8.14114213E-002 -2.48221854E-001 -3.03981983E+000 -2.94379954E+001 -3.02987793E+000 + 6.00000000E+001 8.50000000E+001 -5.15351551E-001 -3.42721633E+000 -1.05649888E-001 -1.83162788E-001 -6.98257105E+000 -3.12744112E+001 -6.96643514E+000 + 6.50000000E+001 8.50000000E+001 -1.57374755E+000 -1.16101228E+000 -1.62072353E-001 -1.61316426E-002 -1.19526117E+001 -3.35415147E+001 -1.19225930E+001 + 7.00000000E+001 8.50000000E+001 -1.15932846E+000 7.13106853E-002 -7.10769526E-002 1.00389332E-001 -1.64779764E+001 -3.59801317E+001 -1.64295430E+001 + 7.50000000E+001 8.50000000E+001 -7.51087366E-001 7.61274007E-001 4.75885846E-002 8.40281162E-002 -1.71954984E+001 -3.80818334E+001 -1.71602299E+001 + 8.00000000E+001 8.50000000E+001 1.71779976E-001 1.36795185E+000 8.00658821E-002 -6.04733856E-003 -1.49891413E+001 -3.96848523E+001 -1.49744359E+001 + 8.50000000E+001 8.50000000E+001 1.51283892E+000 7.84434002E-001 2.64661448E-002 -6.03990938E-002 -1.31485135E+001 -4.13951049E+001 -1.31420152E+001 + 9.00000000E+001 8.50000000E+001 1.47289675E+000 -8.96934827E-001 -2.99456154E-002 -3.81842246E-002 -1.30452187E+001 -4.40590130E+001 -1.30417813E+001 + 9.50000000E+001 8.50000000E+001 -2.60351937E-001 -1.37197897E+000 -2.81583735E-002 9.75581644E-003 -1.48779172E+001 -4.82940352E+001 -1.48759399E+001 + 1.00000000E+002 8.50000000E+001 -1.16467174E+000 2.58161597E-001 9.71830920E-003 1.80902234E-002 -1.62461294E+001 -5.15284533E+001 -1.62448427E+001 + 1.05000000E+002 8.50000000E+001 2.59011063E-001 1.51381092E+000 2.32779481E-002 -1.22844890E-002 -1.40517611E+001 -4.93726066E+001 -1.40504857E+001 + 1.10000000E+002 8.50000000E+001 1.76317495E+000 3.72759355E-001 -3.50915823E-004 -3.01198713E-002 -1.26627005E+001 -4.82008553E+001 -1.26614874E+001 + 1.15000000E+002 8.50000000E+001 9.14568334E-001 -1.27579744E+000 -2.06304221E-002 -1.48747738E-002 -1.38619337E+001 -4.96703153E+001 -1.38607937E+001 + 1.20000000E+002 8.50000000E+001 -8.38758730E-001 -7.11599743E-001 -1.45053263E-002 3.80467669E-003 -1.69510467E+001 -5.42589976E+001 -1.69502395E+001 + 1.25000000E+002 8.50000000E+001 -6.15988990E-001 1.10856772E+000 -2.02870620E-003 4.90953178E-003 -1.57146613E+001 -6.32730675E+001 -1.57145851E+001 + 1.30000000E+002 8.50000000E+001 1.14680994E+000 1.26087714E+000 1.00844994E-003 1.89558658E-003 -1.31470692E+001 -7.11412907E+001 -1.31470624E+001 + 1.35000000E+002 8.50000000E+001 1.59831174E+000 -3.71322336E-001 5.07108638E-003 4.42051864E-003 -1.34769810E+001 -6.12216588E+001 -1.34769080E+001 + 1.40000000E+002 8.50000000E+001 4.05688292E-002 -1.16209253E+000 1.42145170E-002 2.00784095E-003 -1.64684032E+001 -5.46380659E+001 -1.64677413E+001 + 1.45000000E+002 8.50000000E+001 -1.32030573E+000 1.30545291E-001 1.45105398E-002 -5.06268851E-003 -1.53227652E+001 -5.40459548E+001 -1.53221825E+001 + 1.50000000E+002 8.50000000E+001 -8.17333434E-001 1.88874968E+000 5.51848010E-003 4.56075819E-003 -1.15095531E+001 -6.06812177E+001 -1.15095006E+001 + 1.55000000E+002 8.50000000E+001 6.78881041E-001 2.17867031E+000 1.35809048E-002 4.16775013E-002 -1.06122277E+001 -4.49422046E+001 -1.06106256E+001 + 1.60000000E+002 8.50000000E+001 1.30676768E+000 9.69854062E-001 6.27391955E-002 8.68069633E-002 -1.35489030E+001 -3.71822460E+001 -1.35301309E+001 + 1.65000000E+002 8.50000000E+001 3.49626163E-001 -4.34609020E-001 1.47083227E-001 1.10919965E-001 -2.28491795E+001 -3.24718091E+001 -2.23995587E+001 + 1.70000000E+002 8.50000000E+001 -1.48758900E+000 -1.08669678E+000 2.36871296E-001 1.05072274E-001 -1.24716049E+001 -2.95081636E+001 -1.23865172E+001 + 1.75000000E+002 8.50000000E+001 -3.08412842E+000 -1.06677979E+000 3.02024330E-001 8.52622557E-002 -7.50506506E+000 -2.78446584E+001 -7.46508674E+000 + 1.80000000E+002 8.50000000E+001 -3.69332711E+000 -9.59376643E-001 3.25610684E-001 7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 9.00000000E+001 -4.08396533E+001 2.51660504E+001 3.97085595E-002 7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 9.00000000E+001 -3.79573912E+001 2.51990495E+001 4.00657232E-002 6.45632366E-002 1.53932553E+001 -4.01639846E+001 1.53932674E+001 + 1.00000000E+001 9.00000000E+001 -3.02979063E+001 2.45755320E+001 4.13136517E-002 4.95597026E-002 1.40454110E+001 -4.15844617E+001 1.40454229E+001 + 1.50000000E+001 9.00000000E+001 -2.06127562E+001 2.19588685E+001 3.97813732E-002 3.07969872E-002 1.17979375E+001 -4.37455648E+001 1.17979497E+001 + 2.00000000E+001 9.00000000E+001 -1.24389716E+001 1.72817128E+001 3.30494910E-002 1.30366315E-002 8.78617034E+000 -4.67671474E+001 8.78618243E+000 + 2.50000000E+001 9.00000000E+001 -7.90986295E+000 1.26763720E+001 2.21202209E-002 1.01769818E-003 5.70953102E+000 -5.08735348E+001 5.70954056E+000 + 3.00000000E+001 9.00000000E+001 -5.82245291E+000 1.07389157E+001 1.10636385E-002 -3.36965655E-003 3.95991669E+000 -5.65152872E+001 3.95992058E+000 + 3.50000000E+001 9.00000000E+001 -2.74167182E+000 1.12466339E+001 3.78551873E-003 -2.39421100E-003 3.49265570E+000 -6.47546785E+001 3.49265635E+000 + 4.00000000E+001 9.00000000E+001 2.74615734E+000 1.05608886E+001 8.40252061E-004 -2.24324909E-004 2.97965323E+000 -7.89913065E+001 2.97965325E+000 + 4.50000000E+001 9.00000000E+001 7.53985065E+000 5.85150775E+000 -1.36079133E-004 8.94525557E-004 1.81617575E+000 -7.86472935E+001 1.81617579E+000 + 5.00000000E+001 9.00000000E+001 7.58494463E+000 -7.21139323E-001 -1.04001191E-003 1.64297305E-003 -1.40377994E-001 -7.20024572E+001 -1.40377711E-001 + 5.50000000E+001 9.00000000E+001 3.40068068E+000 -4.29471259E+000 -1.51666472E-003 3.06979084E-003 -3.00596493E+000 -6.70877905E+001 -3.00596323E+000 + 6.00000000E+001 9.00000000E+001 -5.18795618E-001 -3.44101461E+000 -6.82533840E-004 4.58684543E-003 -6.94716223E+000 -6.44531118E+001 -6.94715452E+000 + 6.50000000E+001 9.00000000E+001 -1.58118495E+000 -1.16530205E+000 9.94500470E-004 5.08146332E-003 -1.19148007E+001 -6.34954901E+001 -1.19147705E+001 + 7.00000000E+001 9.00000000E+001 -1.16450696E+000 7.21982299E-002 2.42616469E-003 4.58150530E-003 -1.64390035E+001 -6.34847854E+001 -1.64389178E+001 + 7.50000000E+001 9.00000000E+001 -7.54033625E-001 7.64535333E-001 3.35573118E-003 3.80210569E-003 -1.71599089E+001 -6.36763142E+001 -1.71598120E+001 + 8.00000000E+001 9.00000000E+001 1.72398846E-001 1.37295527E+000 4.12435007E-003 2.93343350E-003 -1.49574372E+001 -6.36935133E+001 -1.49573791E+001 + 8.50000000E+001 9.00000000E+001 1.51811313E+000 7.87070900E-001 4.71567347E-003 1.74633393E-003 -1.31185134E+001 -6.37494895E+001 -1.31184758E+001 + 9.00000000E+001 9.00000000E+001 1.47777066E+000 -9.00267772E-001 4.83016448E-003 3.35881648E-004 -1.30155710E+001 -6.40783185E+001 -1.30155370E+001 + 9.50000000E+001 9.00000000E+001 -2.61770344E-001 -1.37669010E+000 4.50469431E-003 -9.76347294E-004 -1.48475359E+001 -6.45058323E+001 -1.48474889E+001 + 1.00000000E+002 9.00000000E+001 -1.16909742E+000 2.59634972E-001 3.97773093E-003 -2.23246204E-003 -1.62124125E+001 -6.45965730E+001 -1.62123495E+001 + 1.05000000E+002 9.00000000E+001 2.60098639E-001 1.51990795E+000 3.02852060E-003 -3.68292647E-003 -1.40168058E+001 -6.42113885E+001 -1.40167643E+001 + 1.10000000E+002 9.00000000E+001 1.77002669E+000 3.74703932E-001 1.08058229E-003 -4.94690000E-003 -1.26285195E+001 -6.36894152E+001 -1.26284855E+001 + 1.15000000E+002 9.00000000E+001 9.18737334E-001 -1.27988847E+000 -1.71195546E-003 -4.89946725E-003 -1.38301519E+001 -6.34752451E+001 -1.38301048E+001 + 1.20000000E+002 9.00000000E+001 -8.40459948E-001 -7.13993337E-001 -3.90400988E-003 -2.93952313E-003 -1.69286019E+001 -6.39977838E+001 -1.69285167E+001 + 1.25000000E+002 9.00000000E+001 -6.16705036E-001 1.11201833E+000 -3.95498034E-003 -1.77422705E-004 -1.56916489E+001 -6.58268891E+001 -1.56916068E+001 + 1.30000000E+002 9.00000000E+001 1.15199206E+000 1.26416420E+000 -2.02124662E-003 1.30867445E-003 -1.31169560E+001 -7.01456749E+001 -1.31169474E+001 + 1.35000000E+002 9.00000000E+001 1.60425730E+000 -3.74017352E-001 9.08966242E-006 5.82678295E-004 -1.34431600E+001 -8.24688734E+001 -1.34431594E+001 + 1.40000000E+002 9.00000000E+001 4.03269591E-002 -1.16704855E+000 4.85418524E-004 -1.24059903E-003 -1.64315460E+001 -7.52872156E+001 -1.64315404E+001 + 1.45000000E+002 9.00000000E+001 -1.32535187E+000 1.30947125E-001 -4.13595744E-004 -2.38598511E-003 -1.52896937E+001 -7.00965775E+001 -1.52896794E+001 + 1.50000000E+002 9.00000000E+001 -8.20099706E-001 1.89573487E+000 -1.24099180E-003 -2.29196466E-003 -1.14779175E+001 -6.94577869E+001 -1.14779106E+001 + 1.55000000E+002 9.00000000E+001 6.81776333E-001 2.18648997E+000 -9.84481601E-004 -1.85541383E-003 -1.05805906E+001 -7.13323838E+001 -1.05805869E+001 + 1.60000000E+002 9.00000000E+001 1.31174905E+000 9.73051554E-001 1.35297816E-004 -2.21455964E-003 -1.35174385E+001 -7.08565792E+001 -1.35174305E+001 + 1.65000000E+002 9.00000000E+001 3.50699426E-001 -4.36464567E-001 1.26940351E-003 -3.70255989E-003 -2.28162506E+001 -6.59258244E+001 -2.28160384E+001 + 1.70000000E+002 9.00000000E+001 -1.49358831E+000 -1.09060742E+000 1.89096336E-003 -5.83490408E-003 -1.24379531E+001 -6.20241057E+001 -1.24379053E+001 + 1.75000000E+002 9.00000000E+001 -3.09616271E+000 -1.07024713E+000 2.13330964E-003 -7.87182129E-003 -7.47184100E+000 -5.95492078E+001 -7.47181408E+000 + 1.80000000E+002 9.00000000E+001 -3.70765173E+000 -9.62234700E-001 2.47696993E-003 -9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 9.50000000E+001 -4.06807853E+001 2.50766193E+001 3.59896778E+000 -2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 9.50000000E+001 -3.78095461E+001 2.51084354E+001 3.37025912E+000 -2.20190591E+000 1.53601553E+001 -5.68147096E+000 1.53941898E+001 + 1.00000000E+001 9.50000000E+001 -3.01795603E+001 2.44855665E+001 2.72209446E+000 -2.35737312E+000 1.40122656E+001 -6.65010977E+000 1.40493926E+001 + 1.50000000E+001 9.50000000E+001 -2.05321350E+001 2.18770661E+001 1.77896104E+000 -2.40013188E+000 1.17647605E+001 -8.27226151E+000 1.18076092E+001 + 2.00000000E+001 9.50000000E+001 -1.23907043E+001 1.72165322E+001 7.73185694E-001 -2.16339228E+000 8.75302492E+000 -1.05537454E+001 8.80367410E+000 + 2.50000000E+001 9.50000000E+001 -7.87987853E+000 1.26284651E+001 -1.83645831E-002 -1.63922736E+000 5.67661469E+000 -1.34851780E+001 5.72897287E+000 + 3.00000000E+001 9.50000000E+001 -5.80067771E+000 1.06986402E+001 -4.25963601E-001 -1.00853845E+000 3.92730060E+000 -1.69917831E+001 3.96230515E+000 + 3.50000000E+001 9.50000000E+001 -2.73119071E+000 1.12043735E+001 -4.99904759E-001 -4.99779621E-001 3.45992412E+000 -2.07915487E+001 3.47621043E+000 + 4.00000000E+001 9.50000000E+001 2.73608413E+000 1.05205248E+001 -4.36392565E-001 -1.94868829E-001 2.94647711E+000 -2.41913115E+001 2.95486372E+000 + 4.50000000E+001 9.50000000E+001 7.51112930E+000 5.82825626E+000 -3.67778163E-001 -3.23993775E-003 1.78248712E+000 -2.64664512E+001 1.78898192E+000 + 5.00000000E+001 9.50000000E+001 7.55520115E+000 -7.19512687E-001 -2.67311480E-001 1.62174511E-001 -1.74375422E-001 -2.78770728E+001 -1.67010870E-001 + 5.50000000E+001 9.50000000E+001 3.38635110E+000 -4.27893738E+000 -8.46303334E-002 2.54300044E-001 -3.03974441E+000 -2.92153996E+001 -3.02928046E+000 + 6.00000000E+001 9.50000000E+001 -5.18104823E-001 -3.42788563E+000 1.04133136E-001 1.92379518E-001 -6.97988416E+000 -3.09793618E+001 -6.96262684E+000 + 6.50000000E+001 9.50000000E+001 -1.57608246E+000 -1.16055178E+000 1.63990266E-001 2.63851071E-002 -1.19454803E+001 -3.33711504E+001 -1.19143159E+001 + 7.00000000E+001 9.50000000E+001 -1.16062701E+000 7.22958908E-002 7.59404087E-002 -9.11576865E-002 -1.64678351E+001 -3.62935079E+001 -1.64228606E+001 + 7.50000000E+001 9.50000000E+001 -7.51365633E-001 7.61872708E-001 -4.08348705E-002 -7.64350207E-002 -1.71904508E+001 -3.90222238E+001 -1.71620594E+001 + 8.00000000E+001 9.50000000E+001 1.71700628E-001 1.36760247E+000 -7.18345152E-002 1.18314445E-002 -1.49913879E+001 -4.05356003E+001 -1.49792886E+001 + 8.50000000E+001 9.50000000E+001 1.51199616E+000 7.83613055E-001 -1.71508546E-002 6.38330562E-002 -1.31542548E+001 -4.13748745E+001 -1.31477175E+001 + 9.00000000E+001 9.50000000E+001 1.47129976E+000 -8.97100744E-001 3.94704474E-002 3.88946390E-002 -1.30516551E+001 -4.29061201E+001 -1.30471664E+001 + 9.50000000E+001 9.50000000E+001 -2.61673870E-001 -1.37103489E+000 3.70960962E-002 -1.16314881E-002 -1.48821496E+001 -4.59846787E+001 -1.48787816E+001 + 1.00000000E+002 9.50000000E+001 -1.16496870E+000 2.59512739E-001 -1.83052199E-003 -2.25162609E-002 -1.62418857E+001 -5.06999720E+001 -1.62403301E+001 + 1.05000000E+002 9.50000000E+001 2.59407285E-001 1.51483434E+000 -1.73700266E-002 5.01119730E-003 -1.40456801E+001 -5.26352889E+001 -1.40450792E+001 + 1.10000000E+002 9.50000000E+001 1.76378183E+000 3.73652489E-001 2.40737981E-003 2.05157597E-002 -1.26589485E+001 -5.14773633E+001 -1.26583784E+001 + 1.15000000E+002 9.50000000E+001 9.15794048E-001 -1.27471901E+000 1.73891230E-002 5.45624118E-003 -1.38628275E+001 -5.25651361E+001 -1.38622420E+001 + 1.20000000E+002 9.50000000E+001 -8.36387874E-001 -7.11055242E-001 7.16477471E-003 -9.53635325E-003 -1.69681167E+001 -5.62471896E+001 -1.69676040E+001 + 1.25000000E+002 9.50000000E+001 -6.13191303E-001 1.10752284E+000 -5.44544666E-003 -5.50277640E-003 -1.57302274E+001 -6.00018151E+001 -1.57300650E+001 + 1.30000000E+002 9.50000000E+001 1.14853731E+000 1.25846501E+000 -4.92421499E-003 2.99865581E-004 -1.31502279E+001 -6.39156916E+001 -1.31501915E+001 + 1.35000000E+002 9.50000000E+001 1.59844971E+000 -3.73638838E-001 -5.20109104E-003 -3.55847144E-003 -1.34734875E+001 -6.17890633E+001 -1.34734235E+001 + 1.40000000E+002 9.50000000E+001 4.00659536E-002 -1.16326323E+000 -1.34436281E-002 -4.57269265E-003 -1.64597980E+001 -5.47327260E+001 -1.64591517E+001 + 1.45000000E+002 9.50000000E+001 -1.32031423E+000 1.30223369E-001 -1.54400204E-002 3.25818990E-004 -1.53229169E+001 -5.40036161E+001 -1.53223285E+001 + 1.50000000E+002 9.50000000E+001 -8.16684483E-001 1.88837715E+000 -8.00981303E-003 -9.11279794E-003 -1.15120840E+001 -5.60994232E+001 -1.15119330E+001 + 1.55000000E+002 9.50000000E+001 6.79573363E-001 2.17786632E+000 -1.55339715E-002 -4.53971430E-002 -1.06143650E+001 -4.41570673E+001 -1.06124445E+001 + 1.60000000E+002 9.50000000E+001 1.30697520E+000 9.68979845E-001 -6.24689374E-002 -9.12610199E-002 -1.35507935E+001 -3.69039080E+001 -1.35307731E+001 + 1.65000000E+002 9.50000000E+001 3.49336561E-001 -4.34974786E-001 -1.44562607E-001 -1.18335013E-001 -2.28475655E+001 -3.23500633E+001 -2.23859813E+001 + 1.70000000E+002 9.50000000E+001 -1.48807747E+000 -1.08624889E+000 -2.33112260E-001 -1.16723203E-001 -1.24709904E+001 -2.94556134E+001 -1.23848891E+001 + 1.75000000E+002 9.50000000E+001 -3.08458651E+000 -1.06559031E+000 -2.97777400E-001 -1.00958267E-001 -7.50494704E+000 -2.78281273E+001 -7.46481804E+000 + 1.80000000E+002 9.50000000E+001 -3.69375888E+000 -9.57769570E-001 -3.20675596E-001 -9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 1.00000000E+002 -4.02123119E+001 2.47963401E+001 7.13083667E+000 -4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 1.00000000E+002 -3.73740423E+001 2.48266072E+001 6.67481400E+000 -4.45153782E+000 1.52603179E+001 3.08282963E-001 1.53970053E+001 + 1.00000000E+001 1.00000000E+002 -2.98317945E+001 2.42089534E+001 5.38221716E+000 -4.74620250E+000 1.39123842E+001 -6.60881684E-001 1.40613168E+001 + 1.50000000E+001 1.00000000E+002 -2.02957662E+001 2.16283871E+001 3.50475683E+000 -4.81257719E+000 1.16648649E+001 -2.28305279E+000 1.18364134E+001 + 2.00000000E+001 1.00000000E+002 -1.22488810E+001 1.70200818E+001 1.50772385E+000 -4.32315504E+000 8.65323810E+000 -4.56399321E+000 8.85549761E+000 + 2.50000000E+001 1.00000000E+002 -7.79068235E+000 1.24845299E+001 -5.83086752E-002 -3.26690816E+000 5.57723972E+000 -7.49438521E+000 5.78623202E+000 + 3.00000000E+001 1.00000000E+002 -5.73521324E+000 1.05772688E+001 -8.59320479E-001 -2.00613019E+000 3.82831732E+000 -1.09997103E+001 3.96890053E+000 + 3.50000000E+001 1.00000000E+002 -2.69999346E+000 1.10770443E+001 -9.99459725E-001 -9.93643628E-001 3.36062170E+000 -1.47981736E+001 3.42647958E+000 + 4.00000000E+001 1.00000000E+002 2.70514736E+000 1.03998955E+001 -8.70161258E-001 -3.88405707E-001 2.84639714E+000 -1.81974591E+001 2.88041420E+000 + 4.50000000E+001 1.00000000E+002 7.42476809E+000 5.76030693E+000 -7.32669975E-001 -7.70061418E-003 1.68150910E+000 -2.04798594E+001 1.70783181E+000 + 5.00000000E+001 1.00000000E+002 7.46712735E+000 -7.12287498E-001 -5.31730988E-001 3.21221740E-001 -2.76097178E-001 -2.19135201E+001 -2.46410824E-001 + 5.50000000E+001 1.00000000E+002 3.34573594E+000 -4.22984926E+000 -1.67353044E-001 5.03476943E-001 -3.14173063E+000 -2.32837836E+001 -3.09990083E+000 + 6.00000000E+001 1.00000000E+002 -5.13241371E-001 -3.38790898E+000 2.07898490E-001 3.78742786E-001 -7.08132887E+000 -2.50678110E+001 -7.01282637E+000 + 6.50000000E+001 1.00000000E+002 -1.55843533E+000 -1.14681996E+000 3.25575765E-001 4.76599533E-002 -1.20452452E+001 -2.74333835E+001 -1.19214325E+001 + 7.00000000E+001 1.00000000E+002 -1.14772036E+000 7.15615665E-002 1.48891030E-001 -1.86009060E-001 -1.65649341E+001 -3.02374780E+001 -1.63823888E+001 + 7.50000000E+001 1.00000000E+002 -7.43149735E-001 7.53303877E-001 -8.45862449E-002 -1.56035509E-001 -1.72873418E+001 -3.27951377E+001 -1.71668476E+001 + 8.00000000E+001 1.00000000E+002 1.69658640E-001 1.35199818E+000 -1.47197385E-001 2.05342752E-002 -1.50911291E+001 -3.43368002E+001 -1.50397665E+001 + 8.50000000E+001 1.00000000E+002 1.49457447E+000 7.74178282E-001 -3.90167196E-002 1.25351290E-001 -1.32558805E+001 -3.54143310E+001 -1.32295401E+001 + 9.00000000E+001 1.00000000E+002 1.45364320E+000 -8.87412821E-001 7.36472856E-002 7.72579696E-002 -1.31536584E+001 -3.72122341E+001 -1.31366339E+001 + 9.50000000E+001 1.00000000E+002 -2.59948005E-001 -1.35509728E+000 6.94093488E-002 -2.20109960E-002 -1.49821533E+001 -4.05339937E+001 -1.49700752E+001 + 1.00000000E+002 1.00000000E+002 -1.15226122E+000 2.57701546E-001 -7.49930573E-003 -4.25750475E-002 -1.63355179E+001 -4.50627062E+001 -1.63296998E+001 + 1.05000000E+002 1.00000000E+002 2.56935053E-001 1.49854277E+000 -3.76171646E-002 1.35886281E-002 -1.41392936E+001 -4.57381164E+001 -1.41362893E+001 + 1.10000000E+002 1.00000000E+002 1.74445539E+000 3.69556213E-001 3.58752318E-003 4.58462474E-002 -1.27546504E+001 -4.45259193E+001 -1.27517630E+001 + 1.15000000E+002 1.00000000E+002 9.05715020E-001 -1.26037175E+000 3.63213806E-002 1.59938061E-002 -1.39603974E+001 -4.58055786E+001 -1.39575587E+001 + 1.20000000E+002 1.00000000E+002 -8.26646930E-001 -7.02829446E-001 1.84064812E-002 -1.58578863E-002 -1.70695825E+001 -5.00679917E+001 -1.70674056E+001 + 1.25000000E+002 1.00000000E+002 -6.05558125E-001 1.09514755E+000 -6.55657504E-003 -1.08506273E-002 -1.58304541E+001 -5.57176784E+001 -1.58300084E+001 + 1.30000000E+002 1.00000000E+002 1.13642861E+000 1.24390426E+000 -7.62243778E-003 -1.00152094E-003 -1.32472083E+001 -6.00622940E+001 -1.32471179E+001 + 1.35000000E+002 1.00000000E+002 1.58095176E+000 -3.70109904E-001 -1.04565498E-002 -7.94232499E-003 -1.35684107E+001 -5.54126316E+001 -1.35681267E+001 + 1.40000000E+002 1.00000000E+002 3.98379264E-002 -1.15072860E+000 -2.74586923E-002 -7.95597228E-003 -1.65538469E+001 -4.86548127E+001 -1.65511704E+001 + 1.45000000E+002 1.00000000E+002 -1.30519165E+000 1.28376262E-001 -3.04684654E-002 3.10116042E-003 -1.54232081E+001 -4.80567352E+001 -1.54208405E+001 + 1.50000000E+002 1.00000000E+002 -8.07100644E-001 1.86671628E+000 -1.47161016E-002 -1.57659578E-002 -1.16126585E+001 -5.11027722E+001 -1.16121701E+001 + 1.55000000E+002 1.00000000E+002 6.72284104E-001 2.15285530E+000 -2.98895765E-002 -8.85432533E-002 -1.07141015E+001 -3.83667259E+001 -1.07066516E+001 + 1.60000000E+002 1.00000000E+002 1.29247299E+000 9.57670398E-001 -1.24512755E-001 -1.79620571E-001 -1.36495036E+001 -3.09872295E+001 -1.35700647E+001 + 1.65000000E+002 1.00000000E+002 3.45540892E-001 -4.30145183E-001 -2.89235889E-001 -2.32103527E-001 -2.29437269E+001 -2.63945500E+001 -2.13247478E+001 + 1.70000000E+002 1.00000000E+002 -1.47110180E+000 -1.07364847E+000 -4.66314124E-001 -2.26758159E-001 -1.25712336E+001 -2.34831138E+001 -1.22327316E+001 + 1.75000000E+002 1.00000000E+002 -3.04948893E+000 -1.05284168E+000 -5.95415042E-001 -1.93293844E-001 -7.60489327E+000 -2.18469585E+001 -7.44437403E+000 + 1.80000000E+002 1.00000000E+002 -3.65175429E+000 -9.46015235E-001 -6.41387627E-001 -1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 1.05000000E+002 -3.94377986E+001 2.43273457E+001 1.06084356E+001 -6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 1.05000000E+002 -3.66541876E+001 2.43557274E+001 9.92860122E+000 -6.66719521E+000 1.50921859E+001 3.77572232E+000 1.54016243E+001 + 1.00000000E+001 1.05000000E+002 -2.92572328E+001 2.37478370E+001 8.00149473E+000 -7.09869720E+000 1.37442096E+001 2.80633860E+000 1.40807681E+001 + 1.50000000E+001 1.05000000E+002 -1.99053984E+001 2.12147758E+001 5.20415271E+000 -7.18810419E+000 1.14966933E+001 1.18411154E+000 1.18831153E+001 + 2.00000000E+001 1.05000000E+002 -1.20144982E+001 1.66939007E+001 2.23126282E+000 -6.44976086E+000 8.48525075E+000 -1.09670338E+000 8.93888890E+000 + 2.50000000E+001 1.05000000E+002 -7.64285146E+000 1.22456758E+001 -9.71775396E-002 -4.86966254E+000 5.40983980E+000 -4.02680051E+000 5.87810989E+000 + 3.00000000E+001 1.05000000E+002 -5.62646416E+000 1.03757032E+001 -1.28551096E+000 -2.98868145E+000 3.66138811E+000 -7.53169879E+000 3.97942446E+000 + 3.50000000E+001 1.05000000E+002 -2.64825183E+000 1.08655767E+001 -1.49098367E+000 -1.48041294E+000 3.19316323E+000 -1.13295395E+001 3.34381004E+000 + 4.00000000E+001 1.05000000E+002 2.65362795E+000 1.01998863E+001 -1.29717684E+000 -5.79514829E-001 2.67782909E+000 -1.47282083E+001 2.75603943E+000 + 4.50000000E+001 1.05000000E+002 7.28146949E+000 5.64814857E+000 -1.09208068E+000 -1.25281653E-002 1.51166346E+000 -1.70128410E+001 1.57223959E+000 + 5.00000000E+001 1.05000000E+002 7.32143484E+000 -6.99562329E-001 -7.92304033E-001 4.77538955E-001 -4.47112713E-001 -1.84548393E+001 -3.78941873E-001 + 5.50000000E+001 1.05000000E+002 3.27915592E+000 -4.14787624E+000 -2.49061014E-001 7.48652515E-001 -3.31348624E+000 -1.98370299E+001 -3.21784632E+000 + 6.00000000E+001 1.05000000E+002 -5.04262154E-001 -3.32142108E+000 3.09782358E-001 5.62201464E-001 -7.25306099E+000 -2.16291596E+001 -7.09733367E+000 + 6.50000000E+001 1.05000000E+002 -1.52839613E+000 -1.12420977E+000 4.84453781E-001 6.87317087E-002 -1.22156722E+001 -2.39869115E+001 -1.19360297E+001 + 7.00000000E+001 1.05000000E+002 -1.12588743E+000 7.00091555E-002 2.20683574E-001 -2.79219550E-001 -1.67318479E+001 -2.67519477E+001 -1.63197445E+001 + 7.50000000E+001 1.05000000E+002 -7.29457803E-001 7.38902118E-001 -1.27565106E-001 -2.34370289E-001 -1.74519768E+001 -2.92535674E+001 -1.71742208E+001 + 8.00000000E+001 1.05000000E+002 1.66274286E-001 1.32630231E+000 -2.21394863E-001 2.89724002E-002 -1.52579300E+001 -3.08014123E+001 -1.51384084E+001 + 8.50000000E+001 1.05000000E+002 1.46601613E+000 7.58912966E-001 -6.07469261E-002 1.85843567E-001 -1.34245994E+001 -3.19546889E+001 -1.33641005E+001 + 9.00000000E+001 1.05000000E+002 1.42504272E+000 -8.71241588E-001 1.07082560E-001 1.15193450E-001 -1.33227628E+001 -3.38451762E+001 -1.32844252E+001 + 9.50000000E+001 1.05000000E+002 -2.56496969E-001 -1.32905682E+000 1.01253635E-001 -3.19581224E-002 -1.51488192E+001 -3.72578730E+001 -1.51221784E+001 + 1.00000000E+002 1.05000000E+002 -1.13104496E+000 2.54108462E-001 -1.28524290E-002 -6.22457622E-002 -1.64950513E+001 -4.17149945E+001 -1.64820155E+001 + 1.05000000E+002 1.05000000E+002 2.52655419E-001 1.47109308E+000 -5.74350802E-002 2.18617420E-002 -1.42994533E+001 -4.20073543E+001 -1.42920976E+001 + 1.10000000E+002 1.05000000E+002 1.71215520E+000 3.62444063E-001 4.59948035E-003 7.06415675E-002 -1.29172623E+001 -4.07789282E+001 -1.29101622E+001 + 1.15000000E+002 1.05000000E+002 8.88577089E-001 -1.23695411E+000 5.47563081E-002 2.64876648E-002 -1.41243297E+001 -4.20966662E+001 -1.41174081E+001 + 1.20000000E+002 1.05000000E+002 -8.11314361E-001 -6.89409168E-001 2.94997832E-002 -2.18178941E-002 -1.72342305E+001 -4.64872249E+001 -1.72290755E+001 + 1.25000000E+002 1.05000000E+002 -5.93908761E-001 1.07495744E+000 -7.40550648E-003 -1.60020197E-002 -1.59937416E+001 -5.28522137E+001 -1.59928465E+001 + 1.30000000E+002 1.05000000E+002 1.11569501E+000 1.22061012E+000 -1.00732549E-002 -2.41338949E-003 -1.34094666E+001 -5.74727157E+001 -1.34092962E+001 + 1.35000000E+002 1.05000000E+002 1.55186559E+000 -3.63400844E-001 -1.56392081E-002 -1.24532548E-002 -1.37295766E+001 -5.17615090E+001 -1.37288934E+001 + 1.40000000E+002 1.05000000E+002 3.96593572E-002 -1.12948940E+000 -4.14063875E-002 -1.13372928E-002 -1.67155127E+001 -4.51231991E+001 -1.67092509E+001 + 1.45000000E+002 1.05000000E+002 -1.28006711E+000 1.25434962E-001 -4.53693476E-002 5.95854876E-003 -1.55923492E+001 -4.45689849E+001 -1.55868558E+001 + 1.50000000E+002 1.05000000E+002 -7.91404416E-001 1.83090357E+000 -2.12795303E-002 -2.21345179E-002 -1.17812819E+001 -4.80345172E+001 -1.17802529E+001 + 1.55000000E+002 1.05000000E+002 6.59956018E-001 2.11162908E+000 -4.38785871E-002 -1.30903825E-001 -1.08814065E+001 -3.49770179E+001 -1.08645263E+001 + 1.60000000E+002 1.05000000E+002 1.26833122E+000 9.39202250E-001 -1.85446246E-001 -2.66590268E-001 -1.38151795E+001 -2.75476013E+001 -1.36350826E+001 + 1.65000000E+002 1.05000000E+002 3.39321101E-001 -4.22008237E-001 -4.31586975E-001 -3.44140306E-001 -2.31064265E+001 -2.29397843E+001 -2.00120062E+001 + 1.70000000E+002 1.05000000E+002 -1.44280196E+000 -1.05289455E+000 -6.95906210E-001 -3.35110436E-001 -1.27402402E+001 -2.00217876E+001 -1.19957272E+001 + 1.75000000E+002 1.05000000E+002 -2.99114052E+000 -1.03209410E+000 -8.88504708E-001 -2.84180299E-001 -7.77323792E+000 -1.83823209E+001 -7.41128452E+000 + 1.80000000E+002 1.05000000E+002 -3.58195765E+000 -9.27061152E-001 -9.57218310E-001 -2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 1.10000000E+002 -3.83631397E+001 2.36732055E+001 1.40052979E+001 -8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 1.10000000E+002 -3.56554504E+001 2.36994012E+001 1.31068762E+001 -8.83200339E+000 1.48530531E+001 6.19732151E+000 1.54079004E+001 + 1.00000000E+001 1.10000000E+002 -2.84602138E+001 2.31057774E+001 1.05600442E+001 -9.39691285E+000 1.35050356E+001 5.22780657E+000 1.41070580E+001 + 1.50000000E+001 1.10000000E+002 -1.93639285E+001 2.06394484E+001 6.86431708E+000 -9.50857461E+000 1.12575393E+001 3.60552555E+000 1.19457451E+001 + 2.00000000E+001 1.10000000E+002 -1.16892229E+001 1.62405259E+001 2.93845516E+000 -8.52698621E+000 8.24635358E+000 1.32474893E+000 9.04958967E+000 + 2.50000000E+001 1.10000000E+002 -7.43737575E+000 1.19137300E+001 -1.34487655E-001 -6.43532328E+000 5.17169662E+000 -1.60520328E+000 5.99970778E+000 + 3.00000000E+001 1.10000000E+002 -5.47514809E+000 1.00954430E+001 -1.70114182E+000 -3.94883136E+000 3.42378342E+000 -5.10980672E+000 3.99346220E+000 + 3.50000000E+001 1.10000000E+002 -2.57629380E+000 1.05715430E+001 -1.97068576E+000 -1.95653825E+000 2.95481967E+000 -8.90703711E+000 3.22886617E+000 + 4.00000000E+001 1.10000000E+002 2.58197521E+000 9.92201314E+000 -1.71423400E+000 -7.66849484E-001 2.43805488E+000 -1.23048756E+001 2.58137448E+000 + 4.50000000E+001 1.10000000E+002 7.08242007E+000 5.49262861E+000 -1.44333543E+000 -1.77021384E-002 1.27025139E+000 -1.45905083E+001 1.38145940E+000 + 5.00000000E+001 1.10000000E+002 7.11934254E+000 -6.81506433E-001 -1.04704802E+000 6.29966183E-001 -6.90093978E-001 -1.60374233E+001 -5.65129048E-001 + 5.50000000E+001 1.10000000E+002 3.18715332E+000 -4.03377475E+000 -3.29079023E-001 9.87953826E-001 -3.55765284E+000 -1.74268291E+001 -3.38302793E+000 + 6.00000000E+001 1.10000000E+002 -4.91302801E-001 -3.22902003E+000 4.09044975E-001 7.41289020E-001 -7.49769775E+000 -1.92243622E+001 -7.21526208E+000 + 6.50000000E+001 1.10000000E+002 -1.48627404E+000 -1.09287930E+000 6.39382612E-001 8.93558924E-002 -1.24593825E+001 -2.15792861E+001 -1.19576570E+001 + 7.00000000E+001 1.10000000E+002 -1.09530194E+000 6.77114884E-002 2.90688597E-001 -3.70115085E-001 -1.69712640E+001 -2.43250631E+001 -1.62380542E+001 + 7.50000000E+001 1.10000000E+002 -7.10356240E-001 7.18803681E-001 -1.69521706E-001 -3.10811755E-001 -1.76870386E+001 -2.67975562E+001 -1.71842881E+001 + 8.00000000E+001 1.10000000E+002 1.61596148E-001 1.29071604E+000 -2.93890555E-001 3.71490478E-002 -1.54943463E+001 -2.83459511E+001 -1.52747634E+001 + 8.50000000E+001 1.10000000E+002 1.42656598E+000 7.37960015E-001 -8.21542916E-002 2.44905879E-001 -1.36628562E+001 -2.95354118E+001 -1.35519460E+001 + 9.00000000E+001 1.10000000E+002 1.38578835E+000 -8.48697457E-001 1.39561182E-001 1.52437357E-001 -1.35613217E+001 -3.14727567E+001 -1.34916347E+001 + 9.50000000E+001 1.10000000E+002 -2.51273755E-001 -1.29316822E+000 1.32425819E-001 -4.13856812E-002 -1.53844546E+001 -3.49343413E+001 -1.53365477E+001 + 1.00000000E+002 1.10000000E+002 -1.10148362E+000 2.48670787E-001 -1.77872484E-002 -8.13774796E-002 -1.67230532E+001 -3.93657381E+001 -1.66994844E+001 + 1.05000000E+002 1.10000000E+002 2.46534689E-001 1.43266156E+000 -7.65874666E-002 2.97073030E-002 -1.45288986E+001 -3.94866508E+001 -1.45150528E+001 + 1.10000000E+002 1.10000000E+002 1.66708821E+000 3.52415197E-001 5.46098214E-003 9.45607984E-002 -1.31494688E+001 -3.82498240E+001 -1.31360696E+001 + 1.15000000E+002 1.10000000E+002 8.64549756E-001 -1.20459930E+000 7.24310812E-002 3.67021344E-002 -1.43572309E+001 -3.95874732E+001 -1.43442259E+001 + 1.20000000E+002 1.10000000E+002 -7.90442693E-001 -6.70924688E-001 4.01367608E-002 -2.73883164E-002 -1.74646664E+001 -4.40474010E+001 -1.74551377E+001 + 1.25000000E+002 1.10000000E+002 -5.78326988E-001 1.04702595E+000 -8.15385584E-003 -2.07704615E-002 -1.62229440E+001 -5.08071081E+001 -1.62214329E+001 + 1.30000000E+002 1.10000000E+002 1.08642728E+000 1.18870901E+000 -1.22791853E-002 -3.73183774E-003 -1.36398901E+001 -5.56114390E+001 -1.36396143E+001 + 1.35000000E+002 1.10000000E+002 1.51133740E+000 -3.53543193E-001 -2.06362479E-002 -1.69336158E-002 -1.39598983E+001 -4.92500362E+001 -1.39586138E+001 + 1.40000000E+002 1.10000000E+002 3.95052576E-002 -1.09965320E+000 -5.51091448E-002 -1.46419829E-002 -1.69477906E+001 -4.26577956E+001 -1.69361440E+001 + 1.45000000E+002 1.10000000E+002 -1.24511544E+000 1.21453570E-001 -5.99899882E-002 8.90981777E-003 -1.58331875E+001 -4.21221730E+001 -1.58229928E+001 + 1.50000000E+002 1.10000000E+002 -7.69699342E-001 1.78120409E+000 -2.76136441E-002 -2.81215200E-002 -1.20207129E+001 -4.58658607E+001 -1.20189215E+001 + 1.55000000E+002 1.10000000E+002 6.42671498E-001 2.05447817E+000 -5.73377058E-002 -1.72108900E-001 -1.11190337E+001 -3.26053488E+001 -1.10882999E+001 + 1.60000000E+002 1.10000000E+002 1.23470159E+000 9.13703083E-001 -2.44738713E-001 -3.51483230E-001 -1.40505992E+001 -2.51436258E+001 -1.37254211E+001 + 1.65000000E+002 1.10000000E+002 3.30692621E-001 -4.10622918E-001 -5.70478408E-001 -4.53590521E-001 -2.33385466E+001 -2.05260083E+001 -1.86981696E+001 + 1.70000000E+002 1.10000000E+002 -1.40341208E+000 -1.02413623E+000 -9.20111772E-001 -4.40961742E-001 -1.29807096E+001 -1.76037789E+001 -1.16938100E+001 + 1.75000000E+002 1.10000000E+002 -2.90999101E+000 -1.00350042E+000 -1.17480725E+000 -3.72929443E-001 -8.01268693E+000 -1.59622190E+001 -7.36682750E+000 + 1.80000000E+002 1.10000000E+002 -3.48490014E+000 -9.01051575E-001 -1.26576398E+000 -3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 1.15000000E+002 -3.69965143E+001 2.28388980E+001 1.72955715E+001 -1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 1.15000000E+002 -3.43854177E+001 2.28626482E+001 1.61854664E+001 -1.09294797E+001 1.45388836E+001 8.03556007E+000 1.54156363E+001 + 1.00000000E+001 1.15000000E+002 -2.74467589E+001 2.22877210E+001 1.30384353E+001 -1.16233315E+001 1.31908262E+001 7.06595252E+000 1.41392709E+001 + 1.50000000E+001 1.15000000E+002 -1.86753840E+001 1.99068640E+001 8.47269503E+000 -1.17562893E+001 1.09433659E+001 5.44362183E+000 1.20217546E+001 + 2.00000000E+001 1.15000000E+002 -1.12753868E+001 1.56634684E+001 3.62403891E+000 -1.05390021E+001 7.93250617E+000 3.16285664E+000 9.18228435E+000 + 2.50000000E+001 1.15000000E+002 -7.17566045E+000 1.14912216E+001 -1.69820566E-001 -7.95201057E+000 4.85875949E+000 2.33012206E-001 6.14497249E+000 + 3.00000000E+001 1.15000000E+002 -5.28230092E+000 9.73857396E+000 -2.10295603E+000 -4.87937308E+000 3.11144357E+000 -3.27128964E+000 4.01049252E+000 + 3.50000000E+001 1.15000000E+002 -2.48461329E+000 1.01971463E+001 -2.43491037E+000 -2.41851613E+000 2.64153893E+000 -7.06778824E+000 3.08270932E+000 + 4.00000000E+001 1.15000000E+002 2.49078766E+000 9.56841561E+000 -2.11823336E+000 -9.49046885E-001 2.12304277E+000 -1.04645515E+001 2.35602547E+000 + 4.50000000E+001 1.15000000E+002 6.82926484E+000 5.29496139E+000 -1.78383723E+000 -2.31474668E-002 9.53272910E-001 -1.27506713E+001 1.13453021E+000 + 5.00000000E+001 1.15000000E+002 6.86256289E+000 -6.58332105E-001 -1.29401716E+000 7.77432593E-001 -1.00899600E+000 -1.42012889E+001 -8.05598571E-001 + 5.50000000E+001 1.15000000E+002 3.07050516E+000 -3.88860226E+000 -4.06699223E-001 1.21960057E+000 -3.87812832E+000 -1.55962256E+001 -3.59515273E+000 + 6.00000000E+001 1.15000000E+002 -4.74551567E-001 -3.11156326E+000 5.05034929E-001 9.14570555E-001 -7.81907434E+000 -1.73982713E+001 -7.36516263E+000 + 6.50000000E+001 1.15000000E+002 -1.43252543E+000 -1.05305902E+000 7.89185626E-001 1.09233048E-001 -1.27801763E+001 -1.97525086E+001 -1.19854644E+001 + 7.00000000E+001 1.15000000E+002 -1.05622016E+000 6.47915503E-002 3.58252897E-001 -4.58096369E-001 -1.72871063E+001 -2.24868041E+001 -1.61409425E+001 + 7.50000000E+001 1.15000000E+002 -6.85908683E-001 6.93211777E-001 -2.10282328E-001 -3.84735477E-001 -1.79966411E+001 -2.49400684E+001 -1.71970822E+001 + 8.00000000E+001 1.15000000E+002 1.55725476E-001 1.24547481E+000 -3.64176927E-001 4.51351869E-002 -1.58044389E+001 -2.64860558E+001 -1.54482413E+001 + 8.50000000E+001 1.15000000E+002 1.37653248E+000 7.11442410E-001 -1.03000642E-001 3.02179566E-001 -1.39745999E+001 -2.76958437E+001 -1.37940484E+001 + 9.00000000E+001 1.15000000E+002 1.33618863E+000 -8.19956127E-001 1.70921768E-001 1.88688046E-001 -1.38731686E+001 -2.96615889E+001 -1.37601168E+001 + 9.50000000E+001 1.15000000E+002 -2.44286238E-001 -1.24772719E+000 1.62696197E-001 -5.02750138E-002 -1.56927529E+001 -3.31548820E+001 -1.56155373E+001 + 1.00000000E+002 1.15000000E+002 -1.06380508E+000 2.41373728E-001 -2.22876953E-002 -9.98218723E-002 -1.70232471E+001 -3.75827137E+001 -1.69852338E+001 + 1.05000000E+002 1.15000000E+002 2.38556977E-001 1.38351904E+000 -9.48879684E-002 3.70831147E-002 -1.48315650E+001 -3.76170004E+001 -1.48087563E+001 + 1.10000000E+002 1.15000000E+002 1.60954853E+000 3.39608580E-001 6.23027589E-003 1.17348479E-001 -1.34552604E+001 -3.63767331E+001 -1.34331533E+001 + 1.15000000E+002 1.15000000E+002 8.33863462E-001 -1.16346792E+000 8.91675364E-002 4.64137483E-002 -1.46631173E+001 -3.77331070E+001 -1.46417517E+001 + 1.20000000E+002 1.15000000E+002 -7.64075398E-001 -6.47518611E-001 5.00566539E-002 -3.25948851E-002 -1.77651012E+001 -4.22541427E+001 -1.77496803E+001 + 1.25000000E+002 1.15000000E+002 -5.58866781E-001 1.01145791E+000 -8.97905391E-003 -2.50232559E-002 -1.65224610E+001 -4.92856230E+001 -1.65201630E+001 + 1.30000000E+002 1.15000000E+002 1.04879762E+000 1.14832995E+000 -1.42822602E-002 -4.76418298E-003 -1.39427981E+001 -5.42243674E+001 -1.39423910E+001 + 1.35000000E+002 1.15000000E+002 1.45956949E+000 -3.40638851E-001 -2.53547344E-002 -2.12073474E-002 -1.42636788E+001 -4.73938388E+001 -1.42615669E+001 + 1.40000000E+002 1.15000000E+002 3.93102680E-002 -1.06140063E+000 -6.83838010E-002 -1.77808758E-002 -1.72549671E+001 -4.07953230E+001 -1.72357898E+001 + 1.45000000E+002 1.15000000E+002 -1.20060698E+000 1.16506097E-001 -7.41660956E-002 1.19618147E-002 -1.61497851E+001 -4.02628718E+001 -1.61329725E+001 + 1.50000000E+002 1.15000000E+002 -7.42139315E-001 1.71799595E+000 -3.36308882E-002 -3.36492075E-002 -1.23349973E+001 -4.42310746E+001 -1.23321916E+001 + 1.55000000E+002 1.15000000E+002 6.20546976E-001 1.98181218E+000 -7.01173399E-002 -2.11811952E-001 -1.14310567E+001 -3.08078931E+001 -1.13812135E+001 + 1.60000000E+002 1.15000000E+002 1.19179941E+000 8.81350062E-001 -3.01886232E-001 -4.33634828E-001 -1.43598827E+001 -2.33197501E+001 -1.38404073E+001 + 1.65000000E+002 1.15000000E+002 3.19679603E-001 -3.96073923E-001 -7.04810534E-001 -5.59618937E-001 -2.36443424E+001 -1.86940255E+001 -1.74887265E+001 + 1.70000000E+002 1.15000000E+002 -1.35325680E+000 -9.87582495E-001 -1.13720106E+000 -5.43510698E-001 -1.32966659E+001 -1.57682790E+001 -1.13486679E+001 + 1.75000000E+002 1.15000000E+002 -2.80666555E+000 -9.67272518E-001 -1.45213683E+000 -4.58868191E-001 -8.32727539E+000 -1.41250100E+001 -7.31267787E+000 + 1.80000000E+002 1.15000000E+002 -3.36132044E+000 -8.68184451E-001 -1.56467643E+000 -4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 1.20000000E+002 -3.53483230E+001 2.18307726E+001 2.04542153E+001 -1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 1.20000000E+002 -3.28537386E+001 2.18518623E+001 1.91409548E+001 -1.29436593E+001 1.41440222E+001 9.49620991E+000 1.54245899E+001 + 1.00000000E+001 1.20000000E+002 -2.62245294E+001 2.12999591E+001 1.54178367E+001 -1.37609970E+001 1.27959257E+001 8.52653173E+000 1.41763076E+001 + 1.50000000E+001 1.20000000E+002 -1.78448982E+001 1.90226854E+001 1.00170998E+001 -1.39141260E+001 1.05485165E+001 6.90415660E+000 1.21081889E+001 + 2.00000000E+001 1.20000000E+002 -1.07759778E+001 1.49671823E+001 4.28287144E+000 -1.24704965E+001 7.53804766E+000 4.62339660E+000 9.33107785E+000 + 2.50000000E+001 1.20000000E+002 -6.85952581E+000 1.09813599E+001 -2.02832520E-001 -9.40822080E+000 4.46535659E+000 1.69366115E+000 6.30726935E+000 + 3.00000000E+001 1.20000000E+002 -5.04927819E+000 9.30775225E+000 -2.48785989E+000 -5.77330300E+000 2.71869040E+000 -1.81028550E+000 4.02991534E+000 + 3.50000000E+001 1.20000000E+002 -2.37387489E+000 9.74520240E+000 -2.88015910E+000 -2.86291068E+000 2.24765637E+000 -5.60588591E+000 2.90690715E+000 + 4.00000000E+001 1.20000000E+002 2.38079471E+000 9.14183728E+000 -2.50619251E+000 -1.12474249E+000 1.72715541E+000 -9.00131218E+000 2.07968209E+000 + 4.50000000E+001 1.20000000E+002 6.52407350E+000 5.05672458E+000 -2.11107844E+000 -2.87534462E-002 5.55131783E-001 -1.12876140E+001 8.30349374E-001 + 5.00000000E+001 1.20000000E+002 6.55327291E+000 -6.30270097E-001 -1.53132778E+000 9.18939156E-001 -1.40935476E+000 -1.27413981E+001 -1.10098605E+000 + 5.50000000E+001 1.20000000E+002 2.93022480E+000 -3.71367997E+000 -4.81218770E-001 1.44190715E+000 -4.28036488E+000 -1.41411320E+001 -3.85359442E+000 + 6.00000000E+001 1.20000000E+002 -4.54220271E-001 -2.97015202E+000 5.97160547E-001 1.08067379E+000 -8.22253419E+000 -1.59473564E+001 -7.54492224E+000 + 6.50000000E+001 1.20000000E+002 -1.36773143E+000 -1.00506965E+000 9.32756360E-001 1.28052514E-001 -1.31832941E+001 -1.83020533E+001 -1.20182209E+001 + 7.00000000E+001 1.20000000E+002 -1.00898753E+000 6.13968555E-002 4.22738105E-001 -5.42617862E-001 -1.76847400E+001 -2.10285952E+001 -1.60321907E+001 + 7.50000000E+001 1.20000000E+002 -6.56198665E-001 6.62388181E-001 -2.49712267E-001 -4.55542546E-001 -1.83865365E+001 -2.34668768E+001 -1.72123928E+001 + 8.00000000E+001 1.20000000E+002 1.48796223E-001 1.19085475E+000 -4.31777841E-001 5.30268348E-002 -1.61940517E+001 -2.50082870E+001 -1.56579119E+001 + 8.50000000E+001 1.20000000E+002 1.31627203E+000 6.79478228E-001 -1.23034625E-001 3.57334658E-001 -1.43656207E+001 -2.62304471E+001 -1.40917558E+001 + 9.00000000E+001 1.20000000E+002 1.27656544E+000 -7.85231216E-001 2.01028052E-001 2.23630140E-001 -1.42640085E+001 -2.82157315E+001 -1.40926073E+001 + 9.50000000E+001 1.20000000E+002 -2.35575307E-001 -1.19304338E+000 1.91818305E-001 -5.86460388E-002 -1.60792709E+001 -3.17326159E+001 -1.59626952E+001 + 1.00000000E+002 1.20000000E+002 -1.01826182E+000 2.32246353E-001 -2.63987340E-002 -1.17434691E-001 -1.74010736E+001 -3.61684826E+001 -1.73437709E+001 + 1.05000000E+002 1.20000000E+002 2.28742609E-001 1.32399279E+000 -1.12199143E-001 4.40053993E-002 -1.52130610E+001 -3.61573088E+001 -1.51782579E+001 + 1.10000000E+002 1.20000000E+002 1.53989560E+000 3.24167435E-001 6.98140754E-003 1.38830952E-001 -1.38403640E+001 -3.49178124E+001 -1.38066080E+001 + 1.15000000E+002 1.20000000E+002 7.96771873E-001 -1.11375044E+000 1.04859035E-001 5.54391030E-002 -1.50478331E+001 -3.62959021E+001 -1.50153727E+001 + 1.20000000E+002 1.20000000E+002 -7.32268229E-001 -6.19322316E-001 5.90678538E-002 -3.74884554E-002 -1.81416821E+001 -4.08815163E+001 -1.81186333E+001 + 1.25000000E+002 1.20000000E+002 -5.35549766E-001 9.68414504E-001 -1.00361179E-002 -2.86837546E-002 -1.68984219E+001 -4.81242253E+001 -1.68951481E+001 + 1.30000000E+002 1.20000000E+002 1.00307411E+000 1.09961664E+000 -1.61428713E-002 -5.35842475E-003 -1.43241532E+001 -5.31649474E+001 -1.43235861E+001 + 1.35000000E+002 1.20000000E+002 1.39683377E+000 -3.24860436E-001 -2.97274049E-002 -2.51099522E-002 -1.46468421E+001 -4.59765934E+001 -1.46436458E+001 + 1.40000000E+002 1.20000000E+002 3.89760036E-002 -1.01499144E+000 -8.10595397E-002 -2.06639991E-002 -1.76428600E+001 -3.93289849E+001 -1.76135036E+001 + 1.45000000E+002 1.20000000E+002 -1.14690590E+000 1.10680284E-001 -8.77358906E-002 1.51156303E-002 -1.65476930E+001 -3.87879286E+001 -1.65218426E+001 + 1.50000000E+002 1.20000000E+002 -7.08929538E-001 1.64176660E+000 -3.92494106E-002 -3.86575334E-002 -1.27297514E+001 -4.29570329E+001 -1.27256318E+001 + 1.55000000E+002 1.20000000E+002 5.93732055E-001 1.89415869E+000 -8.20858747E-002 -2.49691892E-001 -1.18231536E+001 -2.93847240E+001 -1.17476708E+001 + 1.60000000E+002 1.20000000E+002 1.13990423E+000 8.42370170E-001 -3.56418249E-001 -5.12407963E-001 -1.47487743E+001 -2.18723633E+001 -1.39789920E+001 + 1.65000000E+002 1.20000000E+002 3.06317314E-001 -3.78470710E-001 -8.33532266E-001 -6.61416233E-001 -2.40297341E+001 -1.72390934E+001 -1.64134643E+001 + 1.70000000E+002 1.20000000E+002 -1.29274722E+000 -9.43501004E-001 -1.34550589E+000 -6.41978673E-001 -1.36937507E+001 -1.43100449E+001 -1.09806750E+001 + 1.75000000E+002 1.20000000E+002 -2.68195944E+000 -9.23679953E-001 -1.71837800E+000 -5.41343543E-001 -8.72265755E+000 -1.26651880E+001 -7.25081104E+000 + 1.80000000E+002 1.20000000E+002 -3.21215907E+000 -8.28709920E-001 -1.85168074E+000 -4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 1.25000000E+002 -3.34311096E+001 2.06565019E+001 2.34571902E+001 -1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 1.25000000E+002 -3.10720514E+001 2.06747625E+001 2.19508574E+001 -1.48592177E+001 1.36607491E+001 1.06888000E+001 1.54344830E+001 + 1.00000000E+001 1.25000000E+002 -2.48027704E+001 2.01500767E+001 1.76801577E+001 -1.57936455E+001 1.23126139E+001 9.71906649E+000 1.42169337E+001 + 1.50000000E+001 1.25000000E+002 -1.68786764E+001 1.79937308E+001 1.14858029E+001 -1.59656714E+001 1.00652696E+001 8.09665331E+000 1.22018638E+001 + 2.00000000E+001 1.25000000E+002 -1.01946264E+001 1.41570260E+001 4.90996508E+000 -1.43067913E+001 7.05525163E+000 5.81590199E+000 9.48993684E+000 + 2.50000000E+001 1.25000000E+002 -6.49120333E+000 1.03880100E+001 -2.33259679E-001 -1.07929114E+001 3.98375091E+000 2.88629333E+000 6.47989603E+000 + 3.00000000E+001 1.25000000E+002 -4.77775116E+000 8.80618538E+000 -2.85294460E+000 -6.62386825E+000 2.23778352E+000 -6.17227349E-001 4.05107853E+000 + 3.50000000E+001 1.25000000E+002 -2.24491159E+000 9.21911581E+000 -3.30310686E+000 -3.28637474E+000 1.76544870E+000 -4.41175395E+000 2.70367678E+000 + 4.00000000E+001 1.25000000E+002 2.25284401E+000 8.64559606E+000 -2.87525032E+000 -1.29258520E+000 1.24269933E+000 -7.80558659E+000 1.75229621E+000 + 4.50000000E+001 1.25000000E+002 6.16930500E+000 4.77984060E+000 -2.42264400E+000 -3.43975111E-002 6.81793849E-002 -1.00918396E+001 4.67800262E-001 + 5.00000000E+001 1.25000000E+002 6.19407216E+000 -5.97556222E-001 -1.75717877E+000 1.05353004E+000 -1.89874936E+000 -1.15484936E+001 -1.45178781E+000 + 5.50000000E+001 1.25000000E+002 2.76754617E+000 -3.51055296E+000 -5.51982863E-001 1.65327200E+000 -4.77183623E+000 -1.29526387E+001 -4.15721094E+000 + 6.00000000E+001 1.25000000E+002 -4.30521468E-001 -2.80610117E+000 6.84847547E-001 1.23831774E+000 -8.71539769E+000 -1.47628967E+001 -7.75166407E+000 + 6.50000000E+001 1.25000000E+002 -1.29256497E+000 -9.49331414E-001 1.06905638E+000 1.45548119E-001 -1.36758744E+001 -1.71187317E+001 -1.20544149E+001 + 7.00000000E+001 1.25000000E+002 -9.54036316E-001 5.76630079E-002 4.83569225E-001 -6.23154841E-001 -1.81713724E+001 -1.98394781E+001 -1.59155238E+001 + 7.50000000E+001 1.25000000E+002 -6.21365096E-001 6.26631513E-001 -2.87662285E-001 -5.22686571E-001 -1.88644615E+001 -2.22646067E+001 -1.72296487E+001 + 8.00000000E+001 1.25000000E+002 1.40934188E-001 1.12719073E+000 -4.96248390E-001 6.08863718E-002 -1.66711914E+001 -2.37996348E+001 -1.59021972E+001 + 8.50000000E+001 1.25000000E+002 1.24617779E+000 6.42223495E-001 -1.42041629E-001 4.10047918E-001 -1.48439751E+001 -2.50296551E+001 -1.44466040E+001 + 9.00000000E+001 1.25000000E+002 1.20727811E+000 -7.44740339E-001 2.29735182E-001 2.56971653E-001 -1.47418849E+001 -2.70298789E+001 -1.44927310E+001 + 9.50000000E+001 1.25000000E+002 -2.25176971E-001 -1.12943657E+000 2.19554875E-001 -6.65155799E-002 -1.65519857E+001 -3.05662834E+001 -1.63829893E+001 + 1.00000000E+002 1.25000000E+002 -9.65105123E-001 2.21338935E-001 -3.01774346E-002 -1.34087280E-001 -1.78643906E+001 -3.50161699E+001 -1.77815094E+001 + 1.05000000E+002 1.25000000E+002 2.17149947E-001 1.25443632E+000 -1.28424975E-001 5.04994886E-002 -1.56813076E+001 -3.49811140E+001 -1.56305776E+001 + 1.10000000E+002 1.25000000E+002 1.45853811E+000 3.06219050E-001 7.76359337E-003 1.58891950E-001 -1.43128189E+001 -3.37461132E+001 -1.42636159E+001 + 1.15000000E+002 1.25000000E+002 7.53530721E-001 -1.05567244E+000 1.19434365E-001 6.36615989E-002 -1.55195942E+001 -3.51498766E+001 -1.54725613E+001 + 1.20000000E+002 1.25000000E+002 -6.95107117E-001 -5.86449455E-001 6.70563491E-002 -4.21027034E-002 -1.86029432E+001 -3.98063916E+001 -1.85701489E+001 + 1.25000000E+002 1.25000000E+002 -5.08375615E-001 9.18127456E-001 -1.14192737E-002 -3.17182254E-002 -1.73590413E+001 -4.72230203E+001 -1.73545625E+001 + 1.30000000E+002 1.25000000E+002 9.49621028E-001 1.04274384E+000 -1.79106548E-002 -5.42424248E-003 -1.47919521E+001 -5.23351724E+001 -1.47911875E+001 + 1.35000000E+002 1.25000000E+002 1.32348162E+000 -3.06440566E-001 -3.37104870E-002 -2.85175992E-002 -1.51173444E+001 -4.48789396E+001 -1.51127588E+001 + 1.40000000E+002 1.25000000E+002 3.83829661E-002 -9.60763659E-001 -9.29918190E-002 -2.32168236E-002 -1.81192496E+001 -3.81470065E+001 -1.80763099E+001 + 1.45000000E+002 1.25000000E+002 -1.08446298E+000 1.04072113E-001 -1.00553549E-001 1.83638628E-002 -1.70343987E+001 -3.75880724E+001 -1.69963349E+001 + 1.50000000E+002 1.25000000E+002 -6.70324840E-001 1.55310699E+000 -4.44000629E-002 -4.31028031E-002 -1.32126048E+001 -4.19474070E+001 -1.32067970E+001 + 1.55000000E+002 1.25000000E+002 5.62408938E-001 1.79216023E+000 -9.31335102E-002 -2.85454249E-001 -1.23030463E+001 -2.82284653E+001 -1.21934612E+001 + 1.60000000E+002 1.25000000E+002 1.07936017E+000 7.97039890E-001 -4.07903089E-001 -5.87197617E-001 -1.52250799E+001 -2.06927177E+001 -1.41396113E+001 + 1.65000000E+002 1.25000000E+002 2.90654773E-001 -3.57946410E-001 -9.55650667E-001 -7.58205022E-001 -2.45027553E+001 -1.60520602E+001 -1.54721050E+001 + 1.70000000E+002 1.25000000E+002 -1.22237590E+000 -8.92216536E-001 -1.54343327E+000 -7.35615524E-001 -1.41796720E+001 -1.31197487E+001 -1.06071552E+001 + 1.75000000E+002 1.25000000E+002 -2.53683159E+000 -8.73048222E-001 -1.97150206E+000 -6.19727475E-001 -9.20655286E+000 -1.14733307E+001 -7.18339906E+000 + 1.80000000E+002 1.25000000E+002 -3.03855122E+000 -7.82928405E-001 -2.12459265E+000 -5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 1.30000000E+002 -3.12594653E+001 1.93250227E+001 2.62816417E+001 -1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 1.30000000E+002 -2.90538959E+001 1.93403322E+001 2.45937942E+001 -1.66615864E+001 1.30785981E+001 1.16784589E+001 1.54450103E+001 + 1.00000000E+001 1.30000000E+002 -2.31922438E+001 1.88468904E+001 1.98081855E+001 -1.77058292E+001 1.17304231E+001 1.07086824E+001 1.42598311E+001 + 1.50000000E+001 1.30000000E+002 -1.57839554E+001 1.68279166E+001 1.28676227E+001 -1.78953458E+001 9.48315579E+000 9.08623901E+000 1.22995302E+001 + 2.00000000E+001 1.30000000E+002 -9.53558739E+000 1.32392179E+001 5.50052445E+000 -1.60339526E+001 6.47364395E+000 6.80550538E+000 9.65304371E+000 + 2.50000000E+001 1.30000000E+002 -6.07332811E+000 9.71566297E+000 -2.60919139E-001 -1.20955818E+001 3.40345955E+000 3.87604869E+000 6.65647916E+000 + 3.00000000E+001 1.30000000E+002 -4.46969796E+000 8.23761127E+000 -3.19550358E+000 -7.42461343E+000 1.65824024E+000 3.73026931E-001 4.07330293E+000 + 3.50000000E+001 1.30000000E+002 -2.09871543E+000 8.62285253E+000 -3.70061613E+000 -3.68567169E+000 1.18445040E+000 -3.42026463E+000 2.47606438E+000 + 4.00000000E+001 1.30000000E+002 2.10789634E+000 8.08354653E+000 -3.22267063E+000 -1.45125121E+000 6.59235291E-001 -6.81227899E+000 1.37436657E+000 + 4.50000000E+001 1.30000000E+002 5.76777521E+000 4.46654480E+000 -2.71621178E+000 -3.99648203E-002 -5.17982424E-001 -9.09829435E+000 4.59796686E-002 + 5.00000000E+001 1.30000000E+002 5.78793416E+000 -5.60432479E-001 -1.96986352E+000 1.18026678E+000 -2.48750729E+000 -1.05576065E+001 -1.85811045E+000 + 5.50000000E+001 1.30000000E+002 2.58389176E+000 -3.28095583E+000 -6.18416941E-001 1.85216216E+000 -5.36275138E+000 -1.19659025E+001 -4.50407734E+000 + 6.00000000E+001 1.30000000E+002 -4.03659458E-001 -2.62089923E+000 7.67501215E-001 1.38632877E+000 -9.30768518E+000 -1.37800994E+001 -7.98164896E+000 + 6.50000000E+001 1.30000000E+002 -1.20775673E+000 -8.86358385E-001 1.19710575E+000 1.61542524E-001 -1.42676834E+001 -1.61374833E+001 -1.20924238E+001 + 7.00000000E+001 1.30000000E+002 -8.91872607E-001 5.36817905E-002 5.40269426E-001 -6.99169621E-001 -1.87567452E+001 -1.88535027E+001 -1.57945545E+001 + 7.50000000E+001 1.30000000E+002 -5.81633475E-001 5.86251426E-001 -3.23921559E-001 -5.85686423E-001 -1.94407382E+001 -2.12661751E+001 -1.72479455E+001 + 8.00000000E+001 1.30000000E+002 1.32215448E-001 1.05489636E+000 -5.57165167E-001 6.86993989E-002 -1.72466187E+001 -2.27932976E+001 -1.61785066E+001 + 8.50000000E+001 1.30000000E+002 1.16667842E+000 5.99919875E-001 -1.59874781E-001 4.59983350E-001 -1.54205913E+001 -2.40283741E+001 -1.48599653E+001 + 9.00000000E+001 1.30000000E+002 1.12876218E+000 -6.98683231E-001 2.56868325E-001 2.88469860E-001 -1.53178014E+001 -2.60409295E+001 -1.49648582E+001 + 9.50000000E+001 1.30000000E+002 -2.13091434E-001 -1.05725659E+000 2.45702780E-001 -7.38670545E-002 -1.71219651E+001 -2.95945193E+001 -1.68828975E+001 + 1.00000000E+002 1.30000000E+002 -9.04588145E-001 2.08697364E-001 -3.36487731E-002 -1.49679744E-001 -1.84242692E+001 -3.40611314E+001 -1.83072562E+001 + 1.05000000E+002 1.30000000E+002 2.03862238E-001 1.17522679E+000 -1.43501151E-001 5.65526046E-002 -1.62473193E+001 -3.40144206E+001 -1.61752968E+001 + 1.10000000E+002 1.30000000E+002 1.36593700E+000 2.85879971E-001 8.56648086E-003 1.77443183E-001 -1.48837072E+001 -3.27872103E+001 -1.48138938E+001 + 1.15000000E+002 1.30000000E+002 7.04406145E-001 -9.89505115E-001 1.32820002E-001 7.10469025E-002 -1.60896789E+001 -3.42203888E+001 -1.60233970E+001 + 1.20000000E+002 1.30000000E+002 -6.52717476E-001 -5.49014645E-001 7.39823396E-002 -4.64182117E-002 -1.91604326E+001 -3.89543791E+001 -1.91151301E+001 + 1.25000000E+002 1.30000000E+002 -4.77346411E-001 8.60896061E-001 -1.31363489E-002 -3.41175474E-002 -1.79152619E+001 -4.65185876E+001 -1.79092757E+001 + 1.30000000E+002 1.30000000E+002 8.88882239E-001 9.77934931E-001 -1.95997381E-002 -4.94227606E-003 -1.53568998E+001 -5.16657803E+001 -1.53558839E+001 + 1.35000000E+002 1.30000000E+002 1.23994698E+000 -2.85651054E-001 -3.72774774E-002 -3.13670876E-002 -1.56858640E+001 -4.40246064E+001 -1.56795021E+001 + 1.40000000E+002 1.30000000E+002 3.74048830E-002 -8.99125073E-001 -1.04070126E-001 -2.53934856E-002 -1.86945951E+001 -3.71808210E+001 -1.86334864E+001 + 1.45000000E+002 1.30000000E+002 -1.01380390E+000 9.67819510E-002 -1.12498802E-001 2.16874185E-002 -1.76200281E+001 -3.65970756E+001 -1.75654089E+001 + 1.50000000E+002 1.30000000E+002 -6.26625545E-001 1.45270418E+000 -4.90318740E-002 -4.69568844E-002 -1.37938829E+001 -4.11423705E+001 -1.37858931E+001 + 1.55000000E+002 1.30000000E+002 5.26792200E-001 1.67656958E+000 -1.03175140E-001 -3.18832063E-001 -1.28811778E+001 -2.72747483E+001 -1.27260646E+001 + 1.60000000E+002 1.30000000E+002 1.01057597E+000 7.45684210E-001 -4.55952230E-001 -6.57434864E-001 -1.57993399E+001 -1.97159403E+001 -1.43200239E+001 + 1.65000000E+002 1.30000000E+002 2.72757476E-001 -3.34656625E-001 -1.07023920E+000 -8.49245581E-001 -2.50742413E+001 -1.50679246E+001 -1.46545716E+001 + 1.70000000E+002 1.30000000E+002 -1.14271117E+000 -8.34108973E-001 -1.72947798E+000 -8.23705241E-001 -1.47648933E+001 -1.21323382E+001 -1.02418255E+001 + 1.75000000E+002 1.30000000E+002 -2.37239659E+000 -8.15756568E-001 -2.20958265E+000 -6.93421713E-001 -9.78942979E+000 -1.04843568E+001 -7.11270849E+000 + 1.80000000E+002 1.30000000E+002 -2.84181817E+000 -7.31188332E-001 -2.38133512E+000 -6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 1.35000000E+002 -2.88499176E+001 1.78464684E+001 2.89060740E+001 -1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 1.35000000E+002 -2.68146109E+001 1.78587500E+001 2.70496517E+001 -1.83370642E+001 1.23832921E+001 1.25069273E+001 1.54558496E+001 + 1.00000000E+001 1.35000000E+002 -2.14051488E+001 1.74003776E+001 2.17857161E+001 -1.94830331E+001 1.10350744E+001 1.15371192E+001 1.43036473E+001 + 1.50000000E+001 1.35000000E+002 -1.45689544E+001 1.55341913E+001 1.41520100E+001 -1.96885201E+001 8.78789345E+000 9.91465476E+000 1.23980138E+001 + 2.00000000E+001 1.35000000E+002 -8.80371704E+000 1.22207855E+001 6.04998510E+000 -1.76388948E+001 5.77893887E+000 7.63395122E+000 9.81504312E+000 + 2.50000000E+001 1.35000000E+002 -5.60892704E+000 8.96940376E+000 -2.85706073E-001 -1.33063507E+001 2.71019231E+000 4.70467405E+000 6.83123572E+000 + 3.00000000E+001 1.35000000E+002 -4.12739031E+000 7.60627465E+000 -3.51304662E+000 -8.16942769E+000 9.65775669E-001 1.20221703E+000 4.09590517E+000 + 3.50000000E+001 1.35000000E+002 -1.93642307E+000 7.96091042E+000 -4.06975202E+000 -4.05769928E+000 4.90389639E-001 -2.58970988E+000 2.22816013E+000 + 4.00000000E+001 1.35000000E+002 1.94702636E+000 7.46003847E+000 -3.54585158E+000 -1.59945586E+000 -3.74935305E-002 -5.97973812E+000 9.47391168E-001 + 4.50000000E+001 1.35000000E+002 5.32263029E+000 4.11934623E+000 -2.98955678E+000 -4.53571809E-002 -1.21758186E+000 -8.26537129E+000 -4.35397170E-001 + 5.00000000E+001 1.35000000E+002 5.33815831E+000 -5.19159766E-001 -2.16777388E+000 1.29821778E+000 -3.18979359E+000 -9.72716119E+000 -2.31924454E+000 + 5.50000000E+001 1.35000000E+002 2.38083151E+000 -3.02678861E+000 -6.80036566E-001 2.03710328E+000 -6.06715170E+000 -1.11393885E+001 -4.89108699E+000 + 6.00000000E+001 1.35000000E+002 -3.73836815E-001 -2.41616766E+000 8.44490095E-001 1.52364002E+000 -1.00132238E+001 -1.29574317E+001 -8.23016862E+000 + 6.50000000E+001 1.35000000E+002 -1.11407061E+000 -8.16737813E-001 1.31597136E+000 1.75961818E-001 -1.49722363E+001 -1.53166166E+001 -1.21307138E+001 + 7.00000000E+001 1.35000000E+002 -8.23056909E-001 4.94881232E-002 5.92465871E-001 -7.70091012E-001 -1.94542370E+001 -1.80285295E+001 -1.56728400E+001 + 7.50000000E+001 1.35000000E+002 -5.37327296E-001 5.41551477E-001 -3.58197404E-001 -6.44117363E-001 -2.01292874E+001 -2.04289689E+001 -1.72662438E+001 + 8.00000000E+001 1.35000000E+002 1.22646179E-001 9.74476171E-001 -6.14109206E-001 7.63674035E-002 -1.79348278E+001 -2.19469491E+001 -1.64828712E+001 + 8.50000000E+001 1.35000000E+002 1.07824771E+000 5.52920675E-001 -1.76451260E-001 5.06782480E-001 -1.61102425E+001 -2.31851321E+001 -1.53325127E+001 + 9.00000000E+001 1.35000000E+002 1.04155987E+000 -6.47245202E-001 2.82222080E-001 3.17931918E-001 -1.60066832E+001 -2.52082043E+001 -1.55137883E+001 + 9.50000000E+001 1.35000000E+002 -1.99279088E-001 -9.76914992E-001 2.70102178E-001 -8.06447966E-002 -1.78043152E+001 -2.87770886E+001 -1.74703497E+001 + 1.00000000E+002 1.35000000E+002 -8.36996512E-001 1.94352399E-001 -3.67880585E-002 -1.64145714E-001 -1.90959664E+001 -3.32610759E+001 -1.89326308E+001 + 1.05000000E+002 1.35000000E+002 1.88970335E-001 1.08679360E+000 -1.57385246E-001 6.20943943E-002 -1.69262075E+001 -3.32109262E+001 -1.68252233E+001 + 1.10000000E+002 1.35000000E+002 1.26263028E+000 2.63280882E-001 9.31137855E-003 1.94404308E-001 -1.55681430E+001 -3.19944375E+001 -1.54703616E+001 + 1.15000000E+002 1.35000000E+002 6.49708154E-001 -9.15582193E-001 1.44921080E-001 7.76384689E-002 -1.67733836E+001 -3.34600704E+001 -1.66812327E+001 + 1.20000000E+002 1.35000000E+002 -6.05266137E-001 -5.07172254E-001 7.98683231E-002 -5.03515614E-002 -1.98296493E+001 -3.82776692E+001 -1.97680045E+001 + 1.25000000E+002 1.35000000E+002 -4.42500182E-001 7.97070447E-001 -1.51065007E-002 -3.58847353E-002 -1.85818294E+001 -4.59717425E+001 -1.85739154E+001 + 1.30000000E+002 1.35000000E+002 8.21352665E-001 9.05478514E-001 -2.11797135E-002 -3.96079231E-003 -1.60335143E+001 -5.11108182E+001 -1.60321653E+001 + 1.35000000E+002 1.35000000E+002 1.14674398E+000 -2.62776671E-001 -4.04136502E-002 -3.36605107E-002 -1.63669160E+001 -4.33595251E+001 -1.63582445E+001 + 1.40000000E+002 1.35000000E+002 3.59233702E-002 -8.30540235E-001 -1.14218941E-001 -2.71822097E-002 -1.93831762E+001 -3.63844900E+001 -1.92974019E+001 + 1.45000000E+002 1.35000000E+002 -9.35515232E-001 8.89120753E-002 -1.23480661E-001 2.50535521E-002 -1.83184371E+001 -3.57713275E+001 -1.82410586E+001 + 1.50000000E+002 1.35000000E+002 -5.78171873E-001 1.34133313E+000 -5.31146981E-002 -5.02069969E-002 -1.44876675E+001 -4.05015383E+001 -1.44768068E+001 + 1.55000000E+002 1.35000000E+002 4.87128737E-001 1.54824391E+000 -1.12151823E-001 -3.49586813E-001 -1.35717663E+001 -2.64819634E+001 -1.33550538E+001 + 1.60000000E+002 1.35000000E+002 9.34024618E-001 6.88675000E-001 -5.00223225E-001 -7.22590509E-001 -1.64858782E+001 -1.89003075E+001 -1.45171245E+001 + 1.65000000E+002 1.35000000E+002 2.52710040E-001 -3.08778169E-001 -1.17644456E+000 -9.33841298E-001 -2.57589039E+001 -1.42449594E+001 -1.39488183E+001 + 1.70000000E+002 1.35000000E+002 -1.05439080E+000 -7.69610921E-001 -1.90223387E+000 -9.05571458E-001 -1.54637068E+001 -1.13060925E+001 -9.89498867E+000 + 1.75000000E+002 1.35000000E+002 -2.18991563E+000 -7.52235399E-001 -2.43081038E+000 -7.61862349E-001 -1.04855721E+001 -9.65654632E+000 -7.04100761E+000 + 1.80000000E+002 1.35000000E+002 -2.62345716E+000 -6.73883475E-001 -2.61995420E+000 -6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 1.40000000E+002 -2.62208046E+001 1.62320918E+001 3.13105137E+001 -1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 1.40000000E+002 -2.43712191E+001 1.62413101E+001 2.92997363E+001 -1.98729206E+001 1.15550318E+001 1.32024160E+001 1.54666716E+001 + 1.00000000E+001 1.40000000E+002 -1.94550321E+001 1.58215971E+001 2.35976781E+001 -2.11117836E+001 1.02067648E+001 1.22325873E+001 1.43470418E+001 + 1.50000000E+001 1.40000000E+002 -1.32428183E+001 1.41224630E+001 1.53291306E+001 -2.13316241E+001 7.95967651E+000 1.06101125E+001 1.24943228E+001 + 2.00000000E+001 1.40000000E+002 -8.00444380E+000 1.11095092E+001 6.55405294E+000 -1.91094762E+001 4.95132774E+000 8.32945362E+000 9.97118577E+000 + 2.50000000E+001 1.40000000E+002 -5.10140298E+000 8.15487456E+000 -3.07587453E-001 -1.44160293E+001 1.88414457E+000 5.40038283E+000 6.99911107E+000 + 3.00000000E+001 1.40000000E+002 -3.75337691E+000 6.91690033E+000 -3.80331137E+000 -8.85259242E+000 1.40598371E-001 1.89854353E+000 4.11821824E+000 + 3.50000000E+001 1.40000000E+002 -1.75929919E+000 7.23828706E+000 -4.40779982E+000 -4.39951648E+000 -3.36521501E-001 -1.89193124E+000 1.96533762E+000 + 4.00000000E+001 1.40000000E+002 1.77142528E+000 6.77987468E+000 -3.84234362E+000 -1.73596449E+000 -8.67280949E-001 -5.27987897E+000 4.74574190E-001 + 4.50000000E+001 1.40000000E+002 4.83732406E+000 3.74098849E+000 -3.24056428E+000 -5.04899043E-002 -2.05040657E+000 -7.56504004E+000 -9.75287401E-001 + 5.00000000E+001 1.40000000E+002 4.84832831E+000 -4.74034337E-001 -2.34940027E+000 1.40646933E+000 -4.02534734E+000 -9.02914669E+000 -2.83294936E+000 + 5.50000000E+001 1.40000000E+002 2.16004359E+000 -2.75010250E+000 -7.36433257E-001 2.20668377E+000 -6.90465007E+000 -1.04450999E+001 -5.31336380E+000 + 6.00000000E+001 1.40000000E+002 -3.41270661E-001 -2.19362795E+000 9.15159669E-001 1.64927820E+000 -1.08513865E+001 -1.22668921E+001 -8.49142294E+000 + 6.50000000E+001 1.40000000E+002 -1.01229414E+000 -7.41102011E-001 1.42476158E+000 1.88815260E-001 -1.58085380E+001 -1.46280516E+001 -1.21680082E+001 + 7.00000000E+001 1.40000000E+002 -7.48185214E-001 4.50696299E-002 6.39867457E-001 -8.35317535E-001 -2.02825939E+001 -1.73363021E+001 -1.55539485E+001 + 7.50000000E+001 1.40000000E+002 -4.88855592E-001 4.92827953E-001 -3.90128838E-001 -6.97588450E-001 -2.09493056E+001 -1.97246529E+001 -1.72836546E+001 + 8.00000000E+001 1.40000000E+002 1.12173107E-001 8.86525228E-001 -6.66650736E-001 8.37343626E-002 -1.87557046E+001 -2.12325581E+001 -1.68095999E+001 + 8.50000000E+001 1.40000000E+002 9.81421427E-001 5.01682537E-001 -1.91720977E-001 5.50066037E-001 -1.69331968E+001 -2.24722898E+001 -1.58634297E+001 + 9.00000000E+001 1.40000000E+002 9.46326898E-001 -5.90625514E-001 3.05575354E-001 3.45192409E-001 -1.68290009E+001 -2.45042209E+001 -1.61441881E+001 + 9.50000000E+001 1.40000000E+002 -1.83687083E-001 -8.88912590E-001 2.92624553E-001 -8.67698952E-002 -1.86197275E+001 -2.80862987E+001 -1.81545073E+001 + 1.00000000E+002 1.40000000E+002 -7.62691164E-001 1.78330836E-001 -3.95339634E-002 -1.77442567E-001 -1.99003635E+001 -3.25869502E+001 -1.96724959E+001 + 1.05000000E+002 1.40000000E+002 1.72562536E-001 9.89663932E-001 -1.70045688E-001 6.70133612E-002 -1.77386807E+001 -3.25402198E+001 -1.75972512E+001 + 1.10000000E+002 1.40000000E+002 1.14926966E+000 2.38595145E-001 9.87561567E-003 2.09697103E-001 -1.63868079E+001 -3.13370368E+001 -1.62500645E+001 + 1.15000000E+002 1.40000000E+002 5.89830540E-001 -8.34320355E-001 1.55629274E-001 8.35306496E-002 -1.75915414E+001 -3.28372617E+001 -1.74636614E+001 + 1.20000000E+002 1.40000000E+002 -5.52961449E-001 -4.61158754E-001 8.47817383E-002 -5.37766767E-002 -2.06315742E+001 -3.77439559E+001 -2.05479450E+001 + 1.25000000E+002 1.40000000E+002 -4.03943941E-001 7.27032341E-001 -1.71840683E-002 -3.70343111E-002 -1.93790358E+001 -4.55595876E+001 -1.93685837E+001 + 1.30000000E+002 1.40000000E+002 7.47549581E-001 8.25742648E-001 -2.25870758E-002 -2.58145182E-003 -1.68419046E+001 -5.06449468E+001 -1.68400958E+001 + 1.35000000E+002 1.40000000E+002 1.04446316E+000 -2.38090569E-001 -4.31144454E-002 -3.54533012E-002 -1.71806379E+001 -4.28428225E+001 -1.71688625E+001 + 1.40000000E+002 1.40000000E+002 3.38411764E-002 -7.55517740E-001 -1.23392829E-001 -2.86011059E-002 -2.02049090E+001 -3.57254310E+001 -2.00847626E+001 + 1.45000000E+002 1.40000000E+002 -8.50231019E-001 8.05643781E-002 -1.33435001E-001 2.84161857E-002 -1.91489482E+001 -3.50804881E+001 -1.90395155E+001 + 1.50000000E+002 1.40000000E+002 -5.25338242E-001 1.21984818E+000 -5.66386251E-002 -5.28558081E-002 -1.53134969E+001 -3.99957856E+001 -1.52987461E+001 + 1.55000000E+002 1.40000000E+002 4.43697552E-001 1.40813804E+000 -1.20030636E-001 -3.77509428E-001 -1.43944994E+001 -2.58217040E+001 -1.40925871E+001 + 1.60000000E+002 1.40000000E+002 8.50242549E-001 6.26428902E-001 -5.40421208E-001 -7.82178400E-001 -1.73044904E+001 -1.82175043E+001 -1.47267487E+001 + 1.65000000E+002 1.40000000E+002 2.30618576E-001 -2.80507712E-001 -1.27349207E+000 -1.01134386E+000 -2.65770632E+001 -1.35549096E+001 -1.33435803E+001 + 1.70000000E+002 1.40000000E+002 -9.58115170E-001 -6.99204909E-001 -2.06040397E+000 -9.80582797E-001 -1.62959606E+001 -1.06127921E+001 -9.57407565E+000 + 1.75000000E+002 1.40000000E+002 -1.99078629E+000 -6.82963293E-001 -2.63350644E+000 -8.24524263E-001 -1.13147943E+001 -8.96169589E+000 -6.97048751E+000 + 1.80000000E+002 1.40000000E+002 -2.38513006E+000 -6.11449958E-001 -2.83863384E+000 -7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 1.45000000E+002 -2.33921355E+001 1.44941791E+001 3.34766614E+001 -2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 1.45000000E+002 -2.17422976E+001 1.45003364E+001 3.13269163E+001 -2.12574916E+001 1.05656191E+001 1.37847326E+001 1.54771502E+001 + 1.00000000E+001 1.45000000E+002 -1.73566876E+001 1.41226014E+001 2.52302492E+001 -2.25797485E+001 9.21729039E+000 1.28148946E+001 1.43887269E+001 + 1.50000000E+001 1.45000000E+002 -1.18155529E+001 1.26035201E+001 1.63899438E+001 -2.28122455E+001 6.97029627E+000 1.11924216E+001 1.25857250E+001 + 2.00000000E+001 1.45000000E+002 -7.14373425E+000 9.91386157E+000 7.00874378E+000 -2.04345874E+001 3.96260274E+000 8.91182312E+000 1.01173879E+001 + 2.50000000E+001 1.45000000E+002 -4.55451455E+000 7.27823409E+000 -3.26592841E-001 -1.54161906E+001 8.97127967E-001 5.98298313E+000 7.15582101E+000 + 3.00000000E+001 1.45000000E+002 -3.35046465E+000 6.17466226E+000 -4.06427217E+000 -9.46882930E+000 -8.45453484E-001 2.48179901E+000 4.13960971E+000 + 3.50000000E+001 1.45000000E+002 -1.56872095E+000 6.46044435E+000 -4.71228414E+000 -4.70837346E+000 -1.32445854E+000 -1.30718181E+000 1.69448837E+000 + 4.00000000E+001 1.45000000E+002 1.58240022E+000 6.04826996E+000 -4.10987537E+000 -1.85960403E+000 -1.85834361E+000 -4.69303300E+000 -3.81016592E-002 + 4.50000000E+001 1.45000000E+002 4.31559575E+000 3.33441720E+000 -3.46725310E+000 -5.52804516E-002 -3.04470238E+000 -6.97769226E+000 -1.57011128E+000 + 5.00000000E+001 1.45000000E+002 4.32227899E+000 -4.25398730E-001 -2.51333344E+000 1.50415469E+000 -5.02238558E+000 -8.44397512E+000 -3.39428829E+000 + 5.50000000E+001 1.45000000E+002 1.92328645E+000 -2.45309034E+000 -7.87244438E-001 2.35957549E+000 -7.90332664E+000 -9.86345993E+000 -5.76343421E+000 + 6.00000000E+001 1.45000000E+002 -3.06208158E-001 -1.95508114E+000 9.78872358E-001 1.76234735E+000 -1.18499629E+001 -1.16889067E+001 -8.75838830E+000 + 6.50000000E+001 1.45000000E+002 -9.03240844E-001 -6.60103604E-001 1.52263430E+000 2.00149623E-001 -1.68039181E+001 -1.40521941E+001 -1.22033678E+001 + 7.00000000E+001 1.45000000E+002 -6.67876450E-001 4.03904876E-002 6.82228541E-001 -8.94246070E-001 -2.12687297E+001 -1.67572179E+001 -1.54414350E+001 + 7.50000000E+001 1.45000000E+002 -4.36685002E-001 4.40382472E-001 -4.19326280E-001 -7.45722006E-001 -2.19280697E+001 -1.91337769E+001 -1.72996616E+001 + 8.00000000E+001 1.45000000E+002 1.00716672E-001 7.91718194E-001 -7.14345048E-001 9.06292126E-002 -1.97373748E+001 -2.06309984E+001 -1.71509426E+001 + 8.50000000E+001 1.45000000E+002 8.76814390E-001 4.46730116E-001 -2.05627865E-001 5.89443469E-001 -1.79180880E+001 -2.18709085E+001 -1.64491969E+001 + 9.00000000E+001 1.45000000E+002 8.43816045E-001 -5.29076911E-001 3.26709547E-001 3.70080946E-001 -1.78136184E+001 -2.39099689E+001 -1.68595630E+001 + 9.50000000E+001 1.45000000E+002 -1.66291780E-001 -7.93852573E-001 3.13145358E-001 -9.21645050E-002 -1.95972061E+001 -2.75027967E+001 -1.89452481E+001 + 1.00000000E+002 1.45000000E+002 -6.82143477E-001 1.60680406E-001 -4.18204010E-002 -1.89528869E-001 -2.08664723E+001 -3.20185349E+001 -2.05455264E+001 + 1.05000000E+002 1.45000000E+002 1.54725391E-001 8.84501714E-001 -1.81448254E-001 7.11984005E-002 -1.87136307E+001 -3.19815076E+001 -1.85136630E+001 + 1.10000000E+002 1.45000000E+002 1.02665008E+000 2.12055045E-001 1.01410293E-002 2.23249641E-001 -1.73686180E+001 -3.07937396E+001 -1.71756054E+001 + 1.15000000E+002 1.45000000E+002 5.25275063E-001 -7.46235800E-001 1.64851145E-001 8.88257665E-002 -1.85731949E+001 -3.23296550E+001 -1.83940719E+001 + 1.20000000E+002 1.45000000E+002 -4.96056705E-001 -4.11318718E-001 8.88150336E-002 -5.65706146E-002 -2.15953547E+001 -3.73298398E+001 -2.14809086E+001 + 1.25000000E+002 1.45000000E+002 -3.61875237E-001 6.51186037E-001 -1.92013256E-002 -3.76021682E-002 -2.03356011E+001 -4.52679340E+001 -2.03216742E+001 + 1.30000000E+002 1.45000000E+002 6.67996075E-001 7.39185856E-001 -2.37527210E-002 -9.38269172E-004 -1.78107009E+001 -5.02574683E+001 -1.78082293E+001 + 1.35000000E+002 1.45000000E+002 9.33771193E-001 -2.11838275E-001 -4.53878593E-002 -3.68301086E-002 -1.81557415E+001 -4.24426741E+001 -1.81395874E+001 + 1.40000000E+002 1.45000000E+002 3.10927368E-002 -6.74602786E-001 -1.31567749E-001 -2.96863639E-002 -2.11883283E+001 -3.51798570E+001 -2.10184608E+001 + 1.45000000E+002 1.45000000E+002 -7.58622121E-001 7.18370006E-002 -1.42317639E-001 3.17184081E-002 -2.01392275E+001 -3.45027993E+001 -1.99830583E+001 + 1.50000000E+002 1.45000000E+002 -4.68528691E-001 1.08917452E+000 -5.96107526E-002 -5.49214370E-002 -1.62992090E+001 -3.96029815E+001 -1.62789604E+001 + 1.55000000E+002 1.45000000E+002 3.96809075E-001 1.25729749E+000 -1.26802984E-001 -4.02421184E-001 -1.53773735E+001 -2.52737750E+001 -1.49539258E+001 + 1.60000000E+002 1.45000000E+002 7.59828138E-001 5.59404833E-001 -5.76298987E-001 -8.35758414E-001 -1.82832771E+001 -1.76475523E+001 -1.49434928E+001 + 1.65000000E+002 1.45000000E+002 2.06612650E-001 -2.50060339E-001 -1.36068963E+000 -1.08115813E+000 -2.75575669E+001 -1.29778923E+001 -1.28291756E+001 + 1.70000000E+002 1.45000000E+002 -8.54640281E-001 -6.23420177E-001 -2.20280919E+000 -1.04815802E+000 -1.72899627E+001 -1.00326049E+001 -9.28427213E+000 + 1.75000000E+002 1.45000000E+002 -1.77653137E+000 -6.08463602E-001 -2.81613506E+000 -8.80925319E-001 -1.23053247E+001 -8.37999807E+000 -6.90319932E+000 + 1.80000000E+002 1.45000000E+002 -2.12865068E+000 -5.44362937E-001 -3.03570976E+000 -7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 1.50000000E+002 -2.03854380E+001 1.26459569E+001 3.53880315E+001 -2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 1.50000000E+002 -1.89478375E+001 1.26490869E+001 3.31157534E+001 -2.24802674E+001 9.37333350E+000 1.42681603E+001 1.54869724E+001 + 1.00000000E+001 1.50000000E+002 -1.51260453E+001 1.23163433E+001 2.66709630E+001 -2.38758274E+001 8.02492046E+000 1.32983246E+001 1.44275026E+001 + 1.50000000E+001 1.50000000E+002 -1.02979531E+001 1.09889465E+001 1.73262758E+001 -2.41192190E+001 5.77801511E+000 1.16758665E+001 1.26697954E+001 + 2.00000000E+001 1.50000000E+002 -6.22805307E+000 8.64294135E+000 7.41042219E+000 -2.16042317E+001 2.77103378E+000 9.39534496E+000 1.02502305E+001 + 2.50000000E+001 1.50000000E+002 -3.97235193E+000 6.34611268E+000 -3.42802882E-001 -1.62992326E+001 -2.92539602E-001 6.46675679E+000 7.29782875E+000 + 3.00000000E+001 1.50000000E+002 -2.92169791E+000 5.38514755E+000 -4.29414630E+000 -1.00133470E+001 -2.03401171E+000 2.96624940E+000 4.15949715E+000 + 3.50000000E+001 1.50000000E+002 -1.36616499E+000 5.63326894E+000 -4.98098749E+000 -4.98174338E+000 -2.51509796E+000 -8.21238944E-001 1.42419434E+000 + 4.00000000E+001 1.50000000E+002 1.38136723E+000 5.27081113E+000 -4.34638279E+000 -1.96927693E+000 -3.05245980E+000 -4.20504929E+000 -5.80330057E-001 + 4.50000000E+001 1.50000000E+002 3.76144382E+000 2.90275678E+000 -3.66780574E+000 -5.96359943E-002 -4.24233395E+000 -6.48923249E+000 -2.21176650E+000 + 5.00000000E+001 1.50000000E+002 3.76407025E+000 -3.73640767E-001 -2.65827240E+000 1.59049092E+000 -6.22276858E+000 -7.95757132E+000 -3.99381830E+000 + 5.50000000E+001 1.50000000E+002 1.67238687E+000 -2.13807515E+000 -8.32121796E-001 2.49456653E+000 -9.10486747E+000 -9.38040374E+000 -6.23015085E+000 + 6.00000000E+001 1.50000000E+002 -2.68931524E-001 -1.70239921E+000 1.03505957E+000 1.86201984E+000 -1.30502301E+001 -1.12094159E+001 -9.02271288E+000 + 6.50000000E+001 1.50000000E+002 -7.87757132E-001 -5.74403045E-001 1.60881956E+000 2.09997279E-001 -1.79989851E+001 -1.35749894E+001 -1.22361608E+001 + 7.00000000E+001 1.50000000E+002 -5.82768643E-001 3.54157662E-002 7.19316984E-001 -9.46317405E-001 -2.24525737E+001 -1.62772896E+001 -1.53386887E+001 + 7.50000000E+001 1.50000000E+002 -3.81310205E-001 3.84539991E-001 -4.45420897E-001 -7.88147880E-001 -2.31058532E+001 -1.86426101E+001 -1.73141589E+001 + 8.00000000E+001 1.50000000E+002 8.82096845E-002 6.90793799E-001 -7.56743468E-001 9.69043442E-002 -2.09212954E+001 -2.01288956E+001 -1.74967482E+001 + 8.50000000E+001 1.50000000E+002 7.65131015E-001 3.88612795E-001 -2.18081886E-001 6.24526866E-001 -1.91071016E+001 -2.13677982E+001 -1.70816822E+001 + 9.00000000E+001 1.50000000E+002 7.34849357E-001 -4.62937877E-001 3.45422550E-001 3.92395296E-001 -1.90029792E+001 -2.34122568E+001 -1.76602413E+001 + 9.50000000E+001 1.50000000E+002 -1.47134272E-001 -6.92437277E-001 3.31515170E-001 -9.67730987E-002 -2.07791080E+001 -2.70132916E+001 -1.98518926E+001 + 1.00000000E+002 1.50000000E+002 -5.95947424E-001 1.41491781E-001 -4.36102061E-002 -2.00339348E-001 -2.20361883E+001 -3.15421171E+001 -2.15749499E+001 + 1.05000000E+002 1.50000000E+002 1.35551501E-001 7.72119143E-001 -1.91542965E-001 7.45845225E-002 -1.98929900E+001 -3.15200797E+001 -1.96042169E+001 + 1.10000000E+002 1.50000000E+002 8.95715041E-001 1.83947762E-001 1.00461329E-002 2.35003928E-001 -1.85557055E+001 -3.03490752E+001 -1.82774397E+001 + 1.15000000E+002 1.50000000E+002 4.56645463E-001 -6.51948900E-001 1.72541762E-001 9.35896930E-002 -1.97606127E+001 -3.19205518E+001 -1.95042188E+001 + 1.20000000E+002 1.50000000E+002 -4.34858583E-001 -3.58100850E-001 9.20669768E-002 -5.86646866E-002 -2.27632834E+001 -3.70165192E+001 -2.26031690E+001 + 1.25000000E+002 1.50000000E+002 -3.16584748E-001 5.69966950E-001 -2.10150053E-002 -3.76588931E-002 -2.14937162E+001 -4.50837916E+001 -2.14747566E+001 + 1.30000000E+002 1.50000000E+002 5.83224055E-001 6.46364069E-001 -2.46337653E-002 8.24616093E-004 -1.89821770E+001 -4.99430271E+001 -1.89786974E+001 + 1.35000000E+002 1.50000000E+002 8.15416645E-001 -1.84234178E-001 -4.72581680E-002 -3.78772757E-002 -1.93346888E+001 -4.21341871E+001 -1.93119537E+001 + 1.40000000E+002 1.50000000E+002 2.76512583E-002 -5.88377486E-001 -1.38731238E-001 -3.04779371E-002 -2.23758048E+001 -3.47303153E+001 -2.21303329E+001 + 1.45000000E+002 1.50000000E+002 -6.61389769E-001 6.28193843E-002 -1.50095793E-001 3.48960267E-002 -2.13303539E+001 -3.40225146E+001 -2.11027711E+001 + 1.50000000E+002 1.50000000E+002 -4.08174011E-001 9.50300129E-001 -6.20506556E-002 -5.64369772E-002 -1.74859830E+001 -3.93056090E+001 -1.74575124E+001 + 1.55000000E+002 1.50000000E+002 3.46803847E-001 1.09685123E+000 -1.32481707E-001 -4.24174134E-001 -1.65617416E+001 -2.48233836E+001 -1.59576985E+001 + 1.60000000E+002 1.50000000E+002 6.63439519E-001 4.88101157E-001 -6.07655797E-001 -8.82939001E-001 -1.94636823E+001 -1.71759612E+001 -1.51605948E+001 + 1.65000000E+002 1.50000000E+002 1.80846647E-001 -2.17668002E-001 -1.43743020E+000 -1.14274677E+000 -2.87430023E+001 -1.24995338E+001 -1.23975970E+001 + 1.70000000E+002 1.50000000E+002 -7.44770540E-001 -5.42829036E-001 -2.32839579E+000 -1.10777089E+000 -1.84876579E+001 -9.55121584E+000 -9.02909327E+000 + 1.75000000E+002 1.50000000E+002 -1.54878694E+000 -5.29300660E-001 -2.97731476E+000 -9.30630287E-001 -1.34989417E+001 -7.89716617E+000 -6.84100753E+000 + 1.80000000E+002 1.50000000E+002 -1.85597098E+000 -4.73132986E-001 -3.20968210E+000 -8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 1.55000000E+002 -1.72235951E+001 1.07014914E+001 3.70300774E+001 -2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 1.55000000E+002 -1.60090926E+001 1.07016527E+001 3.46526200E+001 -2.35319710E+001 7.91308254E+000 1.46631696E+001 1.54958469E+001 + 1.00000000E+001 1.55000000E+002 -1.27800525E+001 1.04165753E+001 2.79088062E+001 -2.49902319E+001 6.56454328E+000 1.36933484E+001 1.44622839E+001 + 1.50000000E+001 1.55000000E+002 -8.70152409E+000 9.29103146E+000 1.81308877E+001 -2.52427058E+001 4.31770965E+000 1.20709194E+001 1.27444418E+001 + 2.00000000E+001 1.55000000E+002 -5.26431766E+000 7.30640405E+000 7.75583903E+000 -2.26095957E+001 1.31151845E+000 9.79049142E+000 1.03669217E+001 + 2.50000000E+001 1.55000000E+002 -3.35930841E+000 5.36556311E+000 -3.56336206E-001 -1.70584368E+001 -1.74985615E+000 6.86217231E+000 7.42228435E+000 + 3.00000000E+001 1.55000000E+002 -2.47033628E+000 4.55431549E+000 -4.49139720E+000 -1.04818851E+001 -3.48997791E+000 3.36234824E+000 4.17736023E+000 + 3.50000000E+001 1.55000000E+002 -1.15319714E+000 4.76302790E+000 -5.21196571E+000 -5.21735384E+000 -3.97344627E+000 -4.23686296E-001 1.16474593E+000 + 4.00000000E+001 1.55000000E+002 1.16983729E+000 4.45341677E+000 -4.55003565E+000 -2.06397773E+000 -4.51485335E+000 -3.80556906E+000 -1.13544739E+000 + 4.50000000E+001 1.55000000E+002 3.17909376E+000 2.44929496E+000 -3.84059886E+000 -6.34470974E-002 -5.70871553E+000 -6.08934292E+000 -2.88456070E+000 + 5.00000000E+001 1.55000000E+002 3.17796382E+000 -3.19180006E-001 -2.78303964E+000 1.66480956E+000 -7.69193906E+000 -7.55962933E+000 -4.61498040E+000 + 5.50000000E+001 1.55000000E+002 1.40924160E+000 -1.80749208E+000 -8.70712488E-001 2.61059591E+000 -1.05744417E+001 -8.98562599E+000 -6.69747925E+000 + 6.00000000E+001 1.55000000E+002 -2.29748867E-001 -1.43752361E+000 1.08326646E+000 1.94754113E+000 -1.45166673E+001 -1.08181052E+001 -9.27471532E+000 + 6.50000000E+001 1.55000000E+002 -6.66726087E-001 -4.84670598E-001 1.68265088E+000 2.18339043E-001 -1.94570645E+001 -1.31861116E+001 -1.22659408E+001 + 7.00000000E+001 1.55000000E+002 -4.93522162E-001 3.01259139E-002 7.50900784E-001 -9.91062902E-001 -2.38962211E+001 -1.58862501E+001 -1.52486925E+001 + 7.50000000E+001 1.55000000E+002 -3.23233166E-001 3.25664009E-001 -4.68105928E-001 -8.24516211E-001 -2.45452283E+001 -1.82411509E+001 -1.73272853E+001 + 8.00000000E+001 1.55000000E+002 7.46268240E-002 5.84540383E-001 -7.93417187E-001 1.02457865E-001 -2.23720016E+001 -1.97166499E+001 -1.78341693E+001 + 8.50000000E+001 1.55000000E+002 6.47166278E-001 3.27870582E-001 -2.28950235E-001 6.54948866E-001 -2.05659809E+001 -2.09536606E+001 -1.77451964E+001 + 9.00000000E+001 1.55000000E+002 6.20292075E-001 -3.92645504E-001 3.61539577E-001 4.11891940E-001 -2.04631612E+001 -2.30020016E+001 -1.85393421E+001 + 9.50000000E+001 1.55000000E+002 -1.26333087E-001 -5.85452595E-001 3.47545528E-001 -1.00576071E-001 -2.22310142E+001 -2.66089964E+001 -2.08799312E+001 + 1.00000000E+002 1.55000000E+002 -5.04804647E-001 1.20905089E-001 -4.49171820E-002 -2.09771897E-001 -2.34737933E+001 -3.11488708E+001 -2.27889597E+001 + 1.05000000E+002 1.55000000E+002 1.15147939E-001 6.53453838E-001 -2.00258762E-001 7.71824627E-002 -2.13414052E+001 -3.11452013E+001 -2.09092708E+001 + 1.10000000E+002 1.55000000E+002 7.57531637E-001 1.54592678E-001 9.61917175E-003 2.44923379E-001 -2.00132888E+001 -2.99912085E+001 -1.95973500E+001 + 1.15000000E+002 1.55000000E+002 3.84610954E-001 -5.52173519E-001 1.78727830E-001 9.78235654E-002 -2.12192397E+001 -3.15966567E+001 -2.08382998E+001 + 1.20000000E+002 1.55000000E+002 -3.69738893E-001 -3.02023706E-001 9.46298282E-002 -6.00789841E-002 -2.42005842E+001 -3.67871279E+001 -2.39675466E+001 + 1.25000000E+002 1.55000000E+002 -2.68439852E-001 4.83866329E-001 -2.25394075E-002 -3.73177379E-002 -2.29186455E+001 -4.49895119E+001 -2.28917702E+001 + 1.30000000E+002 1.55000000E+002 4.93795238E-001 5.47932934E-001 -2.52357193E-002 2.57083400E-003 -2.04220052E+001 -4.96933541E+001 -2.04168719E+001 + 1.35000000E+002 1.55000000E+002 6.90240326E-001 -1.55469598E-001 -4.87670827E-002 -3.86616268E-002 -2.07835768E+001 -4.18980884E+001 -2.07501066E+001 + 1.40000000E+002 1.55000000E+002 2.35320273E-002 -4.97467694E-001 -1.44873913E-001 -3.10086841E-002 -2.38335023E+001 -3.43641639E+001 -2.34652256E+001 + 1.45000000E+002 1.55000000E+002 -5.59262909E-001 5.35865172E-002 -1.56741021E-001 3.78806576E-002 -2.27864970E+001 -3.36283239E+001 -2.24427028E+001 + 1.50000000E+002 1.55000000E+002 -3.44730254E-001 8.04268156E-001 -6.39860597E-002 -5.74492276E-002 -1.89379987E+001 -3.90893427E+001 -1.88962579E+001 + 1.55000000E+002 1.55000000E+002 2.94050673E-001 9.28004411E-001 -1.37097376E-001 -4.42650740E-001 -1.80119907E+001 -2.44594712E+001 -1.71249758E+001 + 1.60000000E+002 1.55000000E+002 5.61791555E-001 4.13052522E-001 -6.34334852E-001 -9.23379223E-001 -2.09101597E+001 -1.67920355E+001 -1.53699405E+001 + 1.65000000E+002 1.55000000E+002 1.53500407E-001 -1.83577866E-001 -1.50319314E+000 -1.19563443E+000 -3.01997503E+001 -1.21092659E+001 -1.20423719E+001 + 1.70000000E+002 1.55000000E+002 -6.29351624E-001 -4.58042813E-001 -2.43624149E+000 -1.15895480E+000 -1.99545929E+001 -9.15811865E+000 -8.81085601E+000 + 1.75000000E+002 1.55000000E+002 -1.30928947E+000 -4.46075633E-001 -3.11582831E+000 -9.73254448E-001 -1.49608524E+001 -7.50272370E+000 -6.78555754E+000 + 1.80000000E+002 1.55000000E+002 -1.56916623E+000 -3.98302207E-001 -3.35922682E+000 -8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 1.60000000E+002 -1.39306702E+001 8.67558110E+000 3.83903020E+001 -2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 1.60000000E+002 -1.29484177E+001 8.67285067E+000 3.59258042E+001 -2.44046274E+001 6.07540803E+000 1.49774838E+001 1.55035130E+001 + 1.00000000E+001 1.60000000E+002 -1.03365454E+001 8.43774461E+000 2.89343049E+001 -2.59145566E+001 4.72666167E+000 1.40076896E+001 1.44921237E+001 + 1.50000000E+001 1.60000000E+002 -7.03839509E+000 7.52267598E+000 1.87975365E+001 -2.61742617E+001 2.47986071E+000 1.23853044E+001 1.28079129E+001 + 2.00000000E+001 1.60000000E+002 -4.25984747E+000 5.91438890E+000 8.04216651E+000 -2.34431112E+001 -5.25411564E-001 1.01049864E+001 1.04652392E+001 + 2.50000000E+001 1.60000000E+002 -2.72004815E+000 4.34400798E+000 -3.67335506E-001 -1.76880187E+001 -3.58406047E+000 7.17694946E+000 7.52694772E+000 + 3.00000000E+001 1.60000000E+002 -1.99983029E+000 3.68845231E+000 -4.65473499E+000 -1.08707528E+001 -5.32239298E+000 3.67780171E+000 4.19274936E+000 + 3.50000000E+001 1.60000000E+002 -9.31463308E-001 3.85632019E+000 -5.40355846E+000 -5.41321559E+000 -5.80878274E+000 -1.06848329E-001 9.27882958E-001 + 4.00000000E+001 1.60000000E+002 9.49397894E-001 3.60229499E+000 -4.71925637E+000 -2.14281135E+000 -6.35527398E+000 -3.48695844E+000 -1.67820008E+000 + 4.50000000E+001 1.60000000E+002 2.57296075E+000 1.97747006E+000 -3.98422753E+000 -6.65917998E-002 -7.55401094E+000 -5.77041129E+000 -3.56098440E+000 + 5.00000000E+001 1.60000000E+002 2.56839866E+000 -2.62447071E-001 -2.88660166E+000 1.72657015E+000 -9.54014699E+000 -7.24253195E+000 -5.23083626E+000 + 5.50000000E+001 1.60000000E+002 1.13582463E+000 -1.46386373E+000 -9.02662144E-001 2.70677916E+000 -1.24217758E+001 -8.67148812E+000 -7.14350448E+000 + 6.00000000E+001 1.60000000E+002 -1.88975061E-001 -1.16246400E+000 1.12317228E+000 2.01824847E+000 -1.63576355E+001 -1.05072907E+001 -9.50360138E+000 + 6.50000000E+001 1.60000000E+002 -5.41064579E-001 -3.91597202E-001 1.74359467E+000 2.25096855E-001 -2.12841921E+001 -1.28778106E+001 -1.22922912E+001 + 7.00000000E+001 1.60000000E+002 -4.00825489E-001 2.45194987E-002 7.76758998E-001 -1.02813528E+000 -2.57031791E+001 -1.55763361E+001 -1.51737885E+001 + 7.50000000E+001 1.60000000E+002 -2.62953476E-001 2.64165183E-001 -4.87156165E-001 -8.54524070E-001 -2.63506162E+001 -1.79218513E+001 -1.73391487E+001 + 8.00000000E+001 1.60000000E+002 6.00002848E-002 4.73785398E-001 -8.23987278E-001 1.07234754E-001 -2.41977751E+001 -1.93871574E+001 -1.81475879E+001 + 8.50000000E+001 1.60000000E+002 5.23799194E-001 2.65015306E-001 -2.38068964E-001 6.80383716E-001 -2.24053705E+001 -2.06218253E+001 -1.84123767E+001 + 9.00000000E+001 1.60000000E+002 5.01034747E-001 -3.18729764E-001 3.74923435E-001 4.28299720E-001 -2.23053824E+001 -2.26729465E+001 -1.94749771E+001 + 9.50000000E+001 1.60000000E+002 -1.04074545E-001 -4.73746601E-001 3.61019612E-001 -1.03594663E-001 -2.40628903E+001 -2.62842522E+001 -2.20227682E+001 + 1.00000000E+002 1.60000000E+002 -4.09490717E-001 9.91008831E-002 -4.58093610E-002 -2.17696600E-001 -2.52864345E+001 -3.08333055E+001 -2.42183644E+001 + 1.05000000E+002 1.60000000E+002 9.36422415E-002 5.29521925E-001 -2.07512016E-001 7.90796523E-002 -2.31670897E+001 -3.08487317E+001 -2.24832132E+001 + 1.10000000E+002 1.60000000E+002 6.13245493E-001 1.24308510E-001 8.97660889E-003 2.52998571E-001 -2.18509382E+001 -2.97106818E+001 -2.11925602E+001 + 1.15000000E+002 1.60000000E+002 3.09852569E-001 -4.47695888E-001 1.83509550E-001 1.01463932E-001 -2.30591357E+001 -3.13468747E+001 -2.24584723E+001 + 1.20000000E+002 1.60000000E+002 -3.01146425E-001 -2.43624852E-001 9.65852171E-002 -6.09248096E-002 -2.60163716E+001 -3.66255524E+001 -2.56544261E+001 + 1.25000000E+002 1.60000000E+002 -2.17857381E-001 3.93462507E-001 -2.37542098E-002 -3.67304250E-002 -2.47190938E+001 -4.49604797E+001 -2.46782055E+001 + 1.30000000E+002 1.60000000E+002 4.00329943E-001 4.44645633E-001 -2.56148774E-002 4.18196865E-003 -2.22399945E+001 -4.94944165E+001 -2.22318300E+001 + 1.35000000E+002 1.60000000E+002 5.59185402E-001 -1.25727031E-001 -4.99692354E-002 -3.92222953E-002 -2.26132114E+001 -4.17197348E+001 -2.25601867E+001 + 1.40000000E+002 1.60000000E+002 1.87920452E-002 -4.02551682E-001 -1.49983887E-001 -3.13011980E-002 -2.56726201E+001 -3.40724637E+001 -2.50862755E+001 + 1.45000000E+002 1.60000000E+002 -4.52997687E-001 4.41942555E-002 -1.62225776E-001 4.06012891E-002 -2.46154472E+001 -3.33122552E+001 -2.40655059E+001 + 1.50000000E+002 1.60000000E+002 -2.78677571E-001 6.52170157E-001 -6.54497652E-002 -5.80164173E-002 -2.07629385E+001 -3.89421331E+001 -2.06973869E+001 + 1.55000000E+002 1.60000000E+002 2.38944478E-001 7.52030735E-001 -1.40694128E-001 -4.57762477E-001 -1.98361041E+001 -2.41736838E+001 -1.84741823E+001 + 1.60000000E+002 1.60000000E+002 4.55651916E-001 3.34826283E-001 -6.56219866E-001 -9.56790214E-001 -2.27307097E+001 -1.64878240E+001 -1.55622801E+001 + 1.65000000E+002 1.60000000E+002 1.24778992E-001 -1.48050549E-001 -1.55754426E+000 -1.23941162E+000 -3.20394960E+001 -1.17992688E+001 -1.17583696E+001 + 1.70000000E+002 1.60000000E+002 -5.09263468E-001 -3.69707373E-001 -2.52556042E+000 -1.20130692E+000 -2.18011952E+001 -8.84555443E+000 -8.63104296E+000 + 1.75000000E+002 1.60000000E+002 -1.05986254E+000 -3.59421999E-001 -3.23063145E+000 -1.00846684E+000 -1.68007547E+001 -7.18894091E+000 -6.73825520E+000 + 1.80000000E+002 1.60000000E+002 -1.27041917E+000 -3.20440107E-001 -3.48320580E+000 -9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 1.65000000E+002 -1.05317246E+001 6.58364437E+000 3.94583532E+001 -2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 1.65000000E+002 -9.78909907E+000 6.57811038E+000 3.69255994E+001 -2.50916224E+001 3.65470177E+000 1.52167608E+001 1.55097468E+001 + 1.00000000E+001 1.65000000E+002 -7.81411432E+000 6.39488339E+000 2.97395998E+001 -2.66418380E+001 2.30557473E+000 1.42470064E+001 1.45162284E+001 + 1.50000000E+001 1.65000000E+002 -5.32122810E+000 5.69729525E+000 1.93210291E+001 -2.69068960E+001 5.87170791E-002 1.26246804E+001 1.28587956E+001 + 2.00000000E+001 1.65000000E+002 -3.22230852E+000 4.47744293E+000 8.26703037E+000 -2.40985083E+001 -2.94537794E+000 1.03444880E+001 1.05434685E+001 + 2.50000000E+001 1.65000000E+002 -2.05947014E+000 3.28918426E+000 -3.75953507E-001 -1.81831714E+001 -6.00021392E+000 7.41674185E+000 7.61010979E+000 + 3.00000000E+001 1.65000000E+002 -1.51379483E+000 2.79412299E+000 -4.78311479E+000 -1.11768628E+001 -7.73585309E+000 3.91825052E+000 4.20529083E+000 + 3.50000000E+001 1.65000000E+002 -7.02679232E-001 2.92002516E+000 -5.55439451E+000 -5.56764699E+000 -8.22629473E+000 1.34889449E-001 7.26135508E-001 + 4.00000000E+001 1.65000000E+002 7.21694727E-001 2.72389805E+000 -4.85272948E+000 -2.20501136E+000 -8.78004823E+000 -3.24363284E+000 -2.17328095E+000 + 4.50000000E+001 1.65000000E+002 1.94761031E+000 1.49085484E+000 -4.09751936E+000 -6.89497067E-002 -9.98554848E+000 -5.52685715E+000 -4.19720595E+000 + 5.00000000E+001 1.65000000E+002 1.93996159E+000 -2.03864708E-001 -2.96809015E+000 1.77535318E+000 -1.19749469E+001 -7.00067303E+000 -5.80116785E+000 + 5.50000000E+001 1.65000000E+002 8.54189234E-001 -1.10977248E+000 -9.27639449E-001 2.78241675E+000 -1.48532124E+001 -8.43233190E+000 -7.54039075E+000 + 6.00000000E+001 1.65000000E+002 -1.46912423E-001 -8.79290776E-001 1.15457892E+000 2.07359728E+000 -1.87762807E+001 -1.02712188E+001 -9.69802282E+000 + 6.50000000E+001 1.65000000E+002 -4.11714221E-001 -2.95903554E-001 1.79126648E+000 2.30159150E-001 -2.36780350E+001 -1.26441882E+001 -1.23147138E+001 + 7.00000000E+001 1.65000000E+002 -3.05397508E-001 1.86095488E-002 7.96712357E-001 -1.05731202E+000 -2.80651011E+001 -1.53415320E+001 -1.51155473E+001 + 7.50000000E+001 1.65000000E+002 -2.00964936E-001 2.00503504E-001 -5.02419377E-001 -8.77946315E-001 -2.87157730E+001 -1.76788382E+001 -1.73495892E+001 + 8.00000000E+001 1.65000000E+002 4.44253723E-002 3.59388435E-001 -8.48151720E-001 1.11206797E-001 -2.66013651E+001 -1.91350085E+001 -1.84190938E+001 + 8.50000000E+001 1.65000000E+002 3.95983987E-001 2.00522917E-001 -2.45272478E-001 7.00565488E-001 -2.48335635E+001 -2.03673804E+001 -1.90397038E+001 + 9.00000000E+001 1.65000000E+002 3.77982537E-001 -2.41800163E-001 3.85480403E-001 4.41353618E-001 -2.47392470E+001 -2.24206538E+001 -2.04167237E+001 + 9.50000000E+001 1.65000000E+002 -8.05950007E-002 -3.58209179E-001 3.71724755E-001 -1.05884873E-001 -2.64813062E+001 -2.60352656E+001 -2.32422621E+001 + 1.00000000E+002 1.65000000E+002 -3.10819018E-001 7.62866147E-002 -4.63922197E-002 -2.23984235E-001 -2.76743154E+001 -3.05917320E+001 -2.58822205E+001 + 1.05000000E+002 1.65000000E+002 7.11871380E-002 4.01369619E-001 -2.13226626E-001 8.04113901E-002 -2.55731068E+001 -3.06241911E+001 -2.43920147E+001 + 1.10000000E+002 1.65000000E+002 4.64036338E-001 9.33818364E-002 8.28617380E-003 2.59248387E-001 -2.42750596E+001 -2.94997513E+001 -2.31346806E+001 + 1.15000000E+002 1.65000000E+002 2.33013521E-001 -3.39354097E-001 1.87037893E-001 1.04410855E-001 -2.54879246E+001 -3.11618185E+001 -2.44472336E+001 + 1.20000000E+002 1.65000000E+002 -2.29615699E-001 -1.83415307E-001 9.80068219E-002 -6.13725151E-002 -2.84151522E+001 -3.65165684E+001 -2.77899672E+001 + 1.25000000E+002 1.65000000E+002 -1.65278419E-001 2.99444989E-001 -2.46859659E-002 -3.60683948E-002 -2.70972328E+001 -4.49674321E+001 -2.70268863E+001 + 1.30000000E+002 1.65000000E+002 3.03529171E-001 3.37346787E-001 -2.58590597E-002 5.56026575E-003 -2.46412515E+001 -4.93299623E+001 -2.46265224E+001 + 1.35000000E+002 1.65000000E+002 4.23300618E-001 -9.51929625E-002 -5.09213152E-002 -3.95765576E-002 -2.50312699E+001 -4.15883210E+001 -2.49363570E+001 + 1.40000000E+002 1.65000000E+002 1.35263500E-002 -3.04364548E-001 -1.54044454E-001 -3.13729197E-002 -2.81020567E+001 -3.38490847E+001 -2.70768462E+001 + 1.45000000E+002 1.65000000E+002 -3.43376824E-001 3.46779381E-002 -1.66524011E-001 4.29843435E-002 -2.70190174E+001 -3.30688336E+001 -2.60557448E+001 + 1.50000000E+002 1.65000000E+002 -2.10518074E-001 4.95140131E-001 -6.64779890E-002 -5.82047989E-002 -2.31622972E+001 -3.88535975E+001 -2.30467225E+001 + 1.55000000E+002 1.65000000E+002 1.81904143E-001 5.70264269E-001 -1.43325143E-001 -4.69447423E-001 -2.22361546E+001 -2.39597247E+001 -2.00026916E+001 + 1.60000000E+002 1.65000000E+002 3.45836162E-001 2.54018413E-001 -6.73230768E-001 -9.82936107E-001 -2.51273085E+001 -1.62574496E+001 -1.57277332E+001 + 1.65000000E+002 1.65000000E+002 9.49114899E-002 -1.11358251E-001 -1.60013507E+000 -1.27373813E+000 -3.44725734E+001 -1.15637934E+001 -1.15416218E+001 + 1.70000000E+002 1.65000000E+002 -3.85413500E-001 -2.78498238E-001 -2.59570687E+000 -1.23449203E+000 -2.42354085E+001 -8.60783133E+000 -8.49057120E+000 + 1.75000000E+002 1.65000000E+002 -8.02402880E-001 -2.70000725E-001 -3.32086017E+000 -1.03599311E+000 -1.92248253E+001 -6.95015298E+000 -6.70025527E+000 + 1.80000000E+002 1.65000000E+002 -9.62003449E-001 -2.40139265E-001 -3.58067547E+000 -9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 1.70000000E+002 -7.05262608E+000 4.44160212E+000 4.02261025E+001 -2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 1.70000000E+002 -6.55517742E+000 4.43335757E+000 3.76443791E+001 -2.55877523E+001 1.88971116E-001 1.53850391E+001 1.55143678E+001 + 1.00000000E+001 1.70000000E+002 -5.23196182E+000 4.30349598E+000 3.03185085E+001 -2.71666043E+001 -1.16099499E+000 1.44153375E+001 1.45339706E+001 + 1.50000000E+001 1.70000000E+002 -3.56312073E+000 3.82871873E+000 1.96972681E+001 -2.74351185E+001 -3.40815306E+000 1.27930860E+001 1.28960070E+001 + 2.00000000E+001 1.70000000E+002 -2.15965369E+000 3.00644292E+000 8.42853815E+000 -2.45708582E+001 -6.41041282E+000 1.05130335E+001 1.06003440E+001 + 2.50000000E+001 1.70000000E+002 -1.38266902E+000 2.20908582E+000 -3.82339513E-001 -1.85401018E+001 -9.45863649E+000 7.58558188E+000 7.67052116E+000 + 3.00000000E+001 1.70000000E+002 -1.01598017E+000 1.87812148E+000 -4.87573349E+000 -1.13977584E+001 -1.11892814E+001 4.08771385E+000 4.21468953E+000 + 3.50000000E+001 1.70000000E+002 -4.68617554E-001 1.96124972E+000 -5.66339343E+000 -5.67929385E+000 -1.16867234E+001 3.05520763E-001 5.71705223E-001 + 4.00000000E+001 1.70000000E+002 4.88417110E-001 1.82487381E+000 -4.94940363E+000 -2.24995608E+000 -1.22533875E+001 -3.07162450E+000 -2.57660537E+000 + 4.50000000E+001 1.70000000E+002 1.30772109E+000 9.93132546E-001 -4.17953876E+000 -7.04212758E-002 -1.34705886E+001 -5.35470709E+000 -4.73145874E+000 + 5.00000000E+001 1.70000000E+002 1.29735213E+000 -1.43838521E-001 -3.02681912E+000 1.81083750E+000 -1.54642901E+001 -6.83003563E+000 -6.27260689E+000 + 5.50000000E+001 1.70000000E+002 5.66456644E-001 -7.47834674E-001 -9.45372598E-001 2.83698457E+000 -1.83330396E+001 -8.26405794E+000 -7.85635707E+000 + 6.00000000E+001 1.70000000E+002 -1.03841115E-001 -5.90117248E-001 1.17737308E+000 2.11318458E+000 -2.22273043E+001 -1.01056446E+001 -9.84704708E+000 + 6.50000000E+001 1.70000000E+002 -2.79628694E-001 -1.98337158E-001 1.82542683E+000 2.33427124E-001 -2.70770257E+001 -1.24807765E+001 -1.23326167E+001 + 7.00000000E+001 1.70000000E+002 -2.07980679E-001 1.24206580E-002 8.10659198E-001 -1.07847061E+000 -3.14025856E+001 -1.51771556E+001 -1.50747996E+001 + 7.50000000E+001 1.70000000E+002 -1.37751378E-001 1.35184641E-001 -5.13784323E-001 -8.94658211E-001 -3.20672058E+001 -1.75075087E+001 -1.73581180E+001 + 8.00000000E+001 1.70000000E+002 2.80612547E-002 2.42234692E-001 -8.65699597E-001 1.14337693E-001 -3.00358869E+001 -1.89560578E+001 -1.86299263E+001 + 8.50000000E+001 1.70000000E+002 2.64742375E-001 1.34829919E-001 -2.50432828E-001 7.15293732E-001 -2.83204922E+001 -2.01866521E+001 -1.95658003E+001 + 9.00000000E+001 1.70000000E+002 2.52047786E-001 -1.62535822E-001 3.93153533E-001 4.50835858E-001 -2.82386894E+001 -2.22418285E+001 -2.12679701E+001 + 9.50000000E+001 1.70000000E+002 -5.61704015E-002 -2.39757533E-001 3.79490353E-001 -1.07518308E-001 -2.99510018E+001 -2.58591615E+001 -2.44297110E+001 + 1.00000000E+002 1.70000000E+002 -2.09617833E-001 5.26908644E-002 -4.67771348E-002 -2.28538797E-001 -3.10838539E+001 -3.04210747E+001 -2.77295332E+001 + 1.05000000E+002 1.70000000E+002 4.79659682E-002 2.70045298E-001 -2.17354280E-001 8.13134549E-002 -2.90148736E+001 -3.04662660E+001 -2.66699188E+001 + 1.10000000E+002 1.70000000E+002 3.11094473E-001 6.20478310E-002 7.70990346E-003 2.63712214E-001 -2.77512450E+001 -2.93521916E+001 -2.54680623E+001 + 1.15000000E+002 1.70000000E+002 1.54673235E-001 -2.28028191E-001 1.89472699E-001 1.06569541E-001 -2.89749069E+001 -3.10338482E+001 -2.68731883E+001 + 1.20000000E+002 1.70000000E+002 -1.55769284E-001 -1.21858807E-001 9.89633860E-002 -6.15967805E-002 -3.18552248E+001 -3.64469787E+001 -3.05602728E+001 + 1.25000000E+002 1.70000000E+002 -1.11156069E-001 2.02619196E-001 -2.53739075E-002 -3.54926547E-002 -3.05022641E+001 -4.49828328E+001 -3.03501741E+001 + 1.30000000E+002 1.70000000E+002 2.04177690E-001 2.26962765E-001 -2.60541341E-002 6.62742461E-003 -2.80843187E+001 -4.91886821E+001 -2.80507705E+001 + 1.35000000E+002 1.70000000E+002 2.83731240E-001 -6.40630129E-002 -5.16672387E-002 -3.97345939E-002 -2.85044191E+001 -4.14963128E+001 -2.82916478E+001 + 1.40000000E+002 1.70000000E+002 7.86146536E-003 -2.03693561E-001 -1.57034376E-001 -3.12461713E-002 -3.15924968E+001 -3.36899843E+001 -2.95055260E+001 + 1.45000000E+002 1.70000000E+002 -2.31207011E-001 2.50557871E-002 -1.69614518E-001 4.49534559E-002 -3.04477808E+001 -3.28944245E+001 -2.84907412E+001 + 1.50000000E+002 1.70000000E+002 -1.40771764E-001 3.34349230E-001 -6.71094060E-002 -5.80840894E-002 -2.65857469E+001 -3.88146594E+001 -2.63332777E+001 + 1.55000000E+002 1.70000000E+002 1.23370427E-001 3.84090352E-001 -1.45047752E-001 -4.77667086E-001 -2.56634128E+001 -2.38129448E+001 -2.16300582E+001 + 1.60000000E+002 1.70000000E+002 2.33201748E-001 1.71248858E-001 -6.85318871E-001 -1.00163453E+000 -2.85507737E+001 -1.60966750E+001 -1.58566170E+001 + 1.65000000E+002 1.70000000E+002 6.41487961E-002 -7.37827826E-002 -1.63070124E+000 -1.29834597E+000 -3.79743973E+001 -1.13987203E+001 -1.13891761E+001 + 1.70000000E+002 1.70000000E+002 -2.58730168E-001 -1.85115330E-001 -2.64617808E+000 -1.25824573E+000 -2.77263163E+001 -8.44088103E+000 -8.38998388E+000 + 1.75000000E+002 1.70000000E+002 -5.38866103E-001 -1.78495152E-001 -3.38583672E+000 -1.05561791E+000 -2.26967503E+001 -6.78231531E+000 -6.67245615E+000 + 1.80000000E+002 1.70000000E+002 -6.46266305E-001 -1.58010818E-001 -3.65089405E+000 -9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 1.75000000E+002 -3.51985286E+000 2.26575661E+000 4.06877069E+001 -2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 1.75000000E+002 -3.27126462E+000 2.25489355E+000 3.80766553E+001 -2.58892614E+001 -5.79586382E+000 1.54850268E+001 1.55172437E+001 + 1.00000000E+001 1.75000000E+002 -2.60975607E+000 2.17944292E+000 3.06665753E+001 -2.74849127E+001 -7.14862879E+000 1.45153911E+001 1.45448968E+001 + 1.50000000E+001 1.75000000E+002 -1.77750463E+000 1.93108814E+000 1.99232891E+001 -2.77549761E+001 -9.39718210E+000 1.28932291E+001 1.29187835E+001 + 2.00000000E+001 1.75000000E+002 -1.08005906E+000 1.51251564E+000 8.52530320E+000 -2.48566069E+001 -1.23949931E+001 1.06133292E+001 1.06349997E+001 + 2.50000000E+001 1.75000000E+002 -6.94893047E-001 1.11190448E+000 -3.86627048E-001 -1.87560596E+001 -1.54252229E+001 7.68617006E+000 7.70733351E+000 + 3.00000000E+001 1.75000000E+002 -5.10240733E-001 9.47420098E-001 -4.93202604E+000 -1.15316369E+001 -1.71416072E+001 4.18887769E+000 4.22073009E+000 + 3.50000000E+001 1.75000000E+002 -2.31091602E-001 9.87275287E-001 -5.72976585E+000 -5.74714528E+000 -1.76580866E+001 4.07703397E-001 4.74975864E-001 + 4.00000000E+001 1.75000000E+002 2.51289112E-001 9.12014694E-001 -5.00849096E+000 -2.27718124E+000 -1.82606793E+001 -2.96830587E+000 -2.84177254E+000 + 4.50000000E+001 1.75000000E+002 6.58052172E-001 4.88064329E-001 -4.22958568E+000 -7.09452164E-002 -1.95097323E+001 -5.25132873E+000 -5.09140126E+000 + 5.00000000E+001 1.75000000E+002 6.45343059E-001 -8.27605201E-002 -3.06229427E+000 1.83277411E+000 -2.15118502E+001 -6.72793536E+000 -6.58594014E+000 + 5.50000000E+001 1.75000000E+002 2.74789187E-001 -3.80680530E-001 -9.55682395E-001 2.87011268E+000 -2.43458637E+001 -8.16388046E+000 -8.06050747E+000 + 6.00000000E+001 1.75000000E+002 -6.00238622E-002 -2.97071703E-001 1.19147904E+000 2.13675873E+000 -2.81475045E+001 -1.00076041E+001 -9.94146122E+000 + 6.50000000E+001 1.75000000E+002 -1.45759910E-001 -9.96533596E-002 1.84595667E+000 2.34859613E-001 -3.28401995E+001 -1.23843394E+001 -1.23454125E+001 + 7.00000000E+001 1.75000000E+002 -1.09322585E-001 5.99039477E-003 8.18597227E-001 -1.09154667E+000 -3.69912887E+001 -1.50797003E+001 -1.50518243E+001 + 7.50000000E+001 1.75000000E+002 -7.37779890E-002 6.87493307E-002 -5.21141470E-001 -9.04637819E-001 -3.77054417E+001 -1.74044093E+001 -1.73640761E+001 + 8.00000000E+001 1.75000000E+002 1.11272395E-002 1.23225486E-001 -8.76505862E-001 1.16549118E-001 -3.59292272E+001 -1.88472936E+001 -1.87630816E+001 + 8.50000000E+001 1.75000000E+002 1.31155189E-001 6.83319859E-002 -2.53492820E-001 7.24421666E-001 -3.43798317E+001 -2.00770196E+001 -1.99186898E+001 + 9.00000000E+001 1.75000000E+002 1.24144129E-001 -8.16803762E-002 3.97901345E-001 4.56605542E-001 -3.43378380E+001 -2.21340468E+001 -2.18801549E+001 + 9.50000000E+001 1.75000000E+002 -3.11168781E-002 -1.19328947E-001 3.84210640E-001 -1.08554302E-001 -3.59578837E+001 -2.57535733E+001 -2.53578280E+001 + 1.00000000E+002 1.75000000E+002 -1.06726253E-001 2.85681614E-002 -4.70472640E-002 -2.31315116E-001 -3.69125482E+001 -3.03183859E+001 -2.94580979E+001 + 1.05000000E+002 1.75000000E+002 2.41974544E-002 1.36600102E-001 -2.19881759E-001 8.18764631E-002 -3.49353042E+001 -3.03707962E+001 -2.90688031E+001 + 1.10000000E+002 1.75000000E+002 1.55624557E-001 3.04895911E-002 7.35261069E-003 2.66431972E-001 -3.37733658E+001 -2.92634740E+001 -2.79472676E+001 + 1.15000000E+002 1.75000000E+002 7.53538468E-002 -1.14642461E-001 1.90935293E-001 1.07884328E-001 -3.50320579E+001 -3.09574793E+001 -2.95231806E+001 + 1.20000000E+002 1.75000000E+002 -8.03103422E-002 -5.93829559E-002 9.95152832E-002 -6.17212554E-002 -3.77889049E+001 -3.64072440E+001 -3.40330596E+001 + 1.25000000E+002 1.75000000E+002 -5.59590748E-002 1.03886435E-001 -2.58372758E-002 -3.51205544E-002 -3.63409263E+001 -4.49886443E+001 -3.57851171E+001 + 1.30000000E+002 1.75000000E+002 1.03123913E-001 1.14487742E-001 -2.62500835E-002 7.32412008E-003 -3.40233368E+001 -4.90703165E+001 -3.38895602E+001 + 1.35000000E+002 1.75000000E+002 1.41695982E-001 -3.25376045E-002 -5.22241961E-002 -3.97145031E-002 -3.45281871E+001 -4.14391705E+001 -3.37231557E+001 + 1.40000000E+002 1.75000000E+002 1.94640485E-003 -1.01363255E-001 -1.58929593E-001 -3.09572447E-002 -3.76592949E+001 -3.35926826E+001 -3.21561418E+001 + 1.45000000E+002 1.75000000E+002 -1.17313680E-001 1.53369987E-002 -1.71484628E-001 4.64308870E-002 -3.63179330E+001 -3.27867511E+001 -3.11926195E+001 + 1.50000000E+002 1.75000000E+002 -6.99704886E-002 1.71000677E-001 -6.73836835E-002 -5.77218800E-002 -3.24462406E+001 -3.88174486E+001 -3.15450342E+001 + 1.55000000E+002 1.75000000E+002 6.38037594E-002 1.94935452E-001 -1.45918069E-001 -4.82402890E-001 -3.15387044E+001 -2.37300906E+001 -2.30644840E+001 + 1.60000000E+002 1.75000000E+002 1.18640840E-001 8.71563239E-002 -6.92461807E-001 -1.01275684E+000 -3.44195424E+001 -1.60026232E+001 -1.59405386E+001 + 1.65000000E+002 1.75000000E+002 3.27603640E-002 -3.56134671E-002 -1.64906078E+000 -1.31304185E+000 -4.40834532E+001 -1.13012743E+001 -1.12989864E+001 + 1.70000000E+002 1.75000000E+002 -1.30156797E-001 -9.02773717E-002 -2.67661613E+000 -1.27237716E+000 -3.37833626E+001 -8.34197059E+000 -8.32958190E+000 + 1.75000000E+002 1.75000000E+002 -2.71252076E-001 -8.56056383E-002 -3.42507422E+000 -1.06718685E+000 -2.86986989E+001 -6.68271437E+000 -6.65549837E+000 + 1.80000000E+002 1.75000000E+002 -3.25610684E-001 -7.46798135E-002 -3.69332711E+000 -9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 1.80000000E+002 3.97085595E-002 7.26673169E-002 4.08396533E+001 -2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 1.80000000E+002 3.76435939E-002 5.92722759E-002 3.82191216E+001 -2.59938700E+001 -4.08498239E+001 1.55182832E+001 1.55182932E+001 + 1.00000000E+001 1.80000000E+002 3.25201522E-002 3.88232453E-002 3.07811078E+001 -2.75943772E+001 -4.36879640E+001 1.45487262E+001 1.45487327E+001 + 1.50000000E+001 1.80000000E+002 2.19597137E-002 1.87539329E-002 1.99972885E+001 -2.78640795E+001 -4.85671640E+001 1.29266683E+001 1.29266714E+001 + 2.00000000E+001 1.80000000E+002 8.14278517E-003 6.95678598E-003 8.55646368E+000 -2.49535997E+001 -5.71828038E+001 1.06469315E+001 1.06469322E+001 + 2.50000000E+001 1.80000000E+002 -1.49960528E-003 5.96985545E-003 -3.88923064E-001 -1.88293589E+001 -6.19934913E+001 7.72005613E+000 7.72005660E+000 + 3.00000000E+001 1.80000000E+002 -5.02260233E-004 9.11844009E-003 -4.95166182E+000 -1.15773670E+001 -5.85669394E+001 4.22327547E+000 4.22327775E+000 + 3.50000000E+001 1.80000000E+002 8.06310849E-003 5.50527387E-003 -5.75301473E+000 -5.77054716E+000 -5.79865865E+001 4.42937883E-001 4.42944118E-001 + 4.00000000E+001 1.80000000E+002 1.20651490E-002 -7.79376302E-003 -5.02946869E+000 -2.28638870E+000 -5.46332923E+001 -2.93221653E+000 -2.93218717E+000 + 4.50000000E+001 1.80000000E+002 3.41546162E-003 -2.05485289E-002 -4.24719444E+000 -7.05078669E-002 -5.14045362E+001 -5.21526738E+000 -5.21516294E+000 + 5.00000000E+001 1.80000000E+002 -1.12597156E-002 -2.10224718E-002 -3.07421416E+000 1.84096900E+000 -5.02294799E+001 -6.69287043E+000 -6.69267807E+000 + 5.50000000E+001 1.80000000E+002 -1.86461666E-002 -1.09404597E-002 -9.58498364E-001 2.88156291E+000 -5.10818690E+001 -8.13019744E+000 -8.12997735E+000 + 6.00000000E+001 1.80000000E+002 -1.57217070E-002 -2.26488754E-003 1.19682287E+000 2.14421028E+000 -5.37593037E+001 -9.97531753E+000 -9.97513582E+000 + 6.50000000E+001 1.80000000E+002 -1.10448510E-002 -5.85931692E-004 1.85282082E+000 2.34494279E-001 -5.69031045E+001 -1.23528262E+001 -1.23526739E+001 + 7.00000000E+001 1.80000000E+002 -1.01495577E-002 -6.27130139E-004 8.20615869E-001 -1.09649352E+000 -5.76330154E+001 -1.50468537E+001 -1.50466143E+001 + 7.50000000E+001 1.80000000E+002 -9.48098482E-003 1.75492884E-003 -5.24358312E-001 -9.07942466E-001 -5.80951325E+001 -1.73673006E+001 -1.73669333E+001 + 8.00000000E+001 1.80000000E+002 -6.10982401E-003 3.26546980E-003 -8.80508296E-001 1.17708649E-001 -6.09667061E+001 -1.88069104E+001 -1.88066462E+001 + 8.50000000E+001 1.80000000E+002 -3.65155695E-003 1.38958787E-003 -2.54474511E-001 7.27834027E-001 -6.59415894E+001 -2.00369910E+001 -2.00368795E+001 + 9.00000000E+001 1.80000000E+002 -4.81549315E-003 -3.29426937E-005 3.99672892E-001 4.58602135E-001 -6.41254883E+001 -2.20958520E+001 -2.20955798E+001 + 9.50000000E+001 1.80000000E+002 -5.79177430E-003 2.12126635E-003 3.85841032E-001 -1.09015938E-001 -6.19755973E+001 -2.57167871E+001 -2.57157594E+001 + 1.00000000E+002 1.80000000E+002 -3.00183306E-003 4.20495208E-003 -4.72359914E-002 -2.32312106E-001 -6.35145943E+001 -3.02811320E+001 -3.02790698E+001 + 1.05000000E+002 1.80000000E+002 1.34493225E-004 2.10616080E-003 -2.20820355E-001 8.21222031E-002 -7.12910032E+001 -3.03351323E+001 -3.03347838E+001 + 1.10000000E+002 1.80000000E+002 -1.13518880E-003 -1.14470860E-003 7.23838351E-003 2.67429690E-001 -7.36304251E+001 -2.92311341E+001 -2.92309764E+001 + 1.15000000E+002 1.80000000E+002 -4.44762196E-003 -1.71050531E-004 1.91473311E-001 1.08349103E-001 -6.48095308E+001 -3.09299137E+001 -3.09281365E+001 + 1.20000000E+002 1.80000000E+002 -4.00297946E-003 3.58730672E-003 9.97028963E-002 -6.17846869E-002 -6.31706386E+001 -3.63929492E+001 -3.63838383E+001 + 1.25000000E+002 1.80000000E+002 -1.84240236E-004 4.20311593E-003 -2.60594312E-002 -3.50005738E-002 -6.52987429E+001 -4.49815316E+001 -4.49413477E+001 + 1.30000000E+002 1.80000000E+002 1.24276824E-003 9.64253897E-004 -2.64408325E-002 7.61298132E-003 -7.38440563E+001 -4.89871173E+001 -4.89729469E+001 + 1.35000000E+002 1.80000000E+002 -1.54694083E-003 -8.11586483E-004 -5.25751406E-002 -3.95494374E-002 -7.29330907E+001 -4.14153300E+001 -4.14122691E+001 + 1.40000000E+002 1.80000000E+002 -4.05822680E-003 1.78654908E-003 -1.59705458E-001 -3.05588148E-002 -6.48424593E+001 -3.35559459E+001 -3.35527176E+001 + 1.45000000E+002 1.80000000E+002 -2.53386209E-003 5.53258781E-003 -1.72132022E-001 4.73422477E-002 -6.20929716E+001 -3.27445880E+001 -3.27395450E+001 + 1.50000000E+002 1.80000000E+002 1.34921325E-003 6.32417596E-003 -6.73384630E-002 -5.71773555E-002 -6.15651259E+001 -3.88554910E+001 -3.88322818E+001 + 1.55000000E+002 1.80000000E+002 3.68143577E-003 4.25590311E-003 -1.45985247E-001 -4.83652830E-001 -6.27726187E+001 -2.37091600E+001 -2.37086212E+001 + 1.60000000E+002 1.80000000E+002 3.07185135E-003 2.39262119E-003 -6.94658644E-001 -1.01622822E+000 -6.59712552E+001 -1.59736055E+001 -1.59735621E+001 + 1.65000000E+002 1.80000000E+002 1.02998872E-003 2.85508673E-003 -1.65511195E+000 -1.31770909E+000 -6.81347806E+001 -1.12698460E+001 -1.12698371E+001 + 1.70000000E+002 1.80000000E+002 -6.45780270E-004 5.28400585E-003 -2.68680894E+000 -1.27677103E+000 -6.32548533E+001 -8.30952257E+000 -8.30950866E+000 + 1.75000000E+002 1.80000000E+002 -1.59010696E-003 7.95598807E-003 -3.43827990E+000 -1.07060789E+000 -5.95945200E+001 -6.64978703E+000 -6.64976499E+000 + 1.80000000E+002 1.80000000E+002 -2.47696993E-003 9.21954963E-003 -3.70765173E+000 -9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 + 0.00000000E+000 1.85000000E+002 3.59896778E+000 -2.12097502E+000 4.06807853E+001 -2.50766193E+001 -5.36027790E+000 1.58080036E+001 1.58410635E+001 + 5.00000000E+000 1.85000000E+002 3.34635827E+000 -2.13682440E+000 3.80706784E+001 -2.59007910E+001 -5.80180631E+000 1.54853177E+001 1.55174885E+001 + 1.00000000E+001 1.85000000E+002 2.67472326E+000 -2.10214448E+000 3.06611990E+001 -2.74941841E+001 -7.14398893E+000 1.45158521E+001 1.45453861E+001 + 1.50000000E+001 1.85000000E+002 1.82149105E+000 -1.89382902E+000 1.99186413E+001 -2.77616182E+001 -9.38723622E+000 1.28939121E+001 1.29195208E+001 + 2.00000000E+001 1.85000000E+002 1.09653212E+000 -1.49885099E+000 8.52169618E+000 -2.48610962E+001 -1.24016544E+001 1.06143461E+001 1.06359784E+001 + 2.50000000E+001 1.85000000E+002 6.92091179E-001 -1.10031201E+000 -3.89299156E-001 -1.87593938E+001 -1.55004708E+001 7.68773891E+000 7.70853220E+000 + 3.00000000E+001 1.85000000E+002 5.09272037E-001 -9.29608752E-001 -4.93454168E+000 -1.15345044E+001 -1.72726586E+001 4.19138834E+000 4.22227950E+000 + 3.50000000E+001 1.85000000E+002 2.47007763E-001 -9.76587541E-001 -5.73293868E+000 -5.74921401E+000 -1.77149760E+001 4.11668146E-001 4.78011663E-001 + 4.00000000E+001 1.85000000E+002 -2.27473100E-001 -9.27623410E-001 -5.01208620E+000 -2.27745195E+000 -1.81774673E+001 -2.96296351E+000 -2.83417457E+000 + 4.50000000E+001 1.85000000E+002 -6.51348714E-001 -5.28901972E-001 -4.23213771E+000 -6.91421126E-002 -1.93028270E+001 -5.24615215E+000 -5.07876558E+000 + 5.00000000E+001 1.85000000E+002 -6.67653235E-001 4.09683350E-002 -3.06246580E+000 1.83528283E+000 -2.12711662E+001 -6.72444082E+000 -6.57461083E+000 + 5.50000000E+001 1.85000000E+002 -3.11712579E-001 3.58763303E-001 -9.53852640E-001 2.87121593E+000 -2.42398092E+001 -8.16253276E+000 -8.05666770E+000 + 6.00000000E+001 1.85000000E+002 2.87883283E-002 2.92237467E-001 1.19332222E+000 2.13554758E+000 -2.84218473E+001 -1.00081692E+001 -9.94603852E+000 + 6.50000000E+001 1.85000000E+002 1.23604560E-001 9.81794921E-002 1.84603278E+000 2.32434848E-001 -3.38134972E+001 -1.23854082E+001 -1.23542612E+001 + 7.00000000E+001 1.85000000E+002 8.88571697E-002 -7.36084803E-003 8.16857936E-001 -1.09326066E+000 -3.87749566E+001 -1.50776007E+001 -1.50591027E+001 + 7.50000000E+001 1.85000000E+002 5.47365487E-002 -6.52476306E-002 -5.23285218E-001 -9.04665498E-001 -3.91731248E+001 -1.73952981E+001 -1.73665530E+001 + 8.00000000E+001 1.85000000E+002 -2.33601870E-002 -1.16748942E-001 -8.77678068E-001 1.17652539E-001 -3.62629657E+001 -1.88344551E+001 -1.87566448E+001 + 8.50000000E+001 1.85000000E+002 -1.38528454E-001 -6.56535299E-002 -2.53454798E-001 7.25430811E-001 -3.40677325E+001 -2.00663874E+001 -1.98968960E+001 + 9.00000000E+001 1.85000000E+002 -1.33913271E-001 8.15747753E-002 3.98396927E-001 4.56822313E-001 -3.38714148E+001 -2.21270358E+001 -2.18457134E+001 + 9.50000000E+001 1.85000000E+002 1.94199490E-002 1.23620397E-001 3.84373472E-001 -1.08883859E-001 -3.58308288E+001 -2.57482146E+001 -2.53417335E+001 + 1.00000000E+002 1.85000000E+002 1.00674145E-001 -2.00873777E-002 -4.73278276E-002 -2.31548188E-001 -3.75506011E+001 -3.03079263E+001 -2.95572662E+001 + 1.05000000E+002 1.85000000E+002 -2.39485186E-002 -1.32329925E-001 -2.20184831E-001 8.20109505E-002 -3.52053842E+001 -3.03585533E+001 -2.91279474E+001 + 1.10000000E+002 1.85000000E+002 -1.57901278E-001 -3.27147097E-002 7.32233512E-003 2.66691591E-001 -3.36282614E+001 -2.92550479E+001 -2.79026895E+001 + 1.15000000E+002 1.85000000E+002 -8.42204789E-002 1.14366952E-001 1.91051387E-001 1.07992509E-001 -3.47308261E+001 -3.09513704E+001 -2.94320176E+001 + 1.20000000E+002 1.85000000E+002 7.23588531E-002 6.65951340E-002 9.95321732E-002 -6.17403486E-002 -3.79239209E+001 -3.64054331E+001 -3.40883460E+001 + 1.25000000E+002 1.85000000E+002 5.56353619E-002 -9.54685842E-002 -2.59944354E-002 -3.51046210E-002 -3.69115125E+001 -4.49726207E+001 -3.62809016E+001 + 1.30000000E+002 1.85000000E+002 -1.00604604E-001 -1.12542239E-001 -2.65661605E-002 7.48405454E-003 -3.42016274E+001 -4.89602572E+001 -3.40588166E+001 + 1.35000000E+002 1.85000000E+002 -1.44737510E-001 3.09353513E-002 -5.26716605E-002 -3.92830687E-002 -3.43728875E+001 -4.14262204E+001 -3.35916160E+001 + 1.40000000E+002 1.85000000E+002 -9.99213793E-003 1.04923460E-001 -1.59339206E-001 -3.01127592E-002 -3.73218452E+001 -3.35796496E+001 -3.20492643E+001 + 1.45000000E+002 1.85000000E+002 1.12291158E-001 -4.33424093E-003 -1.71563447E-001 4.76250062E-002 -3.67651303E+001 -3.27676188E+001 -3.13115054E+001 + 1.50000000E+002 1.85000000E+002 7.26528262E-002 -1.58431015E-001 -6.70045089E-002 -5.64949480E-002 -3.29527980E+001 -3.89241691E+001 -3.19738074E+001 + 1.55000000E+002 1.85000000E+002 -5.65064114E-002 -1.86474361E-001 -1.45285759E-001 -4.81428763E-001 -3.19845972E+001 -2.37493346E+001 -2.31418571E+001 + 1.60000000E+002 1.85000000E+002 -1.12570296E-001 -8.23832968E-002 -6.91925635E-001 -1.01202778E+000 -3.48872842E+001 -1.60090290E+001 -1.59531611E+001 + 1.65000000E+002 1.85000000E+002 -3.07492441E-002 4.13253576E-002 -1.64883149E+000 -1.31230891E+000 -4.35406415E+001 -1.13038949E+001 -1.13013008E+001 + 1.70000000E+002 1.85000000E+002 1.28846957E-001 1.00830379E-001 -2.67669071E+000 -1.27138894E+000 -3.35022985E+001 -8.34301628E+000 -8.32979739E+000 + 1.75000000E+002 1.85000000E+002 2.68076009E-001 1.01472111E-001 -3.42535702E+000 -1.06585223E+000 -2.86318321E+001 -6.68302127E+000 -6.65538239E+000 + 1.80000000E+002 1.85000000E+002 3.20675596E-001 9.30487464E-002 -3.69375888E+000 -9.57769570E-001 -2.73061125E+001 -6.14654212E+000 -6.11341605E+000 + 0.00000000E+000 1.90000000E+002 7.13083667E+000 -4.29847545E+000 4.02123119E+001 -2.47963401E+001 6.30437081E-001 1.57082180E+001 1.58410635E+001 + 5.00000000E+000 1.90000000E+002 6.62968937E+000 -4.31671220E+000 3.76324424E+001 -2.56107352E+001 1.86319468E-001 1.53856221E+001 1.55148559E+001 + 1.00000000E+001 1.90000000E+002 5.29670434E+000 -4.22724167E+000 3.03077361E+001 -2.71850973E+001 -1.15804853E+000 1.44162600E+001 1.45349476E+001 + 1.50000000E+001 1.90000000E+002 3.60729715E+000 -3.79220615E+000 1.96879097E+001 -2.74483655E+001 -3.40204439E+000 1.27944505E+001 1.28974828E+001 + 2.00000000E+001 1.90000000E+002 2.17667339E+000 -2.99352066E+000 8.42122339E+000 -2.45797758E+001 -6.41159519E+000 1.05150608E+001 1.06023075E+001 + 2.50000000E+001 1.90000000E+002 1.38044442E+000 -2.19852125E+000 -3.87785213E-001 -1.85466459E+001 -9.49247347E+000 7.58869883E+000 7.67292537E+000 + 3.00000000E+001 1.90000000E+002 1.01511556E+000 -1.86156548E+000 -4.88079577E+000 -1.14033023E+001 -1.12503544E+001 4.09267892E+000 4.21776576E+000 + 3.50000000E+001 1.90000000E+002 4.83917559E-001 -1.95151439E+000 -5.66963735E+000 -5.68323973E+000 -1.17119158E+001 3.13318005E-001 5.77548197E-001 + 4.00000000E+001 1.90000000E+002 -4.65522124E-001 -1.84055177E+000 -4.95637738E+000 -2.25041949E+000 -1.22102475E+001 -3.06118100E+000 -2.56262774E+000 + 4.50000000E+001 1.90000000E+002 -1.30139540E+000 -1.03322078E+000 -4.18443700E+000 -6.69178830E-002 -1.33675674E+001 -5.34465575E+000 -4.70886275E+000 + 5.00000000E+001 1.90000000E+002 -1.31906611E+000 1.02778580E-001 -3.02711973E+000 1.81564712E+000 -1.53468887E+001 -6.82331669E+000 -6.25240509E+000 + 5.50000000E+001 1.90000000E+002 -6.02325574E-001 7.25821997E-001 -9.41857332E-001 2.83907319E+000 -1.82864925E+001 -8.26152302E+000 -7.84986020E+000 + 6.00000000E+001 1.90000000E+002 7.32029583E-002 5.84427784E-001 1.18090317E+000 2.11086920E+000 -2.23762824E+001 -1.01067248E+001 -9.85654093E+000 + 6.50000000E+001 1.90000000E+002 2.57305310E-001 1.96015556E-001 1.82563430E+000 2.28812315E-001 -2.75820227E+001 -1.24825409E+001 -1.23503475E+001 + 7.00000000E+001 1.90000000E+002 1.87070211E-001 -1.41287880E-002 8.07466495E-001 -1.08179885E+000 -3.23137113E+001 -1.51723300E+001 -1.50892520E+001 + 7.50000000E+001 1.90000000E+002 1.18496077E-001 -1.31733122E-001 -5.17791005E-001 -8.94891244E-001 -3.28099110E+001 -1.74889824E+001 -1.73632664E+001 + 8.00000000E+001 1.90000000E+002 -4.03437812E-002 -2.35933570E-001 -8.68000082E-001 1.16236510E-001 -3.01975467E+001 -1.89309210E+001 -1.86180368E+001 + 8.50000000E+001 1.90000000E+002 -2.72328581E-001 -1.32440023E-001 -2.50519551E-001 7.17130878E-001 -2.81546613E+001 -2.01664723E+001 -1.95259343E+001 + 9.00000000E+001 1.90000000E+002 -2.62213733E-001 1.62316166E-001 3.93995278E-001 4.51286177E-001 -2.79965840E+001 -2.22288754E+001 -2.12080052E+001 + 9.50000000E+001 1.90000000E+002 4.41396805E-002 2.44181440E-001 3.79809315E-001 -1.08111707E-001 -2.98846118E+001 -2.58488410E+001 -2.44035920E+001 + 1.00000000E+002 1.90000000E+002 2.03405259E-001 -4.39989400E-002 -4.72791303E-002 -2.29036604E-001 -3.14126646E+001 -3.03991830E+001 -2.78661271E+001 + 1.05000000E+002 1.90000000E+002 -4.77798419E-002 -2.65576875E-001 -2.17976534E-001 8.14717130E-002 -2.91563587E+001 -3.04424093E+001 -2.67416532E+001 + 1.10000000E+002 1.90000000E+002 -3.13359349E-001 -6.40624613E-002 7.52551406E-003 2.64167982E-001 -2.76798321E+001 -2.93373803E+001 -2.54197032E+001 + 1.15000000E+002 1.90000000E+002 -1.63415945E-001 2.27932015E-001 1.89569801E-001 1.06850847E-001 -2.88210904E+001 -3.10249575E+001 -2.67744022E+001 + 1.20000000E+002 1.90000000E+002 1.47988821E-001 1.29137126E-001 9.89666628E-002 -6.14847207E-002 -3.19152125E+001 -3.64511818E+001 -3.06058090E+001 + 1.25000000E+002 1.90000000E+002 1.10937548E-001 -1.94203516E-001 -2.55899734E-002 -3.53411645E-002 -3.07868839E+001 -4.49821919E+001 -3.06246591E+001 + 1.30000000E+002 1.90000000E+002 -2.01599494E-001 -2.24973071E-001 -2.65344255E-002 6.95881119E-003 -2.81759289E+001 -4.90134374E+001 -2.81402634E+001 + 1.35000000E+002 1.90000000E+002 -2.86646756E-001 6.25409951E-002 -5.24475194E-002 -3.89555086E-002 -2.84295985E+001 -4.14759841E+001 -2.82194171E+001 + 1.40000000E+002 1.90000000E+002 -1.57068439E-002 2.07239262E-001 -1.57812834E-001 -2.96747641E-002 -3.14241907E+001 -3.36647544E+001 -2.93912563E+001 + 1.45000000E+002 1.90000000E+002 2.26321721E-001 -1.42215404E-002 -1.69790746E-001 4.72394834E-002 -3.06668676E+001 -3.28564273E+001 -2.86147972E+001 + 1.50000000E+002 1.90000000E+002 1.43412636E-001 -3.22005001E-001 -6.63997894E-002 -5.56988218E-002 -2.68353891E+001 -3.90213612E+001 -2.65804834E+001 + 1.55000000E+002 1.90000000E+002 -1.16262509E-001 -3.75776831E-001 -1.43838482E-001 -4.75754676E-001 -2.58828965E+001 -2.38509745E+001 -2.17388701E+001 + 1.60000000E+002 1.90000000E+002 -2.27345047E-001 -1.66511385E-001 -6.84293128E-001 -1.00018862E+000 -2.87796560E+001 -1.61093701E+001 -1.58806679E+001 + 1.65000000E+002 1.90000000E+002 -6.22806307E-002 7.94994224E-002 -1.63027310E+000 -1.29688109E+000 -3.76929161E+001 -1.14039190E+001 -1.13937243E+001 + 1.70000000E+002 1.90000000E+002 2.57367266E-001 1.95622798E-001 -2.64634168E+000 -1.25626997E+000 -2.75870869E+001 -8.44295664E+000 -8.39038638E+000 + 1.75000000E+002 1.90000000E+002 5.35702978E-001 1.94225092E-001 -3.38640538E+000 -1.05295466E+000 -2.26636698E+001 -6.78292460E+000 -6.67222072E+000 + 1.80000000E+002 1.90000000E+002 6.41387627E-001 1.76169786E-001 -3.65175429E+000 -9.46015235E-001 -2.13202195E+001 -6.24638040E+000 -6.11341605E+000 + 0.00000000E+000 1.95000000E+002 1.06084356E+001 -6.44326189E+000 3.94377986E+001 -2.43273457E+001 4.09823774E+000 1.55401365E+001 1.58410635E+001 + 5.00000000E+000 1.95000000E+002 9.86263804E+000 -6.46382995E+000 3.69077379E+001 -2.51259060E+001 3.65328811E+000 1.52176386E+001 1.55104750E+001 + 1.00000000E+001 1.95000000E+002 7.87846492E+000 -6.32036903E+000 2.97233946E+001 -2.66694525E+001 2.30823017E+000 1.42483916E+001 1.45176899E+001 + 1.50000000E+001 1.95000000E+002 5.36568540E+000 -5.66202773E+000 1.93068406E+001 -2.69266724E+001 6.40373048E-002 1.26267244E+001 1.28610116E+001 + 2.00000000E+001 1.95000000E+002 3.24018764E+000 -4.46574378E+000 8.25581542E+000 -2.41117344E+001 -2.94382032E+000 1.03475134E+001 1.05464283E+001 + 2.50000000E+001 1.95000000E+002 2.05815956E+000 -3.28028823E+000 -3.84366034E-001 -1.81926855E+001 -6.01866241E+000 7.42136740E+000 7.61373306E+000 + 3.00000000E+001 1.95000000E+002 1.51309221E+000 -2.77959068E+000 -4.79078214E+000 -1.11847177E+001 -7.77174924E+000 3.92556254E+000 4.20985224E+000 + 3.50000000E+001 1.95000000E+002 7.16996138E-001 -2.91182573E+000 -5.56351737E+000 -5.57310594E+000 -8.23955159E+000 1.46266880E-001 7.34385260E-001 + 4.00000000E+001 1.95000000E+002 -7.00266860E-001 -2.73970829E+000 -4.86267559E+000 -2.20551709E+000 -8.74957534E+000 -3.22854706E+000 -2.15482942E+000 + 4.50000000E+001 1.95000000E+002 -1.94190070E+000 -1.52978215E+000 -4.10437829E+000 -6.39291430E-002 -9.91723367E+000 -5.51250586E+000 -4.16855743E+000 + 5.00000000E+001 1.95000000E+002 -1.96077914E+000 1.63947828E-001 -2.96842908E+000 1.78208986E+000 -1.18996765E+001 -6.99125140E+000 -5.77576290E+000 + 5.50000000E+001 1.95000000E+002 -8.88458339E-001 1.08764456E+000 -9.22678198E-001 2.78527346E+000 -1.48287136E+001 -8.42893788E+000 -7.53307066E+000 + 6.00000000E+001 1.95000000E+002 1.17193693E-001 8.72352031E-001 1.15953314E+000 2.07034709E+000 -1.88869896E+001 -1.02727642E+001 -9.71291792E+000 + 6.50000000E+001 1.95000000E+002 3.89198540E-001 2.92341972E-001 1.79169725E+000 2.23741549E-001 -2.40321354E+001 -1.26460122E+001 -1.23413288E+001 + 7.00000000E+001 1.95000000E+002 2.83903632E-001 -2.08486067E-002 7.92542885E-001 -1.06208631E+000 -2.86917304E+001 -1.53328871E+001 -1.51369722E+001 + 7.50000000E+001 1.95000000E+002 1.81423407E-001 -1.97209050E-001 -5.07810184E-001 -8.78670192E-001 -2.92169080E+001 -1.76504194E+001 -1.73577223E+001 + 8.00000000E+001 1.95000000E+002 -5.68198197E-002 -3.53410655E-001 -8.51475517E-001 1.13388670E-001 -2.67020807E+001 -1.90987229E+001 -1.84033525E+001 + 8.50000000E+001 1.95000000E+002 -4.03930341E-001 -1.98567176E-001 -2.45723583E-001 7.02897086E-001 -2.47123560E+001 -2.03399270E+001 -1.89873587E+001 + 9.00000000E+001 1.95000000E+002 -3.88750389E-001 2.41412034E-001 3.86414114E-001 4.42016917E-001 -2.45686026E+001 -2.24041594E+001 -2.03426141E+001 + 9.50000000E+001 1.95000000E+002 6.80398701E-002 3.62811572E-001 3.72149749E-001 -1.06652328E-001 -2.64347702E+001 -2.60213554E+001 -2.32128455E+001 + 1.00000000E+002 1.95000000E+002 3.04304138E-001 -6.72594431E-002 -4.70435868E-002 -2.24777492E-001 -2.79052038E+001 -3.05572688E+001 -2.60215668E+001 + 1.05000000E+002 1.95000000E+002 -7.11182763E-002 -3.96514051E-001 -2.14182039E-001 8.04348144E-002 -2.56758248E+001 -3.05898624E+001 -2.44617058E+001 + 1.10000000E+002 1.95000000E+002 -4.66205844E-001 -9.49985370E-002 7.76958037E-003 2.59789879E-001 -2.42302682E+001 -2.94821797E+001 -2.30961601E+001 + 1.15000000E+002 1.95000000E+002 -2.41448278E-001 3.39505309E-001 1.86900325E-001 1.04947266E-001 -2.53839824E+001 -3.11560620E+001 -2.43640275E+001 + 1.20000000E+002 1.95000000E+002 2.22143600E-001 1.90677284E-001 9.79330677E-002 -6.08985976E-002 -2.84484147E+001 -3.65401457E+001 -2.78219300E+001 + 1.25000000E+002 1.95000000E+002 1.65155802E-001 -2.91138666E-001 -2.48130130E-002 -3.55843138E-002 -2.72848472E+001 -4.50324746E+001 -2.72125038E+001 + 1.30000000E+002 1.95000000E+002 -3.00974084E-001 -3.35306016E-001 -2.62560832E-002 6.08862699E-003 -2.47032145E+001 -4.91664301E+001 -2.46877018E+001 + 1.35000000E+002 1.95000000E+002 -4.26098199E-001 9.38531032E-002 -5.18388643E-002 -3.85862568E-002 -2.49825657E+001 -4.15707283E+001 -2.48883230E+001 + 1.40000000E+002 1.95000000E+002 -2.10749913E-002 3.07956596E-001 -1.55116496E-001 -2.92759396E-002 -2.79884248E+001 -3.38133389E+001 -2.69794757E+001 + 1.45000000E+002 1.95000000E+002 3.38723324E-001 -2.40680173E-002 -1.66825878E-001 4.61794613E-002 -2.71597333E+001 -3.30125937E+001 -2.61565630E+001 + 1.50000000E+002 1.95000000E+002 2.13109728E-001 -4.83138401E-001 -6.55241141E-002 -5.47892463E-002 -2.33249801E+001 -3.91480927E+001 -2.32128162E+001 + 1.55000000E+002 1.95000000E+002 -1.75089875E-001 -5.62181861E-001 -1.41641570E-001 -4.66666090E-001 -2.23789071E+001 -2.40156658E+001 -2.01103313E+001 + 1.60000000E+002 1.95000000E+002 -3.40317911E-001 -2.49336489E-001 -6.71804066E-001 -9.80797837E-001 -2.52746738E+001 -1.62762092E+001 -1.57610681E+001 + 1.65000000E+002 1.95000000E+002 -9.32698616E-002 1.17081573E-001 -1.59956663E+000 -1.27154383E+000 -3.42745997E+001 -1.15714875E+001 -1.15482435E+001 + 1.70000000E+002 1.95000000E+002 3.83967968E-001 2.88928102E-001 -2.59598736E+000 -1.23153046E+000 -2.41440636E+001 -8.61090606E+000 -8.49110389E+000 + 1.75000000E+002 1.95000000E+002 7.99262974E-001 2.85503043E-001 -3.32172053E+000 -1.03201330E+000 -1.92031721E+001 -6.95105575E+000 -6.69989368E+000 + 1.80000000E+002 1.95000000E+002 9.57218310E-001 2.57950067E-001 -3.58195765E+000 -9.27061152E-001 -1.78538328E+001 -6.41451598E+000 -6.11341605E+000 + 0.00000000E+000 2.00000000E+002 1.40052979E+001 -8.53901122E+000 3.83631397E+001 -2.36732055E+001 6.52003415E+000 1.53010531E+001 1.58410635E+001 + 5.00000000E+000 2.00000000E+002 1.30205875E+001 -8.56186412E+000 3.59020721E+001 -2.44499829E+001 6.07471700E+000 1.49786606E+001 1.55044768E+001 + 1.00000000E+001 2.00000000E+002 1.04003118E+001 -8.36566510E+000 2.89126181E+001 -2.59511399E+001 4.72937169E+000 1.40095398E+001 1.44940646E+001 + 1.50000000E+001 2.00000000E+002 7.08317295E+000 -7.48915286E+000 1.87783521E+001 -2.62004521E+001 2.48514002E+000 1.23880255E+001 1.28108712E+001 + 2.00000000E+001 2.00000000E+002 4.27882525E+000 -5.90437336E+000 8.02678428E+000 -2.34604705E+001 -5.21842806E-001 1.01089937E+001 1.04692116E+001 + 2.50000000E+001 2.00000000E+002 2.71991989E+000 -4.33735858E+000 -3.78981407E-001 -1.77001636E+001 -3.59373012E+000 7.18302916E+000 7.53181002E+000 + 3.00000000E+001 2.00000000E+002 1.99932967E+000 -3.67661691E+000 -4.66508632E+000 -1.08804106E+001 -5.34444746E+000 3.68731138E+000 4.19874117E+000 + 3.50000000E+001 2.00000000E+002 9.44486863E-001 -3.85016873E+000 -5.41529741E+000 -5.41968619E+000 -5.81512695E+000 -9.22410661E-002 9.38056967E-001 + 4.00000000E+001 2.00000000E+002 -9.29896438E-001 -3.61831959E+000 -4.73162697E+000 -2.14314858E+000 -6.33060361E+000 -3.46786547E+000 -1.65720644E+000 + 4.50000000E+001 2.00000000E+002 -2.56809087E+000 -2.01493250E+000 -3.99252798E+000 -6.02821421E-002 -7.50295464E+000 -5.75255765E+000 -3.52986086E+000 + 5.00000000E+001 2.00000000E+002 -2.58814122E+000 2.23996188E-001 -2.88683437E+000 1.73476091E+000 -9.48633839E+000 -7.23114799E+000 -5.20367543E+000 + 5.50000000E+001 2.00000000E+002 -1.16813447E+000 1.44166272E+000 -8.96516652E-001 2.71011779E+000 -1.24092256E+001 -8.66774065E+000 -7.13714428E+000 + 6.00000000E+001 2.00000000E+002 1.60416406E-001 1.15409306E+000 1.12925480E+000 2.01422932E+000 -1.64505833E+001 -1.05093318E+001 -9.52424557E+000 + 6.50000000E+001 2.00000000E+002 5.18437834E-001 3.86600352E-001 1.74434715E+000 2.17294676E-001 -2.15642760E+001 -1.28789728E+001 -1.23276616E+001 + 7.00000000E+001 2.00000000E+002 3.78785746E-001 -2.74470494E-002 7.72137132E-001 -1.03416358E+000 -2.61878913E+001 -1.55625651E+001 -1.52019083E+001 + 7.50000000E+001 2.00000000E+002 2.43126294E-001 -2.61209109E-001 -4.93378465E-001 -8.56028560E-001 -2.67288383E+001 -1.78830869E+001 -1.73505955E+001 + 8.00000000E+001 2.00000000E+002 -7.26031611E-002 -4.68298744E-001 -8.28148654E-001 1.09135979E-001 -2.42648942E+001 -1.93415655E+001 -1.81297106E+001 + 8.50000000E+001 2.00000000E+002 -5.32252894E-001 -2.63567517E-001 -2.39082081E-001 6.82772498E-001 -2.23037016E+001 -2.05906799E+001 -1.83529726E+001 + 9.00000000E+001 2.00000000E+002 -5.12521584E-001 3.18163424E-001 3.75655811E-001 4.29050774E-001 -2.21686108E+001 -2.26569768E+001 -1.93956329E+001 + 9.50000000E+001 2.00000000E+002 9.08804410E-002 4.78526906E-001 3.61413289E-001 -1.04477182E-001 -2.40264950E+001 -2.62698671E+001 -2.19946102E+001 + 1.00000000E+002 2.00000000E+002 4.02523609E-001 -8.96700289E-002 -4.65849479E-002 -2.18772734E-001 -2.54723328E+001 -3.07860573E+001 -2.43523532E+001 + 1.05000000E+002 2.00000000E+002 -9.37729810E-002 -5.24076677E-001 -2.08788526E-001 7.88469862E-002 -2.32537464E+001 -3.08053855E+001 -2.25506851E+001 + 1.10000000E+002 2.00000000E+002 -6.15199362E-001 -1.25302756E-001 7.99162683E-003 2.53494522E-001 -2.18216599E+001 -2.96948212E+001 -2.11651669E+001 + 1.15000000E+002 2.00000000E+002 -3.17716888E-001 4.48131988E-001 1.82922454E-001 1.02289703E-001 -2.29817996E+001 -3.13515072E+001 -2.23916375E+001 + 1.20000000E+002 2.00000000E+002 2.94147753E-001 2.50681074E-001 9.63403537E-002 -5.98812479E-002 -2.60360505E+001 -3.66836572E+001 -2.56771651E+001 + 1.25000000E+002 2.00000000E+002 2.17753218E-001 -3.85478172E-001 -2.36653804E-002 -3.57079038E-002 -2.48557273E+001 -4.51418987E+001 -2.48152564E+001 + 1.30000000E+002 2.00000000E+002 -3.98001397E-001 -4.42579200E-001 -2.56743689E-002 4.94655992E-003 -2.22850227E+001 -4.94302217E+001 -2.22766504E+001 + 1.35000000E+002 2.00000000E+002 -5.61975803E-001 1.24714849E-001 -5.08041028E-002 -3.81616217E-002 -2.25753673E+001 -4.17175255E+001 -2.25227733E+001 + 1.40000000E+002 2.00000000E+002 -2.59959600E-002 4.06325799E-001 -1.51251852E-001 -2.89083233E-002 -2.55832788E+001 -3.40286760E+001 -2.50026610E+001 + 1.45000000E+002 2.00000000E+002 4.48668231E-001 -3.37983972E-002 -1.62677055E-001 4.44788677E-002 -2.47154254E+001 -3.32388760E+001 -2.41444989E+001 + 1.50000000E+002 2.00000000E+002 2.81233459E-001 -6.40585360E-001 -6.43562439E-002 -5.37418111E-002 -2.08814959E+001 -3.93090103E+001 -2.08195614E+001 + 1.55000000E+002 2.00000000E+002 -2.32500496E-001 -7.44242180E-001 -1.38672053E-001 -4.54210584E-001 -1.99398076E+001 -2.42463253E+001 -1.85695026E+001 + 1.60000000E+002 2.00000000E+002 -4.50572460E-001 -3.30214133E-001 -6.54514389E-001 -9.53996251E-001 -2.28361689E+001 -1.65123299E+001 -1.56022074E+001 + 1.65000000E+002 2.00000000E+002 -1.23431044E-001 1.53780976E-001 -1.55691779E+000 -1.23649287E+000 -3.18808187E+001 -1.18093403E+001 -1.17668286E+001 + 1.70000000E+002 2.00000000E+002 5.07714005E-001 3.80025206E-001 -2.52599726E+000 -1.19736300E+000 -2.17341655E+001 -8.84958379E+000 -8.63162097E+000 + 1.75000000E+002 2.00000000E+002 1.05675849E+000 3.74605564E-001 -3.23179162E+000 -1.00318885E+000 -1.67849198E+001 -7.19012406E+000 -6.73775790E+000 + 1.80000000E+002 2.00000000E+002 1.26576398E+000 3.37767193E-001 -3.48490014E+000 -9.01051575E-001 -1.54327138E+001 -6.65365582E+000 -6.11341605E+000 + 0.00000000E+000 2.05000000E+002 1.72955715E+001 -1.05697735E+001 3.69965143E+001 -2.28388980E+001 8.35839891E+000 1.49869321E+001 1.58410635E+001 + 5.00000000E+000 2.05000000E+002 1.60794909E+001 -1.05948716E+001 3.46230935E+001 -2.35880938E+001 7.91290587E+000 1.46646522E+001 1.54970400E+001 + 1.00000000E+001 2.05000000E+002 1.28430093E+001 -1.03476232E+001 2.78815841E+001 -2.50355768E+001 6.56744060E+000 1.36956678E+001 1.44646970E+001 + 1.50000000E+001 2.05000000E+002 8.74659533E+000 -9.25975225E+000 1.81065105E+001 -2.52751525E+001 4.32323144E+000 1.20743161E+001 1.27481439E+001 + 2.00000000E+001 2.05000000E+002 5.28453795E+000 -7.29850624E+000 7.73597145E+000 -2.26308628E+001 1.31676099E+000 9.79546246E+000 1.03719265E+001 + 2.50000000E+001 2.05000000E+002 3.36054190E+000 -5.36165893E+000 -3.71530054E-001 -1.70727959E+001 -1.75349815E+000 6.86964216E+000 7.42841118E+000 + 3.00000000E+001 2.05000000E+002 2.47005192E+000 -4.54573072E+000 -4.50452180E+000 -1.04927362E+001 -3.50286303E+000 3.37387688E+000 4.18472124E+000 + 3.50000000E+001 2.05000000E+002 1.16468142E+000 -4.75934683E+000 -5.22601068E+000 -5.22424348E+000 -3.97497157E+000 -4.06269758E-001 1.17636891E+000 + 4.00000000E+001 2.05000000E+002 -1.15262432E+000 -4.46975476E+000 -4.56419823E+000 -2.06389372E+000 -4.49323287E+000 -3.78322987E+000 -1.11343826E+000 + 4.50000000E+001 2.05000000E+002 -3.17527522E+000 -2.48510113E+000 -3.84974431E+000 -5.60870074E-002 -5.66780898E+000 -6.06894755E+000 -2.85344853E+000 + 5.00000000E+001 2.05000000E+002 -3.19658550E+000 2.82436875E-001 -2.78297117E+000 1.67395053E+000 -7.65100786E+000 -7.54720150E+000 -4.58849458E+000 + 5.50000000E+001 2.05000000E+002 -1.43941779E+000 1.78533910E+000 -8.63604164E-001 2.61409502E+000 -1.05691786E+001 -8.98221318E+000 -6.69330858E+000 + 6.00000000E+001 2.05000000E+002 2.02523307E-001 1.42775381E+000 1.09021096E+000 1.94286049E+000 -1.45989248E+001 -1.08208308E+001 -9.30107598E+000 + 6.50000000E+001 2.05000000E+002 6.44177158E-001 4.78229510E-001 1.68380061E+000 2.09498977E-001 -1.96918900E+001 -1.31859782E+001 -1.23096986E+001 + 7.00000000E+001 2.05000000E+002 4.71132847E-001 -3.38645381E-002 7.46273787E-001 -9.98165434E-001 -2.42932589E+001 -1.58660688E+001 -1.52831684E+001 + 7.50000000E+001 2.05000000E+002 3.03181108E-001 -3.23281443E-001 -4.74643928E-001 -8.27009586E-001 -2.48464360E+001 -1.81917612E+001 -1.73422855E+001 + 8.00000000E+001 2.05000000E+002 -8.75654603E-002 -5.79708390E-001 -7.98148594E-001 1.03593356E-001 -2.24163386E+001 -1.96642802E+001 -1.78155698E+001 + 8.50000000E+001 2.05000000E+002 -6.56265668E-001 -3.26909871E-001 -2.30598216E-001 6.56913259E-001 -2.04742804E+001 -2.09236821E+001 -1.76828710E+001 + 9.00000000E+001 2.05000000E+002 -6.32501933E-001 3.91965770E-001 3.61797631E-001 4.12474248E-001 -2.03457942E+001 -2.29923727E+001 -1.84602257E+001 + 9.50000000E+001 2.05000000E+002 1.12520503E-001 5.90371411E-001 3.47673271E-001 -1.01579695E-001 -2.22010384E+001 -2.65993296E+001 -2.08553759E+001 + 1.00000000E+002 2.05000000E+002 4.97280979E-001 -1.11112249E-001 -4.58709281E-002 -2.11056360E-001 -2.36348863E+001 -3.10900902E+001 -2.29172748E+001 + 1.05000000E+002 2.05000000E+002 -1.15606632E-001 -6.47287474E-001 -2.01808027E-001 7.66636803E-002 -2.14201929E+001 -3.10942937E+001 -2.09756073E+001 + 1.10000000E+002 2.05000000E+002 -7.59196154E-001 -1.54734871E-001 8.13554064E-003 2.45249368E-001 -1.99946667E+001 -2.99815726E+001 -1.95795478E+001 + 1.15000000E+002 2.05000000E+002 -3.91633271E-001 5.52948710E-001 1.77547541E-001 9.88865917E-002 -2.11591607E+001 -3.16188290E+001 -2.07850686E+001 + 1.20000000E+002 2.05000000E+002 3.63403146E-001 3.08649831E-001 9.41051040E-002 -5.83666187E-002 -2.42120051E+001 -3.68927406E+001 -2.39838383E+001 + 1.25000000E+002 2.05000000E+002 2.68251187E-001 -4.76484454E-001 -2.21843349E-002 -3.56127456E-002 -2.30218513E+001 -4.53223629E+001 -2.29963561E+001 + 1.30000000E+002 2.05000000E+002 -4.91976739E-001 -5.45904700E-001 -2.47823614E-002 3.61541266E-003 -2.04541427E+001 -4.98041927E+001 -2.04491016E+001 + 1.35000000E+002 2.05000000E+002 -6.93221356E-001 1.54949663E-001 -4.93361955E-002 -3.76312929E-002 -2.07493336E+001 -4.19237030E+001 -2.07163198E+001 + 1.40000000E+002 2.05000000E+002 -3.03971082E-002 5.01616135E-001 -1.46234174E-001 -2.85199345E-002 -2.37551583E+001 -3.43154037E+001 -2.33892793E+001 + 1.45000000E+002 2.05000000E+002 5.55336534E-001 -4.33326160E-002 -1.57347678E-001 4.22116753E-002 -2.28610198E+001 -3.35394786E+001 -2.25045734E+001 + 1.50000000E+002 2.05000000E+002 3.47279653E-001 -7.93127429E-001 -6.28549449E-002 -5.25100191E-002 -1.90298968E+001 -3.95125465E+001 -1.89912081E+001 + 1.55000000E+002 2.05000000E+002 -2.88024302E-001 -9.20546085E-001 -1.34888700E-001 -4.38449238E-001 -1.80919822E+001 -2.45473748E+001 -1.72064279E+001 + 1.60000000E+002 2.05000000E+002 -5.57221990E-001 -4.08516093E-001 -6.32495397E-001 -9.19977847E-001 -2.09898489E+001 -1.68218989E+001 -1.54136599E+001 + 1.65000000E+002 2.05000000E+002 -1.52492387E-001 1.89314288E-001 -1.50260858E+000 -1.19199970E+000 -3.00630858E+001 -1.21215682E+001 -1.20523584E+001 + 1.70000000E+002 2.05000000E+002 6.27687680E-001 4.68211228E-001 -2.43688301E+000 -1.15403462E+000 -1.99023894E+001 -9.16304655E+000 -8.81136678E+000 + 1.75000000E+002 2.05000000E+002 1.30623702E+000 4.60849356E-001 -3.11729795E+000 -9.66703196E-001 -1.49485782E+001 -7.50417029E+000 -6.78491275E+000 + 1.80000000E+002 2.05000000E+002 1.56467643E+000 4.15013706E-001 -3.36132044E+000 -8.68184451E-001 -1.35947503E+001 -6.96783670E+000 -6.11341605E+000 + 0.00000000E+000 2.10000000E+002 2.04542153E+001 -1.25200934E+001 3.53483230E+001 -2.18307726E+001 9.81913558E+000 1.45921187E+001 1.58410635E+001 + 5.00000000E+000 2.10000000E+002 1.90160552E+001 -1.25473999E+001 3.30805330E+001 -2.25467775E+001 9.37356488E+000 1.42699580E+001 1.54883869E+001 + 1.00000000E+001 2.10000000E+002 1.51879284E+001 -1.22512062E+001 2.66381564E+001 -2.39296691E+001 8.02806577E+000 1.33011200E+001 1.44303781E+001 + 1.50000000E+001 2.10000000E+002 1.03432123E+001 -1.09604094E+001 1.72964960E+001 -2.41577194E+001 5.78390560E+000 1.16799401E+001 1.26742407E+001 + 2.00000000E+001 2.10000000E+002 6.24954889E+000 -8.63756449E+000 7.38572835E+000 -2.16291368E+001 2.77773695E+000 9.40126317E+000 1.02562890E+001 + 2.50000000E+001 2.10000000E+002 3.97502324E+000 -6.34536228E+000 -3.61877622E-001 -1.63153367E+001 -2.91632708E-001 6.47554987E+000 7.30524936E+000 + 3.00000000E+001 2.10000000E+002 2.92161039E+000 -5.38023364E+000 -4.31013135E+000 -1.00247268E+001 -2.04019585E+000 2.97960332E+000 4.16816522E+000 + 3.50000000E+001 2.10000000E+002 1.37592662E+000 -5.63238017E+000 -4.99700417E+000 -4.98841899E+000 -2.51293289E+000 -8.01474250E-001 1.43686245E+000 + 4.00000000E+001 2.10000000E+002 -1.36671095E+000 -5.28757120E+000 -4.36167637E+000 -1.96850100E+000 -3.03251200E+000 -4.18030066E+000 -5.58297858E-001 + 4.50000000E+001 2.10000000E+002 -3.75888192E+000 -2.93681373E+000 -3.67717899E+000 -5.14517088E-002 -4.20791643E+000 -6.46736141E+000 -2.18203043E+000 + 5.00000000E+001 2.10000000E+002 -3.78164956E+000 3.38789855E-001 -2.65767431E+000 1.60009863E+000 -6.19016409E+000 -7.94515464E+000 -3.96930681E+000 + 5.50000000E+001 2.10000000E+002 -1.70040726E+000 2.11617979E+000 -8.24203783E-001 2.49789996E+000 -9.10406679E+000 -9.37818911E+000 -6.22866556E+000 + 6.00000000E+001 2.10000000E+002 2.43173183E-001 1.69145071E+000 1.04265879E+000 1.85670693E+000 -1.31244722E+001 -1.12132149E+001 -9.05424218E+000 + 6.50000000E+001 2.10000000E+002 7.65566313E-001 5.66652080E-001 1.61040331E+000 2.00349843E-001 -1.82015419E+001 -1.35731097E+001 -1.22875847E+001 + 7.00000000E+001 2.10000000E+002 5.60337811E-001 -4.00562646E-002 7.14994981E-001 -9.54344439E-001 -2.27873714E+001 -1.62495381E+001 -1.53790736E+001 + 7.50000000E+001 2.10000000E+002 3.61133175E-001 -3.82983321E-001 -4.51858956E-001 -7.91725993E-001 -2.33522453E+001 -1.85824624E+001 -1.73327176E+001 + 8.00000000E+001 2.10000000E+002 -1.01627655E-001 -6.86750083E-001 -7.61728575E-001 9.69302431E-002 -2.09484524E+001 -2.00727415E+001 -1.74782620E+001 + 8.50000000E+001 2.10000000E+002 -7.74995877E-001 -3.88018385E-001 -2.20305401E-001 6.25608044E-001 -1.90210849E+001 -2.13447710E+001 -1.70190365E+001 + 9.00000000E+001 2.10000000E+002 -7.47667578E-001 4.62303508E-001 3.44996167E-001 3.92465002E-001 -1.88982217E+001 -2.34160672E+001 -1.75840934E+001 + 9.50000000E+001 2.10000000E+002 1.32900408E-001 6.97434844E-001 3.31094422E-001 -9.79692700E-002 -2.07535306E+001 -2.70149614E+001 -1.98315401E+001 + 1.00000000E+002 2.10000000E+002 5.87864194E-001 -1.31528790E-001 -4.48595544E-002 -2.01724381E-001 -2.21808272E+001 -3.14737090E+001 -2.16976427E+001 + 1.05000000E+002 2.10000000E+002 -1.36521351E-001 -7.65257984E-001 -1.93299356E-001 7.38319480E-002 -1.99662839E+001 -3.14624666E+001 -1.96689698E+001 + 1.10000000E+002 2.10000000E+002 -8.97152404E-001 -1.83047022E-001 8.13381801E-003 2.35068054E-001 -1.85440531E+001 -3.03494381E+001 -1.82665321E+001 + 1.15000000E+002 2.10000000E+002 -4.62636458E-001 6.53184390E-001 1.70728787E-001 9.47671851E-002 -1.97120795E+001 -3.19659371E+001 -1.94610152E+001 + 1.20000000E+002 2.10000000E+002 4.29383179E-001 3.64137274E-001 9.11720094E-002 -5.63234104E-002 -2.27683820E+001 -3.71773249E+001 -2.26138073E+001 + 1.25000000E+002 2.10000000E+002 3.16240988E-001 -5.63465466E-001 -2.04328444E-002 -3.52392042E-002 -2.15719246E+001 -4.55792509E+001 -2.15546983E+001 + 1.30000000E+002 2.10000000E+002 -5.82202798E-001 -6.44470670E-001 -2.36226730E-002 2.17785241E-003 -1.90030513E+001 -5.02751689E+001 -1.89998123E+001 + 1.35000000E+002 2.10000000E+002 -8.18827466E-001 1.84351953E-001 -4.74627755E-002 -3.69143103E-002 -1.92999186E+001 -4.21969658E+001 -1.92776871E+001 + 1.40000000E+002 2.10000000E+002 -3.42314072E-002 5.93107481E-001 -1.40091942E-001 -2.80216535E-002 -2.23013964E+001 -3.46798715E+001 -2.20572380E+001 + 1.45000000E+002 2.10000000E+002 6.57918367E-001 -5.25953453E-002 -1.50838685E-001 3.94840054E-002 -2.13874005E+001 -3.39204260E+001 -2.11515505E+001 + 1.50000000E+002 2.10000000E+002 4.10749359E-001 -9.39586999E-001 -6.09644424E-002 -5.10310885E-002 -1.75602541E+001 -3.97707623E+001 -1.75342267E+001 + 1.55000000E+002 2.10000000E+002 -3.41217231E-001 -1.08973006E+000 -1.30238058E-001 -4.19458695E-001 -1.66259283E+001 -2.49250148E+001 -1.60267290E+001 + 1.60000000E+002 2.10000000E+002 -6.59420185E-001 -4.83635749E-001 -6.05837854E-001 -8.78988706E-001 -1.95259436E+001 -1.72107514E+001 -1.52055640E+001 + 1.65000000E+002 2.10000000E+002 -1.80201216E-001 2.23408130E-001 -1.43699814E+000 -1.13840905E+000 -2.86200956E+001 -1.25139009E+001 -1.24087300E+001 + 1.70000000E+002 2.10000000E+002 7.42994055E-001 5.52807384E-001 -2.32929600E+000 -1.10188427E+000 -1.84454761E+001 -9.55697741E+000 -9.02939728E+000 + 1.75000000E+002 2.10000000E+002 1.54580546E+000 5.43573677E-001 -2.97910417E+000 -9.22837579E-001 -1.34890853E+001 -7.89885585E+000 -6.84020207E+000 + 1.80000000E+002 2.10000000E+002 1.85168074E+000 4.89101714E-001 -3.21215907E+000 -8.28709920E-001 -1.21342823E+001 -7.36271464E+000 -6.11341605E+000 + 0.00000000E+000 2.15000000E+002 2.34571902E+001 -1.43751279E+001 3.34311096E+001 -2.06565019E+001 1.10117867E+001 1.41088945E+001 1.58410635E+001 + 5.00000000E+000 2.15000000E+002 2.18079185E+001 -1.44046038E+001 3.12861303E+001 -2.13339343E+001 1.05661955E+001 1.37868594E+001 1.54787767E+001 + 1.00000000E+001 2.15000000E+002 1.74171904E+001 -1.40619585E+001 2.51918229E+001 -2.26417621E+001 9.22071276E+000 1.28181772E+001 1.43920520E+001 + 1.50000000E+001 2.15000000E+002 1.18608098E+001 -1.25782196E+001 1.63545591E+001 -2.28565488E+001 6.97661291E+000 1.11971780E+001 1.25909097E+001 + 2.00000000E+001 2.15000000E+002 7.16641971E+000 -9.91137500E+000 6.97889017E+000 -2.04628220E+001 3.97060358E+000 8.91867735E+000 1.01245201E+001 + 2.50000000E+001 2.15000000E+002 4.55858850E+000 -7.28095202E+000 -3.49868465E-001 -1.54335437E+001 9.01644174E-001 5.99303738E+000 7.16456525E+000 + 3.00000000E+001 2.15000000E+002 3.35051367E+000 -6.17370193E+000 -4.08318900E+000 -9.48006396E+000 -8.46468239E-001 2.49678482E+000 4.14952465E+000 + 3.50000000E+001 2.15000000E+002 1.57663013E+000 -6.46256492E+000 -4.72993373E+000 -4.71421100E+000 -1.31932439E+000 -1.28554223E+000 1.70789950E+000 + 4.00000000E+001 2.15000000E+002 -1.57048680E+000 -6.06555988E+000 -4.12565873E+000 -1.85787354E+000 -1.83928662E+000 -4.66674430E+000 -1.65673312E-002 + 4.50000000E+001 2.15000000E+002 -4.31449468E+000 -3.36670660E+000 -3.47626613E+000 -4.64763360E-002 -3.01459996E+000 -6.95547043E+000 -1.54227621E+000 + 5.00000000E+001 2.15000000E+002 -4.33899931E+000 3.92594807E-001 -2.51197170E+000 1.51379509E+000 -4.99530564E+000 -8.43272598E+000 -3.37215134E+000 + 5.50000000E+001 2.15000000E+002 -1.94923807E+000 2.43175109E+000 -7.78609629E-001 2.36243763E+000 -7.90499885E+000 -9.86346401E+000 -5.76445738E+000 + 6.00000000E+001 2.15000000E+002 2.82040098E-001 1.94331865E+000 9.86975893E-001 1.75637031E+000 -1.19170985E+001 -1.16943613E+001 -8.79400215E+000 + 6.50000000E+001 2.15000000E+002 8.81756673E-001 6.51272308E-001 1.52465374E+000 1.89821606E-001 -1.69807255E+001 -1.40482806E+001 -1.22612609E+001 + 7.00000000E+001 2.15000000E+002 6.45774955E-001 -4.59941087E-002 6.78392414E-001 -9.03083223E-001 -2.15549081E+001 -1.67207642E+001 -1.54870244E+001 + 7.50000000E+001 2.15000000E+002 4.16506044E-001 -4.39886524E-001 -4.25367528E-001 -7.50394449E-001 -2.21321133E+001 -1.90626062E+001 -1.73213398E+001 + 8.00000000E+001 2.15000000E+002 -1.14751172E-001 -7.88551305E-001 -7.19283311E-001 8.93432374E-002 -1.97508997E+001 -2.05740139E+001 -1.71326855E+001 + 8.50000000E+001 2.15000000E+002 -8.87534491E-001 -4.46300435E-001 -2.08290430E-001 5.89278896E-001 -1.78357687E+001 -2.18608008E+001 -1.63874772E+001 + 9.00000000E+001 2.15000000E+002 -8.57027001E-001 5.28729607E-001 3.25484625E-001 3.69305450E-001 -1.77179121E+001 -2.39344933E+001 -1.67873071E+001 + 9.50000000E+001 2.15000000E+002 1.52001216E-001 7.98864356E-001 3.11943419E-001 -9.36707551E-002 -1.95745964E+001 -2.75220529E+001 -1.89284501E+001 + 1.00000000E+002 2.15000000E+002 6.73618002E-001 -1.50883460E-001 -4.34976845E-002 -1.90945745E-001 -2.09976316E+001 -3.19405899E+001 -2.06614522E+001 + 1.05000000E+002 2.15000000E+002 -1.56433676E-001 -8.77160145E-001 -1.83377345E-001 7.02861827E-002 -1.87809506E+001 -3.19163036E+001 -1.85749316E+001 + 1.10000000E+002 2.15000000E+002 -1.02809464E+000 -2.09992885E-001 7.90141021E-003 2.23016506E-001 -1.73603356E+001 -3.08063187E+001 -1.71682277E+001 + 1.15000000E+002 2.15000000E+002 -5.30191768E-001 7.48136304E-001 1.62462760E-001 8.99892441E-002 -1.85315219E+001 -3.24012965E+001 -1.83569206E+001 + 1.20000000E+002 2.15000000E+002 4.91616520E-001 4.16742959E-001 8.75195559E-002 -5.37491730E-002 -2.15942446E+001 -3.75465397E+001 -2.14853272E+001 + 1.25000000E+002 2.15000000E+002 3.61376073E-001 -6.45765861E-001 -1.84894010E-002 -3.45631955E-002 -2.03938233E+001 -4.59132593E+001 -2.03816549E+001 + 1.30000000E+002 2.15000000E+002 -6.67986008E-001 -7.37535139E-001 -2.22728999E-002 7.13835419E-004 -1.78214383E+001 -5.08185130E+001 -1.78192608E+001 + 1.35000000E+002 2.15000000E+002 -9.37832773E-001 2.12686783E-001 -4.52339435E-002 -3.59112761E-002 -1.81181885E+001 -4.25465989E+001 -1.81025513E+001 + 1.40000000E+002 2.15000000E+002 -3.74734793E-002 6.80087696E-001 -1.32863613E-001 -2.73042355E-002 -2.11140429E+001 -3.51307393E+001 -2.09451381E+001 + 1.45000000E+002 2.15000000E+002 7.55618447E-001 -6.15223374E-002 -1.43153921E-001 3.64198308E-002 -2.01837607E+001 -3.43900691E+001 -2.00219389E+001 + 1.50000000E+002 2.15000000E+002 4.71149874E-001 -1.07883899E+000 -5.86235040E-002 -4.92339940E-002 -1.63612640E+001 -4.00990110E+001 -1.63429369E+001 + 1.55000000E+002 2.15000000E+002 -3.91667297E-001 -1.25049054E+000 -1.24662894E-001 -3.97333459E-001 -1.54304756E+001 -2.53876475E+001 -1.50126378E+001 + 1.60000000E+002 2.15000000E+002 -7.56370231E-001 -5.54993285E-001 -5.74657298E-001 -8.31325503E-001 -1.83331203E+001 -1.76868329E+001 -1.49876657E+001 + 1.65000000E+002 2.15000000E+002 -2.06328053E-001 2.55801330E-001 -1.36052381E+000 -1.07613565E+000 -2.74440448E+001 -1.29941509E+001 -1.28410016E+001 + 1.70000000E+002 2.15000000E+002 8.52766585E-001 6.33164549E-001 -2.20402420E+000 -1.04131958E+000 -1.72549994E+001 -1.00391300E+001 -9.28420392E+000 + 1.75000000E+002 2.15000000E+002 1.77364419E+000 6.22145561E-001 -2.81825419E+000 -8.71930191E-001 -1.22972196E+001 -8.38190752E+000 -6.90221959E+000 + 1.80000000E+002 2.15000000E+002 2.12459265E+000 5.59467363E-001 -3.03855122E+000 -7.82928405E-001 -1.09418261E+001 -7.84600994E+000 -6.11341605E+000 + 0.00000000E+000 2.20000000E+002 2.62816417E+001 -1.61207590E+001 3.12594653E+001 -1.93250227E+001 1.20014874E+001 1.35267948E+001 1.58410635E+001 + 5.00000000E+000 2.20000000E+002 2.44338214E+001 -1.61523577E+001 2.92535439E+001 -1.99587679E+001 1.15559118E+001 1.32048917E+001 1.54684991E+001 + 1.00000000E+001 2.20000000E+002 1.95138044E+001 -1.57661145E+001 2.35536221E+001 -2.11815814E+001 1.02104770E+001 1.22363747E+001 1.43508001E+001 + 1.50000000E+001 2.20000000E+002 1.32877963E+001 -1.41008860E+001 1.52879663E+001 -2.13814287E+001 7.96644166E+000 1.06155658E+001 1.25002379E+001 + 2.00000000E+001 2.20000000E+002 8.02811328E+000 -1.11102467E+001 6.51874353E+000 -1.91406992E+001 4.96048772E+000 8.33724331E+000 9.97940686E+000 + 2.50000000E+001 2.20000000E+002 5.10673167E+000 -8.16128320E+000 -3.35340553E-001 -1.44341323E+001 1.89159935E+000 5.41165012E+000 7.00920460E+000 + 3.00000000E+001 2.20000000E+002 3.75345507E+000 -6.92004313E+000 -3.82520185E+000 -8.86304096E+000 1.43687931E-001 1.91498407E+000 4.12932112E+000 + 3.50000000E+001 2.20000000E+002 1.76526616E+000 -7.24352939E+000 -4.42675463E+000 -4.40394428E+000 -3.28940055E-001 -1.86887642E+000 1.97929162E+000 + 4.00000000E+001 2.20000000E+002 -1.76237388E+000 -6.79778845E+000 -3.85803310E+000 -1.73304850E+000 -8.48638276E-001 -5.25291911E+000 4.95429125E-001 + 4.50000000E+001 2.20000000E+002 -4.83788745E+000 -3.77154056E+000 -3.24869732E+000 -4.12473685E-002 -2.02320253E+000 -7.54362194E+000 -9.49351511E-001 + 5.00000000E+001 2.20000000E+002 -4.86445232E+000 4.43423181E-001 -2.34706480E+000 1.41577089E+000 -4.00188986E+000 -9.02030350E+000 -2.81299620E+000 + 5.50000000E+001 2.20000000E+002 -2.18408389E+000 2.72969691E+000 -7.27140051E-001 2.20880917E+000 -6.90727335E+000 -1.04484850E+001 -5.31622078E+000 + 6.00000000E+001 2.20000000E+002 3.18822436E-001 2.18151933E+000 9.23657836E-001 1.64257907E+000 -1.09115417E+001 -1.22747437E+001 -8.52957416E+000 + 6.50000000E+001 2.20000000E+002 9.91911207E-001 7.31476352E-001 1.42720011E+000 1.77867235E-001 -1.59630851E+001 -1.46218743E+001 -1.22306092E+001 + 7.00000000E+001 2.20000000E+002 7.26809582E-001 -5.16703418E-002 6.36609250E-001 -8.44889862E-001 -2.05281998E+001 -1.72897784E+001 -1.56035828E+001 + 7.50000000E+001 2.20000000E+002 4.68811838E-001 -4.93585437E-001 -3.95595022E-001 -7.03330239E-001 -2.11188424E+001 -1.96415708E+001 -1.73073946E+001 + 8.00000000E+001 2.20000000E+002 -1.26927925E-001 -8.84273361E-001 -6.71329203E-001 8.10527697E-002 -1.87582056E+001 -2.11769466E+001 -1.67910230E+001 + 8.50000000E+001 2.20000000E+002 -9.93037066E-001 -5.01176549E-001 -1.94676451E-001 5.48458368E-001 -1.68537549E+001 -2.24802845E+001 -1.58029282E+001 + 9.00000000E+001 2.20000000E+002 -9.59650153E-001 5.90836198E-001 3.03564777E-001 3.43350148E-001 -1.67404156E+001 -2.45554683E+001 -1.60757234E+001 + 9.50000000E+001 2.20000000E+002 1.69795477E-001 8.93869571E-001 2.90557010E-001 -8.87353104E-002 -1.85990780E+001 -2.81266155E+001 -1.81400120E+001 + 1.00000000E+002 2.20000000E+002 7.53920630E-001 -1.69115119E-001 -4.17418047E-002 -1.78940780E-001 -2.00187910E+001 -3.24942021E+001 -1.97798764E+001 + 1.05000000E+002 2.20000000E+002 -1.75246499E-001 -9.82186779E-001 -1.72200962E-001 6.59703269E-002 -1.77985210E+001 -3.24630466E+001 -1.76526339E+001 + 1.10000000E+002 2.20000000E+002 -1.15107795E+000 -2.35335525E-001 7.35573498E-003 2.09207671E-001 -1.63785731E+001 -3.13615893E+001 -1.62428422E+001 + 1.15000000E+002 2.20000000E+002 -5.93781878E-001 8.37135851E-001 1.52787460E-001 8.46231635E-002 -1.75526837E+001 -3.29347842E+001 -1.74287012E+001 + 1.20000000E+002 2.20000000E+002 5.49667676E-001 4.66093200E-001 8.31465717E-002 -5.06672386E-002 -2.06236763E+001 -3.80101847E+001 -2.05451166E+001 + 1.25000000E+002 2.20000000E+002 4.03353754E-001 -7.22764637E-001 -1.64446784E-002 -3.35786871E-002 -1.94210753E+001 -4.63235730E+001 -1.94122222E+001 + 1.30000000E+002 2.20000000E+002 -7.48644300E-001 -8.24417996E-001 -2.08233822E-002 -6.93478025E-004 -1.68438232E+001 -5.14026676E+001 -1.68423033E+001 + 1.35000000E+002 2.20000000E+002 -1.04932400E+000 2.39697024E-001 -4.27020668E-002 -3.45189636E-002 -1.71394134E+001 -4.29855973E+001 -1.71281258E+001 + 1.40000000E+002 2.20000000E+002 -4.01165416E-002 7.61858153E-001 -1.24592863E-001 -2.62608043E-002 -2.01289997E+001 -3.56798701E+001 -2.00096785E+001 + 1.45000000E+002 2.20000000E+002 8.47663281E-001 -7.00613149E-002 -1.34307438E-001 3.31437501E-002 -1.91844720E+001 -3.49597693E+001 -1.90710826E+001 + 1.50000000E+002 2.20000000E+002 5.27999047E-001 -1.20981996E+000 -5.57763615E-002 -4.70481551E-002 -1.53669104E+001 -4.05156931E+001 -1.53536595E+001 + 1.55000000E+002 2.20000000E+002 -4.38998013E-001 -1.40159483E+000 -1.18111677E-001 -3.72188100E-001 -1.44396284E+001 -2.59465391E+001 -1.41430233E+001 + 1.60000000E+002 2.20000000E+002 -8.47332023E-001 -6.22040754E-001 -5.39099875E-001 -7.77333605E-001 -1.73452527E+001 -1.82608774E+001 -1.47686794E+001 + 1.65000000E+002 2.20000000E+002 -2.30669578E-001 2.86246879E-001 -1.27370212E+000 -1.00566035E+000 -2.64704837E+001 -1.35728937E+001 -1.33555667E+001 + 1.70000000E+002 2.20000000E+002 9.56173016E-001 7.08668421E-001 -2.06198833E+000 -9.72812972E-001 -1.62664094E+001 -1.06200098E+001 -9.57344569E+000 + 1.75000000E+002 2.20000000E+002 1.98802072E+000 6.95964762E-001 -2.63596375E+000 -8.14373329E-001 -1.13080108E+001 -8.96379945E+000 -6.96932058E+000 + 1.80000000E+002 2.20000000E+002 2.38133512E+000 6.25575127E-001 -2.84181817E+000 -7.31188332E-001 -9.95227516E+000 -8.42818954E+000 -6.11341605E+000 + 0.00000000E+000 2.25000000E+002 2.89060740E+001 -1.77437013E+001 2.88499176E+001 -1.78464684E+001 1.28299819E+001 1.28315451E+001 1.58410635E+001 + 5.00000000E+000 2.25000000E+002 2.68737684E+001 -1.77773628E+001 2.69982469E+001 -1.84317166E+001 1.23844457E+001 1.25097809E+001 1.54578654E+001 + 1.00000000E+001 2.25000000E+002 2.14617978E+001 -1.73507024E+001 2.17360558E+001 -1.95601626E+001 1.10390796E+001 1.15414390E+001 1.43078189E+001 + 1.50000000E+001 2.25000000E+002 1.46132940E+001 -1.55168123E+001 1.41049391E+001 -1.97434712E+001 8.79510989E+000 9.92083144E+000 1.24046433E+001 + 2.00000000E+001 2.25000000E+002 8.82805127E+000 -1.22250445E+001 6.00898908E+000 -1.76727376E+001 5.78913409E+000 7.64269333E+000 9.82435900E+000 + 2.50000000E+001 2.25000000E+002 5.61525441E+000 -8.97963992E+000 -3.18142430E-001 -1.33247218E+001 2.72006721E+000 4.71713112E+000 6.84269325E+000 + 3.00000000E+001 2.25000000E+002 4.12733839E+000 -7.61354764E+000 -3.53791065E+000 -8.17851640E+000 9.72165283E-001 1.21996836E+000 4.10813396E+000 + 3.50000000E+001 2.25000000E+002 1.94038215E+000 -7.96928511E+000 -4.08970682E+000 -4.06023236E+000 5.00003482E-001 -2.56566279E+000 2.24253895E+000 + 4.00000000E+001 2.25000000E+002 -1.94090331E+000 -7.47864081E+000 -3.56094853E+000 -1.59517274E+000 -1.89692636E-002 -5.95295380E+000 9.67592690E-001 + 4.50000000E+001 2.25000000E+002 -5.32505387E+000 -4.14821418E+000 -2.99638495E+000 -3.58346919E-002 -1.19230003E+000 -8.24593373E+000 -4.11078032E-001 + 5.00000000E+001 2.25000000E+002 -5.35399626E+000 4.90888124E-001 -2.16429948E+000 1.30687796E+000 -3.16858988E+000 -9.72205626E+000 -2.30096056E+000 + 5.50000000E+001 2.25000000E+002 -2.40315582E+000 3.00775102E+000 -6.70129986E-001 2.03827901E+000 -6.06951974E+000 -1.11474788E+001 -4.89481184E+000 + 6.00000000E+001 2.25000000E+002 3.53250912E-001 2.40424236E+000 8.53300560E-001 1.51616145E+000 -1.00661848E+001 -1.29685730E+001 -8.26900286E+000 + 6.50000000E+001 2.25000000E+002 1.09520699E+000 8.06628213E-001 1.31880775E+000 1.64415641E-001 -1.51064906E+001 -1.53078958E+001 -1.21957258E+001 + 7.00000000E+001 2.25000000E+002 8.02798736E-001 -5.70966496E-002 5.89817486E-001 -7.80367815E-001 -1.96644607E+001 -1.79700294E+001 -1.57248271E+001 + 7.50000000E+001 2.25000000E+002 5.17561293E-001 -5.43694487E-001 -3.63030291E-001 -6.50902989E-001 -2.02697729E+001 -2.03319346E+001 -1.72904426E+001 + 8.00000000E+001 2.25000000E+002 -1.38162024E-001 -9.73122882E-001 -6.18444930E-001 7.23134687E-002 -1.79284800E+001 -2.18935112E+001 -1.64630894E+001 + 8.50000000E+001 2.25000000E+002 -1.09071844E+000 -5.52112696E-001 -1.79576269E-001 5.03736925E-001 -1.60335619E+001 -2.32148690E+001 -1.52731026E+001 + 9.00000000E+001 2.25000000E+002 -1.05469580E+000 6.48224580E-001 2.79583128E-001 3.14955660E-001 -1.59242802E+001 -2.52898573E+001 -1.54486929E+001 + 9.50000000E+001 2.25000000E+002 1.86204953E-001 9.81728714E-001 2.67271722E-001 -8.32494910E-002 -1.77851848E+001 -2.88373049E+001 -1.74570428E+001 + 1.00000000E+002 2.25000000E+002 8.28170040E-001 -1.86100855E-001 -3.95888439E-002 -1.65926007E-001 -1.92021723E+001 -3.31397687E+001 -1.90302236E+001 + 1.05000000E+002 2.25000000E+002 -1.92824648E-001 -1.07952848E+000 -1.59936345E-001 6.08778460E-002 -1.69774283E+001 -3.31119440E+001 -1.68729328E+001 + 1.10000000E+002 2.25000000E+002 -1.26516000E+000 -2.58859752E-001 6.45777425E-003 1.93781169E-001 -1.55574886E+001 -3.20274551E+001 -1.54606747E+001 + 1.15000000E+002 2.25000000E+002 -6.52905889E-001 9.19524050E-001 1.41775286E-001 7.87159668E-002 -1.67342827E+001 -3.35795382E+001 -1.66454020E+001 + 1.20000000E+002 2.25000000E+002 6.03122828E-001 5.11827964E-001 7.80439460E-002 -4.71264082E-002 -1.98146718E+001 -3.85815792E+001 -1.97573626E+001 + 1.25000000E+002 2.25000000E+002 4.41900611E-001 -7.93878087E-001 -1.44039544E-002 -3.22729858E-002 -1.86112385E+001 -4.68128147E+001 -1.86046726E+001 + 1.30000000E+002 2.25000000E+002 -8.23521016E-001 -9.04498310E-001 -1.93534348E-002 -1.94797971E-003 -1.60283084E+001 -5.19995689E+001 -1.60272104E+001 + 1.35000000E+002 2.25000000E+002 -1.15244646E+000 2.65113638E-001 -3.99009694E-002 -3.26451164E-002 -1.63221367E+001 -4.35332987E+001 -1.63138904E+001 + 1.40000000E+002 2.25000000E+002 -4.21720528E-002 8.37746895E-001 -1.15325132E-001 -2.48089786E-002 -1.93052589E+001 -3.63435589E+001 -1.92202049E+001 + 1.45000000E+002 2.25000000E+002 9.33310642E-001 -7.81671296E-002 -1.24331400E-001 2.97653266E-002 -1.83476254E+001 -3.56448513E+001 -1.82674490E+001 + 1.50000000E+002 2.25000000E+002 5.80832907E-001 -1.33153472E+000 -5.23831585E-002 -4.44109949E-002 -1.45349589E+001 -4.10424635E+001 -1.45252638E+001 + 1.55000000E+002 2.25000000E+002 -4.82869161E-001 -1.54189105E+000 -1.10547554E-001 -3.44159097E-001 -1.36111192E+001 -2.66168728E+001 -1.33990096E+001 + 1.60000000E+002 2.25000000E+002 -9.31627413E-001 -6.84266967E-001 -4.99347913E-001 -7.17404934E-001 -1.65199518E+001 -1.89474701E+001 -1.45559643E+001 + 1.65000000E+002 2.25000000E+002 -2.53050375E-001 3.14513584E-001 -1.17712938E+000 -9.27525796E-001 -2.56578757E+001 -1.42645300E+001 -1.39603355E+001 + 1.70000000E+002 2.25000000E+002 1.05242156E+000 7.78744224E-001 -1.90423707E+000 -8.96897361E-001 -1.54383134E+001 -1.13139368E+001 -9.89358679E+000 + 1.75000000E+002 2.25000000E+002 2.18730285E+000 7.64468379E-001 -2.43361182E+000 -7.50610114E-001 -1.04798111E+001 -9.65881655E+000 -7.03964246E+000 + 1.80000000E+002 2.25000000E+002 2.61995420E+000 6.86921887E-001 -2.62345716E+000 -6.73883475E-001 -9.12390093E+000 -9.12353110E+000 -6.11341605E+000 + 0.00000000E+000 2.30000000E+002 3.13105137E+001 -1.92316034E+001 2.62208046E+001 -1.62320918E+001 1.35254832E+001 1.20033502E+001 1.58410635E+001 + 5.00000000E+000 2.30000000E+002 2.91091810E+001 -1.92672483E+001 2.45374089E+001 -1.67643749E+001 1.30800024E+001 1.16817330E+001 1.54472002E+001 + 1.00000000E+001 2.30000000E+002 2.32463384E+001 -1.88036436E+001 1.97529923E+001 -1.77897722E+001 1.17347189E+001 1.07135778E+001 1.42643916E+001 + 1.50000000E+001 2.30000000E+002 1.58272216E+001 -1.68151916E+001 1.28145833E+001 -1.79550341E+001 9.49081478E+000 9.09318546E+000 1.23068492E+001 + 2.00000000E+001 2.30000000E+002 9.56016561E+000 -1.32472593E+001 5.45369998E+000 -1.60700233E+001 6.48476145E+000 6.81524437E+000 9.66344568E+000 + 2.50000000E+001 2.30000000E+002 6.08029992E+000 -9.72978778E+000 -2.98150885E-001 -1.21137728E+001 3.41533273E+000 3.88971154E+000 6.66929591E+000 + 3.00000000E+001 2.30000000E+002 4.46930202E+000 -8.24893407E+000 -3.22328821E+000 -7.43186181E+000 1.66728563E+000 3.91998015E-001 4.08658492E+000 + 3.50000000E+001 2.30000000E+002 2.10060819E+000 -8.63427207E+000 -3.72129517E+000 -3.68593598E+000 1.19574091E+000 -3.39559002E+000 2.49080198E+000 + 4.00000000E+001 2.30000000E+002 -2.10472691E+000 -8.10285413E+000 -3.23677894E+000 -1.44547925E+000 6.77813217E-001 -6.78648524E+000 1.39404079E+000 + 4.50000000E+001 2.30000000E+002 -5.77223004E+000 -4.49377878E+000 -2.72141945E+000 -3.02955604E-002 -4.93939376E-001 -9.08205913E+000 6.90726368E-002 + 5.00000000E+001 2.30000000E+002 -5.80380202E+000 5.34648497E-001 -1.96513683E+000 1.18805661E+000 -2.46755574E+000 -1.05577305E+001 -1.84086194E+000 + 5.50000000E+001 2.30000000E+002 -2.60470034E+000 3.26373965E+000 -6.07934622E-001 1.85222994E+000 -5.36392371E+000 -1.19802822E+001 -4.50761608E+000 + 6.00000000E+001 2.30000000E+002 3.85088814E-001 2.60969643E+000 7.76561642E-001 1.37801773E+000 -9.35315792E+000 -1.37956672E+001 -8.01923310E+000 + 6.50000000E+001 2.30000000E+002 1.19082198E+000 8.76065424E-001 1.20030890E+000 1.49387220E-001 -1.43829043E+001 -1.61258915E+001 -1.21572378E+001 + 7.00000000E+001 2.30000000E+002 8.73081742E-001 -6.22884672E-002 5.38199516E-001 -7.10158047E-001 -1.89353600E+001 -1.87803940E+001 -1.58468859E+001 + 7.50000000E+001 2.30000000E+002 5.62281159E-001 -5.89830028E-001 -3.28180978E-001 -5.93480933E-001 -1.95564366E+001 -2.11516616E+001 -1.72709137E+001 + 8.00000000E+001 2.30000000E+002 -1.48439144E-001 -1.05436376E+000 -5.61190110E-001 6.34054673E-002 -1.72334599E+001 -2.27412184E+001 -1.61568322E+001 + 8.50000000E+001 2.30000000E+002 -1.17984915E+000 -5.98657139E-001 -1.63055231E-001 4.55683117E-001 -1.53470486E+001 -2.40820056E+001 -1.48016272E+001 + 9.00000000E+001 2.30000000E+002 -1.14144076E+000 7.00487076E-001 2.53878651E-001 2.84410249E-001 -1.52413257E+001 -2.61545491E+001 -1.49029244E+001 + 9.50000000E+001 2.30000000E+002 2.01080597E-001 1.06180511E+000 2.42344509E-001 -7.73186667E-002 -1.71045861E+001 -2.96688576E+001 -1.68703821E+001 + 1.00000000E+002 2.30000000E+002 8.95795953E-001 -2.01641843E-001 -3.70874809E-002 -1.52043524E-001 -1.85196655E+001 -3.38881378E+001 -1.83952989E+001 + 1.05000000E+002 2.30000000E+002 -2.08981539E-001 -1.16838777E+000 -1.46701869E-001 5.50802601E-002 -1.62900035E+001 -3.38770592E+001 -1.62149586E+001 + 1.10000000E+002 2.30000000E+002 -1.36941217E+000 -2.80389874E-001 5.24937299E-003 1.76866796E-001 -1.48694655E+001 -3.28217568E+001 -1.48004259E+001 + 1.15000000E+002 2.30000000E+002 -7.07095417E-001 9.94653805E-001 1.29514861E-001 7.22544235E-002 -1.60486264E+001 -3.43553066E+001 -1.59849573E+001 + 1.20000000E+002 2.30000000E+002 6.51589111E-001 5.53606945E-001 7.21650919E-002 -4.31948736E-002 -1.91390420E+001 -3.92821035E+001 -1.90972219E+001 + 1.25000000E+002 2.30000000E+002 4.76772683E-001 -8.58567139E-001 -1.24860452E-002 -3.06033880E-002 -1.79357111E+001 -4.73944170E+001 -1.79307944E+001 + 1.30000000E+002 2.30000000E+002 -8.91999645E-001 -9.77221491E-001 -1.79104211E-002 -2.93617747E-003 -1.53465752E+001 -5.26012140E+001 -1.53457581E+001 + 1.35000000E+002 2.30000000E+002 -1.24642163E+000 2.88665229E-001 -3.68327018E-002 -3.02231576E-002 -1.56383001E+001 -4.42180816E+001 -1.56322814E+001 + 1.40000000E+002 2.30000000E+002 -4.36720842E-002 9.07126778E-001 -1.05108633E-001 -2.29072082E-002 -1.86150929E+001 -3.71442107E+001 -1.85545806E+001 + 1.45000000E+002 2.30000000E+002 1.01186060E+000 -8.57929791E-002 -1.13283236E-001 2.63690913E-002 -1.76449840E+001 -3.64660361E+001 -1.75883802E+001 + 1.50000000E+002 2.30000000E+002 6.29215624E-001 -1.44306106E+000 -4.84277007E-002 -4.12730001E-002 -1.38369025E+001 -4.17053481E+001 -1.38298135E+001 + 1.55000000E+002 2.30000000E+002 -5.22975538E-001 -1.67031729E+000 -1.01955428E-001 -3.13406279E-001 -1.29163802E+001 -2.74194728E+001 -1.27650634E+001 + 1.60000000E+002 2.30000000E+002 -1.00864368E+000 -7.41202122E-001 -4.55624576E-001 -6.51975753E-001 -1.58285303E+001 -1.97667611E+001 -1.43554474E+001 + 1.65000000E+002 2.30000000E+002 -2.73323492E-001 3.40387460E-001 -1.07148147E+000 -8.42331834E-001 -2.49779764E+001 -1.50889956E+001 -1.46648580E+001 + 1.70000000E+002 2.30000000E+002 1.14076731E+000 8.42860940E-001 -1.73194126E+000 -8.14161315E-001 -1.47427353E+001 -1.21407553E+001 -1.02394271E+001 + 1.75000000E+002 2.30000000E+002 2.36997114E+000 8.27135122E-001 -2.21273061E+000 -6.81130825E-001 -9.78447029E+000 -1.04867651E+001 -7.11113724E+000 + 1.80000000E+002 2.30000000E+002 2.83863384E+000 7.43040757E-001 -2.38513006E+000 -6.11449958E-001 -8.42849987E+000 -9.95183441E+000 -6.11341605E+000 + 0.00000000E+000 2.35000000E+002 3.34766614E+001 -2.05731414E+001 2.33921355E+001 -1.44941791E+001 1.41078000E+001 1.10140191E+001 1.58410635E+001 + 5.00000000E+000 2.35000000E+002 3.11230387E+001 -2.06106662E+001 2.18897647E+001 -1.49694074E+001 1.36623854E+001 1.06925593E+001 1.54368312E+001 + 1.00000000E+001 2.35000000E+002 2.48538465E+001 -2.01138453E+001 1.76195573E+001 -1.58838184E+001 1.23171936E+001 9.72460550E+000 1.42218540E+001 + 1.50000000E+001 2.35000000E+002 1.69203706E+001 -1.79860900E+001 1.14268127E+001 -1.60296330E+001 1.00733556E+001 8.10444750E+000 1.22098364E+001 + 2.00000000E+001 2.35000000E+002 1.02189434E+001 -1.41690736E+001 4.85727768E+000 -1.43446785E+001 7.06718819E+000 5.82672565E+000 9.50139585E+000 + 2.50000000E+001 2.35000000E+002 6.49838192E+000 -1.04060206E+001 -2.75288043E-001 -1.08105180E+001 3.99726869E+000 2.90123840E+000 6.49403782E+000 + 3.00000000E+001 2.35000000E+002 4.77674215E+000 -8.82138797E+000 -2.88353478E+000 -6.62890544E+000 2.24894690E+000 -5.97048936E-001 4.06532108E+000 + 3.50000000E+001 2.35000000E+002 2.24467068E+000 -9.23339916E+000 -3.32426575E+000 -3.28412193E+000 1.77809187E+000 -4.38673643E+000 2.71872697E+000 + 4.00000000E+001 2.35000000E+002 -2.25262144E+000 -8.66555658E+000 -2.88808416E+000 -1.28526844E+000 1.26140459E+000 -7.78157199E+000 1.77158962E+000 + 4.50000000E+001 2.35000000E+002 -6.17591206E+000 -4.80546080E+000 -2.42602884E+000 -2.46873017E-002 9.14436551E-002 -1.00801381E+001 4.90049283E-001 + 5.00000000E+001 2.35000000E+002 -6.21023889E+000 5.74402278E-001 -1.75113535E+000 1.06029476E+000 -1.87934536E+000 -1.15556413E+001 -1.43497336E+000 + 5.50000000E+001 2.35000000E+002 -2.78700745E+000 3.49557634E+000 -5.40952717E-001 1.65211989E+000 -4.77114723E+000 -1.29753756E+001 -4.15960609E+000 + 6.00000000E+001 2.35000000E+002 4.14117116E-001 2.79610186E+000 6.94105130E-001 1.22911281E+000 -8.75321390E+000 -1.47845232E+001 -7.78625353E+000 + 6.50000000E+001 2.35000000E+002 1.27791085E+000 9.39108370E-001 1.07255951E+000 1.32741040E-001 -1.37731605E+001 -1.71040634E+001 -1.21165078E+001 + 7.00000000E+001 2.35000000E+002 9.36975245E-001 -6.72319324E-002 4.81965163E-001 -6.34868034E-001 -1.83216416E+001 -1.97483914E+001 -1.59663884E+001 + 7.50000000E+001 2.35000000E+002 6.02546642E-001 -6.31589184E-001 -2.91497232E-001 -5.31403739E-001 -1.89591433E+001 -2.21275816E+001 -1.72503063E+001 + 8.00000000E+001 2.35000000E+002 -1.57693671E-001 -1.12734028E+000 -5.00038422E-001 5.45809770E-002 -1.66532499E+001 -2.37470013E+001 -1.58786071E+001 + 8.50000000E+001 2.35000000E+002 -1.25976671E+000 -6.40474573E-001 -1.45144365E-001 4.04759748E-001 -1.47742483E+001 -2.51092003E+001 -1.43897263E+001 + 9.00000000E+001 2.35000000E+002 -1.21930754E+000 7.47214740E-001 2.26707979E-001 2.51910167E-001 -1.46714873E+001 -2.71769988E+001 -1.44341786E+001 + 9.50000000E+001 2.35000000E+002 2.14217157E-001 1.13357347E+000 2.15908682E-001 -7.10140748E-002 -1.65371252E+001 -3.06470001E+001 -1.63717382E+001 + 1.00000000E+002 2.35000000E+002 9.56297627E-001 -2.15482439E-001 -3.43067572E-002 -1.37310341E-001 -1.79515541E+001 -3.47614626E+001 -1.78619545E+001 + 1.05000000E+002 2.35000000E+002 -2.23487253E-001 -1.24803081E+000 -1.32518423E-001 4.87144711E-002 -1.57169230E+001 -3.47825119E+001 -1.56633992E+001 + 1.10000000E+002 2.35000000E+002 -1.46297059E+000 -2.99802799E-001 3.85602293E-003 1.58542490E-001 -1.42951377E+001 -3.37730252E+001 -1.42464344E+001 + 1.15000000E+002 2.35000000E+002 -7.55940747E-001 1.06192420E+000 1.16081253E-001 6.51541063E-002 -1.54762424E+001 -3.52938907E+001 -1.54311852E+001 + 1.20000000E+002 2.35000000E+002 6.94712231E-001 5.91132655E-001 6.54142554E-002 -3.89403398E-002 -1.85769454E+001 -4.01476917E+001 -1.85468014E+001 + 1.25000000E+002 2.35000000E+002 5.07770796E-001 -9.16350466E-001 -1.08082804E-002 -2.84855839E-002 -1.73743455E+001 -4.81018695E+001 -1.73706740E+001 + 1.30000000E+002 2.35000000E+002 -9.53517796E-001 -1.04211518E+000 -1.64955210E-002 -3.53709976E-003 -1.47786421E+001 -5.32359552E+001 -1.47780226E+001 + 1.35000000E+002 2.35000000E+002 -1.33056819E+000 3.10086040E-001 -3.34683086E-002 -2.72265988E-002 -1.50680757E+001 -4.50800740E+001 -1.50637468E+001 + 1.40000000E+002 2.35000000E+002 -4.46722835E-002 9.69435065E-001 -9.40015151E-002 -2.05613927E-002 -1.80389203E+001 -3.81128400E+001 -1.79964323E+001 + 1.45000000E+002 2.35000000E+002 1.08266744E+000 -9.28809644E-002 -1.01250541E-001 2.30125658E-002 -1.70567595E+001 -3.74518157E+001 -1.70172862E+001 + 1.50000000E+002 2.35000000E+002 6.72750150E-001 -1.54355422E+000 -4.39209272E-002 -3.75998353E-002 -1.32527429E+001 -4.25374089E+001 -1.32476253E+001 + 1.55000000E+002 2.35000000E+002 -5.59044760E-001 -1.78591001E+000 -9.23462608E-002 -2.80113982E-001 -1.23353386E+001 -2.83837301E+001 -1.22287757E+001 + 1.60000000E+002 2.35000000E+002 -1.07783562E+000 -7.92421953E-001 -4.08197110E-001 -5.81524508E-001 -1.52507964E+001 -2.07473511E+001 -1.41717062E+001 + 1.65000000E+002 2.35000000E+002 -2.91369895E-001 3.63672911E-001 -9.57512638E-001 -7.50730634E-001 -2.44108206E+001 -1.60746372E+001 -1.54802011E+001 + 1.70000000E+002 2.35000000E+002 1.22051881E+000 9.00535029E-001 -1.54638706E+000 -7.25243942E-001 -1.41600401E+001 -1.31287084E+001 -1.06035318E+001 + 1.75000000E+002 2.35000000E+002 2.53463077E+000 8.83489187E-001 -1.97499449E+000 -6.06468893E-001 -9.20222364E+000 -1.14758480E+001 -7.18161819E+000 + 1.80000000E+002 2.35000000E+002 3.03570976E+000 7.93504638E-001 -2.12865068E+000 -5.44362937E-001 -7.84626890E+000 -1.09412979E+001 -6.11341605E+000 + 0.00000000E+000 2.40000000E+002 3.53880315E+001 -2.17581053E+001 2.03854380E+001 -1.26459569E+001 1.45912163E+001 9.82184299E+000 1.58410635E+001 + 5.00000000E+000 2.40000000E+002 3.29000088E+001 -2.17973780E+001 1.90754713E+001 -1.30604529E+001 1.41458747E+001 9.50055600E+000 1.54270793E+001 + 1.00000000E+001 2.40000000E+002 2.62720977E+001 -2.12712881E+001 1.53520174E+001 -1.38567521E+001 1.28007804E+001 8.53282478E+000 1.41815539E+001 + 1.50000000E+001 2.40000000E+002 1.78844718E+001 -1.90205251E+001 9.95226754E+000 -1.39818436E+001 1.05570100E+001 6.91292966E+000 1.21167667E+001 + 2.00000000E+001 2.40000000E+002 1.07994648E+001 -1.49834218E+001 4.22440634E+000 -1.25097726E+001 7.55070960E+000 4.63546392E+000 9.34353867E+000 + 2.50000000E+001 2.40000000E+002 6.86640898E+000 -1.10032015E+001 -2.49536747E-001 -9.42488863E+000 4.48021806E+000 1.71006088E+000 6.32266259E+000 + 3.00000000E+001 2.40000000E+002 5.04733561E+000 -9.32659435E+000 -2.52107071E+000 -5.77587531E+000 2.73151084E+000 -1.78879366E+000 4.04499724E+000 + 3.50000000E+001 2.40000000E+002 2.37141102E+000 -9.76208164E+000 -2.90158087E+000 -2.85802538E+000 2.26134410E+000 -5.58070271E+000 2.92221573E+000 + 4.00000000E+001 2.40000000E+002 -2.38348620E+000 -9.16231028E+000 -2.51757467E+000 -1.11589591E+000 1.74597543E+000 -8.97986395E+000 2.09870708E+000 + 4.50000000E+001 2.40000000E+002 -6.53287419E+000 -5.08069724E+000 -2.11254945E+000 -1.90848477E-002 5.77887038E-001 -1.12820149E+001 8.52053104E-001 + 5.00000000E+001 2.40000000E+002 -6.56990342E+000 6.09868350E-001 -1.52395008E+000 9.24591197E-001 -1.39006461E+000 -1.27579347E+001 -1.08414213E+000 + 5.50000000E+001 2.40000000E+002 -2.94844113E+000 3.70125944E+000 -4.69664061E-001 1.43945785E+000 -4.27745662E+000 -1.41751801E+001 -3.85413173E+000 + 6.00000000E+001 2.40000000E+002 4.40105119E-001 2.96170438E+000 6.06550861E-001 1.07049911E+000 -8.25281738E+000 -1.59776146E+001 -7.57520181E+000 + 6.50000000E+001 2.40000000E+002 1.35558963E+000 9.95094722E-001 9.36428727E-001 1.14541598E-001 -1.32639636E+001 -1.82845165E+001 -1.20755822E+001 + 7.00000000E+001 2.40000000E+002 9.93792749E-001 -7.18467842E-002 4.21410629E-001 -5.55020299E-001 -1.78099506E+001 -2.09154121E+001 -1.60805274E+001 + 7.50000000E+001 2.40000000E+002 6.38023304E-001 -6.68549320E-001 -2.53290761E-001 -4.65009608E-001 -1.84637659E+001 -2.33008795E+001 -1.72307603E+001 + 8.00000000E+001 2.40000000E+002 -1.65797061E-001 -1.19151274E+000 -4.35363535E-001 4.59781345E-002 -1.61732477E+001 -2.49532965E+001 -1.56331238E+001 + 8.50000000E+001 2.40000000E+002 -1.32990740E+000 -6.77357392E-001 -1.25910239E-001 3.51277427E-001 -1.43003947E+001 -2.63405793E+001 -1.40370456E+001 + 9.00000000E+001 2.40000000E+002 -1.28787379E+000 7.88036190E-001 1.98183139E-001 2.17605375E-001 -1.41998825E+001 -2.84018912E+001 -1.40379033E+001 + 9.50000000E+001 2.40000000E+002 2.25404851E-001 1.19663907E+000 1.87997982E-001 -6.43063348E-002 -1.60678206E+001 -3.18148955E+001 -1.59537015E+001 + 1.00000000E+002 2.40000000E+002 1.00928621E+000 -2.27364989E-001 -3.12710267E-002 -1.21623738E-001 -1.74832347E+001 -3.58001320E+001 -1.74197140E+001 + 1.05000000E+002 2.40000000E+002 -2.36106392E-001 -1.31785255E+000 -1.17298143E-001 4.19248048E-002 -1.52439600E+001 -3.58705571E+001 -1.52065273E+001 + 1.10000000E+002 2.40000000E+002 -1.54510648E+000 -3.17020307E-001 2.44101159E-003 1.38811612E-001 -1.38202547E+001 -3.49286483E+001 -1.37867375E+001 + 1.15000000E+002 2.40000000E+002 -7.99107303E-001 1.12083516E+000 1.01507917E-001 5.72924774E-002 -1.50027725E+001 -3.64474997E+001 -1.49717441E+001 + 1.20000000E+002 2.40000000E+002 7.32209491E-001 6.24173432E-001 5.76683483E-002 -3.43996684E-002 -1.81136955E+001 -4.12377282E+001 -1.80925934E+001 + 1.25000000E+002 2.40000000E+002 5.34759614E-001 -9.66824736E-001 -9.45545289E-003 -2.58037886E-002 -1.69123538E+001 -4.89976508E+001 -1.69096677E+001 + 1.30000000E+002 2.40000000E+002 -1.00758234E+000 -1.09880665E+000 -1.50611339E-002 -3.64951482E-003 -1.43098973E+001 -5.39735597E+001 -1.43094281E+001 + 1.35000000E+002 2.40000000E+002 -1.40432096E+000 3.29124610E-001 -2.97647418E-002 -2.36807067E-002 -1.45969542E+001 -4.61746750E+001 -1.45939353E+001 + 1.40000000E+002 2.40000000E+002 -4.52518646E-002 1.02419079E+000 -8.20838036E-002 -1.78199928E-002 -1.75624199E+001 -3.92933503E+001 -1.75333638E+001 + 1.45000000E+002 2.40000000E+002 1.14515174E+000 -9.93557882E-002 -8.83521426E-002 1.97320565E-002 -1.65686764E+001 -3.86427762E+001 -1.65418211E+001 + 1.50000000E+002 2.40000000E+002 7.11087566E-001 -1.63225222E+000 -3.88995510E-002 -3.33722107E-002 -1.27680612E+001 -4.35841054E+001 -1.27644637E+001 + 1.55000000E+002 2.40000000E+002 -5.90835329E-001 -1.88781167E+000 -8.17584881E-002 -2.44492218E-001 -1.18534981E+001 -2.95528451E+001 -1.17803526E+001 + 1.60000000E+002 2.40000000E+002 -1.13872660E+000 -8.37551175E-001 -3.57378498E-001 -5.06569777E-001 -1.47721387E+001 -2.19314378E+001 -1.40081368E+001 + 1.65000000E+002 2.40000000E+002 -3.07096966E-001 3.84193823E-001 -8.36053045E-001 -6.53421699E-001 -2.39419070E+001 -1.72633367E+001 -1.64180967E+001 + 1.70000000E+002 2.40000000E+002 1.29104464E+000 9.51333682E-001 -1.34896780E+000 -6.30829512E-001 -1.36760810E+001 -1.43195573E+001 -1.09756124E+001 + 1.75000000E+002 2.40000000E+002 2.68002248E+000 9.33103731E-001 -1.72220764E+000 -5.27196606E-001 -8.71882048E+000 -1.26677850E+001 -7.24882246E+000 + 1.80000000E+002 2.40000000E+002 3.20968210E+000 8.37929469E-001 -1.85597098E+000 -4.73132986E-001 -7.36292817E+000 -1.21336417E+001 -6.11341605E+000 + 0.00000000E+000 2.45000000E+002 3.70300774E+001 -2.27774769E+001 1.72235951E+001 -1.07014914E+001 1.49862032E+001 8.36175102E+000 1.58410635E+001 + 5.00000000E+000 2.45000000E+002 3.44265630E+001 -2.28183338E+001 1.61159545E+001 -1.10520222E+001 1.45409386E+001 8.04066190E+000 1.54182484E+001 + 1.00000000E+001 2.45000000E+002 2.74903140E+001 -2.22671044E+001 1.29676537E+001 -1.17239609E+001 1.31959449E+001 7.07318713E+000 1.41448048E+001 + 1.50000000E+001 2.45000000E+002 1.87122548E+001 -1.99105383E+001 8.40222736E+000 -1.18271956E+001 1.09522450E+001 5.45360098E+000 1.20308756E+001 + 2.00000000E+001 2.45000000E+002 1.12974344E+001 -1.56840455E+001 3.56000688E+000 -1.05792259E+001 7.94580936E+000 3.17645275E+000 9.19566079E+000 + 2.50000000E+001 2.45000000E+002 7.18170416E+000 -1.15167984E+001 -2.20953433E-001 -7.96743620E+000 4.87470805E+000 2.51203637E-001 6.16149609E+000 + 3.00000000E+001 2.45000000E+002 5.27906196E+000 -9.76076523E+000 -2.13852678E+000 -4.87934322E+000 3.12552094E+000 -3.24818613E+000 4.02625913E+000 + 3.50000000E+001 2.45000000E+002 2.47980787E+000 -1.02162782E+001 -2.45639621E+000 -2.41101703E+000 2.65597205E+000 -7.04246509E+000 3.09819554E+000 + 4.00000000E+001 2.45000000E+002 -2.49633838E+000 -9.58916261E+000 -2.12808585E+000 -9.38764115E-001 2.14188894E+000 -1.04465123E+001 2.37482950E+000 + 4.50000000E+001 2.45000000E+002 -6.84019587E+000 -5.31718496E+000 -1.78341231E+000 -1.35936253E-002 9.75621166E-001 -1.27532195E+001 1.15586356E+000 + 5.00000000E+001 2.45000000E+002 -6.87967259E+000 6.40763408E-001 -1.28534437E+000 7.81938455E-001 -9.89639839E-001 -1.42306293E+001 -7.88458602E-001 + 5.50000000E+001 2.45000000E+002 -3.08749540E+000 3.87888872E+000 -3.94660490E-001 1.21580957E+000 -3.87296993E+000 -1.56461199E+001 -3.59344652E+000 + 6.00000000E+001 2.45000000E+002 4.62780659E-001 3.10482550E+000 5.14457324E-001 9.03358041E-001 -7.84233410E+000 -1.74413667E+001 -7.39038685E+000 + 6.50000000E+001 2.45000000E+002 1.42295262E+000 1.04343411E+000 7.92831425E-001 9.50073644E-002 -1.28459501E+001 -1.97329690E+001 -1.20368546E+001 + 7.00000000E+001 2.45000000E+002 1.04289507E+000 -7.59709210E-002 3.56988755E-001 -4.71054841E-001 -1.73907095E+001 -2.23461030E+001 -1.61866403E+001 + 7.50000000E+001 2.45000000E+002 6.68495992E-001 -7.00303573E-001 -2.13699288E-001 -3.94706133E-001 -1.80596653E+001 -2.47366119E+001 -1.72141380E+001 + 8.00000000E+001 2.45000000E+002 -1.72587333E-001 -1.24648854E+000 -3.67491949E-001 3.75545684E-002 -1.57822713E+001 -2.64284317E+001 -1.54232711E+001 + 8.50000000E+001 2.45000000E+002 -1.38984504E+000 -7.09193801E-001 -1.05538978E-001 2.95420745E-001 -1.39141861E+001 -2.78480311E+001 -1.37420917E+001 + 9.00000000E+001 2.45000000E+002 -1.34684340E+000 8.22673695E-001 1.68269650E-001 1.81689534E-001 -1.38151548E+001 -2.99020775E+001 -1.37095218E+001 + 9.50000000E+001 2.45000000E+002 2.34502273E-001 1.25072588E+000 1.58633030E-001 -5.70362704E-002 -1.56852163E+001 -3.32426369E+001 -1.56096620E+001 + 1.00000000E+002 2.45000000E+002 1.05450025E+000 -2.37106852E-001 -2.79063633E-002 -1.04834334E-001 -1.71033705E+001 -3.70711104E+001 -1.70598362E+001 + 1.05000000E+002 2.45000000E+002 -2.46661259E-001 -1.37741844E+000 -1.00895026E-001 3.47923224E-002 -1.48601065E+001 -3.72131508E+001 -1.48349170E+001 + 1.10000000E+002 2.45000000E+002 -1.61528042E+000 -3.31972523E-001 1.12880358E-003 1.17626369E-001 -1.34338773E+001 -3.63680133E+001 -1.34118345E+001 + 1.15000000E+002 2.45000000E+002 -8.36324696E-001 1.17103655E+000 8.57840554E-002 4.85799613E-002 -1.46171976E+001 -3.79023283E+001 -1.45968621E+001 + 1.20000000E+002 2.45000000E+002 7.63904820E-001 6.52566026E-001 4.88334660E-002 -2.95556577E-002 -1.77379041E+001 -4.26486705E+001 -1.77239080E+001 + 1.25000000E+002 2.45000000E+002 5.57673861E-001 -1.00968850E+000 -8.44428430E-003 -2.24468716E-002 -1.65384528E+001 -5.01805600E+001 -1.65365758E+001 + 1.30000000E+002 2.45000000E+002 -1.05378696E+000 -1.14703079E+000 -1.35248946E-002 -3.22938920E-003 -1.39293366E+001 -5.49150264E+001 -1.39289905E+001 + 1.35000000E+002 2.45000000E+002 -1.46724114E+000 3.45555843E-001 -2.56939838E-002 -1.96662891E-002 -1.42140311E+001 -4.75792736E+001 -1.42120305E+001 + 1.40000000E+002 2.45000000E+002 -4.55073382E-002 1.07100628E+000 -6.94693394E-002 -1.47585878E-002 -1.71748328E+001 -4.07509241E+001 -1.71558123E+001 + 1.45000000E+002 2.45000000E+002 1.19881171E+000 -1.05124720E-001 -7.47339677E-002 1.65532542E-002 -1.61702194E+001 -4.01001414E+001 -1.61526840E+001 + 1.50000000E+002 2.45000000E+002 7.43933322E-001 -1.70848292E+000 -3.34205215E-002 -2.85851390E-002 -1.23722712E+001 -4.49138493E+001 -1.23698529E+001 + 1.55000000E+002 2.45000000E+002 -6.18135920E-001 -1.97527721E+000 -7.02571087E-002 -2.06778113E-001 -1.14602029E+001 -3.09939379E+001 -1.14121185E+001 + 1.60000000E+002 2.45000000E+002 -1.19090901E+000 -8.76265993E-001 -3.03527543E-001 -4.27668237E-001 -1.43817941E+001 -2.33847207E+001 -1.38671518E+001 + 1.65000000E+002 2.45000000E+002 -3.20436212E-001 4.01794611E-001 -7.08004937E-001 -5.51146738E-001 -2.35605225E+001 -1.87203663E+001 -1.74881125E+001 + 1.70000000E+002 2.45000000E+002 1.35178001E+000 9.94877577E-001 -1.14117475E+000 -5.31641891E-001 -1.32804989E+001 -1.57784256E+001 -1.13419933E+001 + 1.75000000E+002 2.45000000E+002 2.80503267E+000 9.75603918E-001 -1.45629068E+000 -4.43920573E-001 -8.32381558E+000 -1.41276574E+001 -7.31048971E+000 + 1.80000000E+002 2.45000000E+002 3.35922682E+000 8.75977151E-001 -1.56916623E+000 -3.98302207E-001 -6.96800916E+000 -1.35939573E+001 -6.11341605E+000 + 0.00000000E+000 2.50000000E+002 3.83903020E+001 -2.36234982E+001 1.39306702E+001 -8.67558110E+000 1.53004842E+001 6.52432873E+000 1.58410635E+001 + 5.00000000E+000 2.50000000E+002 3.56910801E+001 -2.36657423E+001 1.30337450E+001 -8.95938811E+000 1.48552982E+001 6.20348321E+000 1.54106154E+001 + 1.00000000E+001 2.50000000E+002 2.84992441E+001 -2.30936499E+001 1.04846292E+001 -9.50165317E+000 1.35104062E+001 5.23632600E+000 1.41128362E+001 + 1.50000000E+001 2.50000000E+002 1.93974971E+001 -2.06492601E+001 6.78852175E+000 -9.58205767E+000 1.12667813E+001 3.61713116E+000 1.19553336E+001 + 2.00000000E+001 2.50000000E+002 1.17092052E+001 -1.62655427E+001 2.86919192E+000 -8.56770642E+000 8.26022336E+000 1.34040890E+000 9.06376179E+000 + 2.50000000E+001 2.50000000E+002 7.44201964E+000 -1.19429149E+001 -1.89677933E-001 -6.44925186E+000 5.18851496E+000 -1.58456523E+000 6.01718940E+000 + 3.00000000E+001 2.50000000E+002 5.47022352E+000 -1.01206636E+001 -1.73873326E+000 -3.94617057E+000 3.43877110E+000 -5.08443877E+000 4.00972731E+000 + 3.50000000E+001 2.50000000E+002 2.56899957E+000 -1.05925289E+001 -1.99204266E+000 -1.94657378E+000 2.96970959E+000 -8.88135439E+000 3.24441686E+000 + 4.00000000E+001 2.50000000E+002 -2.59031181E+000 -9.94270460E+000 -1.72256405E+000 -7.55312361E-001 2.45677851E+000 -1.22912679E+001 2.59993213E+000 + 4.50000000E+001 2.50000000E+002 -7.09530416E+000 -5.51293693E+000 -1.44114259E+000 -8.34732569E-003 1.29215533E+000 -1.46042222E+001 1.40246646E+000 + 5.00000000E+001 2.50000000E+002 -7.13678175E+000 6.66787607E-001 -1.03720003E+000 6.33335140E-001 -6.70713111E-001 -1.60850040E+001 -5.47633336E-001 + 5.50000000E+001 2.50000000E+002 -3.20286288E+000 4.02671388E+000 -3.16645619E-001 9.82829243E-001 -3.55051553E+000 -1.75000478E+001 -3.37902957E+000 + 6.00000000E+001 2.50000000E+002 4.81822199E-001 3.22394607E+000 4.18356201E-001 7.29031213E-001 -7.51481669E+000 -1.92873336E+001 -7.23525381E+000 + 6.50000000E+001 2.50000000E+002 1.47913190E+000 1.08365897E+000 6.42787697E-001 7.45002230E-002 -1.25123388E+001 -2.15592045E+001 -1.20025847E+001 + 7.00000000E+001 2.50000000E+002 1.08375335E+000 -7.93877051E-002 2.89338980E-001 -3.83395969E-001 -1.70566563E+001 -2.41478519E+001 -1.62815959E+001 + 7.50000000E+001 2.50000000E+002 6.93858632E-001 -7.26522194E-001 -1.72735132E-001 -3.21039497E-001 -1.77384148E+001 -2.65431335E+001 -1.72011688E+001 + 8.00000000E+001 2.50000000E+002 -1.77935409E-001 -1.29202133E+000 -2.96796465E-001 2.90996939E-002 -1.54715146E+001 -2.82877831E+001 -1.52501828E+001 + 8.50000000E+001 2.50000000E+002 -1.43930802E+000 -7.35893484E-001 -8.43669881E-002 2.37346033E-001 -1.36068689E+001 -2.97541272E+001 -1.35026759E+001 + 9.00000000E+001 2.50000000E+002 -1.39597580E+000 8.50985205E-001 1.36869219E-001 1.44470817E-001 -1.35086405E+001 -3.18010068E+001 -1.34447627E+001 + 9.50000000E+001 2.50000000E+002 2.41497447E-001 1.29562321E+000 1.27921649E-001 -4.89665103E-002 -1.53806075E+001 -3.50457926E+001 -1.53339490E+001 + 1.00000000E+002 2.50000000E+002 1.09177521E+000 -2.44668478E-001 -2.40507112E-002 -8.68588211E-002 -1.68030334E+001 -3.86814005E+001 -1.67749440E+001 + 1.05000000E+002 2.50000000E+002 -2.55096096E-001 -1.42645578E+000 -8.32088001E-002 2.73026080E-002 -1.45566240E+001 -3.89310421E+001 -1.45407915E+001 + 1.10000000E+002 2.50000000E+002 -1.67314973E+000 -3.44545619E-001 -5.85673326E-005 9.49640563E-002 -1.31274432E+001 -3.82273202E+001 -1.31140426E+001 + 1.15000000E+002 2.50000000E+002 -8.67349092E-001 1.21234318E+000 6.88944800E-002 3.90365165E-002 -1.43109288E+001 -3.98056245E+001 -1.42986910E+001 + 1.20000000E+002 2.50000000E+002 7.89745400E-001 6.76189760E-001 3.89167322E-002 -2.43427239E-002 -1.74405297E+001 -4.45416962E+001 -1.74320722E+001 + 1.25000000E+002 2.50000000E+002 5.76500986E-001 -1.04475888E+000 -7.70405379E-003 -1.83629640E-002 -1.62437899E+001 -5.17955177E+001 -1.62425805E+001 + 1.30000000E+002 2.50000000E+002 -1.09182834E+000 -1.18661989E+000 -1.18010398E-002 -2.32161668E-003 -1.36285131E+001 -5.61751891E+001 -1.36282715E+001 + 1.35000000E+002 2.50000000E+002 -1.51901222E+000 3.59196267E-001 -2.12743071E-002 -1.53102913E-002 -1.39109853E+001 -4.94089323E+001 -1.39097609E+001 + 1.40000000E+002 2.50000000E+002 -4.55390038E-002 1.10958972E+000 -5.63110951E-002 -1.14580187E-002 -1.68679494E+001 -4.25904396E+001 -1.68563361E+001 + 1.45000000E+002 2.50000000E+002 1.24323203E+000 -1.10085158E-001 -6.05593020E-002 1.35017588E-002 -1.58535444E+001 -4.19242082E+001 -1.58428247E+001 + 1.50000000E+002 2.50000000E+002 7.71049187E-001 -1.77167258E+000 -2.75530681E-002 -2.32485005E-002 -1.20575309E+001 -4.66401950E+001 -1.20560192E+001 + 1.55000000E+002 2.50000000E+002 -6.40766257E-001 -2.04767907E+000 -5.79315249E-002 -1.67237667E-001 -1.11475586E+001 -3.28196657E+001 -1.11181076E+001 + 1.60000000E+002 2.50000000E+002 -1.23404425E+000 -9.08295482E-001 -2.47047560E-001 -3.45412421E-001 -1.40717741E+001 -2.52175325E+001 -1.37503787E+001 + 1.65000000E+002 2.50000000E+002 -3.31340373E-001 4.16341304E-001 -5.74337322E-001 -4.44684360E-001 -2.32587014E+001 -2.05553971E+001 -1.86897228E+001 + 1.70000000E+002 2.50000000E+002 1.40223300E+000 1.03084320E+000 -9.24586432E-001 -4.28438849E-001 -1.29656647E+001 -1.76147769E+001 -1.16854289E+001 + 1.75000000E+002 2.50000000E+002 2.90870235E+000 1.01066954E+000 -1.17926624E+000 -3.57276986E-001 -8.00950642E+000 -1.59648861E+001 -7.36445458E+000 + 1.80000000E+002 2.50000000E+002 3.48320580E+000 9.07358119E-001 -1.27041917E+000 -3.20440107E-001 -6.65379043E+000 -1.54316977E+001 -6.11341605E+000 + 0.00000000E+000 2.55000000E+002 3.94583532E+001 -2.42897303E+001 1.05317246E+001 -6.58364437E+000 1.55397177E+001 4.10407119E+000 1.58410635E+001 + 5.00000000E+000 2.55000000E+002 3.66839341E+001 -2.43331316E+001 9.85230696E+000 -6.79846960E+000 1.50946101E+001 3.78356520E+000 1.54044214E+001 + 1.00000000E+001 2.55000000E+002 2.92912316E+001 -2.37445660E+001 7.92184988E+000 -7.20673621E+000 1.37498191E+001 2.81685277E+000 1.40867435E+001 + 1.50000000E+001 2.55000000E+002 1.99350654E+001 -2.12309677E+001 5.12343815E+000 -7.26351459E+000 1.15062751E+001 1.19821814E+000 1.18930824E+001 + 2.00000000E+001 2.55000000E+002 1.20317961E+001 -1.67234122E+001 2.15722241E+000 -6.49052081E+000 8.49962162E+000 -1.07786128E+000 8.95370346E+000 + 2.50000000E+001 2.55000000E+002 7.64554598E+000 -1.22783160E+001 -1.55939694E-001 -4.88188318E+000 5.42734685E+000 -4.00233038E+000 5.89632917E+000 + 3.00000000E+001 2.55000000E+002 5.61946091E+000 -1.04036243E+001 -1.32470780E+000 -2.98345560E+000 3.67699154E+000 -7.50262272E+000 3.99598062E+000 + 3.50000000E+001 2.55000000E+002 2.63830189E+000 -1.08879916E+001 -1.51201276E+000 -1.46825011E+000 3.20824161E+000 -1.13027791E+001 3.35928721E+000 + 4.00000000E+001 2.55000000E+002 -2.66466479E+000 -1.02201298E+001 -1.30406148E+000 -5.66999463E-001 2.69624682E+000 -1.47205564E+001 2.77426525E+000 + 4.50000000E+001 2.55000000E+002 -7.29603185E+000 -5.66633247E+000 -1.08836143E+000 -3.48571025E-003 1.53298909E+000 -1.70429996E+001 1.59285625E+000 + 5.00000000E+001 2.55000000E+002 -7.33891459E+000 6.87632610E-001 -7.81509027E-001 4.79823100E-001 -4.27909618E-001 -1.85306164E+001 -3.61202221E-001 + 5.50000000E+001 2.55000000E+002 -3.29349139E+000 4.14321404E+000 -2.36391198E-001 7.42296200E-001 -3.30486301E+000 -1.99474469E+001 -3.21178148E+000 + 6.00000000E+001 2.55000000E+002 4.96889317E-001 3.31779797E+000 3.18828659E-001 5.49011589E-001 -7.26517455E+000 -2.17247514E+001 -7.11236042E+000 + 6.50000000E+001 2.55000000E+002 1.52338422E+000 1.11544156E+000 4.87472756E-001 5.34434698E-002 -1.22580221E+001 -2.39676109E+001 -1.19745093E+001 + 7.00000000E+001 2.55000000E+002 1.11598952E+000 -8.18939444E-002 2.19240696E-001 -2.92555114E-001 -1.68019807E+001 -2.65186556E+001 -1.63615195E+001 + 7.50000000E+001 2.55000000E+002 7.14056900E-001 -7.47004972E-001 -1.30410196E-001 -2.44709793E-001 -1.74932268E+001 -2.89198252E+001 -1.71912738E+001 + 8.00000000E+001 2.55000000E+002 -1.81814553E-001 -1.32796254E+000 -2.23774793E-001 2.03438034E-002 -1.52341356E+001 -3.07465369E+001 -1.51137674E+001 + 8.50000000E+001 2.55000000E+002 -1.47815129E+000 -7.57302526E-001 -6.28164413E-002 1.77304541E-001 -1.33718742E+001 -3.22905843E+001 -1.33165210E+001 + 9.00000000E+001 2.55000000E+002 -1.43500009E+000 8.72961781E-001 1.03959918E-001 1.06365758E-001 -1.32740335E+001 -3.43303928E+001 -1.32401138E+001 + 9.50000000E+001 2.55000000E+002 2.46522131E-001 1.33111045E+000 9.61105943E-002 -3.99092934E-002 -1.51477634E+001 -3.74322232E+001 -1.51221741E+001 + 1.00000000E+002 2.55000000E+002 1.12097874E+000 -2.50175634E-001 -1.95436896E-002 -6.77747074E-002 -1.65754625E+001 -4.08102560E+001 -1.65591137E+001 + 1.05000000E+002 2.55000000E+002 -2.61505760E-001 -1.46479687E+000 -6.42962998E-002 1.93843484E-002 -1.43267012E+001 -4.12369658E+001 -1.43178639E+001 + 1.10000000E+002 2.55000000E+002 -1.71852141E+000 -3.54546010E-001 -1.20979859E-003 7.09281765E-002 -1.28943837E+001 -4.07608678E+001 -1.28872915E+001 + 1.15000000E+002 2.55000000E+002 -8.91922146E-001 1.24470080E+000 5.08940806E-002 2.88309524E-002 -1.40774393E+001 -4.24364288E+001 -1.40711069E+001 + 1.20000000E+002 2.55000000E+002 8.09782826E-001 6.94924545E-001 2.80793049E-002 -1.86898272E-002 -1.72145345E+001 -4.72180118E+001 -1.72101972E+001 + 1.25000000E+002 2.55000000E+002 5.91243541E-001 -1.07196697E+000 -7.09036782E-003 -1.36116641E-002 -1.60214118E+001 -5.40576627E+001 -1.60207292E+001 + 1.30000000E+002 2.55000000E+002 -1.12151243E+000 -1.21747382E+000 -9.84117230E-003 -1.06813553E-003 -1.34009496E+001 -5.78667078E+001 -1.34007943E+001 + 1.35000000E+002 2.55000000E+002 -1.55941952E+000 3.69917970E-001 -1.65901678E-002 -1.07619570E-002 -1.36814939E+001 -5.18561465E+001 -1.36808328E+001 + 1.40000000E+002 2.55000000E+002 -4.54327869E-002 1.13973682E+000 -4.27943765E-002 -7.98310696E-003 -1.66355199E+001 -4.50022117E+001 -1.66291987E+001 + 1.45000000E+002 2.55000000E+002 1.27808855E+000 -1.14138555E-001 -4.59947419E-002 1.06083458E-002 -1.56127895E+001 -4.42992513E+001 -1.56069167E+001 + 1.50000000E+002 2.55000000E+002 7.92250765E-001 -1.82135439E+000 -2.13707717E-002 -1.73902641E-002 -1.18180445E+001 -4.89753388E+001 -1.18172089E+001 + 1.55000000E+002 2.55000000E+002 -6.58579302E-001 -2.10451021E+000 -4.48932652E-002 -1.26167543E-001 -1.09097412E+001 -3.52418191E+001 -1.08937538E+001 + 1.60000000E+002 2.55000000E+002 -1.26786215E+000 -9.33421820E-001 -1.88383835E-001 -2.60427943E-001 -1.38361784E+001 -2.76370337E+001 -1.36588405E+001 + 1.65000000E+002 2.55000000E+002 -3.39780115E-001 4.27722646E-001 -4.36079127E-001 -3.34844542E-001 -2.30305597E+001 -2.29743285E+001 -1.99920531E+001 + 1.70000000E+002 2.55000000E+002 1.44199043E+000 1.05896472E+000 -7.00856897E-001 -3.22006294E-001 -1.27259994E+001 -2.00341517E+001 -1.19856670E+001 + 1.75000000E+002 2.55000000E+002 2.99023505E+000 1.03803722E+000 -8.93243598E-001 -2.67926725E-001 -7.77025156E+000 -1.83849678E+001 -7.40874835E+000 + 1.80000000E+002 2.55000000E+002 3.58067547E+000 9.31833543E-001 -9.62003449E-001 -2.40139265E-001 -6.41461508E+000 -1.78524527E+001 -6.11341605E+000 + 0.00000000E+000 2.60000000E+002 4.02261025E+001 -2.47711030E+001 7.05262608E+000 -4.44160212E+000 1.57079424E+001 6.39301212E-001 1.58410635E+001 + 5.00000000E+000 2.60000000E+002 3.73975674E+001 -2.48153993E+001 6.59585950E+000 -4.58571089E+000 1.52629115E+001 3.19386055E-001 1.53998628E+001 + 1.00000000E+001 2.60000000E+002 2.98602706E+001 -2.42148321E+001 5.29882080E+000 -4.85668734E+000 1.39182193E+001 -6.46549898E-001 1.40674386E+001 + 1.50000000E+001 2.60000000E+002 2.03209475E+001 -2.16511353E+001 3.41962843E+000 -4.88923769E+000 1.16747633E+001 -2.26418954E+000 1.18466594E+001 + 2.00000000E+001 2.60000000E+002 1.22629040E+001 -1.70540908E+001 1.42946678E+000 -4.36349855E+000 8.66805306E+000 -4.53908096E+000 8.87077255E+000 + 2.50000000E+001 2.60000000E+002 7.79091560E+000 -1.25204516E+001 -1.20059714E-001 -3.27724850E+000 5.59528835E+000 -7.46249487E+000 5.80493197E+000 + 3.00000000E+001 2.60000000E+002 5.72576165E+000 -1.06075716E+001 -8.99641084E-001 -1.99848070E+000 3.84429623E+000 -1.09631287E+001 3.98553718E+000 + 3.50000000E+001 2.60000000E+002 2.68721692E+000 -1.11004743E+001 -1.01994893E+000 -9.79647308E-001 3.37565634E+000 -1.47681969E+001 3.44173947E+000 + 4.00000000E+001 2.60000000E+002 -2.71879814E+000 -1.04192831E+001 -8.75731374E-001 -3.75276647E-001 2.86432501E+000 -1.81989018E+001 2.89819127E+000 + 4.50000000E+001 2.60000000E+002 -7.44068196E+000 -5.77614766E+000 -7.27776497E-001 8.82159681E-004 1.70208181E+000 -2.05385401E+001 1.72792994E+000 + 5.00000000E+001 2.60000000E+002 -7.48428277E+000 7.03016385E-001 -5.20337219E-001 3.22529072E-001 -2.57352241E-001 -2.20407913E+001 -2.28644157E-001 + 5.50000000E+001 2.60000000E+002 -3.35860584E+000 4.22718979E+000 -1.54662384E-001 4.96128168E-001 -3.13221574E+000 -2.34638463E+001 -3.09216439E+000 + 6.00000000E+001 2.60000000E+002 5.07688586E-001 3.38542983E+000 2.16584542E-001 3.64884992E-001 -7.08964485E+000 -2.52245776E+001 -7.02342687E+000 + 6.50000000E+001 2.60000000E+002 1.55517026E+000 1.13856259E+000 3.28220569E-001 3.22010401E-002 -1.20790599E+001 -2.74135894E+001 -1.19537314E+001 + 7.00000000E+001 2.60000000E+002 1.13936674E+000 -8.33791189E-002 1.47499876E-001 -1.99213189E-001 -1.66220403E+001 -2.98938459E+001 -1.64222493E+001 + 7.50000000E+001 2.60000000E+002 7.29006105E-001 -7.61687885E-001 -8.68773554E-002 -1.66511105E-001 -1.73189500E+001 -3.23040063E+001 -1.71832819E+001 + 8.00000000E+001 2.60000000E+002 -1.84328670E-001 -1.35417933E+000 -1.49063951E-001 1.11173389E-002 -1.50652527E+001 -3.42869645E+001 -1.50136077E+001 + 8.50000000E+001 2.60000000E+002 -1.50628632E+000 -7.73155912E-001 -4.12579744E-002 1.15724489E-001 -1.32047322E+001 -3.59903549E+001 -1.31819245E+001 + 9.00000000E+001 2.60000000E+002 -1.46356124E+000 8.88673258E-001 6.97228122E-002 6.78103628E-002 -1.31072352E+001 -3.80198179E+001 -1.30932449E+001 + 9.50000000E+001 2.60000000E+002 2.49804709E-001 1.35690319E+000 6.35557994E-002 -2.98676487E-002 -1.49827759E+001 -4.08487905E+001 -1.49715397E+001 + 1.00000000E+002 2.60000000E+002 1.14195040E+000 -2.53874945E-001 -1.43532903E-002 -4.78437870E-002 -1.64160488E+001 -4.38077233E+001 -1.64081380E+001 + 1.05000000E+002 2.60000000E+002 -2.66101543E-001 -1.49230675E+000 -4.44295080E-002 1.10032141E-002 -1.41654047E+001 -4.45665591E+001 -1.41614467E+001 + 1.10000000E+002 2.60000000E+002 -1.75127275E+000 -3.61713108E-001 -2.46711018E-003 4.58206992E-002 -1.27300040E+001 -4.45447006E+001 -1.27271453E+001 + 1.15000000E+002 2.60000000E+002 -9.09758462E-001 1.26811251E+000 3.19803061E-002 1.82561097E-002 -1.39121446E+001 -4.64558284E+001 -1.39097275E+001 + 1.20000000E+002 2.60000000E+002 8.24117093E-001 7.08618784E-001 1.66384625E-002 -1.25842264E-002 -1.70548698E+001 -5.13916063E+001 -1.70532701E+001 + 1.25000000E+002 2.60000000E+002 6.01878124E-001 -1.09132448E+000 -6.43262970E-003 -8.38663217E-003 -1.58661035E+001 -5.72974184E+001 -1.58657911E+001 + 1.30000000E+002 2.60000000E+002 -1.14274234E+000 -1.23951964E+000 -7.66787484E-003 3.17656661E-004 -1.32418552E+001 -6.00775597E+001 -1.32417652E+001 + 1.35000000E+002 2.60000000E+002 -1.58831761E+000 3.77654256E-001 -1.17890965E-002 -6.16032291E-003 -1.35209229E+001 -5.53004339E+001 -1.35206346E+001 + 1.40000000E+002 2.60000000E+002 -4.52431597E-002 1.16131277E+000 -2.91166905E-002 -4.37001309E-003 -1.64729364E+001 -4.83989238E+001 -1.64701499E+001 + 1.45000000E+002 2.60000000E+002 1.30314708E+000 -1.17206925E-001 -3.11950425E-002 7.90550332E-003 -1.54436475E+001 -4.76264706E+001 -1.54410211E+001 + 1.50000000E+002 2.60000000E+002 8.07401613E-001 -1.85717488E+000 -1.49461050E-002 -1.10623748E-002 -1.16496136E+001 -5.23907320E+001 -1.16492475E+001 + 1.55000000E+002 2.60000000E+002 -6.71463803E-001 -2.14538473E+000 -3.12743801E-002 -8.38961431E-002 -1.07425505E+001 -3.87385779E+001 -1.07356666E+001 + 1.60000000E+002 2.60000000E+002 -1.29215980E+000 -9.51479501E-001 -1.28019919E-001 -1.73369830E-001 -1.36707512E+001 -3.11090053E+001 -1.35931138E+001 + 1.65000000E+002 2.60000000E+002 -3.45740506E-001 4.35851173E-001 -2.94310819E-001 -2.22462835E-001 -2.28718620E+001 -2.64396522E+001 -2.12889449E+001 + 1.70000000E+002 2.60000000E+002 1.47072315E+000 1.07903547E+000 -4.71702666E-001 -2.13152457E-001 -1.25575298E+001 -2.34981740E+001 -1.22211780E+001 + 1.75000000E+002 2.60000000E+002 3.04900339E+000 1.05750214E+000 -6.00402504E-001 -1.76550348E-001 -7.60202581E+000 -2.18494903E+001 -7.44170237E+000 + 1.80000000E+002 2.60000000E+002 3.65089405E+000 9.49217151E-001 -6.46266305E-001 -1.58010818E-001 -6.24644562E+000 -2.13181225E+001 -6.11341605E+000 + 0.00000000E+000 2.65000000E+002 4.06877069E+001 -2.50639526E+001 3.51985286E+000 -2.26575661E+000 1.58078668E+001 -5.34241812E+000 1.58410635E+001 + 5.00000000E+000 2.65000000E+002 3.78265482E+001 -2.51088530E+001 3.28919205E+000 -2.33795594E+000 1.53629098E+001 -5.66067674E+000 1.53970853E+001 + 1.00000000E+001 2.65000000E+002 3.02020494E+001 -2.45008080E+001 2.63549844E+000 -2.46941966E+000 1.40183130E+001 -6.62443720E+000 1.40556074E+001 + 1.50000000E+001 2.65000000E+002 2.05522767E+001 -2.19064734E+001 1.69001480E+000 -2.47734849E+000 1.17749528E+001 -8.23926521E+000 1.18180260E+001 + 2.00000000E+001 2.65000000E+002 1.24009086E+001 -1.72549852E+001 6.91363116E-001 -2.20287155E+000 8.76823452E+000 -1.05107248E+001 8.81920718E+000 + 2.50000000E+001 2.65000000E+002 7.87720016E+000 -1.26674740E+001 -8.24473037E-002 -1.64754859E+000 5.69508946E+000 -1.34308802E+001 5.74787867E+000 + 3.00000000E+001 2.65000000E+002 5.78845987E+000 -1.07310315E+001 -4.66878290E-001 -9.98659105E-001 3.94347241E+000 -1.69316886E+001 3.97883133E+000 + 3.50000000E+001 2.65000000E+002 2.71543150E+000 -1.12284561E+001 -5.19628170E-001 -4.84379927E-001 3.47473721E+000 -2.07487131E+001 3.49112874E+000 + 4.00000000E+001 2.65000000E+002 -2.75227872E+000 -1.05386891E+001 -4.40814090E-001 -1.81554233E-001 2.96376798E+000 -2.42129139E+001 2.97207988E+000 + 4.50000000E+001 2.65000000E+002 -7.52808211E+000 -5.84155933E+000 -3.62151455E-001 4.71463918E-003 1.80215232E+000 -2.65999663E+001 1.80842219E+000 + 5.00000000E+001 2.65000000E+002 -7.57167300E+000 7.12734283E-001 -2.55764669E-001 1.62683905E-001 -1.56357635E-001 -2.81462206E+001 -1.49463921E-001 + 5.50000000E+001 2.65000000E+002 -3.39768936E+000 4.27783838E+000 -7.21452864E-002 2.46350753E-001 -3.02990842E+000 -2.95900723E+001 -3.02033011E+000 + 6.00000000E+001 2.65000000E+002 5.14049564E-001 3.42622300E+000 1.12496079E-001 1.78241241E-001 -6.98551811E+000 -3.13022025E+001 -6.96947408E+000 + 6.50000000E+001 2.65000000E+002 1.57419119E+000 1.15284586E+000 1.66468013E-001 1.09817030E-002 -1.19725282E+001 -3.33330321E+001 -1.19408944E+001 + 7.00000000E+001 2.65000000E+002 1.15373132E+000 -8.38748418E-002 7.48254200E-002 -1.04230791E-001 -1.65135209E+001 -3.56134432E+001 -1.64604160E+001 + 7.50000000E+001 2.65000000E+002 7.38527402E-001 -7.70592775E-001 -4.25081044E-002 -8.72245457E-002 -1.72123702E+001 -3.80402759E+001 -1.71766260E+001 + 8.00000000E+001 2.65000000E+002 -1.85675443E-001 -1.37047946E+000 -7.33807454E-002 1.47085612E-003 -1.49620626E+001 -4.04651201E+001 -1.49498484E+001 + 8.50000000E+001 2.65000000E+002 -1.52360229E+000 -7.83101093E-001 -1.98807846E-002 5.32058470E-002 -1.31030012E+001 -4.26917183E+001 -1.30982295E+001 + 9.00000000E+001 2.65000000E+002 -1.48123596E+000 8.98186598E-001 3.45809840E-002 2.91440255E-002 -1.30061377E+001 -4.46711095E+001 -1.30031788E+001 + 9.50000000E+001 2.65000000E+002 2.51579539E-001 1.37265953E+000 3.06317116E-002 -1.91034427E-002 -1.48837626E+001 -4.66282520E+001 -1.48808573E+001 + 1.00000000E+002 2.65000000E+002 1.15448627E+000 -2.56034923E-001 -8.65969756E-003 -2.74498663E-002 -1.63222164E+001 -4.85956577E+001 -1.63196441E+001 + 1.05000000E+002 2.65000000E+002 -2.69118303E-001 -1.50883695E+000 -2.40612487E-002 2.25249729E-003 -1.40696517E+001 -5.01142489E+001 -1.40685720E+001 + 1.10000000E+002 2.65000000E+002 -1.77127941E+000 -3.65787453E-001 -3.93554231E-003 2.01360966E-002 -1.26313946E+001 -5.15361928E+001 -1.26308358E+001 + 1.15000000E+002 2.65000000E+002 -9.20578856E-001 1.28255718E+000 1.25165226E-002 7.64709818E-003 -1.38122976E+001 -5.44512661E+001 -1.38119227E+001 + 1.20000000E+002 2.65000000E+002 8.32822456E-001 7.17089511E-001 5.00762536E-003 -6.12067544E-003 -1.69585186E+001 -5.98169991E+001 -1.69582937E+001 + 1.25000000E+002 2.65000000E+002 6.08331902E-001 -1.10286868E+000 -5.59614418E-003 -2.98899848E-003 -1.57744155E+001 -6.17307465E+001 -1.57743053E+001 + 1.30000000E+002 2.65000000E+002 -1.15548748E+000 -1.25267664E+000 -5.38282271E-003 1.60560818E-003 -1.31480173E+001 -6.27881337E+001 -1.31479702E+001 + 1.35000000E+002 2.65000000E+002 -1.60559601E+000 3.82392068E-001 -7.05176914E-003 -1.60474441E-003 -1.34261773E+001 -6.05932698E+001 -1.34260939E+001 + 1.40000000E+002 2.65000000E+002 -4.49838099E-002 1.17422935E+000 -1.54588603E-002 -6.28234746E-004 -1.63770793E+001 -5.39877909E+001 -1.63763265E+001 + 1.45000000E+002 2.65000000E+002 1.31825651E+000 -1.19246518E-001 -1.62911928E-002 5.41516813E-003 -1.53431165E+001 -5.30843076E+001 -1.53423860E+001 + 1.50000000E+002 2.65000000E+002 8.16406136E-001 -1.87889630E+000 -8.34902424E-003 -4.34770662E-003 -1.15493550E+001 -5.83037405E+001 -1.15492633E+001 + 1.55000000E+002 2.65000000E+002 -6.79346002E-001 -2.17003609E+000 -1.72266059E-002 -4.07830036E-002 -1.06431248E+001 -4.48559256E+001 -1.06414788E+001 + 1.60000000E+002 2.65000000E+002 -1.30679959E+000 -9.62353836E-001 -6.64726340E-002 -8.49176908E-002 -1.35725965E+001 -3.71228498E+001 -1.35534627E+001 + 1.65000000E+002 2.65000000E+002 -3.49217514E-001 4.40664186E-001 -1.50154501E-001 -1.08394264E-001 -2.27797428E+001 -3.24261115E+001 -2.23324510E+001 + 1.70000000E+002 2.65000000E+002 1.48819044E+000 1.09090905E+000 -2.38888696E-001 -1.02702061E-001 -1.24575994E+001 -2.94780429E+001 -1.23721984E+001 + 1.75000000E+002 2.65000000E+002 3.08455440E+000 1.06891943E+000 -3.02976362E-001 -8.38429907E-002 -7.50213101E+000 -2.78298685E+001 -7.46204391E+000 + 1.80000000E+002 2.65000000E+002 3.69332711E+000 9.59376643E-001 -3.25610684E-001 -7.46798135E-002 -6.14657448E+000 -2.73018887E+001 -6.11341605E+000 + 0.00000000E+000 2.70000000E+002 4.08396533E+001 -2.51660504E+001 -3.97085595E-002 -7.26673169E-002 1.58410506E+001 -3.94169700E+001 1.58410635E+001 + 5.00000000E+000 2.70000000E+002 3.79676112E+001 -2.52112393E+001 -4.25240287E-002 -7.23197163E-002 1.53961634E+001 -3.93037463E+001 1.53961781E+001 + 1.00000000E+001 2.70000000E+002 3.03139815E+001 -2.46002652E+001 -4.78597455E-002 -6.31434820E-002 1.40516576E+001 -3.98005328E+001 1.40516755E+001 + 1.50000000E+001 2.70000000E+002 2.06273472E+001 -2.19949608E+001 -5.23042341E-002 -4.62774800E-002 1.18084014E+001 -4.08966784E+001 1.18084247E+001 + 2.00000000E+001 2.70000000E+002 1.24448736E+001 -1.73244961E+001 -5.16150990E-002 -2.51487233E-002 8.80173147E+000 -4.25978751E+001 8.80176293E+000 + 2.50000000E+001 2.70000000E+002 7.90390241E+000 -1.27182520E+001 -4.35906009E-002 -5.17567469E-003 5.72834510E+000 -4.49298519E+001 5.72838242E+000 + 3.00000000E+001 2.70000000E+002 5.80722727E+000 -1.07731379E+001 -2.98933169E-002 8.51902901E-003 3.97615856E+000 -4.79279074E+001 3.97618657E+000 + 3.50000000E+001 2.70000000E+002 2.72280733E+000 -1.12710919E+001 -1.49380294E-002 1.39579553E-002 3.50713963E+000 -5.15670638E+001 3.50715313E+000 + 4.00000000E+001 2.70000000E+002 -2.76485914E+000 -1.05775542E+001 -2.60832768E-003 1.28290985E-002 2.99622946E+000 -5.54386740E+001 2.99623568E+000 + 4.50000000E+001 2.70000000E+002 -7.55761168E+000 -5.86212666E+000 5.74460818E-003 8.05707111E-003 1.83485062E+000 -5.78699296E+001 1.83485527E+000 + 5.00000000E+001 2.70000000E+002 -7.60045104E+000 7.16704115E-001 1.01791487E-002 1.60087549E-003 -1.23272743E-001 -5.75181668E+001 -1.23264831E-001 + 5.50000000E+001 2.70000000E+002 -3.41043947E+000 4.29478529E+000 1.05866378E-002 -4.97594585E-003 -2.99626607E+000 -5.64164735E+001 -2.99624631E+000 + 6.00000000E+001 2.70000000E+002 5.15974953E-001 3.43986029E+000 7.55719114E-003 -9.40639529E-003 -6.95105925E+000 -5.61471495E+001 -6.95100699E+000 + 6.50000000E+001 2.70000000E+002 1.58036949E+000 1.15809696E+000 3.65917625E-003 -1.01748865E-002 -1.19366016E+001 -5.70996975E+001 -1.19364693E+001 + 7.00000000E+001 2.70000000E+002 1.15894083E+000 -8.35471716E-002 1.76461255E-003 -8.57182645E-003 -1.64747705E+001 -5.89367825E+001 -1.64745241E+001 + 7.50000000E+001 2.70000000E+002 7.42340412E-001 -7.73745804E-001 2.14400933E-003 -7.52511079E-003 -1.71724658E+001 -5.99092851E+001 -1.71722345E+001 + 8.00000000E+001 2.70000000E+002 -1.86059441E-001 -1.37658602E+000 2.57624415E-003 -8.32057206E-003 -1.49238179E+001 -5.89778661E+001 -1.49236472E+001 + 8.50000000E+001 2.70000000E+002 -1.52992186E+000 -7.86786372E-001 1.34409176E-003 -9.57003312E-003 -1.30660393E+001 -5.80754048E+001 -1.30659023E+001 + 9.00000000E+001 2.70000000E+002 -1.48761785E+000 9.01499300E-001 -8.78910591E-004 -9.45510723E-003 -1.29702371E+001 -5.82278123E+001 -1.29701077E+001 + 9.50000000E+001 2.70000000E+002 2.51995282E-001 1.37805091E+000 -2.36155227E-003 -8.07934587E-003 -1.48503530E+001 -5.92749393E+001 -1.48501962E+001 + 1.00000000E+002 2.70000000E+002 1.15838028E+000 -2.56835795E-001 -2.83268347E-003 -6.98416225E-003 -1.62930680E+001 -6.02348235E+001 -1.62928928E+001 + 1.05000000E+002 2.70000000E+002 -2.70703051E-001 -1.51422879E+000 -3.70726843E-003 -6.62272608E-003 -1.40380494E+001 -6.01739549E+001 -1.40379437E+001 + 1.10000000E+002 2.70000000E+002 -1.77838498E+000 -3.66605036E-001 -5.61303550E-003 -5.53534003E-003 -1.25972485E+001 -5.98443642E+001 -1.25971667E+001 + 1.15000000E+002 2.70000000E+002 -9.24176783E-001 1.28793774E+000 -7.02122735E-003 -2.71918525E-003 -1.37767785E+001 -6.02433197E+001 -1.37766805E+001 + 1.20000000E+002 2.70000000E+002 8.35888083E-001 7.20157827E-001 -6.40701822E-003 4.97067141E-004 -1.69244017E+001 -6.16193263E+001 -1.69242543E+001 + 1.25000000E+002 2.70000000E+002 6.10489595E-001 -1.10660812E+000 -4.52972714E-003 2.24722322E-003 -1.57446990E+001 -6.37014646E+001 -1.57446295E+001 + 1.30000000E+002 2.70000000E+002 -1.15974421E+000 -1.25684292E+000 -3.13979789E-003 2.61381035E-003 -1.31177520E+001 -6.55538564E+001 -1.31177272E+001 + 1.35000000E+002 2.70000000E+002 -1.61115684E+000 3.84152136E-001 -2.54269050E-003 2.85915808E-003 -1.33956169E+001 -6.61230785E+001 -1.33955937E+001 + 1.40000000E+002 2.70000000E+002 -4.46305439E-002 1.17842505E+000 -1.95662961E-003 3.24202444E-003 -1.63462427E+001 -6.62132814E+001 -1.63461980E+001 + 1.45000000E+002 2.70000000E+002 1.32333808E+000 -1.20253541E-001 -1.38557831E-003 3.13154845E-003 -1.53093757E+001 -6.70868514E+001 -1.53093468E+001 + 1.50000000E+002 2.70000000E+002 8.19203924E-001 -1.88639363E+000 -1.64967228E-003 2.63476234E-003 -1.15155386E+001 -6.79272114E+001 -1.15155287E+001 + 1.55000000E+002 2.70000000E+002 -6.82189408E-001 -2.17831352E+000 -2.92061943E-003 2.78446150E-003 -1.06097695E+001 -6.56610978E+001 -1.06097559E+001 + 1.60000000E+002 2.70000000E+002 -1.31170651E+000 -9.65979187E-001 -4.28554105E-003 4.23040983E-003 -1.35400055E+001 -6.21839620E+001 -1.35399461E+001 + 1.65000000E+002 2.70000000E+002 -3.50214791E-001 4.42124513E-001 -4.76258562E-003 6.49302533E-003 -2.27525360E+001 -5.96599698E+001 -2.27516509E+001 + 1.70000000E+002 2.70000000E+002 1.49424351E+000 1.09450002E+000 -4.21342769E-003 8.50951361E-003 -1.24246872E+001 -5.82281370E+001 -1.24245731E+001 + 1.75000000E+002 2.70000000E+002 3.09661336E+000 1.07220501E+000 -3.23482908E-003 9.49078756E-003 -7.46901502E+000 -5.77551541E+001 -7.46897436E+000 + 1.80000000E+002 2.70000000E+002 3.70765173E+000 9.62234700E-001 -2.47696993E-003 9.21954963E-003 -6.11344303E+000 -5.81816324E+001 -6.11341605E+000 + 0.00000000E+000 2.75000000E+002 4.06807853E+001 -2.50766193E+001 -3.59896778E+000 2.12097502E+000 1.58080036E+001 -5.36027790E+000 1.58410635E+001 + 5.00000000E+000 2.75000000E+002 3.78196826E+001 -2.51217623E+001 -3.37392698E+000 2.19394285E+000 1.53631817E+001 -5.68422324E+000 1.53971711E+001 + 1.00000000E+001 2.75000000E+002 3.01952235E+001 -2.45124067E+001 -2.73084763E+000 2.34377547E+000 1.40187616E+001 -6.65553692E+000 1.40557871E+001 + 1.50000000E+001 2.75000000E+002 2.05456224E+001 -2.19158639E+001 -1.79414754E+000 2.38538122E+000 1.17756172E+001 -8.28021303E+000 1.18182816E+001 + 2.00000000E+001 2.75000000E+002 1.23945436E+001 -1.72620350E+001 -7.93989592E-001 2.15301331E+000 8.76905702E+000 -1.05637926E+001 8.81940471E+000 + 2.50000000E+001 2.75000000E+002 7.87094401E+000 -1.26723794E+001 -4.04011678E-003 1.63737946E+000 5.69559257E+000 -1.34954938E+001 5.74760087E+000 + 3.00000000E+001 2.75000000E+002 5.78205739E+000 -1.07336300E+001 4.07746376E-001 1.01553931E+000 3.94293767E+000 -1.69954718E+001 3.97778742E+000 + 3.50000000E+001 2.75000000E+002 2.70936740E+000 -1.12281997E+001 4.90158786E-001 5.11821064E-001 3.47347910E+000 -2.07695978E+001 3.48979686E+000 + 4.00000000E+001 2.75000000E+002 -2.75648371E+000 -1.05357445E+001 4.35570564E-001 2.06623829E-001 2.96234411E+000 -2.41158631E+001 2.97084645E+000 + 4.50000000E+001 2.75000000E+002 -7.52919144E+000 -5.83776366E+000 3.73195079E-001 1.10336672E-002 1.80083064E+000 -2.63359942E+001 1.80749516E+000 + 5.00000000E+001 2.75000000E+002 -7.57052808E+000 7.14981751E-001 2.75562247E-001 -1.59384850E-001 -1.57418595E-001 -2.77207802E+001 -1.49814144E-001 + 5.50000000E+001 2.75000000E+002 -3.39672927E+000 4.27806217E+000 9.30495014E-002 -2.55849401E-001 -3.03057911E+000 -2.90793213E+001 -3.01980525E+000 + 6.00000000E+001 2.75000000E+002 5.13637427E-001 3.42627383E+000 -9.72213653E-002 -1.96658019E-001 -6.98554533E+000 -3.09546759E+001 -6.96816724E+000 + 6.50000000E+001 2.75000000E+002 1.57379007E+000 1.15408662E+000 -1.58848786E-001 -3.13172947E-002 -1.19707038E+001 -3.35932221E+001 -1.19409158E+001 + 7.00000000E+001 2.75000000E+002 1.15482553E+000 -8.26344621E-002 -7.12657100E-002 8.68263724E-002 -1.65059993E+001 -3.67687324E+001 -1.64653105E+001 + 7.50000000E+001 2.75000000E+002 7.40121999E-001 -7.71112944E-001 4.64809188E-002 7.20453926E-002 -1.72003412E+001 -3.91150343E+001 -1.71724850E+001 + 8.00000000E+001 2.75000000E+002 -1.85601583E-001 -1.37218140E+000 7.82078015E-002 -1.78791519E-002 -1.49515389E+001 -3.96922628E+001 -1.49369848E+001 + 8.50000000E+001 2.75000000E+002 -1.52501827E+000 -7.83970052E-001 2.25763230E-002 -7.19678927E-002 -1.30946057E+001 -4.02280958E+001 -1.30862108E+001 + 9.00000000E+001 2.75000000E+002 -1.48243071E+000 8.98522340E-001 -3.60673139E-002 -4.79377226E-002 -1.30001443E+001 -4.22168377E+001 -1.29949461E+001 + 9.50000000E+001 2.75000000E+002 2.51065559E-001 1.37286191E+000 -3.52377383E-002 2.70642672E-003 -1.48830996E+001 -4.68128028E+001 -1.48803156E+001 + 1.00000000E+002 2.75000000E+002 1.15349731E+000 -2.56300006E-001 2.69897934E-003 1.32624048E-002 -1.63288884E+001 -5.51498243E+001 -1.63283186E+001 + 1.05000000E+002 2.75000000E+002 -2.70840728E-001 -1.50835780E+000 1.62020543E-002 -1.52913460E-002 -1.40706051E+001 -5.08207858E+001 -1.40696874E+001 + 1.10000000E+002 2.75000000E+002 -1.77242261E+000 -3.64167174E-001 -7.38186491E-003 -3.06581633E-002 -1.26275881E+001 -4.78028307E+001 -1.26262692E+001 + 1.15000000E+002 2.75000000E+002 -9.20481223E-001 1.28408414E+000 -2.61602263E-002 -1.26960408E-002 -1.38057867E+001 -4.85071300E+001 -1.38043158E+001 + 1.20000000E+002 2.75000000E+002 8.33203567E-001 7.17700858E-001 -1.73119814E-002 7.01085224E-003 -1.69530849E+001 -5.23520357E+001 -1.69518323E+001 + 1.25000000E+002 2.75000000E+002 6.08228230E-001 -1.10249552E+000 -3.27602064E-003 7.05227583E-003 -1.57770145E+001 -5.99633295E+001 -1.57768488E+001 + 1.30000000E+002 2.75000000E+002 -1.15550576E+000 -1.25191064E+000 -1.08938482E-003 3.25884130E-003 -1.31508239E+001 -6.70571827E+001 -1.31508062E+001 + 1.35000000E+002 2.75000000E+002 -1.60491465E+000 3.82964319E-001 1.64135907E-003 7.23164583E-003 -1.34289674E+001 -6.03756097E+001 -1.34288796E+001 + 1.40000000E+002 2.75000000E+002 -4.41362664E-002 1.17385621E+000 1.13169029E-002 7.22308291E-003 -1.63800736E+001 -5.52198695E+001 -1.63795064E+001 + 1.45000000E+002 2.75000000E+002 1.31837471E+000 -1.20259121E-001 1.34441245E-002 1.00584445E-003 -1.53417430E+001 -5.51836145E+001 -1.53412927E+001 + 1.50000000E+002 2.75000000E+002 8.15767850E-001 -1.87964701E+000 5.07646068E-003 9.72966739E-003 -1.15475136E+001 -5.69709120E+001 -1.15473890E+001 + 1.55000000E+002 2.75000000E+002 -6.79992166E-001 -2.17017757E+000 1.14558551E-002 4.63974181E-002 -1.06418714E+001 -4.41916277E+001 -1.06399540E+001 + 1.60000000E+002 2.75000000E+002 -1.30686495E+000 -9.62337373E-001 5.79793750E-002 9.33652311E-002 -1.35723671E+001 -3.69583143E+001 -1.35524972E+001 + 1.65000000E+002 2.75000000E+002 -3.48741026E-001 4.40221000E-001 1.40694790E-001 1.21324312E-001 -2.27896859E+001 -3.23984769E+001 -2.23387021E+001 + 1.70000000E+002 2.75000000E+002 1.48882786E+000 1.08978433E+000 2.30506868E-001 1.19642031E-001 -1.24583075E+001 -2.94888399E+001 -1.23731027E+001 + 1.75000000E+002 2.75000000E+002 3.08508617E+000 1.06733616E+000 2.96533932E-001 1.02742188E-001 -7.50217235E+000 -2.78446593E+001 -7.46222053E+000 + 1.80000000E+002 2.75000000E+002 3.69375888E+000 9.57769570E-001 3.20675596E-001 9.30487464E-002 -6.14654212E+000 -2.73061125E+001 -6.11341605E+000 + 0.00000000E+000 2.80000000E+002 4.02123119E+001 -2.47963401E+001 -7.13083667E+000 4.29847545E+000 1.57082180E+001 6.30437081E-001 1.58410635E+001 + 5.00000000E+000 2.80000000E+002 3.73838883E+001 -2.48410899E+001 -6.67965743E+000 4.44356923E+000 1.52634564E+001 3.07864635E-001 1.54000337E+001 + 1.00000000E+001 2.80000000E+002 2.98466813E+001 -2.42378754E+001 -5.39306337E+000 4.73295968E+000 1.39191158E+001 -6.61612103E-001 1.40677971E+001 + 1.50000000E+001 2.80000000E+002 2.03077362E+001 -2.16697465E+001 -3.52234430E+000 4.79901774E+000 1.16760905E+001 -2.28387859E+000 1.18471729E+001 + 2.00000000E+001 2.80000000E+002 1.22503381E+001 -1.70680329E+001 -1.53030456E+000 4.31494212E+000 8.66970346E+000 -4.56447867E+000 8.87119308E+000 + 2.50000000E+001 2.80000000E+002 7.77865156E+000 -1.25301778E+001 3.56146753E-002 3.26762149E+000 5.59634073E+000 -7.49335623E+000 5.80448564E+000 + 3.00000000E+001 2.80000000E+002 5.71324690E+000 -1.06128421E+001 8.42425004E-001 2.01491212E+000 3.84336024E+000 -1.09937323E+001 3.98365499E+000 + 3.50000000E+001 2.80000000E+002 2.67528420E+000 -1.11002327E+001 9.91669887E-001 1.00572961E+000 3.37334666E+000 -1.47792931E+001 3.43929724E+000 + 4.00000000E+001 2.80000000E+002 -2.72727564E+000 -1.04137477E+001 8.70435758E-001 3.98666157E-001 2.86173431E+000 -1.81567411E+001 2.89594997E+000 + 4.50000000E+001 2.80000000E+002 -7.44323853E+000 -5.76871789E+000 7.37581240E-001 1.38136498E-002 1.69974525E+000 -2.04207867E+001 1.72631588E+000 + 5.00000000E+001 2.80000000E+002 -7.48230820E+000 7.07735254E-001 5.38562739E-001 -3.18991960E-001 -2.59112207E-001 -2.18477995E+001 -2.29091999E-001 + 5.50000000E+001 2.80000000E+002 -3.35660014E+000 4.22804156E+000 1.74781784E-001 -5.04399168E-001 -3.13314953E+000 -2.32305583E+001 -3.09088960E+000 + 6.00000000E+001 2.80000000E+002 5.07319216E-001 3.38560622E+000 -2.00934180E-001 -3.82208879E-001 -7.08934120E+000 -2.50726928E+001 -7.02078968E+000 + 6.50000000E+001 2.80000000E+002 1.55463570E+000 1.14059739E+000 -3.19838465E-001 -5.24483304E-002 -1.20755830E+001 -2.75646510E+001 -1.19545753E+001 + 7.00000000E+001 2.80000000E+002 1.14121365E+000 -8.13604710E-002 -1.43873205E-001 1.81173781E-001 -1.66091499E+001 -3.04930669E+001 -1.64351050E+001 + 7.50000000E+001 2.80000000E+002 7.31607562E-001 -7.62592745E-001 9.00266912E-002 1.51029851E-001 -1.72987634E+001 -3.28768396E+001 -1.71801772E+001 + 8.00000000E+001 2.80000000E+002 -1.84293180E-001 -1.35700470E+000 1.53038002E-001 -2.69068102E-002 -1.50475083E+001 -3.39503057E+001 -1.49919532E+001 + 8.50000000E+001 2.80000000E+002 -1.50868832E+000 -7.74596357E-001 4.39414727E-002 -1.33497674E-001 -1.31904068E+001 -3.48222902E+001 -1.31606827E+001 + 9.00000000E+001 2.80000000E+002 -1.46561414E+000 8.89119648E-001 -7.05533331E-002 -8.62719408E-002 -1.30971635E+001 -3.68370740E+001 -1.30788455E+001 + 9.50000000E+001 2.80000000E+002 2.48681891E-001 1.35706646E+000 -6.78934941E-002 1.29102415E-002 -1.49830419E+001 -4.09876811E+001 -1.49721582E+001 + 1.00000000E+002 2.80000000E+002 1.13983417E+000 -2.54294496E-001 7.62108376E-003 3.31504769E-002 -1.64307211E+001 -4.71450419E+001 -1.64270383E+001 + 1.05000000E+002 2.80000000E+002 -2.69355668E-001 -1.49118815E+000 3.54319084E-002 -2.34580882E-002 -1.41684201E+001 -4.52120461E+001 -1.41650062E+001 + 1.10000000E+002 2.80000000E+002 -1.75327227E+000 -3.58645225E-001 -9.06288845E-003 -5.48874397E-002 -1.27234935E+001 -4.28722274E+001 -1.27192988E+001 + 1.15000000E+002 2.80000000E+002 -9.09578879E-001 1.27080927E+000 -4.45578589E-002 -2.22799592E-002 -1.39005348E+001 -4.38308403E+001 -1.38961238E+001 + 1.20000000E+002 2.80000000E+002 8.24599215E-001 7.09692053E-001 -2.75896002E-002 1.31950433E-002 -1.70463595E+001 -4.80690199E+001 -1.70429291E+001 + 1.25000000E+002 2.80000000E+002 6.01463317E-001 -1.09044363E+000 -1.94062054E-003 1.13005790E-002 -1.58728779E+001 -5.65902703E+001 -1.58725097E+001 + 1.30000000E+002 2.80000000E+002 -1.14275640E+000 -1.23780473E+000 6.82508083E-004 3.57143029E-003 -1.32483024E+001 -6.65658864E+001 -1.32482821E+001 + 1.35000000E+002 2.80000000E+002 -1.58682020E+000 3.78848823E-001 5.50480531E-003 1.15324071E-002 -1.35272019E+001 -5.56486639E+001 -1.35269354E+001 + 1.40000000E+002 2.80000000E+002 -4.34528209E-002 1.16050366E+000 2.43509322E-002 1.12546103E-002 -1.64794922E+001 -4.92073893E+001 -1.64771755E+001 + 1.45000000E+002 2.80000000E+002 1.30340410E+000 -1.19314503E-001 2.81338277E-002 -1.05983584E-003 -1.54406844E+001 -4.87877717E+001 -1.54386754E+001 + 1.50000000E+002 2.80000000E+002 8.06106994E-001 -1.85873151E+000 1.17437897E-002 1.67520441E-002 -1.16457020E+001 -5.15610587E+001 -1.16452591E+001 + 1.55000000E+002 2.80000000E+002 -6.72782401E-001 -2.14569597E+000 2.57024091E-002 8.96351725E-002 -1.07398803E+001 -3.83857722E+001 -1.07324189E+001 + 1.60000000E+002 2.80000000E+002 -1.29231551E+000 -9.51456625E-001 1.19751894E-001 1.81774468E-001 -1.36701459E+001 -3.10223297E+001 -1.35909686E+001 + 1.65000000E+002 2.80000000E+002 -3.44808187E-001 4.34968674E-001 2.85043326E-001 2.35224930E-001 -2.28917249E+001 -2.64246211E+001 -2.12981199E+001 + 1.70000000E+002 2.80000000E+002 1.47198438E+000 1.07679932E+000 4.63454165E-001 2.29856191E-001 -1.25589779E+001 -2.35032624E+001 -1.22228973E+001 + 1.75000000E+002 2.80000000E+002 3.05006027E+000 1.05435158E+000 5.94041216E-001 1.95203364E-001 -7.60211236E+000 -2.18568580E+001 -7.44205259E+000 + 1.80000000E+002 2.80000000E+002 3.65175429E+000 9.46015235E-001 6.41387627E-001 1.76169786E-001 -6.24638040E+000 -2.13202195E+001 -6.11341605E+000 + 0.00000000E+000 2.85000000E+002 3.94377986E+001 -2.43273457E+001 -1.06084356E+001 6.44326189E+000 1.55401365E+001 4.09823774E+000 1.58410635E+001 + 5.00000000E+000 2.85000000E+002 3.66635450E+001 -2.43713494E+001 -9.93455125E+000 6.65942177E+000 1.50954301E+001 3.77616539E+000 1.54046759E+001 + 1.00000000E+001 2.85000000E+002 2.92710029E+001 -2.37787500E+001 -8.01426228E+000 7.08616393E+000 1.37511625E+001 2.80735192E+000 1.40872785E+001 + 1.50000000E+001 2.85000000E+002 1.99154866E+001 -2.12584672E+001 -5.22382613E+000 7.17615535E+000 1.15082625E+001 1.18595955E+000 1.18938577E+001 + 2.00000000E+001 2.85000000E+002 1.20133437E+001 -1.67439393E+001 -2.25515136E+000 6.44408270E+000 8.50211037E+000 -1.09353803E+000 8.95439220E+000 + 2.50000000E+001 2.85000000E+002 7.62774352E+000 -1.22926939E+001 7.47744763E-002 4.87314424E+000 5.42903577E+000 -4.02129927E+000 5.89590805E+000 + 3.00000000E+001 2.85000000E+002 5.60137830E+000 -1.04116889E+001 1.27053204E+000 2.99921571E+000 3.67590315E+000 -7.52153877E+000 3.99363212E+000 + 3.50000000E+001 2.85000000E+002 2.62087336E+000 -1.08882443E+001 1.48562373E+000 1.49227033E+000 3.20525932E+000 -1.13106005E+001 3.35613960E+000 + 4.00000000E+001 2.85000000E+002 -2.67750841E+000 -1.02126319E+001 1.29876480E+000 5.87852491E-001 2.69295227E+000 -1.46984994E+001 2.77142336E+000 + 4.50000000E+001 2.85000000E+002 -7.30060150E+000 -5.65556494E+000 1.09639778E+000 1.65653785E-002 1.53017867E+000 -1.69781528E+001 1.59097923E+000 + 5.00000000E+001 2.85000000E+002 -7.33663887E+000 6.95184549E-001 7.97445476E-001 -4.76049945E-001 -4.29744825E-001 -1.84207003E+001 -3.61312287E-001 + 5.50000000E+001 2.85000000E+002 -3.29029384E+000 4.14535521E+000 2.55269701E-001 -7.48913419E-001 -3.30537537E+000 -1.98125283E+001 -3.20937779E+000 + 6.00000000E+001 2.85000000E+002 4.97316923E-001 3.31820650E+000 -3.02861528E-001 -5.64794175E-001 -7.26396457E+000 -2.16430742E+001 -7.10834326E+000 + 6.50000000E+001 2.85000000E+002 1.52314791E+000 1.11751889E+000 -4.78226014E-001 -7.34113433E-002 -1.22532508E+001 -2.40846905E+001 -1.19773381E+001 + 7.00000000E+001 2.85000000E+002 1.11801545E+000 -7.98611821E-002 -2.15574354E-001 2.73881232E-001 -1.67874477E+001 -2.69333436E+001 -1.63865834E+001 + 7.50000000E+001 2.85000000E+002 7.16692123E-001 -7.48073472E-001 1.32534198E-001 2.28967864E-001 -1.74714514E+001 -2.93280480E+001 -1.71970831E+001 + 8.00000000E+001 2.85000000E+002 -1.82015362E-001 -1.33096141E+000 2.26676294E-001 -3.53263366E-002 -1.52147267E+001 -3.05661657E+001 -1.50898783E+001 + 8.50000000E+001 2.85000000E+002 -1.48084815E+000 -7.58806722E-001 6.53830303E-002 -1.93838486E-001 -1.33557497E+001 -3.15617289E+001 -1.32905982E+001 + 9.00000000E+001 2.85000000E+002 -1.43734507E+000 8.73181774E-001 -1.04146310E-001 -1.24320154E-001 -1.32630875E+001 -3.35786267E+001 -1.32228882E+001 + 9.50000000E+001 2.85000000E+002 2.44676338E-001 1.33084460E+000 -1.00233814E-001 2.24603067E-002 -1.51515907E+001 -3.75454544E+001 -1.51266362E+001 + 1.00000000E+002 2.85000000E+002 1.11753553E+000 -2.50598763E-001 1.18577946E-002 5.26717598E-002 -1.66002102E+001 -4.31322382E+001 -1.65905697E+001 + 1.05000000E+002 2.85000000E+002 -2.65987381E-001 -1.46280583E+000 5.39670212E-002 -3.09720950E-002 -1.43335032E+001 -4.18994787E+001 -1.43259033E+001 + 1.10000000E+002 2.85000000E+002 -1.72092365E+000 -3.50315236E-001 -1.04972588E-002 -7.81245210E-002 -1.28869423E+001 -3.98450508E+001 -1.28782018E+001 + 1.15000000E+002 2.85000000E+002 -8.91682497E-001 1.24799207E+000 -6.20766009E-002 -3.15643688E-002 -1.40630595E+001 -4.09212564E+001 -1.40541158E+001 + 1.20000000E+002 2.85000000E+002 8.09924247E-001 6.96210170E-001 -3.72923273E-002 1.89325368E-002 -1.72068463E+001 -4.53502150E+001 -1.72001918E+001 + 1.25000000E+002 2.85000000E+002 5.90185747E-001 -1.07037816E+000 -6.36212755E-004 1.50381253E-002 -1.60349178E+001 -5.42268667E+001 -1.60342593E+001 + 1.30000000E+002 2.85000000E+002 -1.12149361E+000 -1.21452856E+000 2.19486632E-003 3.67179090E-003 -1.34123847E+001 -6.51541179E+001 -1.34123556E+001 + 1.35000000E+002 2.85000000E+002 -1.55689926E+000 3.71811710E-001 9.15398717E-003 1.57673181E-002 -1.36924119E+001 -5.25618472E+001 -1.36918485E+001 + 1.40000000E+002 2.85000000E+002 -4.25513761E-002 1.13839336E+000 3.71779377E-002 1.52216854E-002 -1.66465964E+001 -4.56997441E+001 -1.66411988E+001 + 1.45000000E+002 2.85000000E+002 1.27851870E+000 -1.17471245E-001 4.26189104E-002 -3.20451785E-003 -1.56078557E+001 -4.51619763E+001 -1.56030459E+001 + 1.50000000E+002 2.85000000E+002 7.90273639E-001 -1.82380748E+000 1.82553241E-002 2.35014555E-002 -1.18116498E+001 -4.83062522E+001 -1.18106764E+001 + 1.55000000E+002 2.85000000E+002 -6.60612798E-001 -2.10504090E+000 3.96136103E-002 1.32076982E-001 -1.09053524E+001 -3.49878710E+001 -1.08884213E+001 + 1.60000000E+002 2.85000000E+002 -1.26815260E+000 -9.33411272E-001 1.80465371E-001 2.68751189E-001 -1.38349226E+001 -2.75751034E+001 -1.36551406E+001 + 1.65000000E+002 2.85000000E+002 -3.38430899E-001 4.26408610E-001 4.27118675E-001 3.47326876E-001 -2.30603144E+001 -2.29631302E+001 -2.00011505E+001 + 1.70000000E+002 2.85000000E+002 1.44384910E+000 1.05564350E+000 6.92824918E-001 3.38319393E-001 -1.27282513E+001 -2.00372340E+001 -1.19880491E+001 + 1.75000000E+002 2.85000000E+002 2.99180394E+000 1.03335107E+000 8.87015761E-001 2.86172594E-001 -7.77039099E+000 -1.83898502E+001 -7.40926641E+000 + 1.80000000E+002 2.85000000E+002 3.58195765E+000 9.27061152E-001 9.57218310E-001 2.57950067E-001 -6.41451598E+000 -1.78538328E+001 -6.11341605E+000 + 0.00000000E+000 2.90000000E+002 3.83631397E+001 -2.36732055E+001 -1.40052979E+001 8.53901122E+000 1.53010531E+001 6.52003415E+000 1.58410635E+001 + 5.00000000E+000 2.90000000E+002 3.56641355E+001 -2.37161114E+001 -1.31138309E+001 8.82461932E+000 1.48563967E+001 6.19822513E+000 1.54109515E+001 + 1.00000000E+001 2.90000000E+002 2.84725585E+001 -2.31385292E+001 -1.05745086E+001 9.38541852E+000 1.35121957E+001 5.22975809E+000 1.41135442E+001 + 1.50000000E+001 2.90000000E+002 1.93718240E+001 -2.06851658E+001 -6.88571845E+000 9.49859854E+000 1.12694253E+001 3.60882899E+000 1.19563744E+001 + 2.00000000E+001 2.90000000E+002 1.16853065E+001 -1.62922125E+001 -2.96319190E+000 8.52413020E+000 8.26356533E+000 1.32994009E+000 9.06477402E+000 + 2.50000000E+001 2.90000000E+002 7.41932077E+000 -1.19616913E+001 1.12862463E-001 6.44172288E+000 5.19095988E+000 -1.59713328E+000 6.01703014E+000 + 3.00000000E+001 2.90000000E+002 5.44730758E+000 -1.01316497E+001 1.68852021E+000 3.96113279E+000 3.43786231E+000 -5.09701770E+000 4.00738254E+000 + 3.50000000E+001 2.90000000E+002 2.54659278E+000 -1.05938557E+001 1.96811870E+000 1.96808276E+000 2.96654585E+000 -8.88726058E+000 3.24108507E+000 + 4.00000000E+001 2.90000000E+002 -2.60757192E+000 -9.93401182E+000 1.71741640E+000 7.73098331E-001 2.45335983E+000 -1.22796501E+001 2.59700182E+000 + 4.50000000E+001 2.90000000E+002 -7.10249756E+000 -5.49921743E+000 1.44723201E+000 1.94169580E-002 1.28952137E+000 -1.45669621E+001 1.40083755E+000 + 5.00000000E+001 2.90000000E+002 -7.13477936E+000 6.77530529E-001 1.05051580E+000 -6.29510432E-001 -6.71908122E-001 -1.60179800E+001 -5.46907520E-001 + 5.50000000E+001 2.90000000E+002 -3.19830795E+000 4.03082544E+000 3.33905486E-001 -9.87807896E-001 -3.54986393E+000 -1.74151836E+001 -3.37508697E+000 + 6.00000000E+001 2.90000000E+002 4.83850051E-001 3.22465827E+000 -4.02467973E-001 -7.43132089E-001 -7.51214006E+000 -1.92401518E+001 -7.22978921E+000 + 6.50000000E+001 2.90000000E+002 1.47962566E+000 1.08495032E+000 -6.33006741E-001 -9.38596031E-002 -1.25068378E+001 -2.16558920E+001 -1.20082832E+001 + 7.00000000E+001 2.90000000E+002 1.08532712E+000 -7.81526119E-002 -2.85737264E-001 3.64523285E-001 -1.70448330E+001 -2.44637682E+001 -1.63216780E+001 + 7.50000000E+001 2.90000000E+002 6.95491589E-001 -7.27525183E-001 1.73976264E-001 3.05323030E-001 -1.77224063E+001 -2.68621928E+001 -1.72228457E+001 + 8.00000000E+001 2.90000000E+002 -1.78607676E-001 -1.29420116E+000 2.98745390E-001 -4.33048332E-002 -1.54565347E+001 -2.81821737E+001 -1.52306549E+001 + 8.50000000E+001 2.90000000E+002 -1.44160994E+000 -7.36891883E-001 8.66130134E-002 -2.52782010E-001 -1.35934244E+001 -2.92414909E+001 -1.34767088E+001 + 9.00000000E+001 2.90000000E+002 -1.39799595E+000 8.50696990E-001 -1.36861120E-001 -1.61775289E-001 -1.35002747E+001 -3.12558298E+001 -1.34280620E+001 + 9.50000000E+001 2.90000000E+002 2.38899285E-001 1.29453938E+000 -1.32102297E-001 3.15434259E-002 -1.53907593E+001 -3.51194839E+001 -1.53447749E+001 + 1.00000000E+002 2.90000000E+002 1.08686137E+000 -2.45001959E-001 1.55800130E-002 7.18771330E-002 -1.68397618E+001 -4.04472898E+001 -1.68208781E+001 + 1.05000000E+002 2.90000000E+002 -2.60501811E-001 -1.42341836E+000 7.19432178E-002 -3.78611058E-002 -1.45687796E+001 -3.95769590E+001 -1.45550934E+001 + 1.10000000E+002 2.90000000E+002 -1.67551877E+000 -3.39456217E-001 -1.16089213E-002 -1.00466081E-001 -1.31208226E+001 -3.76805147E+001 -1.31056501E+001 + 1.15000000E+002 2.90000000E+002 -8.67064148E-001 1.21565170E+000 -7.87690445E-002 -4.06598057E-002 -1.42962193E+001 -3.88255071E+001 -1.42809404E+001 + 1.20000000E+002 2.90000000E+002 7.89127333E-001 6.77416887E-001 -4.65715527E-002 2.42422445E-002 -1.74377776E+001 -4.33747759E+001 -1.74267233E+001 + 1.25000000E+002 2.90000000E+002 5.74474992E-001 -1.04230305E+000 5.71896243E-004 1.84441249E-002 -1.62665951E+001 -5.24571725E+001 -1.62655512E+001 + 1.30000000E+002 2.90000000E+002 -1.09176774E+000 -1.18219728E+000 3.57152105E-003 3.71500102E-003 -1.36462687E+001 -6.35367176E+001 -1.36462241E+001 + 1.35000000E+002 2.90000000E+002 -1.51529064E+000 3.61856688E-001 1.27627365E-002 1.99029986E-002 -1.39277269E+001 -5.03042584E+001 -1.39267268E+001 + 1.40000000E+002 2.90000000E+002 -4.14334354E-002 1.10762319E+000 4.98419853E-002 1.89631506E-002 -1.68845932E+001 -4.32394789E+001 -1.68745519E+001 + 1.45000000E+002 2.90000000E+002 1.24387232E+000 -1.14763338E-001 5.68223620E-002 -5.58613961E-003 -1.58461782E+001 -4.26463499E+001 -1.58371144E+001 + 1.50000000E+002 2.90000000E+002 7.68371946E-001 -1.77511444E+000 2.45067284E-002 2.97815043E-002 -1.20481345E+001 -4.60538855E+001 -1.20464082E+001 + 1.55000000E+002 2.90000000E+002 -6.43556136E-001 -2.04848839E+000 5.29898269E-002 1.73314688E-001 -1.11410558E+001 -3.26136950E+001 -1.11102254E+001 + 1.60000000E+002 2.90000000E+002 -1.23452343E+000 -9.08322091E-001 2.39569510E-001 3.53602082E-001 -1.40694972E+001 -2.51675924E+001 -1.37446846E+001 + 1.65000000E+002 2.90000000E+002 -3.29627131E-001 4.14607550E-001 5.65780601E-001 4.56775314E-001 -2.32983506E+001 -2.05459919E+001 -1.86973856E+001 + 1.70000000E+002 2.90000000E+002 1.40465161E+000 1.02647598E+000 9.16846141E-001 4.44211474E-001 -1.29688146E+001 -1.76168235E+001 -1.16882971E+001 + 1.75000000E+002 2.90000000E+002 2.91076414E+000 1.00449483E+000 1.17322159E+000 3.74959420E-001 -8.00971005E+000 -1.59685268E+001 -7.36513244E+000 + 1.80000000E+002 2.90000000E+002 3.48490014E+000 9.01051575E-001 1.26576398E+000 3.37767193E-001 -6.65365582E+000 -1.54327138E+001 -6.11341605E+000 + 0.00000000E+000 2.95000000E+002 3.69965143E+001 -2.28388980E+001 -1.72955715E+001 1.05697735E+001 1.49869321E+001 8.35839891E+000 1.58410635E+001 + 5.00000000E+000 2.95000000E+002 3.43932669E+001 -2.28803624E+001 -1.61932938E+001 1.09226668E+001 1.45423213E+001 8.03675049E+000 1.54186632E+001 + 1.00000000E+001 2.95000000E+002 2.74574094E+001 -2.23221037E+001 -1.30543250E+001 1.16131700E+001 1.31981802E+001 7.06849249E+000 1.41456809E+001 + 1.50000000E+001 2.95000000E+002 1.86808318E+001 -1.99542377E+001 -8.49543115E+000 1.17485787E+001 1.09555424E+001 5.44785014E+000 1.20321847E+001 + 2.00000000E+001 2.95000000E+002 1.12686242E+001 -1.57163012E+001 -3.64918248E+000 1.05391606E+001 7.95002342E+000 3.16936305E+000 9.19705076E+000 + 2.50000000E+001 2.95000000E+002 7.15486206E+000 -1.15396391E+001 1.49356121E-001 7.96140420E+000 4.87804981E+000 2.42814667E-001 6.16183274E+000 + 3.00000000E+001 2.95000000E+002 5.25215860E+000 -9.77475534E+000 2.09296271E+000 4.89348257E+000 3.12516750E+000 -3.25655259E+000 4.02440592E+000 + 3.50000000E+001 2.95000000E+002 2.45304433E+000 -1.02192349E+001 2.43536553E+000 2.42983705E+000 2.65315760E+000 -7.04678277E+000 3.09523559E+000 + 4.00000000E+001 2.95000000E+002 -2.51794738E+000 -9.58003006E+000 2.12332677E+000 9.53293303E-001 2.13893717E+000 -1.04406904E+001 2.37233636E+000 + 4.50000000E+001 2.95000000E+002 -6.85047179E+000 -5.30093807E+000 1.78771534E+000 2.24373599E-002 9.73779281E-001 -1.27318556E+001 1.15496748E+000 + 5.00000000E+001 2.95000000E+002 -6.87839015E+000 6.54903718E-001 1.29607134E+000 -7.78407457E-001 -9.89578235E-001 -1.41882784E+001 -7.86473760E-001 + 5.50000000E+001 2.95000000E+002 -3.08144376E+000 3.88543075E+000 4.10000559E-001 -1.21955283E+000 -3.87059184E+000 -1.55894524E+001 -3.58766439E+000 + 6.00000000E+001 2.95000000E+002 4.67010184E-001 3.10581712E+000 -4.99319477E-001 -9.15896563E-001 -7.83788894E+000 -1.74114738E+001 -7.38341998E+000 + 6.50000000E+001 2.95000000E+002 1.42445211E+000 1.04326261E+000 -7.83183029E-001 -1.13326181E-001 -1.28404971E+001 -1.98112482E+001 -1.20455207E+001 + 7.00000000E+001 2.95000000E+002 1.04350365E+000 -7.61457101E-002 -3.53614313E-001 4.52731538E-001 -1.73855636E+001 -2.25932501E+001 -1.62412515E+001 + 7.50000000E+001 2.95000000E+002 6.68344191E-001 -7.01079319E-001 2.14428329E-001 3.79464504E-001 -1.80555704E+001 -2.49915923E+001 -1.72547654E+001 + 8.00000000E+001 2.95000000E+002 -1.73946514E-001 -1.24713510E+000 3.68814612E-001 -5.11511040E-002 -1.57765614E+001 -2.63596010E+001 -1.54125197E+001 + 8.50000000E+001 2.95000000E+002 -1.39130952E+000 -7.09217073E-001 1.07183054E-001 -3.10129461E-001 -1.39068679E+001 -2.74576208E+001 -1.37192415E+001 + 9.00000000E+001 2.95000000E+002 -1.34805945E+000 8.21789322E-001 -1.68791611E-001 -1.98188396E-001 -1.38119777E+001 -2.94681803E+001 -1.36954776E+001 + 9.50000000E+001 2.95000000E+002 2.31276971E-001 1.24858351E+000 -1.63254207E-001 4.04731916E-002 -1.57036449E+001 -3.32621751E+001 -1.56281097E+001 + 1.00000000E+002 2.95000000E+002 1.04813057E+000 -2.37384088E-001 1.90959962E-002 9.07926415E-002 -1.71529545E+001 -3.84295042E+001 -1.71207056E+001 + 1.05000000E+002 2.95000000E+002 -2.52785136E-001 -1.37333092E+000 8.95215439E-002 -4.42745119E-002 -1.48782987E+001 -3.77896656E+001 -1.48561402E+001 + 1.10000000E+002 2.95000000E+002 -1.61736374E+000 -3.26263747E-001 -1.24186898E-002 -1.22070712E-001 -1.34291256E+001 -3.60015602E+001 -1.34051735E+001 + 1.15000000E+002 2.95000000E+002 -8.35991628E-001 1.17398434E+000 -9.47801873E-002 -4.96160127E-002 -1.46038885E+001 -3.71923366E+001 -1.45800244E+001 + 1.20000000E+002 2.95000000E+002 7.62303425E-001 6.53520155E-001 -5.55716153E-002 2.92466649E-002 -1.77430611E+001 -4.18196094E+001 -1.77261068E+001 + 1.25000000E+002 2.95000000E+002 5.54486205E-001 -1.00634663E+000 1.69628650E-003 2.17425818E-002 -1.65721475E+001 -5.10059310E+001 -1.65705832E+001 + 1.30000000E+002 2.95000000E+002 -1.05372053E+000 -1.14104482E+000 4.99985198E-003 3.82780449E-003 -1.39541754E+001 -6.17960086E+001 -1.39541040E+001 + 1.35000000E+002 2.95000000E+002 -1.46226748E+000 3.49007987E-001 1.65141919E-002 2.38596010E-002 -1.42373597E+001 -4.85253907E+001 -1.42357420E+001 + 1.40000000E+002 2.95000000E+002 -4.01282712E-002 1.06838582E+000 6.23646054E-002 2.22993987E-002 -1.71978223E+001 -4.13572195E+001 -1.71811877E+001 + 1.45000000E+002 2.95000000E+002 1.19969095E+000 -1.11197658E-001 7.06493470E-002 -8.34990563E-003 -1.61599677E+001 -4.07360997E+001 -1.61448525E+001 + 1.50000000E+002 2.95000000E+002 7.40565063E-001 -1.71297054E+000 3.03957223E-002 3.54210247E-002 -1.23593405E+001 -4.43968338E+001 -1.23566247E+001 + 1.55000000E+002 2.95000000E+002 -6.21703459E-001 -1.97641964E+000 6.56499683E-002 2.12964543E-001 -1.14511512E+001 -3.08181062E+001 -1.14011951E+001 + 1.60000000E+002 2.95000000E+002 -1.19162895E+000 -8.76357071E-001 2.96543066E-001 4.35655067E-001 -1.43780710E+001 -2.33422301E+001 -1.38590793E+001 + 1.65000000E+002 2.95000000E+002 -3.18420211E-001 3.99657358E-001 6.99926581E-001 5.62734945E-001 -2.36101483E+001 -1.87120980E+001 -1.74940745E+001 + 1.70000000E+002 2.95000000E+002 1.35471217E+000 9.89515562E-001 1.13379102E+000 5.46730449E-001 -1.32846702E+001 -1.57798689E+001 -1.13451822E+001 + 1.75000000E+002 2.95000000E+002 2.80756279E+000 9.68002320E-001 1.45047550E+000 4.60889732E-001 -8.32409820E+000 -1.41305617E+001 -7.31131778E+000 + 1.80000000E+002 2.95000000E+002 3.36132044E+000 8.68184451E-001 1.56467643E+000 4.15013706E-001 -6.96783670E+000 -1.35947503E+001 -6.11341605E+000 + 0.00000000E+000 3.00000000E+002 3.53483230E+001 -2.18307726E+001 -2.04542153E+001 1.25200934E+001 1.45921187E+001 9.81913558E+000 1.58410635E+001 + 5.00000000E+000 3.00000000E+002 3.28606130E+001 -2.18704662E+001 -1.91494967E+001 1.29375816E+001 1.41475499E+001 9.49759065E+000 1.54275695E+001 + 1.00000000E+001 3.00000000E+002 2.62332632E+001 -2.13357172E+001 -1.54348399E+001 1.37524185E+001 1.28034632E+001 8.52946523E+000 1.41825920E+001 + 1.50000000E+001 3.00000000E+002 1.78477010E+001 -1.90712968E+001 -1.00407486E+001 1.39088956E+001 1.05609589E+001 6.90901207E+000 1.21183436E+001 + 2.00000000E+001 3.00000000E+002 1.07663372E+001 -1.50206160E+001 -4.30799989E+000 1.24737579E+001 7.55581876E+000 4.63081508E+000 9.34534998E+000 + 2.50000000E+001 3.00000000E+002 6.83622470E+000 -1.10296965E+001 1.83814544E-001 9.42059468E+000 4.48460887E+000 1.70471251E+000 6.32368872E+000 + 3.00000000E+001 3.00000000E+002 5.01732369E+000 -9.34358227E+000 2.48060422E+000 5.78925259E+000 2.73209422E+000 -1.79401166E+000 4.04406728E+000 + 3.50000000E+001 3.00000000E+002 2.34097382E+000 -9.76708967E+000 2.88372084E+000 2.87421366E+000 2.25938012E+000 -5.58346069E+000 2.92013967E+000 + 4.00000000E+001 3.00000000E+002 -2.40920212E+000 -9.15335091E+000 2.51349374E+000 1.12726526E+000 1.74399568E+000 -8.97701757E+000 2.09710400E+000 + 4.50000000E+001 3.00000000E+002 -6.54638902E+000 -5.06234304E+000 2.11546751E+000 2.56413207E-002 5.77290740E-001 -1.12697418E+001 8.52245224E-001 + 5.00000000E+001 3.00000000E+002 -6.56953552E+000 6.27355040E-001 1.53237127E+000 -9.21785571E-001 -1.38838892E+000 -1.27299256E+001 -1.08067024E+000 + 5.50000000E+001 3.00000000E+002 -2.94081714E+000 3.71031065E+000 4.82846540E-001 -1.44259088E+000 -4.27315625E+000 -1.41344808E+001 -3.84643795E+000 + 6.00000000E+001 3.00000000E+002 4.46770179E-001 2.96282875E+000 -5.92958386E-001 -1.08173187E+000 -8.24673140E+000 -1.59550925E+001 -7.56673755E+000 + 6.50000000E+001 3.00000000E+002 1.35812794E+000 9.93090200E-001 -9.27708373E-001 -1.31359039E-001 -1.32595077E+001 -1.83440663E+001 -1.20863629E+001 + 7.00000000E+001 3.00000000E+002 9.93163983E-001 -7.36954868E-002 -4.18444754E-001 5.38070967E-001 -1.78142409E+001 -2.11075618E+001 -1.61456344E+001 + 7.50000000E+001 3.00000000E+002 6.35756111E-001 -6.69057010E-001 2.53904547E-001 4.50706941E-001 -1.84750128E+001 -2.35035767E+001 -1.72885477E+001 + 8.00000000E+001 3.00000000E+002 -1.67995591E-001 -1.19039011E+000 4.36368703E-001 -5.91457893E-002 -1.61790738E+001 -2.49023735E+001 -1.56322749E+001 + 8.50000000E+001 3.00000000E+002 -1.33047792E+000 -6.76156804E-001 1.26631165E-001 -3.65594257E-001 -1.43006037E+001 -2.60264453E+001 -1.40181163E+001 + 9.00000000E+001 3.00000000E+002 -1.28807712E+000 7.86712502E-001 -1.99959511E-001 -2.33065807E-001 -1.42028569E+001 -2.80332300E+001 -1.40266961E+001 + 9.50000000E+001 3.00000000E+002 2.21829545E-001 1.19343373E+000 -1.93380035E-001 4.95104727E-002 -1.60950279E+001 -3.17745371E+001 -1.59791432E+001 + 1.00000000E+002 3.00000000E+002 1.00167326E+000 -2.27750961E-001 2.26835070E-002 1.09360139E-001 -1.75450776E+001 -3.68183864E+001 -1.74940389E+001 + 1.05000000E+002 3.00000000E+002 -2.42881210E-001 -1.31291974E+000 1.06762062E-001 -5.03695903E-002 -1.52676037E+001 -3.63373645E+001 -1.52337882E+001 + 1.10000000E+002 3.00000000E+002 -1.54691447E+000 -3.10819090E-001 -1.30114989E-002 -1.43005177E-001 -1.38172934E+001 -3.46356668E+001 -1.37814710E+001 + 1.15000000E+002 3.00000000E+002 -7.98701346E-001 1.12335249E+000 -1.10214858E-001 -5.83746509E-002 -1.49913261E+001 -3.58598306E+001 -1.49559131E+001 + 1.20000000E+002 3.00000000E+002 7.29688011E-001 6.24744560E-001 -6.43324967E-002 3.40988276E-002 -1.81276648E+001 -4.05346011E+001 -1.81027850E+001 + 1.25000000E+002 3.00000000E+002 5.30419560E-001 -9.62768055E-001 2.82499819E-003 2.51009199E-002 -1.69568770E+001 -4.97300497E+001 -1.69545843E+001 + 1.30000000E+002 3.00000000E+002 -1.00760556E+000 -1.09140250E+000 6.66548307E-003 4.05995801E-003 -1.43416086E+001 -5.99314838E+001 -1.43414887E+001 + 1.35000000E+002 3.00000000E+002 -1.39823362E+000 3.33334867E-001 2.05392453E-002 2.75237983E-002 -1.46268477E+001 -4.70618218E+001 -1.46243694E+001 + 1.40000000E+002 3.00000000E+002 -3.86779714E-002 1.02097867E+000 7.47188197E-002 2.50709723E-002 -1.75919453E+001 -3.98465731E+001 -1.75661802E+001 + 1.45000000E+002 3.00000000E+002 1.14628351E+000 -1.06756226E-001 8.39896577E-002 -1.15955481E-002 -1.65551593E+001 -3.92119917E+001 -1.65316670E+001 + 1.50000000E+002 3.00000000E+002 7.07077777E-001 -1.63777751E+000 3.58346782E-002 4.02925961E-002 -1.27511311E+001 -4.31431343E+001 -1.27471648E+001 + 1.55000000E+002 3.00000000E+002 -5.95165896E-001 -1.88932376E+000 7.74440025E-002 2.50676788E-001 -1.18414752E+001 -2.94003239E+001 -1.17659456E+001 + 1.60000000E+002 3.00000000E+002 -1.13972663E+000 -8.37732213E-001 3.50905242E-001 5.14266024E-001 -1.47665308E+001 -2.18946241E+001 -1.39974798E+001 + 1.65000000E+002 3.00000000E+002 -3.04842050E-001 3.81674374E-001 8.28504247E-001 6.64396241E-001 -2.40017297E+001 -1.72560257E+001 -1.64225833E+001 + 1.70000000E+002 3.00000000E+002 1.29443761E+000 9.45039602E-001 1.34199377E+000 6.45098246E-001 -1.36814262E+001 -1.43206561E+001 -1.09789909E+001 + 1.75000000E+002 3.00000000E+002 2.68299170E+000 9.24150726E-001 1.71666410E+000 5.43310759E-001 -8.71920018E+000 -1.26702132E+001 -7.24979027E+000 + 1.80000000E+002 3.00000000E+002 3.21215907E+000 8.28709920E-001 1.85168074E+000 4.89101714E-001 -7.36271464E+000 -1.21342823E+001 -6.11341605E+000 + 0.00000000E+000 3.05000000E+002 3.34311096E+001 -2.06565019E+001 -2.34571902E+001 1.43751279E+001 1.41088945E+001 1.10117867E+001 1.58410635E+001 + 5.00000000E+000 3.05000000E+002 3.10778410E+001 -2.06941153E+001 -2.19599339E+001 1.48540165E+001 1.36643657E+001 1.06903080E+001 1.54373926E+001 + 1.00000000E+001 3.05000000E+002 2.48094174E+001 -2.01869157E+001 -1.76979295E+001 1.57868494E+001 1.23203290E+001 9.72226523E+000 1.42230461E+001 + 1.50000000E+001 3.05000000E+002 1.68786974E+001 -1.80431285E+001 -1.15099191E+001 1.59630528E+001 1.00779578E+001 8.10193763E+000 1.22116765E+001 + 2.00000000E+001 3.05000000E+002 1.01821195E+001 -1.42104937E+001 -4.93467125E+000 1.43131357E+001 7.07322104E+000 5.82395814E+000 9.50365487E+000 + 2.50000000E+001 3.05000000E+002 6.46564882E+000 -1.04356944E+001 2.15897522E-001 1.08081472E+001 4.00286563E+000 2.89825059E+000 6.49588325E+000 + 3.00000000E+001 3.05000000E+002 4.74446835E+000 -8.84125089E+000 2.84840180E+000 6.64163552E+000 2.25082575E+000 -5.99746190E-001 4.06563639E+000 + 3.50000000E+001 3.05000000E+002 2.21126566E+000 -9.24067597E+000 3.30971351E+000 3.29789626E+000 1.77739833E+000 -4.38790533E+000 2.71794086E+000 + 4.00000000E+001 3.05000000E+002 -2.28200741E+000 -8.65716317E+000 2.88496324E+000 1.29376337E+000 1.26074675E+000 -7.77988108E+000 1.77119216E+000 + 4.50000000E+001 3.05000000E+002 -6.19245571E+000 -4.78538601E+000 2.42805838E+000 2.90101620E-002 9.23005967E-002 -1.00727046E+001 4.91483368E-001 + 5.00000000E+001 3.05000000E+002 -6.21068674E+000 5.94893487E-001 1.75763344E+000 -1.05862978E+000 -1.87605029E+000 -1.15357146E+001 -1.43005791E+000 + 5.50000000E+001 3.05000000E+002 -2.77781985E+000 3.50679903E+000 5.51793866E-001 -1.65528167E+000 -4.76518484E+000 -1.29434415E+001 -4.15022350E+000 + 6.00000000E+001 3.05000000E+002 4.23047692E-001 2.79710969E+000 -6.82793767E-001 -1.23929875E+000 -8.74609171E+000 -1.47637172E+001 -7.77639653E+000 + 6.50000000E+001 3.05000000E+002 1.28128992E+000 9.35252072E-001 -1.06546980E+000 -1.47655483E-001 -1.37707097E+001 -1.71450681E+001 -1.21277913E+001 + 7.00000000E+001 3.05000000E+002 9.35122633E-001 -7.06618149E-002 -4.79572649E-001 6.19955806E-001 -1.83364081E+001 -1.98944535E+001 -1.60356331E+001 + 7.50000000E+001 3.05000000E+002 5.98313502E-001 -6.31934075E-001 2.92227842E-001 5.18382134E-001 -1.89857143E+001 -2.22870374E+001 -1.73196590E+001 + 8.00000000E+001 3.05000000E+002 -1.60810748E-001 -1.12471932E+000 5.00820980E-001 -6.73922920E-002 -1.66697370E+001 -2.37069209E+001 -1.58858025E+001 + 8.50000000E+001 3.05000000E+002 -1.25977184E+000 -6.38061188E-001 1.44624854E-001 -4.18754363E-001 -1.47809349E+001 -2.48499331E+001 -1.43732355E+001 + 9.00000000E+001 3.05000000E+002 -1.21859678E+000 7.45808578E-001 -2.30211534E-001 -2.65980002E-001 -1.46796332E+001 -2.68533107E+001 -1.44240258E+001 + 9.50000000E+001 3.05000000E+002 2.10650905E-001 1.12953748E+000 -2.22159322E-001 5.87246440E-002 -1.65720152E+001 -3.05518924E+001 -1.64017002E+001 + 1.00000000E+002 3.05000000E+002 9.47813014E-001 -2.16217676E-001 2.64484337E-002 1.27422334E-001 -1.80237312E+001 -3.54904060E+001 -1.79465957E+001 + 1.05000000E+002 3.05000000E+002 -2.30964530E-001 -1.24261785E+000 1.23550184E-001 -5.62025962E-002 -1.57442513E+001 -3.51248139E+001 -1.56944506E+001 + 1.10000000E+002 3.05000000E+002 -1.46474729E+000 -2.93122244E-001 -1.34819053E-002 -1.63139106E-001 -1.42927225E+001 -3.34977863E+001 -1.42408803E+001 + 1.15000000E+002 3.05000000E+002 -7.55417077E-001 1.06423602E+000 -1.25032485E-001 -6.67653749E-002 -1.54657147E+001 -3.47485482E+001 -1.54147872E+001 + 1.20000000E+002 3.05000000E+002 6.91604902E-001 5.91320623E-001 -7.27387639E-002 3.89054288E-002 -1.85983221E+001 -3.94505064E+001 -1.85627763E+001 + 1.25000000E+002 3.05000000E+002 5.02485019E-001 -9.11924107E-001 4.09194503E-003 2.85566834E-002 -1.74278265E+001 -4.85760828E+001 -1.74244938E+001 + 1.30000000E+002 3.05000000E+002 -9.53783820E-001 -1.03365885E+000 8.68952520E-003 4.36607875E-003 -1.48159056E+001 -5.80209505E+001 -1.48156980E+001 + 1.35000000E+002 3.05000000E+002 -1.32369738E+000 3.14968548E-001 2.48726252E-002 3.07755935E-002 -1.51035514E+001 -4.58311867E+001 -1.50998800E+001 + 1.40000000E+002 3.05000000E+002 -3.71160030E-002 9.65797751E-001 8.68184400E-002 2.71751827E-002 -1.80743738E+001 -3.86003378E+001 -1.80360675E+001 + 1.45000000E+002 3.05000000E+002 1.08404840E+000 -1.01409445E-001 9.67264540E-002 -1.53524289E-002 -1.70396936E+001 -3.79595493E+001 -1.70046952E+001 + 1.50000000E+002 3.05000000E+002 6.68193202E-001 -1.55002940E+000 4.07628742E-002 4.43246556E-002 -1.32314708E+001 -4.21838853E+001 -1.32259466E+001 + 1.55000000E+002 3.05000000E+002 -5.64080092E-001 -1.78780062E+000 8.82627882E-002 2.86142097E-001 -1.23199736E+001 -2.82521506E+001 -1.22105567E+001 + 1.60000000E+002 3.05000000E+002 -1.07913500E+000 -7.92711998E-001 4.02224564E-001 5.88824591E-001 -1.52428866E+001 -2.07156060E+001 -1.41585412E+001 + 1.65000000E+002 3.05000000E+002 -2.88937236E-001 3.60798693E-001 9.50522153E-001 7.60981596E-001 -2.44812661E+001 -1.60683099E+001 -1.54836192E+001 + 1.70000000E+002 3.05000000E+002 1.22431621E+000 8.93382401E-001 1.53986349E+000 7.38566447E-001 -1.41667414E+001 -1.31296490E+001 -1.06070114E+001 + 1.75000000E+002 3.05000000E+002 2.53800595E+000 8.73273031E-001 1.96976015E+000 6.21595960E-001 -9.20272174E+000 -1.14779558E+001 -7.18271509E+000 + 1.80000000E+002 3.05000000E+002 3.03855122E+000 7.82928405E-001 2.12459265E+000 5.59467363E-001 -7.84600994E+000 -1.09418261E+001 -6.11341605E+000 + 0.00000000E+000 3.10000000E+002 3.12594653E+001 -1.93250227E+001 -2.62816417E+001 1.61207590E+001 1.35267948E+001 1.20014874E+001 1.58410635E+001 + 5.00000000E+000 3.10000000E+002 2.90585229E+001 -1.93602708E+001 -2.46032092E+001 1.66573763E+001 1.30823061E+001 1.16800478E+001 1.54478282E+001 + 1.00000000E+001 3.10000000E+002 2.31966915E+001 -1.88844864E+001 -1.98263564E+001 1.77009595E+001 1.17383175E+001 1.07120514E+001 1.42657283E+001 + 1.50000000E+001 3.10000000E+002 1.57811222E+001 -1.68776323E+001 -1.28917431E+001 1.78953865E+001 9.49607831E+000 9.09180276E+000 1.23089429E+001 + 2.00000000E+001 3.10000000E+002 9.52026634E+000 -1.32921529E+001 -5.52440871E+000 1.60432534E+001 6.49175553E+000 6.81398615E+000 9.66615865E+000 + 2.50000000E+001 3.10000000E+002 6.04576243E+000 -9.76211313E+000 2.45373948E-001 1.21134465E+001 3.42229752E+000 3.88862916E+000 6.67201945E+000 + 3.00000000E+001 3.10000000E+002 4.43553668E+000 -8.27142698E+000 3.19355332E+000 7.44407551E+000 1.67078327E+000 3.91394819E-001 4.08833152E+000 + 3.50000000E+001 3.10000000E+002 2.06493137E+000 -8.64381127E+000 3.71006733E+000 3.69758614E+000 1.19663213E+000 -3.39518146E+000 2.49156876E+000 + 4.00000000E+001 3.10000000E+002 -2.13717329E+000 -8.09518262E+000 3.23483302E+000 1.45146449E+000 6.78641681E-001 -6.78484539E+000 1.39499263E+000 + 4.50000000E+001 3.10000000E+002 -5.79125776E+000 -4.47232227E+000 2.72300606E+000 3.25147362E-002 -4.91696314E-001 -9.07691564E+000 7.16684557E-002 + 5.00000000E+001 3.10000000E+002 -5.80471487E+000 5.57556112E-001 1.97005928E+000 -1.18783034E+000 -2.46300467E+000 -1.05422475E+001 -1.83484030E+000 + 5.50000000E+001 3.10000000E+002 -2.59404052E+000 3.27646567E+000 6.16311705E-001 -1.85589623E+000 -5.35700174E+000 -1.19531113E+001 -4.49706361E+000 + 6.00000000E+001 3.10000000E+002 3.95796301E-001 2.61029112E+000 -7.68054366E-001 -1.38732894E+000 -9.34600820E+000 -1.37738367E+001 -8.00819612E+000 + 6.50000000E+001 3.10000000E+002 1.19470403E+000 8.70631222E-001 -1.19531205E+000 -1.62135732E-001 -1.43833637E+001 -1.61497013E+001 -1.21670454E+001 + 7.00000000E+001 3.10000000E+002 8.70273302E-001 -6.69598212E-002 -5.36523706E-001 6.97638371E-001 -1.89597596E+001 -1.88879732E+001 -1.59134181E+001 + 7.50000000E+001 3.10000000E+002 5.56590757E-001 -5.90259590E-001 3.28990808E-001 5.81904380E-001 -1.95949305E+001 -2.12769121E+001 -1.73446983E+001 + 8.00000000E+001 3.10000000E+002 -1.52505340E-001 -1.05090014E+000 5.61559503E-001 -7.57570976E-002 -1.72567676E+001 -2.27122634E+001 -1.61686108E+001 + 8.50000000E+001 3.10000000E+002 -1.17988971E+000 -5.95255729E-001 1.61033274E-001 -4.69071517E-001 -1.53568979E+001 -2.38698656E+001 -1.47846786E+001 + 9.00000000E+001 3.10000000E+002 -1.14016294E+000 6.99451058E-001 -2.59207035E-001 -2.96640286E-001 -1.52519101E+001 -2.58700447E+001 -1.48906798E+001 + 9.50000000E+001 3.10000000E+002 1.97865760E-001 1.05733393E+000 -2.49314113E-001 6.79550242E-002 -1.71447759E+001 -2.95323412E+001 -1.69011139E+001 + 1.00000000E+002 3.10000000E+002 8.86877342E-001 -2.02957259E-001 3.02738182E-002 1.44751011E-001 -1.85995515E+001 -3.43801464E+001 -1.84862984E+001 + 1.05000000E+002 3.10000000E+002 -2.17270484E-001 -1.16291396E+000 1.39602002E-001 -6.16774912E-002 -1.63185442E+001 -3.41062840E+001 -1.62468603E+001 + 1.10000000E+002 3.10000000E+002 -1.37152483E+000 -2.73164725E-001 -1.38875239E-002 -1.82131303E-001 -1.48654861E+001 -3.25456380E+001 -1.47920194E+001 + 1.15000000E+002 3.10000000E+002 -7.06397075E-001 9.97166662E-001 -1.39014011E-001 -7.45416555E-002 -1.60369253E+001 -3.38197669E+001 -1.59651612E+001 + 1.20000000E+002 3.10000000E+002 6.48393880E-001 5.53490524E-001 -8.05318303E-002 4.36795598E-002 -1.91645587E+001 -3.85391901E+001 -1.91146903E+001 + 1.25000000E+002 3.10000000E+002 4.70874341E-001 -8.54215572E-001 5.63465880E-003 3.19989179E-002 -1.79948441E+001 -4.75431835E+001 -1.79900278E+001 + 1.30000000E+002 3.10000000E+002 -8.92700116E-001 -9.68217575E-001 1.10915323E-002 4.62172898E-003 -1.53871176E+001 -5.61833624E+001 -1.53867561E+001 + 1.35000000E+002 3.10000000E+002 -1.23923438E+000 2.94106220E-001 2.94400252E-002 3.35180816E-002 -1.56774622E+001 -4.47895902E+001 -1.56721373E+001 + 1.40000000E+002 3.10000000E+002 -3.54473716E-002 9.03318099E-001 9.85242281E-002 2.85889641E-002 -1.86550103E+001 -3.75565532E+001 -1.85994392E+001 + 1.45000000E+002 3.10000000E+002 1.01347312E+000 -9.51357329E-002 1.08747553E-001 -1.95690028E-002 -1.76241609E+001 -3.69117146E+001 -1.75732884E+001 + 1.50000000E+002 3.10000000E+002 6.24243968E-001 -1.45032212E+000 4.51546834E-002 4.75051329E-002 -1.38110842E+001 -4.14481847E+001 -1.38036077E+001 + 1.55000000E+002 3.10000000E+002 -5.28616137E-001 -1.67256279E+000 9.80431200E-002 3.19094659E-001 -1.28973713E+001 -2.73083355E+001 -1.27428673E+001 + 1.60000000E+002 3.10000000E+002 -1.01023871E+000 -7.41609248E-001 4.50124330E-001 6.58759146E-001 -1.58179436E+001 -1.97400076E+001 -1.43402041E+001 + 1.65000000E+002 3.10000000E+002 -2.70767581E-001 3.37193350E-001 1.06505847E+000 8.51751426E-001 -2.50597556E+001 -1.50837744E+001 -1.46676585E+001 + 1.70000000E+002 3.10000000E+002 1.14491166E+000 8.34933259E-001 1.72589677E+000 8.26422010E-001 -1.47510078E+001 -1.21416877E+001 -1.02429604E+001 + 1.75000000E+002 3.10000000E+002 2.37371614E+000 8.15755648E-001 2.20783811E+000 6.95149766E-001 -9.78511143E+000 -1.04886563E+001 -7.11235294E+000 + 1.80000000E+002 3.10000000E+002 2.84181817E+000 7.31188332E-001 2.38133512E+000 6.25575127E-001 -8.42818954E+000 -9.95227516E+000 -6.11341605E+000 + 0.00000000E+000 3.15000000E+002 2.88499176E+001 -1.78464684E+001 -2.89060740E+001 1.77437013E+001 1.28315451E+001 1.28299819E+001 1.58410635E+001 + 5.00000000E+000 3.15000000E+002 2.68180325E+001 -1.78790940E+001 -2.70591983E+001 1.83339297E+001 1.23871003E+001 1.25085602E+001 1.54585548E+001 + 1.00000000E+001 3.15000000E+002 2.14073466E+001 -1.74383875E+001 -2.18039011E+001 1.94801754E+001 1.10431615E+001 1.15405819E+001 1.43092893E+001 + 1.50000000E+001 3.15000000E+002 1.45632632E+001 -1.55837554E+001 -1.41756605E+001 1.96911850E+001 8.80105401E+000 9.92037522E+000 1.24069760E+001 + 2.00000000E+001 3.15000000E+002 8.78567707E+000 -1.22726429E+001 -6.07264897E+000 1.76509240E+001 5.79714239E+000 7.64267564E+000 9.82751247E+000 + 2.50000000E+001 3.15000000E+002 5.57958366E+000 -9.01405570E+000 2.72118810E-001 1.33264939E+001 2.72857473E+000 4.71762154E+000 6.84628823E+000 + 3.00000000E+001 3.15000000E+002 4.09275410E+000 -7.63831941E+000 3.51351357E+000 8.19032607E+000 9.77577759E-001 1.22113189E+000 4.11136188E+000 + 3.50000000E+001 3.15000000E+002 1.90309427E+000 -7.98088486E+000 4.08172392E+000 4.07004112E+000 5.02694803E-001 -2.56376495E+000 2.24496803E+000 + 4.00000000E+001 3.15000000E+002 -1.97568689E+000 -7.47164653E+000 3.56028221E+000 1.59900116E+000 -1.66661456E-002 -5.95081961E+000 9.69861480E-001 + 4.50000000E+001 3.15000000E+002 -5.34579444E+000 -4.12566084E+000 2.99781802E+000 3.61281266E-002 -1.18899232E+000 -8.24177094E+000 -4.07629536E-001 + 5.00000000E+001 3.15000000E+002 -5.35486841E+000 5.15483241E-001 2.16787769E+000 -1.30819995E+000 -3.16347089E+000 -9.70919450E+000 -2.29443842E+000 + 5.50000000E+001 3.15000000E+002 -2.39117171E+000 3.02114490E+000 6.76004836E-001 -2.04266415E+000 -6.06269952E+000 -1.11232042E+001 -4.88384873E+000 + 6.00000000E+001 3.15000000E+002 3.65088914E-001 2.40414262E+000 -8.47820713E-001 -1.52466556E+000 -1.00602874E+001 -1.29449094E+001 -8.25707680E+000 + 6.50000000E+001 3.15000000E+002 1.09923510E+000 8.00055598E-001 -1.31608962E+000 -1.74929391E-001 -1.51105315E+001 -1.53167422E+001 -1.22021131E+001 + 7.00000000E+001 3.15000000E+002 7.99467266E-001 -6.25855301E-002 -5.89011127E-001 7.70268074E-001 -1.96959592E+001 -1.80460874E+001 -1.57828423E+001 + 7.50000000E+001 3.15000000E+002 5.11082144E-001 -5.44562499E-001 3.63615455E-001 6.40800781E-001 -2.03140857E+001 -2.04317738E+001 -1.73622312E+001 + 8.00000000E+001 3.15000000E+002 -1.43198122E-001 -9.69651916E-001 6.18002895E-001 -8.39166538E-002 -1.79524910E+001 -2.18793506E+001 -1.64761341E+001 + 8.50000000E+001 3.15000000E+002 -1.09150144E+000 -5.48062465E-001 1.75905547E-001 -5.15962514E-001 -1.60415528E+001 -2.30486024E+001 -1.52526271E+001 + 9.00000000E+001 3.15000000E+002 -1.05333012E+000 6.47993872E-001 -2.86490790E-001 -3.24898410E-001 -1.59332950E+001 -2.50453465E+001 -1.54307121E+001 + 9.50000000E+001 3.15000000E+002 1.83583932E-001 9.77274979E-001 -2.74638450E-001 7.68768209E-002 -1.78275566E+001 -2.86756616E+001 -1.74842399E+001 + 1.00000000E+002 3.15000000E+002 8.19220387E-001 -1.88141221E-001 3.38723811E-002 1.61100396E-001 -1.92872675E+001 -3.34487058E+001 -1.91237963E+001 + 1.05000000E+002 3.15000000E+002 -2.02019441E-001 -1.07435503E+000 1.54539444E-001 -6.65701587E-002 -1.70046441E+001 -3.32584907E+001 -1.69029479E+001 + 1.10000000E+002 3.15000000E+002 -1.26796400E+000 -2.51001982E-001 -1.42285649E-002 -1.99507370E-001 -1.55494321E+001 -3.17572945E+001 -1.54466660E+001 + 1.15000000E+002 3.15000000E+002 -6.51978784E-001 9.22670605E-001 -1.51808784E-001 -8.14410297E-002 -1.67186479E+001 -3.30540805E+001 -1.66188227E+001 + 1.20000000E+002 3.15000000E+002 6.00350825E-001 5.11518731E-001 -8.73772092E-002 4.83373415E-002 -1.98400968E+001 -3.77909999E+001 -1.97710352E+001 + 1.25000000E+002 3.15000000E+002 4.35747514E-001 -7.90040219E-001 7.55452348E-003 3.52063555E-002 -1.86720525E+001 -4.66505865E+001 -1.86651408E+001 + 1.30000000E+002 3.15000000E+002 -8.24853372E-001 -8.95470125E-001 1.37883766E-002 4.66540481E-003 -1.60692929E+001 -5.45174981E+001 -1.60686721E+001 + 1.35000000E+002 3.15000000E+002 -1.14545459E+000 2.71001916E-001 3.40777180E-002 3.56998456E-002 -1.63624158E+001 -4.39121445E+001 -1.63547875E+001 + 1.40000000E+002 3.15000000E+002 -3.36374661E-002 8.34068164E-001 1.09663166E-001 2.93715063E-002 -1.93474182E+001 -3.66764174E+001 -1.92678209E+001 + 1.45000000E+002 3.15000000E+002 9.35126760E-001 -8.79410194E-002 1.19955032E-001 -2.41188013E-002 -1.83228577E+001 -3.60260203E+001 -1.82497760E+001 + 1.50000000E+002 3.15000000E+002 5.75600045E-001 -1.33936046E+000 4.90210925E-002 4.98765921E-002 -1.45045051E+001 -4.08847595E+001 -1.44945221E+001 + 1.55000000E+002 3.15000000E+002 -4.88986062E-001 -1.54443540E+000 1.06766850E-001 3.49312281E-001 -1.35882264E+001 -2.65263552E+001 -1.33728694E+001 + 1.60000000E+002 3.15000000E+002 -9.33493353E-001 -6.84784283E-001 4.94284219E-001 7.23541129E-001 -1.65063593E+001 -1.89258638E+001 -1.45394548E+001 + 1.65000000E+002 3.15000000E+002 -2.50416570E-001 3.11043323E-001 1.17126741E+000 9.36010225E-001 -2.57520872E+001 -1.42605778E+001 -1.39629543E+001 + 1.70000000E+002 3.15000000E+002 1.05685650E+000 7.70134062E-001 1.89868896E+000 9.07992933E-001 -1.54484135E+001 -1.13149884E+001 -9.89716064E+000 + 1.75000000E+002 3.15000000E+002 2.19137936E+000 7.52035658E-001 2.42908876E+000 7.63412155E-001 -1.04806237E+001 -9.66056570E+000 -7.04096747E+000 + 1.80000000E+002 3.15000000E+002 2.62345716E+000 6.73883475E-001 2.61995420E+000 6.86921887E-001 -9.12353110E+000 -9.12390093E+000 -6.11341605E+000 + 0.00000000E+000 3.20000000E+002 2.62208046E+001 -1.62320918E+001 -3.13105137E+001 1.92316034E+001 1.20033502E+001 1.35254832E+001 1.58410635E+001 + 5.00000000E+000 3.20000000E+002 2.43734284E+001 -1.62618675E+001 -2.93092029E+001 1.98709138E+001 1.15589585E+001 1.32040617E+001 1.54692442E+001 + 1.00000000E+001 3.20000000E+002 1.94549942E+001 -1.58596687E+001 -2.36154871E+001 2.11109640E+001 1.02150770E+001 1.22360783E+001 1.43523917E+001 + 1.50000000E+001 3.20000000E+002 1.32343391E+001 -1.41714191E+001 -1.53518347E+001 2.13368000E+001 7.97310405E+000 1.06158829E+001 1.25027901E+001 + 2.00000000E+001 3.20000000E+002 7.98383153E+000 -1.11597859E+001 -6.57509689E+000 1.91239153E+001 4.96958999E+000 8.33825925E+000 9.98297043E+000 + 2.50000000E+001 3.20000000E+002 5.07051669E+000 -8.19721356E+000 2.96099883E-001 1.44379897E+001 1.90185817E+000 5.41345377E+000 7.01361233E+000 + 3.00000000E+001 3.20000000E+002 3.71862475E+000 -6.94666849E+000 3.80599956E+000 8.87451770E+000 1.51316018E-001 1.91764129E+000 4.13396452E+000 + 3.50000000E+001 3.20000000E+002 1.72697416E+000 -7.25685391E+000 4.42186723E+000 4.41213534E+000 -3.24294816E-001 -1.86565124E+000 1.98335146E+000 + 4.00000000E+001 3.20000000E+002 -1.79873883E+000 -6.79129500E+000 3.85862548E+000 1.73500490E+000 -8.45006320E-001 -5.25016286E+000 4.98828007E-001 + 4.50000000E+001 3.20000000E+002 -4.85949038E+000 -3.74811744E+000 3.25006758E+000 3.98228433E-002 -2.01935430E+000 -7.54000717E+000 -9.45554428E-001 + 5.00000000E+001 3.20000000E+002 -4.86473693E+000 4.68970870E-001 2.34939603E+000 -1.41853918E+000 -3.99714560E+000 -9.00945281E+000 -2.80678879E+000 + 5.50000000E+001 3.20000000E+002 -2.17093300E+000 2.74293672E+000 7.30584648E-001 -2.21385741E+000 -6.90188091E+000 -1.04265766E+001 -5.30575551E+000 + 6.00000000E+001 3.20000000E+002 3.31164347E-001 2.18049989E+000 -9.21119060E-001 -1.65027765E+000 -1.09083485E+001 -1.22495425E+001 -8.51707630E+000 + 6.50000000E+001 3.20000000E+002 9.95804586E-001 7.24219434E-001 -1.42672463E+000 -1.86289600E-001 -1.59711696E+001 -1.46182854E+001 -1.22319590E+001 + 7.00000000E+001 3.20000000E+002 7.23427548E-001 -5.76131812E-002 -6.36876861E-001 8.36988262E-001 -2.05631484E+001 -1.73403217E+001 -1.56491021E+001 + 7.50000000E+001 3.20000000E+002 4.62173256E-001 -4.95281306E-001 3.95473881E-001 6.94698629E-001 -2.11612536E+001 -1.97234591E+001 -1.73728259E+001 + 8.00000000E+001 3.20000000E+002 -1.32967936E-001 -8.81594897E-001 6.69641619E-001 -9.14754322E-002 -1.87754365E+001 -2.11813634E+001 -1.68035819E+001 + 8.50000000E+001 3.20000000E+002 -9.95211590E-001 -4.96826518E-001 1.89380286E-001 -5.58884777E-001 -1.68538176E+001 -2.23600062E+001 -1.57768451E+001 + 9.00000000E+001 3.20000000E+002 -9.58684426E-001 5.91742070E-001 -3.11605486E-001 -3.50698329E-001 -1.67430883E+001 -2.43525572E+001 -1.60486215E+001 + 9.50000000E+001 3.20000000E+002 1.67868768E-001 8.89848881E-001 -2.97994799E-001 8.51263541E-002 -1.86403104E+001 -2.79536510E+001 -1.81592756E+001 + 1.00000000E+002 3.20000000E+002 7.45240678E-001 -1.71895978E-001 3.69060726E-002 1.76259520E-001 -2.01074540E+001 -3.26691076E+001 -1.98731125E+001 + 1.05000000E+002 3.20000000E+002 -1.85366509E-001 -9.77543751E-001 1.67997455E-001 -7.06083498E-002 -1.78223633E+001 -3.25659903E+001 -1.76790663E+001 + 1.10000000E+002 3.20000000E+002 -1.15481154E+000 -2.26792401E-001 -1.44553096E-002 -2.14789422E-001 -1.63639325E+001 -3.11186232E+001 -1.62209941E+001 + 1.15000000E+002 3.20000000E+002 -5.92596666E-001 8.41237723E-001 -1.63033736E-001 -8.72489682E-002 -1.75301555E+001 -3.24392135E+001 -1.73921302E+001 + 1.20000000E+002 3.20000000E+002 5.47704032E-001 4.65697119E-001 -9.29588232E-002 5.27310813E-002 -2.06448323E+001 -3.72011197E+001 -2.05499029E+001 + 1.25000000E+002 3.20000000E+002 3.97235799E-001 -7.19772869E-001 9.88989555E-003 3.79222603E-002 -1.94798800E+001 -4.59148554E+001 -1.94700219E+001 + 1.30000000E+002 3.20000000E+002 -7.50773560E-001 -8.15792533E-001 1.66242015E-002 4.35051544E-003 -1.68823578E+001 -5.30760040E+001 -1.68813146E+001 + 1.35000000E+002 3.20000000E+002 -1.04298511E+000 2.45947933E-001 3.85750894E-002 3.73238985E-002 -1.71779219E+001 -4.31829072E+001 -1.71670391E+001 + 1.40000000E+002 3.20000000E+002 -3.16132511E-002 7.58606484E-001 1.20053781E-001 2.96472330E-002 -2.01706405E+001 -3.59339014E+001 -2.00569404E+001 + 1.45000000E+002 3.20000000E+002 8.49647247E-001 -7.98720804E-002 1.30270050E-001 -2.88204855E-002 -1.91555232E+001 -3.52740858E+001 -1.90506478E+001 + 1.50000000E+002 3.20000000E+002 5.22656296E-001 -1.21796012E+000 5.24038760E-002 5.15246678E-002 -1.53317870E+001 -4.04537993E+001 -1.53184543E+001 + 1.55000000E+002 3.20000000E+002 -4.45450736E-001 -1.40435351E+000 1.14454220E-001 3.76614247E-001 -1.44126387E+001 -2.58769259E+001 -1.41132069E+001 + 1.60000000E+002 3.20000000E+002 -8.49428746E-001 -6.22643424E-001 5.34438203E-001 7.82688867E-001 -1.73283535E+001 -1.82446505E+001 -1.47520811E+001 + 1.65000000E+002 3.20000000E+002 -2.27993207E-001 2.82554261E-001 1.26838344E+000 1.01311253E+000 -2.65787660E+001 -1.35703818E+001 -1.33583976E+001 + 1.70000000E+002 3.20000000E+002 9.60845096E-001 6.99476361E-001 2.05694405E+000 9.82653805E-001 -1.62786517E+001 -1.06212913E+001 -9.57707207E+000 + 1.75000000E+002 3.20000000E+002 1.99238908E+000 6.82597636E-001 2.63183277E+000 8.25862999E-001 -1.13090285E+001 -8.96546320E+000 -6.97074644E+000 + 1.80000000E+002 3.20000000E+002 2.38513006E+000 6.11449958E-001 2.83863384E+000 7.43040757E-001 -9.95183441E+000 -8.42849987E+000 -6.11341605E+000 + 0.00000000E+000 3.25000000E+002 2.33921355E+001 -1.44941791E+001 -3.34766614E+001 2.05731414E+001 1.10140191E+001 1.41078000E+001 1.58410635E+001 + 5.00000000E+000 3.25000000E+002 2.17433245E+001 -1.45209090E+001 -3.13360932E+001 2.12566308E+001 1.05696975E+001 1.37863639E+001 1.54795714E+001 + 1.00000000E+001 3.25000000E+002 1.73544942E+001 -1.41603835E+001 -2.52472979E+001 2.25809337E+001 9.22589013E+000 1.28183561E+001 1.43937510E+001 + 1.50000000E+001 3.25000000E+002 1.18044337E+001 -1.26514373E+001 -1.64112337E+001 2.28197475E+001 6.98406204E+000 1.11981458E+001 1.25936577E+001 + 2.00000000E+001 3.25000000E+002 7.12075839E+000 -9.96211348E+000 -7.02777145E+000 2.04510412E+001 3.98092600E+000 8.92055991E+000 1.01284503E+001 + 2.50000000E+001 3.25000000E+002 4.52233895E+000 -7.31782540E+000 3.17356810E-001 1.54394119E+001 9.13934517E-001 5.99594264E+000 7.16969129E+000 + 3.00000000E+001 3.25000000E+002 3.31592182E+000 -6.20172009E+000 4.06898790E+000 9.49123078E+000 -8.36258312E-001 2.50069944E+000 4.15543284E+000 + 3.50000000E+001 3.25000000E+002 1.53787591E+000 -6.47721868E+000 4.72794886E+000 4.72093110E+000 -1.31256589E+000 -1.28119791E+000 1.71344638E+000 + 4.00000000E+001 3.25000000E+002 -1.60772646E+000 -6.05933719E+000 4.12738182E+000 1.85815674E+000 -1.83454263E+000 -4.66350557E+000 -1.23392179E-002 + 4.50000000E+001 3.25000000E+002 -4.33617470E+000 -3.34257928E+000 3.47748761E+000 4.35559287E-002 -3.01087924E+000 -6.95251389E+000 -1.53877521E+000 + 5.00000000E+001 3.25000000E+002 -4.33820597E+000 4.18481990E-001 2.51304803E+000 -1.51772814E+000 -4.99207784E+000 -8.42398398E+000 -3.36720320E+000 + 5.50000000E+001 3.25000000E+002 -1.93503161E+000 2.44417690E+000 7.79811199E-001 -2.36788471E+000 -7.90258251E+000 -9.84410718E+000 -5.75544106E+000 + 6.00000000E+001 3.25000000E+002 2.94424136E-001 1.94121600E+000 -9.87038848E-001 -1.76325111E+000 -1.19182574E+001 -1.16683939E+001 -8.78122902E+000 + 6.50000000E+001 3.25000000E+002 8.85350398E-001 6.43664842E-001 -1.52625150E+000 -1.96476761E-001 -1.69933959E+001 -1.40346042E+001 -1.22564543E+001 + 7.00000000E+001 3.25000000E+002 6.42721872E-001 -5.21701786E-002 -6.80001627E-001 8.97029427E-001 -2.15895250E+001 -1.67505214E+001 -1.55179829E+001 + 7.50000000E+001 3.25000000E+002 4.10154226E-001 -4.42737962E-001 4.24012047E-001 7.43282820E-001 -2.21645902E+001 -1.91318802E+001 -1.73784247E+001 + 8.00000000E+001 3.25000000E+002 -1.21831383E-001 -7.87257221E-001 7.16050413E-001 -9.80933387E-002 -1.97533912E+001 -2.05988869E+001 -1.71452961E+001 + 8.50000000E+001 3.25000000E+002 -8.91562992E-001 -4.41936012E-001 2.01577778E-001 -5.97395965E-001 -1.78213128E+001 -2.17849659E+001 -1.63555275E+001 + 9.00000000E+001 3.25000000E+002 -8.56862864E-001 5.30951157E-001 -3.34186188E-001 -3.74000608E-001 -1.77090437E+001 -2.37721453E+001 -1.67484107E+001 + 9.50000000E+001 3.25000000E+002 1.50728752E-001 7.95596979E-001 -3.19282019E-001 9.24210977E-002 -1.96114968E+001 -2.73455655E+001 -1.89352194E+001 + 1.00000000E+002 3.25000000E+002 6.65387525E-001 -1.54287627E-001 3.91132190E-002 1.90080497E-001 -2.10895695E+001 -3.20196532E+001 -2.07524297E+001 + 1.05000000E+002 3.25000000E+002 -1.67390690E-001 -8.73130504E-001 1.79716588E-001 -7.35674750E-002 -1.88001667E+001 -3.20139157E+001 -1.85977487E+001 + 1.10000000E+002 3.25000000E+002 -1.03283255E+000 -2.00792267E-001 -1.44942789E-002 -2.27622450E-001 -1.73367930E+001 -3.06166312E+001 -1.71373628E+001 + 1.15000000E+002 3.25000000E+002 -5.28767663E-001 7.53324506E-001 -1.72380427E-001 -9.18466078E-002 -1.84991958E+001 -3.19634693E+001 -1.83078777E+001 + 1.20000000E+002 3.25000000E+002 4.90632420E-001 4.16342154E-001 -9.70660213E-002 5.66988381E-002 -2.16078641E+001 -3.67622147E+001 -2.14773057E+001 + 1.25000000E+002 3.25000000E+002 3.55459539E-001 -6.43777749E-001 1.26063027E-002 3.99353839E-002 -2.04481299E+001 -4.53388209E+001 -2.04340691E+001 + 1.30000000E+002 3.25000000E+002 -6.71011645E-001 -7.29566500E-001 1.94165985E-002 3.59041869E-003 -1.78550757E+001 -5.18690258E+001 -1.78533527E+001 + 1.35000000E+002 3.25000000E+002 -9.32472883E-001 2.19252319E-001 4.27246718E-002 3.84424749E-002 -1.81520806E+001 -4.25891301E+001 -1.81364743E+001 + 1.40000000E+002 3.25000000E+002 -2.92762309E-002 6.77506844E-001 1.29530009E-001 2.95755302E-002 -2.11521314E+001 -3.53103869E+001 -2.09885426E+001 + 1.45000000E+002 3.25000000E+002 7.57726448E-001 -7.10200256E-002 1.39631861E-001 -3.34661918E-002 -2.01502723E+001 -3.46362433E+001 -1.99983681E+001 + 1.50000000E+002 3.25000000E+002 4.65822675E-001 -1.08704350E+000 5.53638284E-002 5.25626739E-002 -1.63214030E+001 -4.01233204E+001 -1.63033442E+001 + 1.55000000E+002 3.25000000E+002 -3.98323340E-001 -1.25335681E+000 1.21152742E-001 4.00857762E-001 -1.53991387E+001 -2.53390795E+001 -1.49797174E+001 + 1.60000000E+002 3.25000000E+002 -7.58649743E-001 -5.55636980E-001 5.70369468E-001 8.35770913E-001 -1.83125997E+001 -1.76762100E+001 -1.49724587E+001 + 1.65000000E+002 3.25000000E+002 -2.03634788E-001 2.51950834E-001 1.35572347E+000 1.08246864E+000 -2.75688336E+001 -1.29932396E+001 -1.28443854E+001 + 1.70000000E+002 3.25000000E+002 8.57626563E-001 6.23497932E-001 2.19948303E+000 1.04983115E+000 -1.72697892E+001 -1.00407368E+001 -9.28791152E+000 + 1.75000000E+002 3.25000000E+002 1.77826406E+000 6.07970076E-001 2.81453320E+000 8.82026162E-001 -1.22984836E+001 -8.38353046E+000 -6.90373891E+000 + 1.80000000E+002 3.25000000E+002 2.12865068E+000 5.44362937E-001 3.03570976E+000 7.93504638E-001 -1.09412979E+001 -7.84626890E+000 -6.11341605E+000 + 0.00000000E+000 3.30000000E+002 2.03854380E+001 -1.26459569E+001 -3.53880315E+001 2.17581053E+001 9.82184299E+000 1.45912163E+001 1.58410635E+001 + 5.00000000E+000 3.30000000E+002 1.89477479E+001 -1.26694761E+001 -3.31244389E+001 2.24805365E+001 9.37762252E+000 1.42697525E+001 1.54892246E+001 + 1.00000000E+001 3.30000000E+002 1.51218427E+001 -1.23534949E+001 -2.66868841E+001 2.38789263E+001 8.03392145E+000 1.33017041E+001 1.44321697E+001 + 1.50000000E+001 3.30000000E+002 1.02844229E+001 -1.10354307E+001 -1.73457062E+001 2.41287980E+001 5.79226305E+000 1.16814562E+001 1.26771577E+001 + 2.00000000E+001 3.30000000E+002 6.20299466E+000 -8.68879736E+000 -7.42705190E+000 2.16222437E+001 2.78948775E+000 9.40387281E+000 1.02605336E+001 + 2.50000000E+001 3.30000000E+002 3.93917817E+000 -6.38262761E+000 3.35976195E-001 1.63230896E+001 -2.76891073E-001 6.47937983E+000 7.31097888E+000 + 3.00000000E+001 3.30000000E+002 2.88767034E+000 -5.40918393E+000 4.30070744E+000 1.00355665E+001 -2.02686986E+000 2.98457179E+000 4.17513613E+000 + 3.50000000E+001 3.30000000E+002 1.33718388E+000 -5.64797486E+000 4.99771074E+000 4.99375128E+000 -2.50379586E+000 -7.96225423E-001 1.44367762E+000 + 4.00000000E+001 3.30000000E+002 -1.40422985E+000 -5.28140362E+000 4.36434216E+000 1.96723649E+000 -3.02686934E+000 -4.17683422E+000 -5.53600219E-001 + 4.50000000E+001 3.30000000E+002 -3.78002689E+000 -2.91208709E+000 3.67805980E+000 4.72514186E-002 -4.20509517E+000 -6.46541456E+000 -2.17953513E+000 + 5.00000000E+001 3.30000000E+002 -3.77940928E+000 3.64613958E-001 2.65743253E+000 -1.60481460E+000 -6.18979481E+000 -7.93891827E+000 -3.96658782E+000 + 5.50000000E+001 3.30000000E+002 -1.68516585E+000 2.12738170E+000 8.23432939E-001 -2.50337169E+000 -9.10646291E+000 -9.36183974E+000 -6.22197453E+000 + 6.00000000E+001 3.30000000E+002 2.55384918E-001 1.68814443E+000 -1.04483382E+000 -1.86276914E+000 -1.31320423E+001 -1.11873478E+001 -9.04144249E+000 + 6.50000000E+001 3.30000000E+002 7.68799427E-001 5.58820259E-001 -1.61384083E+000 -2.05657725E-001 -1.82200300E+001 -1.35513329E+001 -1.22760889E+001 + 7.00000000E+001 3.30000000E+002 5.57793726E-001 -4.64011820E-002 -7.18224308E-001 9.49769570E-001 -2.28190845E+001 -1.62620253E+001 -1.53950463E+001 + 7.50000000E+001 3.30000000E+002 3.55263579E-001 -3.87157901E-001 4.48830562E-001 7.86247954E-001 -2.33677886E+001 -1.86423035E+001 -1.73814391E+001 + 8.00000000E+001 3.30000000E+002 -1.09747610E-001 -6.87120014E-001 7.56873739E-001 -1.03569716E-001 -2.09284524E+001 -2.01174692E+001 -1.74937583E+001 + 8.50000000E+001 3.30000000E+002 -7.81074253E-001 -3.83829789E-001 2.12522263E-001 -6.31166867E-001 -1.89852408E+001 -2.13092052E+001 -1.69832953E+001 + 9.00000000E+001 3.30000000E+002 -7.48565877E-001 4.65852839E-001 -3.53999084E-001 -3.94715002E-001 -1.88722307E+001 -2.32896624E+001 -1.75316598E+001 + 9.50000000E+001 3.30000000E+002 1.32132926E-001 6.95122772E-001 -3.38389108E-001 9.86263925E-002 -2.07831233E+001 -2.68360899E+001 -1.98204773E+001 + 1.00000000E+002 3.30000000E+002 5.80160641E-001 -1.35334788E-001 4.03937686E-002 2.02472978E-001 -2.22774241E+001 -3.14816630E+001 -2.17848206E+001 + 1.05000000E+002 3.30000000E+002 -1.48117823E-001 -7.61807056E-001 1.89588171E-001 -7.53454823E-002 -1.99804585E+001 -3.15854219E+001 -1.96902587E+001 + 1.10000000E+002 3.30000000E+002 -9.02815553E-001 -1.73318455E-001 -1.42808676E-002 -2.37853346E-001 -1.85093478E+001 -3.02366940E+001 -1.82269551E+001 + 1.15000000E+002 3.30000000E+002 -4.61056716E-001 6.59385760E-001 -1.79691951E-001 -9.52299205E-002 -1.96670291E+001 -3.16129185E+001 -1.93980749E+001 + 1.20000000E+002 3.30000000E+002 4.29314236E-001 3.63789224E-001 -9.96468442E-002 6.01100396E-002 -2.27726666E+001 -3.64614511E+001 -2.25907886E+001 + 1.25000000E+002 3.30000000E+002 3.10556080E-001 -5.62443751E-001 1.56027631E-002 4.11402360E-002 -2.16212358E+001 -4.49095314E+001 -2.16009151E+001 + 1.30000000E+002 3.30000000E+002 -5.86141600E-001 -6.37216549E-001 2.20021518E-002 2.38446476E-003 -1.90301712E+001 -5.08784934E+001 -1.90273345E+001 + 1.35000000E+002 3.30000000E+002 -8.14603826E-001 1.91217560E-001 4.63647767E-002 3.91413296E-002 -1.93266361E+001 -4.21179803E+001 -1.93038583E+001 + 1.40000000E+002 3.30000000E+002 -2.65232393E-002 5.91354292E-001 1.37958041E-001 2.93164872E-002 -2.23328241E+001 -3.47917492E+001 -2.20930255E+001 + 1.45000000E+002 3.30000000E+002 6.60096161E-001 -6.15134023E-002 1.47992168E-001 -3.78511594E-002 -2.13488111E+001 -3.40985421E+001 -2.11241490E+001 + 1.50000000E+002 3.30000000E+002 4.05518995E-001 -9.47629488E-001 5.79659914E-002 5.31154799E-002 -1.75154330E+001 -3.98677015E+001 -1.74902390E+001 + 1.55000000E+002 3.30000000E+002 -3.47968383E-001 -1.09258202E+000 1.26923814E-001 4.21933710E-001 -1.65898523E+001 -2.48974080E+001 -1.59917436E+001 + 1.60000000E+002 3.30000000E+002 -6.61834068E-001 -4.84256881E-001 6.01903410E-001 8.82408814E-001 -1.95013964E+001 -1.72059055E+001 -1.51934222E+001 + 1.65000000E+002 3.30000000E+002 -1.77508275E-001 2.19474647E-001 1.43268739E+000 1.14354998E+000 -2.87651059E+001 -1.25147268E+001 -1.24129503E+001 + 1.70000000E+002 3.30000000E+002 7.47997619E-001 5.42778782E-001 2.32525101E+000 1.10900845E+000 -1.84633728E+001 -9.55899034E+000 -9.03322423E+000 + 1.75000000E+002 3.30000000E+002 1.55063648E+000 5.28721439E-001 2.97580669E+000 9.31473286E-001 -1.34906497E+001 -7.90047377E+000 -6.84180843E+000 + 1.80000000E+002 3.30000000E+002 1.85597098E+000 4.73132986E-001 3.20968210E+000 8.37929469E-001 -1.21336417E+001 -7.36292817E+000 -6.11341605E+000 + 0.00000000E+000 3.35000000E+002 1.72235951E+001 -1.07014914E+001 -3.70300774E+001 2.27774769E+001 8.36175102E+000 1.49862032E+001 1.58410635E+001 + 5.00000000E+000 3.35000000E+002 1.60079865E+001 -1.07216658E+001 -3.46606268E+001 2.35333201E+001 7.91768675E+000 1.46647002E+001 1.54979140E+001 + 1.00000000E+001 3.35000000E+002 1.27740500E+001 -1.04527753E+001 -2.79232615E+001 2.49950991E+001 6.57415177E+000 1.36965976E+001 1.44665656E+001 + 1.50000000E+001 3.35000000E+002 8.68589240E+000 -9.33573493E+000 -1.81480517E+001 2.52540570E+001 4.33271642E+000 1.20762930E+001 1.27512006E+001 + 2.00000000E+001 3.35000000E+002 5.23753662E+000 -7.34957662E+000 -7.76972156E+000 2.26286663E+001 1.33030080E+000 9.79867979E+000 1.03764282E+001 + 2.50000000E+001 3.35000000E+002 3.32547975E+000 -5.39879775E+000 3.52066490E-001 1.70822666E+001 -1.73561637E+000 6.87424729E+000 7.43462134E+000 + 3.00000000E+001 3.35000000E+002 2.43712294E+000 -4.57517756E+000 4.49963004E+000 1.05032093E+001 -3.48553650E+000 3.37973004E+000 4.19253058E+000 + 3.50000000E+001 3.35000000E+002 1.12636141E+000 -4.77554621E+000 5.22920159E+000 5.22824121E+000 -3.96292852E+000 -4.00296950E-001 1.18419645E+000 + 4.00000000E+001 3.35000000E+002 -1.18996571E+000 -4.46348768E+000 4.56762097E+000 2.06116464E+000 -4.48681914E+000 -3.77976989E+000 -1.10862160E+000 + 4.50000000E+001 3.35000000E+002 -3.19549782E+000 -2.45983186E+000 3.85008075E+000 5.07906707E-002 -5.66677300E+000 -6.06835447E+000 -2.85262377E+000 + 5.00000000E+001 3.35000000E+002 -3.19268236E+000 3.08033629E-001 2.78134150E+000 -1.67907313E+000 -7.65515294E+000 -7.54386407E+000 -4.58885208E+000 + 5.50000000E+001 3.35000000E+002 -1.42306127E+000 1.79517980E+000 8.61148344E-001 -2.61921108E+000 -1.05787558E+001 -8.96931793E+000 -6.68960513E+000 + 6.00000000E+001 3.35000000E+002 2.14604880E-001 1.42314936E+000 -1.09398056E+000 -1.94809786E+000 -1.46158477E+001 -1.07958667E+001 -9.28843779E+000 + 6.50000000E+001 3.35000000E+002 6.47056692E-001 4.70074615E-001 -1.68880695E+000 -2.13851273E-001 -1.97190659E+001 -1.31578210E+001 -1.22915993E+001 + 7.00000000E+001 3.35000000E+002 4.69032355E-001 -4.04339170E-002 -7.51300356E-001 9.94754825E-001 -2.43222950E+001 -1.58640265E+001 -1.52850174E+001 + 7.50000000E+001 3.35000000E+002 2.97744156E-001 -3.28723239E-001 4.69706942E-001 8.23269072E-001 -2.48402305E+001 -1.82438261E+001 -1.73839409E+001 + 8.00000000E+001 3.35000000E+002 -9.66454524E-002 -5.81681430E-001 7.91800461E-001 -1.07863565E-001 -2.23665397E+001 -1.97263367E+001 -1.78385217E+001 + 8.50000000E+001 3.35000000E+002 -6.64296450E-001 -3.22991954E-001 2.22116905E-001 -6.59956063E-001 -2.04096553E+001 -2.09221829E+001 -1.76480628E+001 + 9.00000000E+001 3.35000000E+002 -6.34561778E-001 3.96698643E-001 -3.70923920E-001 -4.12664568E-001 -2.02963284E+001 -2.28947402E+001 -1.83937347E+001 + 9.50000000E+001 3.35000000E+002 1.12044798E-001 5.89096599E-001 -3.55154320E-001 1.03757236E-001 -2.22204449E+001 -2.64144676E+001 -2.08194107E+001 + 1.00000000E+002 3.35000000E+002 4.90111235E-001 -1.15041388E-001 4.08327670E-002 2.13373381E-001 -2.37396947E+001 -3.10394997E+001 -2.29980530E+001 + 1.05000000E+002 3.35000000E+002 -1.27561663E-001 -6.44310126E-001 1.97646361E-001 -7.59973201E-002 -2.14296299E+001 -3.12618823E+001 -2.10001827E+001 + 1.10000000E+002 3.35000000E+002 -7.65593879E-001 -1.44700388E-001 -1.37878306E-002 -2.45546841E-001 -1.99461036E+001 -2.99621482E+001 -1.95336329E+001 + 1.15000000E+002 3.35000000E+002 -3.90041001E-001 5.59922494E-001 -1.84992147E-001 -9.74992580E-002 -2.10979559E+001 -3.13708910E+001 -2.07081445E+001 + 1.20000000E+002 3.35000000E+002 3.63986618E-001 3.08390866E-001 -1.00817534E-001 6.28944724E-002 -2.42069526E+001 -3.62801939E+001 -2.39455415E+001 + 1.25000000E+002 3.35000000E+002 2.62711461E-001 -4.76226536E-001 1.87297365E-002 4.15626555E-002 -2.30683928E+001 -4.46015137E+001 -2.30379874E+001 + 1.30000000E+002 3.35000000E+002 -4.96769130E-001 -5.39251337E-001 2.42687822E-002 8.20902005E-004 -2.04741440E+001 -5.00725811E+001 -2.04693830E+001 + 1.35000000E+002 3.35000000E+002 -6.90130023E-001 1.62124167E-001 4.94049347E-002 3.95194872E-002 -2.07665959E+001 -4.17550445E+001 -2.07321438E+001 + 1.40000000E+002 3.35000000E+002 -2.32696205E-002 5.00750703E-001 1.45243764E-001 2.90015666E-002 -2.37767075E+001 -3.43667659E+001 -2.34132298E+001 + 1.45000000E+002 3.35000000E+002 5.57517153E-001 -5.15031539E-002 1.55307378E-001 -4.17984020E-002 -2.28164370E+001 -3.36509644E+001 -2.24720868E+001 + 1.50000000E+002 3.35000000E+002 3.42174644E-001 -8.00818609E-001 6.02654026E-002 5.33052595E-002 -1.89795585E+001 -3.96672031E+001 -1.89426460E+001 + 1.55000000E+002 3.35000000E+002 -2.94796256E-001 -9.23253360E-001 1.31829503E-001 4.39762212E-001 -1.80504564E+001 -2.45404227E+001 -1.71712589E+001 + 1.60000000E+002 3.35000000E+002 -5.59727033E-001 -4.09034016E-001 6.28899919E-001 9.22279156E-001 -2.09606406E+001 -1.68229294E+001 -1.54062950E+001 + 1.65000000E+002 3.35000000E+002 -1.49810114E-001 1.85381740E-001 1.49875748E+000 1.19589382E+000 -3.02343004E+001 -1.21242369E+001 -1.20576415E+001 + 1.70000000E+002 3.35000000E+002 6.32795714E-001 4.57936636E-001 2.43332295E+000 1.15973076E+000 -1.99242378E+001 -9.16553151E+000 -8.81535484E+000 + 1.75000000E+002 3.35000000E+002 1.31123924E+000 4.45455836E-001 3.11443350E+000 9.73827240E-001 -1.49505208E+001 -7.50581208E+000 -6.78660045E+000 + 1.80000000E+002 3.35000000E+002 1.56916623E+000 3.98302207E-001 3.35922682E+000 8.75977151E-001 -1.35939573E+001 -6.96800916E+000 -6.11341605E+000 + 0.00000000E+000 3.40000000E+002 1.39306702E+001 -8.67558110E+000 -3.83903020E+001 2.36234982E+001 6.52432873E+000 1.53004842E+001 1.58410635E+001 + 5.00000000E+000 3.40000000E+002 1.29464266E+001 -8.69230599E+000 -3.59329650E+001 2.44069744E+001 6.08052411E+000 1.49789321E+001 1.55053798E+001 + 1.00000000E+001 3.40000000E+002 1.03290112E+001 -8.47269990E+000 -2.89469965E+001 2.59209962E+001 4.73726975E+000 1.40107639E+001 1.44959938E+001 + 1.50000000E+001 3.40000000E+002 7.02104809E+000 -7.56530515E+000 -1.88120823E+001 2.61870341E+001 2.49616982E+000 1.23903863E+001 1.28140370E+001 + 2.00000000E+001 3.40000000E+002 4.23178311E+000 -5.95468086E+000 -8.05300726E+000 2.34627157E+001 -5.05843178E-001 1.01127147E+001 1.04739112E+001 + 2.50000000E+001 3.40000000E+002 2.68596594E+000 -4.37389252E+000 3.65735896E-001 1.77111559E+001 -3.57146745E+000 7.18828266E+000 7.53837848E+000 + 3.00000000E+001 3.40000000E+002 1.96772975E+000 -3.70616063E+000 4.66446215E+000 1.08904754E+001 -5.32150856E+000 3.69391617E+000 4.20716358E+000 + 3.50000000E+001 3.40000000E+002 9.06952171E-001 -3.86670505E+000 5.42078455E+000 5.42241236E+000 -5.79909682E+000 -8.56599490E-002 9.46635372E-001 + 4.00000000E+001 3.40000000E+002 -9.66730331E-001 -3.61188098E+000 4.73568178E+000 2.13903232E+000 -6.32335707E+000 -3.46452494E+000 -1.65253385E+000 + 4.50000000E+001 3.40000000E+002 -2.58722069E+000 -1.98915797E+000 3.99219413E+000 5.40173773E-002 -7.50482320E+000 -5.75347891E+000 -3.53116156E+000 + 5.00000000E+001 3.40000000E+002 -2.58251918E+000 2.49400956E-001 2.88377789E+000 -1.74002106E+000 -9.49731998E+000 -7.23090293E+000 -5.20761476E+000 + 5.50000000E+001 3.40000000E+002 -1.15051963E+000 1.45024476E+000 8.92602586E-001 -2.71457793E+000 -1.24294860E+001 -8.65858730E+000 -7.13670672E+000 + 6.00000000E+001 3.40000000E+002 1.72607645E-001 1.14813057E+000 -1.13418655E+000 -2.01858803E+000 -1.64816171E+001 -1.04859867E+001 -9.51188118E+000 + 6.50000000E+001 3.40000000E+002 5.21009170E-001 3.77858957E-001 -1.75060872E+000 -2.20928467E-001 -2.16061130E+001 -1.28461016E+001 -1.23036297E+001 + 7.00000000E+001 3.40000000E+002 3.76854795E-001 -3.43567734E-002 -7.78908841E-001 1.03169106E+000 -2.62190791E+001 -1.55485205E+001 -1.51914510E+001 + 7.50000000E+001 3.40000000E+002 2.37892127E-001 -2.67640294E-001 4.86572026E-001 8.54004618E-001 -2.66988141E+001 -1.79283930E+001 -1.73871421E+001 + 8.00000000E+001 3.40000000E+002 -8.24647167E-002 -4.71518818E-001 8.20549002E-001 -1.11061590E-001 -2.41776794E+001 -1.94175750E+001 -1.81654079E+001 + 8.50000000E+001 3.40000000E+002 -5.41872595E-001 -2.59934010E-001 2.30167862E-001 -6.83574733E-001 -2.22011306E+001 -2.06163722E+001 -1.83265634E+001 + 9.00000000E+001 3.40000000E+002 -5.15682117E-001 3.23810853E-001 -3.84908557E-001 -4.27590398E-001 -2.20873263E+001 -2.25803826E+001 -1.93165611E+001 + 9.50000000E+001 3.40000000E+002 9.04670655E-002 4.78257311E-001 -3.69348734E-001 1.07935037E-001 -2.40325934E+001 -2.60738814E+001 -2.19240937E+001 + 1.00000000E+002 3.40000000E+002 3.95848507E-001 -9.34397192E-002 4.06699406E-002 2.22710700E-001 -2.55924425E+001 -3.06812209E+001 -2.44202962E+001 + 1.05000000E+002 3.40000000E+002 -1.05768347E-001 -5.21436856E-001 2.04025136E-001 -7.57265502E-002 -2.32593639E+001 -3.10243198E+001 -2.25875269E+001 + 1.10000000E+002 3.40000000E+002 -6.22077859E-001 -1.15238539E-001 -1.30411116E-002 -2.50948827E-001 -2.17550766E+001 -2.97750909E+001 -2.11188889E+001 + 1.15000000E+002 3.40000000E+002 -3.16285580E-001 4.55531613E-001 -1.88469133E-001 -9.88286464E-002 -2.28994116E+001 -3.12187029E+001 -2.23028109E+001 + 1.20000000E+002 3.40000000E+002 2.94998171E-001 2.50521484E-001 -1.00833992E-001 6.50503104E-002 -2.60238256E+001 -3.61951726E+001 -2.56251994E+001 + 1.25000000E+002 3.40000000E+002 2.12188995E-001 -3.85683685E-001 2.18122621E-002 4.13500799E-002 -2.49055055E+001 -4.43827924E+001 -2.48567955E+001 + 1.30000000E+002 3.40000000E+002 -4.03541489E-001 -4.36298254E-001 2.61688567E-002 -9.40287051E-004 -2.22982767E+001 -4.94172086E+001 -2.22898536E+001 + 1.35000000E+002 3.40000000E+002 -5.59896206E-001 1.32220867E-001 5.18308210E-002 3.96704960E-002 -2.25806716E+001 -4.14842252E+001 -2.25251261E+001 + 1.40000000E+002 3.40000000E+002 -1.94697426E-002 4.06326069E-001 1.51331302E-001 2.87154999E-002 -2.55910533E+001 -3.40263088E+001 -2.50091651E+001 + 1.45000000E+002 3.40000000E+002 4.50771915E-001 -4.11434191E-002 1.61531674E-001 -4.51742758E-002 -2.46633396E+001 -3.32863161E+001 -2.41045508E+001 + 1.50000000E+002 3.40000000E+002 2.76232187E-001 -6.47775504E-001 6.22964641E-002 5.32408272E-002 -2.08244142E+001 -3.95077654E+001 -2.07659991E+001 + 1.55000000E+002 3.40000000E+002 -2.39254248E-001 -7.46671664E-001 1.35921648E-001 4.54288291E-001 -1.98914427E+001 -2.42595289E+001 -1.85377117E+001 + 1.60000000E+002 3.40000000E+002 -4.53133522E-001 -3.30535248E-001 6.51246100E-001 9.55114698E-001 -2.28011471E+001 -1.65192542E+001 -1.56011701E+001 + 1.65000000E+002 3.40000000E+002 -1.20764486E-001 1.49939749E-001 1.55349710E+000 1.23910724E+000 -3.20887510E+001 -1.18139216E+001 -1.17733455E+001 + 1.70000000E+002 3.40000000E+002 5.12892426E-001 3.69621946E-001 2.52290833E+000 1.20160877E+000 -2.17613934E+001 -8.85259163E+000 -8.63581123E+000 + 1.75000000E+002 3.40000000E+002 1.06189272E+000 3.58808389E-001 3.22936619E+000 1.00876516E+000 -1.67873673E+001 -7.19181281E+000 -6.73952170E+000 + 1.80000000E+002 3.40000000E+002 1.27041917E+000 3.20440107E-001 3.48320580E+000 9.07358119E-001 -1.54316977E+001 -6.65379043E+000 -6.11341605E+000 + 0.00000000E+000 3.45000000E+002 1.05317246E+001 -6.58364437E+000 -3.94583532E+001 2.42897303E+001 4.10407119E+000 1.55397177E+001 1.58410635E+001 + 5.00000000E+000 3.45000000E+002 9.78638199E+000 -6.59684300E+000 -3.69317725E+001 2.50948554E+001 3.66074260E+000 1.52181076E+001 1.55113999E+001 + 1.00000000E+001 3.45000000E+002 7.80536805E+000 -6.42833693E+000 -2.97502812E+001 2.66496095E+001 2.31801091E+000 1.42498647E+001 1.45196630E+001 + 1.50000000E+001 3.45000000E+002 5.30262040E+000 -5.73761744E+000 -1.93326769E+001 2.69207018E+001 7.74985939E-002 1.26294010E+001 1.28642553E+001 + 2.00000000E+001 3.45000000E+002 3.19347265E+000 -4.51475087E+000 -8.27461270E+000 2.41181146E+001 -2.92395565E+000 1.03516465E+001 1.05512669E+001 + 2.50000000E+001 3.45000000E+002 2.02558943E+000 -3.31578263E+000 3.77075411E-001 1.82049827E+001 -5.98947759E+000 7.42716124E+000 7.62054298E+000 + 3.00000000E+001 3.45000000E+002 1.48310422E+000 -2.80886534E+000 4.79413888E+000 1.11943452E+001 -7.73988689E+000 3.93282053E+000 4.21867339E+000 + 3.50000000E+001 3.45000000E+002 6.80579008E-001 -2.92848978E+000 5.57113614E+000 5.57466451E+000 -8.21718772E+000 1.53418919E-001 7.43466831E-001 + 4.00000000E+001 3.45000000E+002 -7.36345827E-001 -2.73310693E+000 4.86733473E+000 2.20011793E+000 -8.74105494E+000 -3.22526608E+000 -2.15040025E+000 + 4.50000000E+001 3.45000000E+002 -1.95992743E+000 -1.50356245E+000 4.10338716E+000 5.67577814E-002 -9.92377387E+000 -5.51482627E+000 -4.17200055E+000 + 5.00000000E+001 3.45000000E+002 -1.95353191E+000 1.89303373E-001 2.96396383E+000 -1.78739128E+000 -1.19215059E+001 -6.99399348E+000 -5.78315689E+000 + 5.50000000E+001 3.45000000E+002 -8.69459363E-001 1.09524002E+000 9.17418517E-001 -2.78891291E+000 -1.48659059E+001 -8.42358953E+000 -7.53562017E+000 + 6.00000000E+001 3.45000000E+002 1.29824106E-001 8.65047661E-001 -1.16535463E+000 -2.07369378E+000 -1.89409744E+001 -1.02516801E+001 -9.70084443E+000 + 6.50000000E+001 3.45000000E+002 3.91538345E-001 2.82710084E-001 -1.79884990E+000 -2.26658124E-001 -2.41007137E+001 -1.26101996E+001 -1.23125102E+001 + 7.00000000E+001 3.45000000E+002 2.81775056E-001 -2.82130965E-002 -8.00699100E-001 1.06042148E+000 -2.87371337E+001 -1.53095524E+001 -1.51166466E+001 + 7.50000000E+001 3.45000000E+002 1.76085679E-001 -2.04203209E-001 4.99464334E-001 8.78130582E-001 -2.91628572E+001 -1.76900452E+001 -1.73911808E+001 + 8.00000000E+001 3.45000000E+002 -6.72026434E-002 -3.57333143E-001 8.42876129E-001 -1.13319841E-001 -2.65660883E+001 -1.91854331E+001 -1.84563844E+001 + 8.50000000E+001 3.45000000E+002 -4.14586450E-001 -1.95166763E-001 2.36439846E-001 -7.01868029E-001 -2.45568933E+001 -2.03865623E+001 -1.89789825E+001 + 9.00000000E+001 3.45000000E+002 -3.92807339E-001 2.47630668E-001 -3.95927501E-001 -4.39193665E-001 -2.44416457E+001 -2.23421759E+001 -2.02559613E+001 + 9.50000000E+001 3.45000000E+002 6.74886608E-002 3.63409629E-001 -3.80694932E-001 1.11328193E-001 -2.64233236E+001 -2.58105959E+001 -2.30958628E+001 + 1.00000000E+002 3.45000000E+002 2.98049227E-001 -7.06347302E-002 4.02352411E-002 2.30389769E-001 -2.80554320E+001 -3.03987671E+001 -2.60606305E+001 + 1.05000000E+002 3.45000000E+002 -8.28546034E-002 -3.94066587E-001 2.08905359E-001 -7.48410134E-002 -2.56792475E+001 -3.08550949E+001 -2.45275396E+001 + 1.10000000E+002 3.45000000E+002 -4.73287650E-001 -8.51769728E-002 -1.21170236E-002 -2.54418555E-001 -2.41375710E+001 -2.96576915E+001 -2.30636545E+001 + 1.15000000E+002 3.45000000E+002 -2.40332806E-001 3.46944993E-001 -1.90424892E-001 -9.94284390E-002 -2.52711196E+001 -3.11370107E+001 -2.42706337E+001 + 1.20000000E+002 3.45000000E+002 2.22843510E-001 1.90585565E-001 -1.00038880E-001 6.66319853E-002 -2.84344271E+001 -3.61805502E+001 -2.77598859E+001 + 1.25000000E+002 3.45000000E+002 1.59348672E-001 -2.91495353E-001 2.46718354E-002 4.07341675E-002 -2.73503295E+001 -4.42221304E+001 -2.72619850E+001 + 1.30000000E+002 3.45000000E+002 -3.07154548E-001 -3.29124066E-001 2.77127260E-002 -2.69763946E-003 -2.47106859E+001 -4.88839635E+001 -2.46941042E+001 + 1.35000000E+002 3.45000000E+002 -4.24858274E-001 1.01721418E-001 5.36905803E-002 3.96695963E-002 -2.49715444E+001 -4.12887089E+001 -2.48713032E+001 + 1.40000000E+002 3.45000000E+002 -1.51312289E-002 3.08750668E-001 1.56194925E-001 2.84920476E-002 -2.79759306E+001 -3.37630108E+001 -2.69591112E+001 + 1.45000000E+002 3.45000000E+002 3.40660513E-001 -3.05727463E-002 1.66613073E-001 -4.78934017E-002 -2.70972320E+001 -3.29995284E+001 -2.61042120E+001 + 1.50000000E+002 3.45000000E+002 2.08152751E-001 -4.89710971E-001 6.40678151E-002 5.30112830E-002 -2.32584272E+001 -3.93806598E+001 -2.31536393E+001 + 1.55000000E+002 3.45000000E+002 -1.81815599E-001 -5.64202597E-001 1.39234681E-001 4.65477810E-001 -2.23207183E+001 -2.40483586E+001 -2.00888913E+001 + 1.60000000E+002 3.45000000E+002 -3.42907896E-001 -2.49359992E-001 6.68850306E-001 9.80704540E-001 -2.52314259E+001 -1.62889590E+001 -1.57675185E+001 + 1.65000000E+002 3.45000000E+002 -9.06201552E-002 1.13424887E-001 1.59654916E+000 1.27287011E+000 -3.45403742E+001 -1.15780135E+001 -1.15561131E+001 + 1.70000000E+002 3.45000000E+002 3.89187207E-001 2.78512493E-001 2.59335484E+000 1.23432224E+000 -2.41794715E+001 -8.61447252E+000 -8.49553363E+000 + 1.75000000E+002 3.45000000E+002 8.04490983E-001 2.69440298E-001 3.31973706E+000 1.03602106E+000 -1.92063655E+001 -6.95280958E+000 -6.70172839E+000 + 1.80000000E+002 3.45000000E+002 9.62003449E-001 2.40139265E-001 3.58067547E+000 9.31833543E-001 -1.78524527E+001 -6.41461508E+000 -6.11341605E+000 + 0.00000000E+000 3.50000000E+002 7.05262608E+000 -4.44160212E+000 -4.02261025E+001 2.47711030E+001 6.39301212E-001 1.57079424E+001 1.58410635E+001 + 5.00000000E+000 3.50000000E+002 6.55191607E+000 -4.45122404E+000 -3.76494525E+001 2.55917325E+001 1.97007355E-001 1.53862667E+001 1.55157953E+001 + 1.00000000E+001 3.50000000E+002 5.22236548E+000 -4.33523367E+000 -3.03269935E+001 2.71754283E+001 -1.14457447E+000 1.44179418E+001 1.45369478E+001 + 1.50000000E+001 3.50000000E+002 3.54376276E+000 -3.86656737E+000 -1.97058253E+001 2.74495433E+001 -3.38382246E+000 1.27973819E+001 1.29007732E+001 + 2.00000000E+001 3.50000000E+002 2.13061619E+000 -3.04075733E+000 -8.43274487E+000 2.45899439E+001 -6.38420916E+000 1.05195240E+001 1.06072278E+001 + 2.50000000E+001 3.50000000E+002 1.34948411E+000 -2.23258677E+000 3.86147834E-001 1.85600168E+001 -9.44987401E+000 7.59493980E+000 7.67986755E+000 + 3.00000000E+001 3.50000000E+002 9.86986911E-001 -1.89022892E+000 4.88782158E+000 1.14124805E+001 -1.12011538E+001 4.10052010E+000 4.22678665E+000 + 3.50000000E+001 3.50000000E+002 4.48936903E-001 -1.96812795E+000 5.67923885E+000 5.68378864E+000 -1.16771542E+001 3.21074905E-001 5.86903787E-001 + 4.00000000E+001 3.50000000E+002 -5.00621389E-001 -1.83385714E+000 4.96171181E+000 2.24389050E+000 -1.21990416E+001 -3.05772855E+000 -2.55833374E+000 + 4.50000000E+001 3.50000000E+002 -1.31838408E+000 -1.00668165E+000 4.18295843E+000 5.88504646E-002 -1.33827415E+001 -5.34797647E+000 -4.71379583E+000 + 5.00000000E+001 3.50000000E+002 -1.31041339E+000 1.28218331E-001 3.02133941E+000 -1.82107363E+000 -1.53889599E+001 -6.82862741E+000 -6.26222732E+000 + 5.50000000E+001 3.50000000E+002 -5.81931020E-001 7.32783604E-001 9.35249822E-001 -2.84188130E+000 -1.83553725E+001 -8.25980035E+000 -7.85447549E+000 + 6.00000000E+001 3.50000000E+002 8.65649832E-002 5.75930665E-001 -1.18751804E+000 -2.11299992E+000 -2.24740814E+001 -1.00884521E+001 -9.84468451E+000 + 6.50000000E+001 3.50000000E+002 2.59533430E-001 1.85299848E-001 -1.83327740E+000 -2.30778236E-001 -2.77055693E+001 -1.24456624E+001 -1.23181934E+001 + 7.00000000E+001 3.50000000E+002 1.84442746E-001 -2.20102427E-002 -8.16356967E-001 1.08089836E+000 -3.23998658E+001 -1.51426671E+001 -1.50617552E+001 + 7.50000000E+001 3.50000000E+002 1.12789218E-001 -1.38837844E-001 5.08480072E-001 8.95391470E-001 -3.27273662E+001 -1.75243100E+001 -1.73951862E+001 + 8.00000000E+001 3.50000000E+002 -5.09539649E-002 -2.39967532E-001 8.58605774E-001 -1.14800700E-001 -2.99839330E+001 -1.90256767E+001 -1.86906350E+001 + 8.50000000E+001 3.50000000E+002 -2.83390943E-001 -1.29169203E-001 2.40724132E-001 -7.14719508E-001 -2.79110086E+001 -2.02291243E+001 -1.95452831E+001 + 9.00000000E+001 3.50000000E+002 -2.66846280E-001 1.68753097E-001 -4.03957842E-001 -4.47201960E-001 -2.77922287E+001 -2.21773890E+001 -2.11240473E+001 + 9.50000000E+001 3.50000000E+002 4.33228459E-002 2.45416957E-001 -3.88916041E-001 1.14094470E-001 -2.98471468E+001 -2.56228389E+001 -2.42301344E+001 + 1.00000000E+002 3.50000000E+002 1.97465142E-001 -4.68386532E-002 3.98683568E-002 2.36298149E-001 -3.16309748E+001 -3.01873985E+001 -2.78391810E+001 + 1.05000000E+002 3.50000000E+002 -5.90321379E-002 -2.63178718E-001 2.12467623E-001 -7.36834257E-002 -2.91603065E+001 -3.07394282E+001 -2.68681870E+001 + 1.10000000E+002 3.50000000E+002 -3.20374650E-001 -5.46915123E-002 -1.11201373E-002 -2.56347949E-001 -2.75405899E+001 -2.95937454E+001 -2.54366507E+001 + 1.15000000E+002 3.50000000E+002 -1.62701759E-001 2.35048295E-001 -1.91203861E-001 -9.95114687E-002 -2.86552466E+001 -3.11075795E+001 -2.67002700E+001 + 1.20000000E+002 3.50000000E+002 1.48174521E-001 1.29024045E-001 -9.87978465E-002 6.77217542E-002 -3.19123085E+001 -3.62108202E+001 -3.05398356E+001 + 1.25000000E+002 3.50000000E+002 1.04653211E-001 -1.94467842E-001 2.71428802E-002 3.99762229E-002 -3.08969762E+001 -4.40959463E+001 -3.06938840E+001 + 1.30000000E+002 3.50000000E+002 -2.08354825E-001 -2.18638036E-001 2.89465224E-002 -4.24422301E-003 -2.81778765E+001 -4.84542027E+001 -2.81373143E+001 + 1.35000000E+002 3.50000000E+002 -2.86089092E-001 7.08068030E-002 5.50676976E-002 3.95684271E-002 -2.83902801E+001 -4.11527118E+001 -2.81662575E+001 + 1.40000000E+002 3.50000000E+002 -1.03208601E-002 2.08743396E-001 1.59827083E-001 2.83225286E-002 -3.13756483E+001 -3.35712180E+001 -2.93258401E+001 + 1.45000000E+002 3.50000000E+002 2.27998240E-001 -1.98999180E-002 1.70493267E-001 -4.99138925E-002 -3.05869180E+001 -3.27872264E+001 -2.85388921E+001 + 1.50000000E+002 3.50000000E+002 1.38420767E-001 -3.27865482E-001 6.55630105E-002 5.26837918E-002 -2.67522465E+001 -3.92818010E+001 -2.65162129E+001 + 1.55000000E+002 3.50000000E+002 -1.22968371E-001 -3.77264279E-001 1.41782617E-001 4.73313811E-001 -2.58070926E+001 -2.39023262E+001 -2.17408097E+001 + 1.60000000E+002 3.50000000E+002 -2.29942685E-001 -1.66136172E-001 6.81637992E-001 9.98893341E-001 -2.87219044E+001 -1.61277910E+001 -1.58951485E+001 + 1.65000000E+002 3.50000000E+002 -5.96461641E-002 7.61188989E-002 1.62763475E+000 1.29693714E+000 -3.80695773E+001 -1.14123837E+001 -1.14030168E+001 + 1.70000000E+002 3.50000000E+002 2.62601480E-001 1.85307678E-001 2.64415116E+000 1.25762274E+000 -2.76375680E+001 -8.44710261E+000 -8.39508692E+000 + 1.75000000E+002 3.50000000E+002 5.40987582E-001 1.78033672E-001 3.38486415E+000 1.05538801E+000 -2.26681865E+001 -6.78475718E+000 -6.67412084E+000 + 1.80000000E+002 3.50000000E+002 6.46266305E-001 1.58010818E-001 3.65089405E+000 9.49217151E-001 -2.13181225E+001 -6.24644562E+000 -6.11341605E+000 + 0.00000000E+000 3.55000000E+002 3.51985286E+000 -2.26575661E+000 -4.06877069E+001 2.50639526E+001 -5.34241812E+000 1.58078668E+001 1.58410635E+001 + 5.00000000E+000 3.55000000E+002 3.26765794E+000 -2.27177622E+000 -3.80805508E+001 2.58938277E+001 -5.78135124E+000 1.54861188E+001 1.55184350E+001 + 1.00000000E+001 3.55000000E+002 2.59970283E+000 -2.20929969E+000 -3.06727462E+001 2.74944789E+001 -7.11917870E+000 1.45177067E+001 1.45473968E+001 + 1.50000000E+001 3.55000000E+002 1.75794621E+000 -1.96636664E+000 -1.99286621E+001 2.77695899E+001 -9.35430403E+000 1.28970431E+001 1.29228277E+001 + 2.00000000E+001 3.55000000E+002 1.05142725E+000 -1.54391814E+000 -8.52613327E+000 2.48746749E+001 -1.23512702E+001 1.06190657E+001 1.06409260E+001 + 2.50000000E+001 3.55000000E+002 6.62915314E-001 -1.13260621E+000 3.92982344E-001 1.87735947E+001 -1.54175361E+001 7.69434433E+000 7.71550541E+000 + 3.00000000E+001 3.55000000E+002 4.83208889E-001 -9.57332093E-001 4.94489887E+000 1.15432311E+001 -1.71716209E+001 4.19976064E+000 4.23131559E+000 + 3.50000000E+001 3.55000000E+002 2.13778259E-001 -9.92970988E-001 5.74437187E+000 5.74895627E+000 -1.76430041E+001 4.20109879E-001 4.87423489E-001 + 4.00000000E+001 3.55000000E+002 -2.61336553E-001 -9.20933999E-001 5.01823145E+000 2.27000251E+000 -1.81575793E+001 -2.95898707E+000 -2.82973237E+000 + 4.50000000E+001 3.55000000E+002 -6.67352370E-001 -5.02261706E-001 4.23046985E+000 6.01762890E-002 -1.93422804E+001 -5.24985626E+000 -5.08381598E+000 + 5.00000000E+001 3.55000000E+002 -6.57902459E-001 6.65123284E-002 3.05555148E+000 -1.84104410E+000 -2.13711141E+001 -6.73164300E+000 -6.58492591E+000 + 5.50000000E+001 3.55000000E+002 -2.90100453E-001 3.65434995E-001 9.45837971E-001 -2.87331791E+000 -2.43999026E+001 -8.16402775E+000 -8.06191472E+000 + 6.00000000E+001 3.55000000E+002 4.30276285E-002 2.82869958E-001 -1.20076371E+000 -2.13624469E+000 -2.86474294E+001 -9.99310577E+000 -9.93430156E+000 + 6.50000000E+001 3.55000000E+002 1.25897288E-001 8.64247415E-002 -1.85377079E+000 -2.33071942E-001 -3.41013401E+001 -1.23492714E+001 -1.23203559E+001 + 7.00000000E+001 3.55000000E+002 8.56419971E-002 -1.57354452E-002 -8.25667933E-001 1.09314900E+000 -3.89805799E+001 -1.50445532E+001 -1.50270424E+001 + 7.50000000E+001 3.55000000E+002 4.85380967E-002 -7.21124467E-002 5.13725247E-001 9.05646813E-001 -3.89955002E+001 -1.74277744E+001 -1.73976094E+001 + 8.00000000E+001 3.55000000E+002 -3.39288214E-002 -1.20399062E-001 8.67659636E-001 -1.15616812E-001 -3.58341686E+001 -1.89350827E+001 -1.88472860E+001 + 8.50000000E+001 3.55000000E+002 -1.49408772E-001 -6.23686908E-002 2.42902733E-001 -7.22064685E-001 -3.35933671E+001 -2.01413890E+001 -1.99495403E+001 + 9.00000000E+001 3.55000000E+002 -1.38719498E-001 8.79359480E-002 -4.08966178E-001 -4.51439655E-001 -3.34687588E+001 -2.20841698E+001 -2.17793825E+001 + 9.50000000E+001 3.55000000E+002 1.83208614E-002 1.25193018E-001 -3.93795770E-001 1.16329904E-001 -3.57348797E+001 -2.55097315E+001 -2.51157971E+001 + 1.00000000E+002 3.55000000E+002 9.49238435E-002 -2.23814826E-002 3.98361849E-002 2.40326192E-001 -3.79960320E+001 -3.00447681E+001 -2.93991479E+001 + 1.05000000E+002 3.55000000E+002 -3.46093593E-002 -1.29856592E-001 2.14853344E-001 -7.25518151E-002 -3.52111991E+001 -3.06667027E+001 -2.93595171E+001 + 1.10000000E+002 3.55000000E+002 -1.64620887E-001 -2.38949307E-002 -1.01493501E-002 -2.57079740E-001 -3.33582578E+001 -2.95703862E+001 -2.80535161E+001 + 1.15000000E+002 3.55000000E+002 -8.38944730E-002 1.20872819E-001 -1.91113590E-001 -9.92655367E-002 -3.44242247E+001 -3.11153821E+001 -2.94517211E+001 + 1.20000000E+002 3.55000000E+002 7.17859088E-002 6.63153682E-002 -9.74349475E-002 6.83925951E-002 -3.79780437E+001 -3.62644664E+001 -3.40269828E+001 + 1.25000000E+002 3.55000000E+002 4.86591923E-002 -9.55190645E-002 2.90836003E-002 3.93066701E-002 -3.71746987E+001 -4.39929471E+001 -3.63538368E+001 + 1.30000000E+002 3.55000000E+002 -1.07934616E-001 -1.05876412E-001 2.99214535E-002 -5.40352686E-003 -3.41878025E+001 -4.81194778E+001 -3.40156238E+001 + 1.35000000E+002 3.55000000E+002 -1.44768777E-001 3.96310126E-002 5.60474323E-002 3.93958646E-002 -3.42511619E+001 -4.10636787E+001 -3.34293123E+001 + 1.40000000E+002 3.55000000E+002 -5.16129523E-003 1.07072647E-001 1.62225173E-001 2.81728531E-002 -3.71748567E+001 -3.34470971E+001 -3.19124194E+001 + 1.45000000E+002 3.55000000E+002 1.13613728E-001 -9.19745652E-003 1.73110626E-001 -5.12258649E-002 -3.66415221E+001 -3.26474798E+001 -3.11903779E+001 + 1.50000000E+002 3.55000000E+002 6.75460536E-002 -1.63495679E-001 6.67458327E-002 5.23045850E-002 -3.28239925E+001 -3.92107495E+001 -3.19256956E+001 + 1.55000000E+002 3.55000000E+002 -6.32057090E-002 -1.87314669E-001 1.43559732E-001 4.77793337E-001 -3.18587673E+001 -2.38183301E+001 -2.31849197E+001 + 1.60000000E+002 3.55000000E+002 -1.15156888E-001 -8.15154191E-002 6.89549502E-001 1.00957979E+000 -3.47886948E+001 -1.60328799E+001 -1.59754250E+001 + 1.65000000E+002 3.55000000E+002 -2.81266884E-002 3.83061959E-002 1.64655206E+000 1.31113896E+000 -4.42403536E+001 -1.13142550E+001 -1.13120416E+001 + 1.70000000E+002 3.55000000E+002 1.34073050E-001 9.07226111E-002 2.67492910E+000 1.27133562E+000 -3.35944706E+001 -8.34774851E+000 -8.33479272E+000 + 1.75000000E+002 3.55000000E+002 2.73381058E-001 8.52861593E-002 3.42425604E+000 1.06671974E+000 -2.86397895E+001 -6.68494233E+000 -6.65734171E+000 + 1.80000000E+002 3.55000000E+002 3.25610684E-001 7.46798135E-002 3.69332711E+000 9.59376643E-001 -2.73018887E+001 -6.14657448E+000 -6.11341605E+000 + 0.00000000E+000 3.60000000E+002 -3.97085595E-002 -7.26673169E-002 -4.08396533E+001 2.51660504E+001 -3.94169700E+001 1.58410506E+001 1.58410635E+001 + 5.00000000E+000 3.60000000E+002 -4.13855925E-002 -7.50828165E-002 -3.82217970E+001 2.59988433E+001 -3.91155174E+001 1.55192245E+001 1.55192394E+001 + 1.00000000E+001 3.60000000E+002 -4.26187049E-002 -6.66879468E-002 -3.07849202E+001 2.76043525E+001 -3.98102417E+001 1.45507216E+001 1.45507375E+001 + 1.50000000E+001 3.60000000E+002 -4.11489017E-002 -5.14380853E-002 -1.99994913E+001 2.78784474E+001 -4.14045017E+001 1.29299494E+001 1.29299654E+001 + 2.00000000E+001 3.60000000E+002 -3.57492437E-002 -3.56148910E-002 -8.55404209E+000 2.49701925E+001 -4.37191915E+001 1.06518398E+001 1.06518557E+001 + 2.50000000E+001 3.60000000E+002 -2.87687038E-002 -2.42608215E-002 3.97573405E-001 1.88441347E+001 -4.62671820E+001 7.72694973E+000 7.72696705E+000 + 3.00000000E+001 3.60000000E+002 -2.43432994E-002 -1.73448599E-002 4.96499055E+000 1.15856338E+001 -4.82678512E+001 4.23213182E+000 4.23215624E+000 + 3.50000000E+001 3.60000000E+002 -2.31082916E-002 -1.04424382E-002 5.76610425E+000 5.76970326E+000 -4.96961429E+001 4.52153499E-001 4.52195470E-001 + 4.00000000E+001 3.60000000E+002 -2.02460957E-002 -1.20172292E-003 5.03656558E+000 2.27827607E+000 -5.16364075E+001 -2.92732385E+000 -2.92726539E+000 + 4.50000000E+001 3.60000000E+002 -1.15782329E-002 5.88512253E-003 4.24569827E+000 6.06787869E-002 -5.55076099E+001 -5.21863747E+000 -5.21859684E+000 + 5.00000000E+001 3.60000000E+002 -7.53680245E-004 4.47426636E-003 3.06643422E+000 -1.84730314E+000 -6.46425566E+001 -6.70113527E+000 -6.70112830E+000 + 5.50000000E+001 3.60000000E+002 3.79742418E-003 -4.29720593E-003 9.49054245E-001 -2.88317053E+000 -6.26083424E+001 -8.13431890E+000 -8.13430339E+000 + 6.00000000E+001 3.60000000E+002 -6.67566410E-004 -1.20141537E-002 -1.20516262E+000 -2.14332627E+000 -5.61712552E+001 -9.96363563E+000 -9.96353163E+000 + 6.50000000E+001 3.60000000E+002 -8.45976146E-003 -1.30396085E-002 -1.86031827E+000 -2.33427985E-001 -5.39475565E+001 -1.23189168E+001 -1.23186183E+001 + 7.00000000E+001 3.60000000E+002 -1.37494567E-002 -9.36909842E-003 -8.28557947E-001 1.09723537E+000 -5.33564137E+001 -1.50128924E+001 -1.50122565E+001 + 7.50000000E+001 3.60000000E+002 -1.60867439E-002 -4.70700687E-003 5.15272037E-001 9.08893477E-001 -5.32923829E+001 -1.73979011E+001 -1.73967835E+001 + 8.00000000E+001 3.60000000E+002 -1.64340995E-002 2.92525621E-004 8.70068235E-001 -1.15789068E-001 -5.34622130E+001 -1.89111986E+001 -1.89096759E+001 + 8.50000000E+001 3.60000000E+002 -1.39005902E-002 4.85189632E-003 2.42992873E-001 -7.23893984E-001 -5.44185692E+001 -2.01213146E+001 -2.01197004E+001 + 9.00000000E+001 3.60000000E+002 -9.35828623E-003 6.07150879E-003 -4.10895722E-001 -4.51878153E-001 -5.68288811E+001 -2.20610792E+001 -2.20596306E+001 + 9.50000000E+001 3.60000000E+002 -7.05339653E-003 3.69739025E-003 -3.95224278E-001 1.18027651E-001 -5.97561695E+001 -2.54706276E+001 -2.54690090E+001 + 1.00000000E+002 3.60000000E+002 -8.67883799E-003 2.31545029E-003 4.02641692E-002 2.42383706E-001 -5.87106576E+001 -2.99702187E+001 -2.99644184E+001 + 1.05000000E+002 3.60000000E+002 -9.96313835E-003 4.72828617E-003 2.16131970E-001 -7.16300506E-002 -5.69284279E+001 -3.06315310E+001 -3.06213548E+001 + 1.10000000E+002 3.60000000E+002 -7.41143683E-003 7.13873274E-003 -9.26665365E-003 -2.56835488E-001 -5.75299206E+001 -2.95797565E+001 -2.95727995E+001 + 1.15000000E+002 3.60000000E+002 -4.40888947E-003 5.55822195E-003 -1.90353884E-001 -9.88297999E-002 -6.07600532E+001 -3.11507464E+001 -3.11459973E+001 + 1.20000000E+002 3.60000000E+002 -5.42537384E-003 2.97149082E-003 -9.61757227E-002 6.86747401E-002 -6.19505535E+001 -3.63277899E+001 -3.63159072E+001 + 1.25000000E+002 3.60000000E+002 -8.00568462E-003 4.35450910E-003 3.03845114E-002 3.88712015E-002 -5.85849676E+001 -4.39149643E+001 -4.37692580E+001 + 1.30000000E+002 3.60000000E+002 -6.71882425E-003 8.03098803E-003 3.06645714E-002 -6.06052445E-003 -5.73788417E+001 -4.78793573E+001 -4.74174692E+001 + 1.35000000E+002 3.60000000E+002 -2.15870267E-003 8.32893197E-003 5.66850197E-002 3.91614410E-002 -5.90843647E+001 -4.10144886E+001 -4.09472789E+001 + 1.40000000E+002 3.60000000E+002 1.81305905E-004 4.54806552E-003 1.63379509E-001 2.80027823E-002 -6.46150765E+001 -3.33888107E+001 -3.33855373E+001 + 1.45000000E+002 3.60000000E+002 -1.65324501E-003 1.49583221E-003 1.74404863E-001 -5.18375198E-002 -7.08143026E+001 -3.25796780E+001 -3.25790260E+001 + 1.50000000E+002 3.60000000E+002 -3.93785482E-003 2.13538410E-003 6.75681008E-002 5.19017571E-002 -6.47537764E+001 -3.91695951E+001 -3.91576065E+001 + 1.55000000E+002 3.60000000E+002 -3.01845678E-003 4.16108638E-003 1.44543832E-001 4.78924802E-001 -6.35582385E+001 -2.37945599E+001 -2.37941013E+001 + 1.60000000E+002 3.60000000E+002 5.15456724E-004 3.83254620E-003 6.92539591E-001 1.01271458E+000 -6.60309024E+001 -1.60025594E+001 -1.60025162E+001 + 1.65000000E+002 3.60000000E+002 3.64461682E-003 2.71280150E-004 1.65317588E+000 1.31538224E+000 -6.65214747E+001 -1.12820231E+001 -1.12820101E+001 + 1.70000000E+002 3.60000000E+002 4.55075755E-003 -4.51789990E-003 2.68546508E+000 1.27536127E+000 -6.16378900E+001 -8.31483480E+000 -8.31481460E+000 + 1.75000000E+002 3.60000000E+002 3.70019184E-003 -8.09455086E-003 3.43761519E+000 1.06993182E+000 -5.87905329E+001 -6.65180280E+000 -6.65177626E+000 + 1.80000000E+002 3.60000000E+002 2.47696993E-003 -9.21954963E-003 3.70765173E+000 9.62234700E-001 -5.81816324E+001 -6.11344303E+000 -6.11341605E+000 diff --git a/src/ScattingAntParams/ScatteringAntSetting.ini b/src/ScattingAntParams/ScatteringAntSetting.ini new file mode 100644 index 0000000..5d4b947 --- /dev/null +++ b/src/ScattingAntParams/ScatteringAntSetting.ini @@ -0,0 +1,43 @@ +[General] +CoordinateSystemName="Spheric(R,theta,phi)" +description=R:半径,theta 入射角,phi 方位角 +A1="9.3,90,0" +A2="9.3,90,180" +S1="9.3,45,14" +S3="9.3,45,45" +S5="9.3,45,60" +S8="9.3,45,120" +S10="9.3,45,135" +S12="9.3,45,166" +F1="9.3,75,15" +F2="9.3,75,30" +F3="9.3,75,45" +F4="9.3,75,60" +F5="9.3,75,75" +F6="9.3,75,86" +F7="9.3,75,94" +F8="9.3,75,105" +F9="9.3,75,120" +F10="9.3,75,135" +F11="9.3,75,151" +F12="9.3,75,165" +ant_A1=A1_ant.ffe +ant_A2=A2_ant.ffe +ant_S1=S1_ant.ffe +ant_S3=S3_ant.ffe +ant_S5=S5_ant.ffe +ant_S8=S8_ant.ffe +ant_S10=S10_ant.ffe +ant_S12=S12_ant.ffe +ant_F1=F1_ant.ffe +ant_F2=F2_ant.ffe +ant_F3=F3_ant.ffe +ant_F4=F4_ant.ffe +ant_F5=F5_ant.ffe +ant_F6=F6_ant.ffe +ant_F7=F7_ant.ffe +ant_F8=F8_ant.ffe +ant_F9=F9_ant.ffe +ant_F10=F10_ant.ffe +ant_F11=F11_ant.ffe +ant_F12=F12_ant.ffe diff --git a/src/SqliteDBProcess/CMakeLists.txt b/src/SqliteDBProcess/CMakeLists.txt new file mode 100644 index 0000000..73bc1d0 --- /dev/null +++ b/src/SqliteDBProcess/CMakeLists.txt @@ -0,0 +1,207 @@ +#----------------------------------------------------------------------------- +# 将点云与 mesh 表达合并,不再单独处理点云 +# 加载: 点云-> mesh +# 处理: mesh->点云-> 处理模块 -> mesh +# +#----------------------------------------------------------------------------- + +#----------------------------------------------------------------------------- +# 头文件搜索路径 +#----------------------------------------------------------------------------- +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..) + +# boost +include_directories(D:/vcpkg/installed/x64-windows/include) + +# pcl +include_directories(C:/PCL/3rdParty/FLANN/include) +include_directories(C:/PCL/3rdParty/VTK/include/vtk-9.3) +include_directories(C:/PCL/include/pcl-1.14) + +# qt5 +include_directories(C:/Qt/5.15.2/msvc2019_64/include/QtQml) + +# json +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../json) + +# qscintilla2 +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../qscintilla2) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../qscintilla2/lexers) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../qscintilla2/include) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../qscintilla2/lexlib) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../qscintilla2/Qt4Qt5) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../qscintilla2/src) + + +# qcustomplot +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../qcustomplot) + +# qhexedit +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../qhexedit) + + +# 内部结构 +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/SqliteDBProcess/src) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/modelProcess) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/EchoShowProcess) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/OCCViewer) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/PointCloudProcess) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/SharedModuleLib) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/TableProcess) +include_directories(${CMAKE_CURRENT_SOURCE_DIR}/TaskXml) + + + + +#----------------------------------------------------------------------------- +# 链接库 +#----------------------------------------------------------------------------- + +# pcl +link_directories("C:/PCL/3rdParty/FLANN/lib") +link_directories("C:/VTK/lib") +link_directories("C:/PCL/lib") + + +#----------------------------------------------------------------------------- +# 自动添加include目录 +#----------------------------------------------------------------------------- +set(CMAKE_INCLUDE_CURRENT_DIR ON) +set(CMAKE_AUTOUIC ON) +set(CMAKE_AUTOMOC ON) +set(CMAKE_AUTORCC ON) + + + +#----------------------------------------------------------------------------- +# 添加资源文件 +#----------------------------------------------------------------------------- +set(_qrc "${CMAKE_CURRENT_SOURCE_DIR}/../qrc/WBCLFZSystemModule.qrc") +set(_lang "${CMAKE_CURRENT_SOURCE_DIR}/../qrc/translations.qrc") +qt5_add_resources(_resource ${_qrc} ${_lang}) + +#----------------------------------------------------------------------------- +# 源码扫描 +#----------------------------------------------------------------------------- +file(GLOB _ui "*.ui") +file(GLOB _header "*.h" "*.hpp") +file(GLOB _source "*.cpp") +qt5_wrap_ui(_interface ${_ui}) +message("_source ${_source}") +#----------------------------------------------------------------------------- +# 添加动态库目标 +#----------------------------------------------------------------------------- +add_library(PluginWBFZExchangePlugin + ${_resource} + ${_interface} + ${_header} + ${_source} +) + + +#----------------------------------------------------------------------------- +# 链接库 +#----------------------------------------------------------------------------- + +# pcl +link_directories("C:/PCL/3rdParty/FLANN/lib") +link_directories("C:/VTK/lib") +link_directories("C:/PCL/lib") + +find_package(Qt5 REQUIRED COMPONENTS Core Quick Sql Core Xml Opengl Gui Svg Xmlpatterns Uitools Widgets Qml Printsupport Sensors Quickwidgets Quick Concurrent Openglextensions Charts Datavisualization) +find_package(PCL ) + + +# boost +include_directories(D:/vcpkg/installed/x64-windows/include) + +# pcl +include_directories(C:/PCL/3rdParty/FLANN/include) +include_directories(C:/PCL/3rdParty/VTK/include/vtk-9.3) +include_directories(C:/PCL/include/pcl-1.14) + + +include_directories(${PCL_INCLUDE_DIRS}) +link_directories(${PCL_LIBRARY_DIRS}) +add_definitions(${PCL_DEFINITIONS}) + + + +#----------------------------------------------------------------------------- +# 添加接口声明宏 +#----------------------------------------------------------------------------- +target_compile_definitions(PluginWBFZExchangePlugin PRIVATE "NOMINMAX") # 禁用vc++ 中的min max 定义,避免与 pcl 的中 std::min,pcl::max 函数冲突 +target_compile_definitions(PluginWBFZExchangePlugin PRIVATE "WBFZ_API") +target_compile_definitions(PluginWBFZExchangePlugin PRIVATE "WBCLFZSYSTEMMODULE_API") +target_compile_definitions(PluginWBFZExchangePlugin PRIVATE "LAMPTOOL_API") + +#----------------------------------------------------------------------------- +# 安装Qt的依赖文件 +#----------------------------------------------------------------------------- +get_target_property(_qmake_executable Qt5::qmake IMPORTED_LOCATION) +get_filename_component(_qt_bin_dir "${_qmake_executable}" DIRECTORY) + + + + +list(APPEND _depend_library + qcustomplot qhexedit qscintilla2 Common PointCloudOperator Settings PythonModule DataProperty MeshData Material Geometry BCBase ConfigOptions SelfDefObject ModelData ModuleBase PluginManager GeometryCommand GeometryWidgets IO MainWidgets MainWindow +) + + +list(APPEND _runtimes_libraries + LAMPCAE::CGNS Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Xml +) + + +list(APPEND _runtimes_libraries + Qt5::Network Qt5::Core Qt5::Gui Qt5::Widgets Qt5::DBus Qt5::Core Qt5::Xml Qt5::OpenGL Qt5::Gui Qt5::Svg Qt5::Widgets Qt5::Qml Qt5::DataVisualization Qt5::Charts Qt5::PrintSupport Qt5::Test +) + +list(APPEND _runtimes_libraries + OpenCASCADE::TKOpenGl OpenCASCADE::TKOffset OpenCASCADE::TKSTL OpenCASCADE::Freetype OpenCASCADE::TKBO OpenCASCADE::TKBRep OpenCASCADE::TKBool OpenCASCADE::TKCAF OpenCASCADE::TKCDF OpenCASCADE::TKG2d OpenCASCADE::TKG3d OpenCASCADE::TKGeomAlgo OpenCASCADE::TKGeomBase OpenCASCADE::TKHLR OpenCASCADE::TKIGES OpenCASCADE::TKLCAF OpenCASCADE::TKMath OpenCASCADE::TKMesh OpenCASCADE::TKPrim OpenCASCADE::TKSTEP OpenCASCADE::TKSTEP209 OpenCASCADE::TKSTEPAttr OpenCASCADE::TKSTEPBase OpenCASCADE::TKService OpenCASCADE::TKShHealing OpenCASCADE::TKTopAlgo OpenCASCADE::TKV3d OpenCASCADE::TKVCAF OpenCASCADE::TKXCAF OpenCASCADE::TKXDEIGES OpenCASCADE::TKXSBase OpenCASCADE::TKernel Qt5::Widgets Qt5::Xml VTK::CommonColor VTK::CommonComputationalGeometry VTK::CommonCore VTK::CommonDataModel VTK::CommonExecutionModel VTK::CommonMath VTK::CommonMisc VTK::CommonSystem VTK::CommonTransforms VTK::FiltersCore VTK::FiltersExtraction VTK::FiltersGeneral VTK::FiltersGeometry VTK::FiltersSources VTK::FiltersStatistics VTK::IOCore VTK::IOLegacy VTK::IOXML VTK::IOXMLParser VTK::ImagingCore VTK::ImagingFourier VTK::ImagingMath VTK::InteractionStyle VTK::ParallelCore VTK::ParallelDIY VTK::RenderingCore VTK::RenderingFreeType VTK::RenderingOpenGL2 VTK::RenderingUI VTK::RenderingVolume VTK::RenderingVolumeOpenGL2 VTK::doubleconversion VTK::expat VTK::freetype VTK::glew VTK::lz4 VTK::lzma VTK::sys VTK::zlib VTK::IOGeometry +) + +list(APPEND _runtimes_libraries + VTK::CommonColor VTK::CommonComputationalGeometry VTK::CommonCore VTK::CommonDataModel VTK::CommonExecutionModel VTK::CommonMath VTK::CommonMisc VTK::CommonSystem VTK::CommonTransforms VTK::DICOMParser VTK::FiltersCore VTK::FiltersGeneral VTK::FiltersGeometry VTK::FiltersHybrid VTK::FiltersModeling VTK::FiltersSources VTK::IOCore VTK::IOChemistry VTK::IOGeometry VTK::IOImage VTK::IOLegacy VTK::ImagingCore VTK::ImagingSources VTK::RenderingCore VTK::RenderingLOD VTK::doubleconversion VTK::jpeg VTK::jsoncpp VTK::lz4 VTK::lzma VTK::metaio VTK::png VTK::pugixml VTK::sys VTK::tiff VTK::zlib +) + + + +target_include_directories(PluginWBFZExchangePlugin PRIVATE ${Qwt_INCLUDE_DIRS}) +#----------------------------------------------------------------------------- +# 链接依赖库 +#----------------------------------------------------------------------------- +target_link_libraries(PluginWBFZExchangePlugin PRIVATE + ${_runtimes_libraries} + ${_depend_library} + ${PCL_LIBRARIES} + unofficial::sqlite3::sqlite3 + GDAL::GDAL + FFTW3::fftw3 + GSL::gsl GSL::gslcblas + +) + +#----------------------------------------------------------------------------- +# 添加依赖关系 +#----------------------------------------------------------------------------- +add_dependencies(PluginWBFZExchangePlugin ${_depend_library}) + +#----------------------------------------------------------------------------- +# 添加运行时依赖关系 +#----------------------------------------------------------------------------- +set(LAMPCAE_PluginWBFZExchangePlugin_Runtimes_Libraries ${_runtimes_libraries} PARENT_SCOPE) + +#----------------------------------------------------------------------------- +# 设置插件的输出目录 +#----------------------------------------------------------------------------- +set_target_properties(PluginWBFZExchangePlugin + PROPERTIES + ARCHIVE_OUTPUT_DIRECTORY_RELEASE $/plugins + LIBRARY_OUTPUT_DIRECTORY_RELEASE $/plugins + RUNTIME_OUTPUT_DIRECTORY_RELEASE $/plugins + ARCHIVE_OUTPUT_DIRECTORY_DEBUG $/plugins + LIBRARY_OUTPUT_DIRECTORY_DEBUG $/plugins + RUNTIME_OUTPUT_DIRECTORY_DEBUG $/plugins +) \ No newline at end of file diff --git a/src/SqliteDBProcess/images/logo.png b/src/SqliteDBProcess/images/logo.png new file mode 100644 index 0000000..7897a11 Binary files /dev/null and b/src/SqliteDBProcess/images/logo.png differ diff --git a/src/SqliteDBProcess/images/logo.svg b/src/SqliteDBProcess/images/logo.svg new file mode 100644 index 0000000..7817ec7 --- /dev/null +++ b/src/SqliteDBProcess/images/logo.svg @@ -0,0 +1,391 @@ + + + logo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + logo + + + + + + https://sqlitebrowser.org + + + + + DB Browser for SQLite Logo + 2020Jun05 + + + GPL3+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/SqliteDBProcess/images/sqlitebrowser.png b/src/SqliteDBProcess/images/sqlitebrowser.png new file mode 100644 index 0000000..5c1e48d Binary files /dev/null and b/src/SqliteDBProcess/images/sqlitebrowser.png differ diff --git a/src/SqliteDBProcess/src/AboutDialog.cpp b/src/SqliteDBProcess/src/AboutDialog.cpp new file mode 100644 index 0000000..0525f59 --- /dev/null +++ b/src/SqliteDBProcess/src/AboutDialog.cpp @@ -0,0 +1,18 @@ +#include "AboutDialog.h" +#include "ui_AboutDialog.h" +#include "Application.h" + +AboutDialog::AboutDialog(QWidget *parent) : + QDialog(parent), + ui(new Ui::AboutDialog) +{ + ui->setupUi(this); + this->setFixedSize(this->width(), this->height()); + this->setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint); + ui->label_version->setText(Application::versionInformation()); +} + +AboutDialog::~AboutDialog() +{ + delete ui; +} diff --git a/src/SqliteDBProcess/src/AboutDialog.h b/src/SqliteDBProcess/src/AboutDialog.h new file mode 100644 index 0000000..7b7cfb4 --- /dev/null +++ b/src/SqliteDBProcess/src/AboutDialog.h @@ -0,0 +1,22 @@ +#ifndef ABOUTDIALOG_H +#define ABOUTDIALOG_H +#include "WBFZExchangePluginAPI.h" +#include + +namespace Ui { +class AboutDialog; +} + +class AboutDialog : public QDialog +{ + Q_OBJECT + +public: + explicit AboutDialog(QWidget *parent = nullptr); + ~AboutDialog(); + +private: + Ui::AboutDialog *ui; +}; + +#endif diff --git a/src/SqliteDBProcess/src/AboutDialog.ui b/src/SqliteDBProcess/src/AboutDialog.ui new file mode 100644 index 0000000..e284480 --- /dev/null +++ b/src/SqliteDBProcess/src/AboutDialog.ui @@ -0,0 +1,164 @@ + + + AboutDialog + + + + 0 + 0 + 653 + 502 + + + + About DB Browser for SQLite + + + + :/icons/appicon:/icons/appicon + + + false + + + + + + 0 + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + Version + + + 5 + + + Qt::TextSelectableByMouse + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + 0 + 0 + + + + + 128 + 128 + + + + + + + :/icons/appicon + + + true + + + + + + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + true + + + true + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Close + + + + + + + + + + + buttonBox + accepted() + AboutDialog + accept() + + + 248 + 340 + + + 157 + 274 + + + + + buttonBox + rejected() + AboutDialog + reject() + + + 316 + 340 + + + 286 + 274 + + + + + diff --git a/src/SqliteDBProcess/src/AddRecordDialog.cpp b/src/SqliteDBProcess/src/AddRecordDialog.cpp new file mode 100644 index 0000000..840b40a --- /dev/null +++ b/src/SqliteDBProcess/src/AddRecordDialog.cpp @@ -0,0 +1,367 @@ +#include "AddRecordDialog.h" +#include "ui_AddRecordDialog.h" +#include "sqlitedb.h" +#include "Settings.h" + +#include +#include +#include +#include +#include +#include +#include + +class NullLineEdit: public QLineEdit { + Q_OBJECT +private: + bool m_isNull; + +public: + explicit NullLineEdit(QWidget* parent=nullptr): QLineEdit(parent), m_isNull (true) {} + + bool isNull() {return m_isNull;} + void setNull(bool value) { + if (value) { + clear(); + setStyleSheet("QLineEdit{ font-style: italic; }"); + setPlaceholderText(Settings::getValue("databrowser", "null_text").toString()); + setModified(false); + } else { + setStyleSheet(""); + setPlaceholderText(""); + } + m_isNull = value; + } +protected: + void contextMenuEvent(QContextMenuEvent *event) + { + QMenu* editContextMenu = createStandardContextMenu(); + + QAction* nullAction = new QAction(QIcon(":/icons/set_to_null"), tr("Set to NULL"), editContextMenu); + connect(nullAction, &QAction::triggered, [&]() { + setNull(true); + }); + nullAction->setShortcut(QKeySequence(tr("Alt+Del"))); + editContextMenu->addSeparator(); + editContextMenu->addAction(nullAction); + + editContextMenu->exec(event->globalPos()); + delete editContextMenu; + } + + void keyPressEvent(QKeyEvent *evt) { + // Alt+Del sets field to NULL + if((evt->modifiers() & Qt::AltModifier) && (evt->key() == Qt::Key_Delete)) + setNull(true); + else { + // Remove any possible NULL mark when user starts typing + setStyleSheet(""); + setPlaceholderText(""); + QLineEdit::keyPressEvent(evt); + } + } +}; + +// Styled Item Delegate for non-editable columns (all except Value) +class NoEditDelegate: public QStyledItemDelegate { +public: + explicit NoEditDelegate(QObject* parent=nullptr): QStyledItemDelegate(parent) {} + QWidget* createEditor(QWidget* /* parent */, const QStyleOptionViewItem& /* option */, const QModelIndex& /* index */) const override { + return nullptr; + } +}; + +// Styled Item Delegate for editable columns (Value) +class EditDelegate: public QStyledItemDelegate { + +public: + explicit EditDelegate(QObject* parent=nullptr): QStyledItemDelegate(parent) {} + QWidget* createEditor(QWidget *parent, const QStyleOptionViewItem& /* option */, const QModelIndex& /* index */) const override { + return new NullLineEdit(parent); + } + + void setEditorData(QWidget *editor, const QModelIndex &index) const override { + + NullLineEdit* lineEditor = static_cast(editor); + // Set the editor in the null state (unless the user has actually written NULL) + if (index.model()->data(index, Qt::UserRole).isNull() && + index.model()->data(index, Qt::DisplayRole) == Settings::getValue("databrowser", "null_text")) + lineEditor->setNull(true); + else { + QStyledItemDelegate::setEditorData(editor, index); + lineEditor->setNull(false); + } + } + void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override { + + NullLineEdit* lineEditor = static_cast(editor); + // Restore NULL text (unless the user has already modified the value) + if (lineEditor->isNull() && !lineEditor->isModified()) { + model->setData(index, Settings::getValue("databrowser", "null_text"), Qt::DisplayRole); + model->setData(index, QVariant(), Qt::UserRole); + } else { + // Get isModified flag before calling setModelData + bool modified = lineEditor->isModified(); + QStyledItemDelegate::setModelData(editor, model, index); + // Copy the just edited data to the user role, so it can be later used in the SQL insert statement. + if (modified) { + lineEditor->setNull(false); + model->setData(index, model->data(index, Qt::EditRole), Qt::UserRole); + } + } + } +}; + +AddRecordDialog::AddRecordDialog(DBBrowserDB& db, const sqlb::ObjectIdentifier& tableName, QWidget* parent, const std::vector& _pseudo_pk) + : QDialog(parent), + ui(new Ui::AddRecordDialog), + pdb(db), + curTable(tableName), + pseudo_pk(_pseudo_pk) +{ + // Create UI + ui->setupUi(this); + connect(ui->treeWidget, &QTreeWidget::itemChanged, this, &AddRecordDialog::itemChanged); + + populateFields(); + + ui->sqlTextEdit->setReadOnly(true); + + // Update UI + ui->treeWidget->resizeColumnToContents(kName); + ui->treeWidget->resizeColumnToContents(kType); + ui->treeWidget->setFrameShape(QFrame::Box); +} + +AddRecordDialog::~AddRecordDialog() +{ + delete ui; +} + +void AddRecordDialog::keyPressEvent(QKeyEvent *evt) +{ + if((evt->modifiers() & Qt::ControlModifier) + && (evt->key() == Qt::Key_Enter || evt->key() == Qt::Key_Return)) + { + accept(); + return; + } + if(evt->key() == Qt::Key_Enter || evt->key() == Qt::Key_Return) + return; + QDialog::keyPressEvent(evt); +} + +void AddRecordDialog::setDefaultsStyle(QTreeWidgetItem* item) +{ + // Default values are displayed with the style configured for NULL values in the Data Browser. + QFont font; + font.setItalic(true); + item->setData(kValue, Qt::FontRole, font); + item->setData(kValue, Qt::BackgroundRole, QColor(Settings::getValue("databrowser", "null_bg_colour").toString())); + item->setData(kValue, Qt::ForegroundRole, QColor(Settings::getValue("databrowser", "null_fg_colour").toString())); +} + +void AddRecordDialog::populateFields() +{ + // Block the itemChanged signal or the SQL text will be updated while filling the treewidget. + ui->treeWidget->blockSignals(true); + + ui->treeWidget->clear(); + + // Allow all Edit Triggers, but they will only apply to the columns with + // editors (Value) + ui->treeWidget->setEditTriggers(QAbstractItemView::AllEditTriggers); + + // Disallow edition of columns except Value + ui->treeWidget->setItemDelegateForColumn(kName, new NoEditDelegate(this)); + ui->treeWidget->setItemDelegateForColumn(kType, new NoEditDelegate(this)); + ui->treeWidget->setItemDelegateForColumn(kValue, new EditDelegate(this)); + + sqlb::FieldVector fields; + std::vector fks; + sqlb::StringVector pk; + bool auto_increment = false; + + // Initialize fields, fks and pk differently depending on whether it's a table or a view. + const sqlb::ObjectPtr obj = pdb.getObjectByName(curTable); + if (obj->type() == sqlb::Object::Table) + { + sqlb::TablePtr m_table = pdb.getObjectByName(curTable); + fields = m_table->fields; + for(const sqlb::Field& f : fields) + fks.push_back(m_table->constraint({f.name()}, sqlb::Constraint::ForeignKeyConstraintType)); + + const auto pk_constraint = m_table->primaryKey(); + if(pk_constraint) + { + pk = pk_constraint->columnList(); + auto_increment = pk_constraint->autoIncrement(); + } + } else { + sqlb::ViewPtr m_view = pdb.getObjectByName(curTable); + fields = m_view->fields; + fks.resize(fields.size(), sqlb::ConstraintPtr(nullptr)); + pk = pseudo_pk; + } + + for(uint i = 0; i < fields.size(); i++) + { + const sqlb::Field& f = fields[i]; + QTreeWidgetItem *tbitem = new QTreeWidgetItem(ui->treeWidget); + + tbitem->setFlags(Qt::ItemIsEnabled | Qt::ItemIsEditable); + + tbitem->setText(kName, QString::fromStdString(f.name())); + tbitem->setText(kType, QString::fromStdString(f.type())); + tbitem->setData(kType, Qt::UserRole, f.affinity()); + + // NOT NULL fields are indicated in bold. + if (f.notnull()) { + QFont font; + font.setBold(true); + tbitem->setData(kName, Qt::FontRole, font); + } + if (contains(pk, f.name())) + tbitem->setIcon(kName, QIcon(":/icons/field_key")); + else if (fks[i]) + tbitem->setIcon(kName, QIcon(":/icons/field_fk")); + else + tbitem->setIcon(kName, QIcon(":/icons/field")); + + QString toolTip; + + if (auto_increment && contains(pk, f.name())) + toolTip.append(tr("Auto-increment\n")); + + if (f.unique()) + toolTip.append(tr("Unique constraint\n")); + + if (!f.check().empty()) + toolTip.append(tr("Check constraint:\t %1\n").arg(QString::fromStdString(f.check()))); + + auto fk = std::dynamic_pointer_cast(fks[i]); + if(fk) + toolTip.append(tr("Foreign key:\t %1\n").arg(QString::fromStdString(fk->toString()))); + + setDefaultsStyle(tbitem); + + // Display Role is used for displaying the default values. + // Only when they are changed, the User Role is updated and then used in the INSERT query. + if (!f.defaultValue().empty()) { + QString defaultValue = QString::fromStdString(f.defaultValue()); + tbitem->setData(kValue, Qt::DisplayRole, defaultValue); + toolTip.append(tr("Default value:\t %1\n").arg(defaultValue)); + } else + tbitem->setData(kValue, Qt::DisplayRole, Settings::getValue("databrowser", "null_text")); + + + if (!toolTip.isEmpty()) { + // Chop last end-of-line + toolTip.chop(1); + tbitem->setToolTip(kValue, toolTip); + tbitem->setToolTip(kType, toolTip); + } + } + + updateSqlText(); + + // Enable signals from tree widget + ui->treeWidget->blockSignals(false); +} + +void AddRecordDialog::accept() +{ + if(!pdb.executeSQL(ui->sqlTextEdit->text().toStdString())) + { + QMessageBox::warning( + this, + QApplication::applicationName(), + tr("Error adding record. Message from database engine:\n\n%1").arg(pdb.lastError())); + return; + } + + QDialog::accept(); +} + +void AddRecordDialog::updateSqlText() +{ + QString stmt = QString("INSERT INTO %1").arg(QString::fromStdString(curTable.toString())); + + QStringList vals; + QStringList fields; + + // If the User Role of the Value column is not null, the entered value is used + // in the INSERT statement. Otherwise, SQLite just uses the default value for the field. + for(int i = 0; i < ui->treeWidget->topLevelItemCount(); ++i) + { + QTreeWidgetItem *item = ui->treeWidget->topLevelItem(i); + // User role contains now values entered by the user, that we actually need to insert. + QVariant value = item->data(kValue, Qt::UserRole); + + if (!value.isNull()) { + bool isNumeric; + fields << sqlb::escapeIdentifier(item->text(kName)); + value.toDouble(&isNumeric); + // If it has a numeric format and has no text affinity, do not quote it. + if (isNumeric && item->data(kType, Qt::UserRole).toInt() != sqlb::Field::TextAffinity) + vals << value.toString(); + else + vals << sqlb::escapeString(value.toString()); + } + } + + if(fields.empty()) + { + stmt.append(" DEFAULT VALUES;"); + } else { + stmt.append("\n("); + stmt.append(fields.join(", ")); + stmt.append(")\nVALUES ("); + stmt.append(vals.join(", ")); + stmt.append(");"); + } + + ui->sqlTextEdit->setText(stmt); +} + +void AddRecordDialog::itemChanged(QTreeWidgetItem *item, int column) +{ + if (item->data(column, Qt::UserRole).isNull()) + setDefaultsStyle(item); + else { + // Restore default fore/background for the value column, + // since the value has changed away from the default. + QFont font; + font.setItalic(false); + item->setData(column, Qt::FontRole, font); + item->setData(column, Qt::BackgroundRole, item->data(kName, Qt::BackgroundRole)); + item->setData(column, Qt::ForegroundRole, item->data(kName, Qt::ForegroundRole)); + } + + updateSqlText(); +} + +void AddRecordDialog::help() +{ + QWhatsThis::enterWhatsThisMode(); +} + +void AddRecordDialog::on_buttonBox_clicked(QAbstractButton* button) +{ + if (button == ui->buttonBox->button(QDialogButtonBox::Cancel)) + reject(); + else if (button == ui->buttonBox->button(QDialogButtonBox::Save)) + accept(); + else if (button == ui->buttonBox->button(QDialogButtonBox::Help)) + help(); + else if (button == ui->buttonBox->button(QDialogButtonBox::RestoreDefaults)) { + if (QMessageBox::warning(this, + QApplication::applicationName(), + tr("Are you sure you want to restore all the entered values to their defaults?"), + QMessageBox::RestoreDefaults | QMessageBox::Cancel, + QMessageBox::Cancel) == QMessageBox::RestoreDefaults) + populateFields(); + } +} + +#include "AddRecordDialog.moc" diff --git a/src/SqliteDBProcess/src/AddRecordDialog.h b/src/SqliteDBProcess/src/AddRecordDialog.h new file mode 100644 index 0000000..801fee8 --- /dev/null +++ b/src/SqliteDBProcess/src/AddRecordDialog.h @@ -0,0 +1,52 @@ +#ifndef ADDRECORDDIALOG_H +#define ADDRECORDDIALOG_H +#include "WBFZExchangePluginAPI.h" +#include "sql/ObjectIdentifier.h" + +#include + +class DBBrowserDB; +class QTreeWidgetItem; + +namespace Ui { +class AddRecordDialog; +} +class QAbstractButton; + + +class AddRecordDialog : public QDialog +{ + Q_OBJECT + +public: + explicit AddRecordDialog(DBBrowserDB& pdb, const sqlb::ObjectIdentifier& tableName, QWidget* parent = nullptr, const std::vector& pseudo_pk = {}); + ~AddRecordDialog() override; + +protected: + void keyPressEvent(QKeyEvent *evt) override; + +private: + enum Columns { + kName = 0, + kType = 1, + kValue = 2, + }; + + void updateSqlText(); + void populateFields(); + void setDefaultsStyle(QTreeWidgetItem* item); + +private slots: + void accept() override; + void itemChanged(QTreeWidgetItem* item, int column); + void help(); + void on_buttonBox_clicked(QAbstractButton* button); + +private: + Ui::AddRecordDialog* ui; + DBBrowserDB& pdb; + sqlb::ObjectIdentifier curTable; + std::vector pseudo_pk; +}; + +#endif diff --git a/src/SqliteDBProcess/src/AddRecordDialog.ui b/src/SqliteDBProcess/src/AddRecordDialog.ui new file mode 100644 index 0000000..74d1fe9 --- /dev/null +++ b/src/SqliteDBProcess/src/AddRecordDialog.ui @@ -0,0 +1,158 @@ + + + AddRecordDialog + + + + 0 + 0 + 650 + 500 + + + + Add New Record + + + + :/icons/table:/icons/table + + + true + + + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + Qt::Vertical + + + + + 0 + 0 + + + + + 0 + 140 + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + + + false + + + + Name + + + + + Type + + + + + Value + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + + + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + + + true + + + + + + + + + + + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Help|QDialogButtonBox::RestoreDefaults|QDialogButtonBox::Save + + + + + + + + SqlTextEdit + QWidget +
sqltextedit.h
+ 1 +
+
+ + treeWidget + sqlTextEdit + + + + + + + buttonBox + clicked(QAbstractButton*) + AddRecordDialog + on_buttonBox_clicked(QAbstractButton*) + + + 324 + 477 + + + 324 + 249 + + + + + + itemChanged() + +
diff --git a/src/SqliteDBProcess/src/Application.cpp b/src/SqliteDBProcess/src/Application.cpp new file mode 100644 index 0000000..d4d07d4 --- /dev/null +++ b/src/SqliteDBProcess/src/Application.cpp @@ -0,0 +1,280 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "Application.h" +#include "SqliteDBMainWindow.h" +//#include "RemoteNetwork.h" +#include "Settings.h" +#include "version.h" +#include "sqlitedb.h" + +Application::Application(int& argc, char** argv) : + QApplication(argc, argv) +{ + // Set organisation and application names + setOrganizationName(u8"lamp"); + setApplicationName(u8"Ա༭"); + + // Set character encoding to UTF8 + QTextCodec::setCodecForLocale(QTextCodec::codecForName("UTF-8")); + + // Load translations + bool ok; + QString name = Settings::getValue("General", "language").toString(); + + // First of all try to load the application translation file. + m_translatorApp = new QTranslator(this); + ok = m_translatorApp->load("sqlb_" + name, + QCoreApplication::applicationDirPath() + "/translations"); + // If failed then try to load .qm file from resources + if (ok == false) { + ok = m_translatorApp->load("sqlb_" + name, ":/translations"); + } + + if (ok == true) { + Settings::setValue("General", "language", name); + installTranslator(m_translatorApp); + + // The application translation file has been found and loaded. + // And now try to load a Qt translation file. + // Search path: + // 1) standard Qt translations directory; + // 2) the application translations directory. + m_translatorQt = new QTranslator(this); + + ok = m_translatorQt->load("qt_" + name, + QLibraryInfo::location(QLibraryInfo::TranslationsPath)); + if (ok == false) + ok = m_translatorQt->load("qt_" + name, "translations"); + if (ok == true) + installTranslator(m_translatorQt); + } else { + // Set the correct locale so that the program won't erroneously detect + // a language change when the user toggles settings for the first time. + // (it also prevents the program from always looking for a translation on launch) + Settings::setValue("General", "language", "en_US"); + + // Don't install a translator for Qt texts if no translator for DB4S texts could be loaded + m_translatorQt = nullptr; + } + + // On Windows, add the plugins subdirectory to the list of library directories. We need this + // for Qt to search for more image format plugins. +#ifdef Q_WS_WIN + QApplication::addLibraryPath(QApplication::applicationDirPath() + "/plugins"); +#endif + + // Work around a bug in QNetworkAccessManager which sporadically causes high pings for Wifi connections + // See https://bugreports.qt.io/browse/QTBUG-40332 + qputenv("QT_BEARER_POLL_TIMEOUT", QByteArray::number(INT_MAX)); + + // Remember default font size + Settings::rememberDefaultFontSize(font().pointSize()); + + // Parse command line + QString fileToOpen; + QString tableToBrowse; + QStringList sqlToExecute; + bool readOnly = false; + m_dontShowMainWindow = false; + for(int i=1;i|]\n"). + arg(QFileInfo(argv[0]).fileName())); + qWarning() << qPrintable(tr("Possible command line arguments:")); + qWarning() << qPrintable(tr(" -h, --help Show command line options")); + qWarning() << qPrintable(tr(" -q, --quit Exit application after running scripts")); + qWarning() << qPrintable(tr(" -s, --sql Execute this SQL file after opening the DB")); + qWarning() << qPrintable(tr(" -t, --table Browse this table after opening the DB")); + qWarning() << qPrintable(tr(" -R, --read-only Open database in read-only mode")); + qWarning() << qPrintable(tr(" -o, --option /=")); + qWarning() << qPrintable(tr(" Run application with this setting temporarily set to value")); + qWarning() << qPrintable(tr(" -O, --save-option /=")); + qWarning() << qPrintable(tr(" Run application saving this value for this setting")); + qWarning() << qPrintable(tr(" -v, --version Display the current version")); + qWarning() << qPrintable(tr(" Open this SQLite database")); + qWarning() << qPrintable(tr(" Open this project file (*.sqbpro)")); + m_dontShowMainWindow = true; + } else if(arguments().at(i) == "-v" || arguments().at(i) == "--version") { + qWarning() << qPrintable(versionInformation()); + m_dontShowMainWindow = true; + } else if(arguments().at(i) == "-s" || arguments().at(i) == "--sql") { + // Run SQL file: If file exists add it to list of scripts to execute + if(++i >= arguments().size()) + qWarning() << qPrintable(tr("The -s/--sql option requires an argument")); + else if(!QFile::exists(arguments().at(i))) + qWarning() << qPrintable(tr("The file %1 does not exist").arg(arguments().at(i))); + else + sqlToExecute.append(arguments().at(i)); + } else if(arguments().at(i) == "-t" || arguments().at(i) == "--table") { + if(++i >= arguments().size()) + qWarning() << qPrintable(tr("The -t/--table option requires an argument")); + else + tableToBrowse = arguments().at(i); + } else if(arguments().at(i) == "-q" || arguments().at(i) == "--quit") { + m_dontShowMainWindow = true; + } else if(arguments().at(i) == "-R" || arguments().at(i) == "--read-only") { + readOnly = true; + } else if(arguments().at(i) == "-o" || arguments().at(i) == "--option" || + arguments().at(i) == "-O" || arguments().at(i) == "--save-option") { + const QString optionWarning = tr("The -o/--option and -O/--save-option options require an argument in the form group/setting=value"); + bool saveToDisk = arguments().at(i) == "-O" || arguments().at(i) == "--save-option"; + if(++i >= arguments().size()) + qWarning() << qPrintable(optionWarning); + else { + QStringList option = arguments().at(i).split("="); + if (option.size() != 2) + qWarning() << qPrintable(optionWarning); + else { + QStringList setting = option.at(0).split("/"); + if (setting.size() != 2) + qWarning() << qPrintable(optionWarning); + else { + QVariant value; + // Split string lists. This assumes they are always named "*list" + if (setting.at(1).endsWith("list", Qt::CaseInsensitive)) + value = option.at(1).split(","); + else + value = option.at(1); + Settings::setValue(setting.at(0).toStdString(), setting.at(1).toStdString(), value, !saveToDisk); + } + } + } + } else { + // Other: Check if it's a valid file name + if(QFile::exists(arguments().at(i))) + fileToOpen = arguments().at(i); + else + qWarning() << qPrintable(tr("Invalid option/non-existant file: %1").arg(arguments().at(i))); + } + } + + if(m_dontShowMainWindow) { + m_mainWindow = nullptr; + return; + } + + // Show main window + m_mainWindow = new SqliteDBMainWindow(); + m_mainWindow->show(); + connect(this, &Application::lastWindowClosed, this, &Application::quit); + + // Open database if one was specified + if(fileToOpen.size()) + { + if(m_mainWindow->fileOpen(fileToOpen, false, readOnly)) + { + // If database could be opened run the SQL scripts + for(const QString& f : sqlToExecute) + { + QFile file(f); + if(file.open(QIODevice::ReadOnly)) + { + m_mainWindow->getDb().executeMultiSQL(file.readAll(), false, true); + file.close(); + } + } + if(!sqlToExecute.isEmpty()) + m_mainWindow->refresh(); + + // Jump to table if the -t/--table parameter was set + if(!tableToBrowse.isEmpty()) { + m_mainWindow->switchToBrowseDataTab(sqlb::ObjectIdentifier("main", tableToBrowse.toStdString())); + m_mainWindow->refresh(); + } + } + } +} + +Application::~Application() +{ + if(m_mainWindow) + delete m_mainWindow; +} + +bool Application::event(QEvent* event) +{ + switch(event->type()) + { + case QEvent::FileOpen: + m_mainWindow->fileOpen(static_cast(event)->file()); + return true; + default: + return QApplication::event(event); + } +} + +QString Application::versionString() +{ + // Nightly builds use a patch number of 99, and for these we include the build date in the version string. For + // our release versions (which use any other patch number) we don't include the build date. This should avoid + // confusion about what is more important, version number or build date, and about different build dates for + // the same version. This also should help making release builds reproducible out of the box. +#if PATCH_VERSION == 99 + return QString("%1 (%2)").arg(APP_VERSION, __DATE__); +#else + return QString("%1").arg(APP_VERSION); +#endif +} + +QString Application::versionInformation() +{ + QString sqlite_version, sqlcipher_version; + DBBrowserDB::getSqliteVersion(sqlite_version, sqlcipher_version); + if(sqlcipher_version.isNull()) + sqlite_version = tr("SQLite Version ") + sqlite_version; + else + sqlite_version = tr("SQLCipher Version %1 (based on SQLite %2)").arg(sqlcipher_version, sqlite_version); + + return + tr("DB Browser for SQLite Version %1.").arg(versionString() + "\n\n" + + tr("Built for %1, running on %2").arg(QSysInfo::buildAbi(), QSysInfo::currentCpuArchitecture()) + "\n" + + tr("Qt Version %1").arg(QT_VERSION_STR) + "\n" + + sqlite_version + ); +} + +void Application::reloadSettings() +{ + // Network settings + //RemoteNetwork::get().reloadSettings(); + + // Font settings + QFont f = font(); + f.setPointSize(Settings::getValue("General", "fontsize").toInt()); + setFont(f); +} + +// Functions for documenting the shortcuts in the user interface using native names +static QString shortcutsTip(const QList& keys) +{ + QString tip; + + if (!keys.isEmpty()) { + tip = " ["; + + for (const auto& shortcut : keys) + tip.append(shortcut.toString(QKeySequence::NativeText) + ", "); + tip.chop(2); + + tip.append("]"); + } + return tip; +} + +void addShortcutsTooltip(QAction* action, const QList& extraKeys) +{ + if (!action->shortcuts().isEmpty() || !extraKeys.isEmpty()) + action->setToolTip(action->toolTip() + shortcutsTip(action->shortcuts() + extraKeys)); +} diff --git a/src/SqliteDBProcess/src/Application.h b/src/SqliteDBProcess/src/Application.h new file mode 100644 index 0000000..05450b4 --- /dev/null +++ b/src/SqliteDBProcess/src/Application.h @@ -0,0 +1,43 @@ +#ifndef APPLICATION_H +#define APPLICATION_H +#include "WBFZExchangePluginAPI.h" +#include +#include + +class QAction; +class QTranslator; + +class SqliteDBMainWindow; + +class Application : public QApplication +{ + Q_OBJECT + +public: + explicit Application(int& argc, char** argv); + ~Application() override; + + bool dontShowMainWindow() const { return m_dontShowMainWindow; } + + SqliteDBMainWindow* mainWindow() { return m_mainWindow; } + + // DB4S version number as string + static QString versionString(); + // Version of DB4S and dependencies as string + static QString versionInformation(); + + static void reloadSettings(); + +protected: + bool event(QEvent* event) override; + +private: + bool m_dontShowMainWindow; + SqliteDBMainWindow* m_mainWindow; + QTranslator* m_translatorQt; + QTranslator* m_translatorApp; +}; + +void addShortcutsTooltip(QAction* action, const QList& extraKeys = QList()); + +#endif diff --git a/src/SqliteDBProcess/src/CipherDialog.cpp b/src/SqliteDBProcess/src/CipherDialog.cpp new file mode 100644 index 0000000..6b00961 --- /dev/null +++ b/src/SqliteDBProcess/src/CipherDialog.cpp @@ -0,0 +1,146 @@ +#include "CipherDialog.h" +#include "ui_CipherDialog.h" +#include "sqlitedb.h" + +#include +#include + +#include + +CipherDialog::CipherDialog(QWidget* parent, bool encrypt) : + QDialog(parent), + ui(new Ui::CipherDialog), + encryptMode(encrypt), + rawKeyValidator(new QRegularExpressionValidator(QRegularExpression("\\A(0x[a-fA-F0-9]+)\\Z"))) +{ + ui->setupUi(this); + + int minimumPageSizeExponent = 9; + int maximumPageSizeExponent = 16; + int defaultPageSizeExponent = 10; + + for(int exponent = minimumPageSizeExponent; exponent <= maximumPageSizeExponent; exponent++) + { + int pageSize = static_cast(qPow(2, exponent)); + ui->comboPageSize->addItem(QLocale().toString(pageSize), pageSize); + + if (exponent == defaultPageSizeExponent) + ui->comboPageSize->setCurrentIndex(exponent - minimumPageSizeExponent); + } + + ui->comboPageSize->setMinimumWidth(ui->editPassword->width()); + + if(encrypt) + { + ui->labelDialogDescription->setText(tr("Please set a key to encrypt the database.\nNote that if you change any of the other, optional, settings you'll need " + "to re-enter them as well every time you open the database file.\nLeave the password fields empty to disable the " + "encryption.\nThe encryption process might take some time and you should have a backup copy of your database! Unsaved " + "changes are applied before modifying the encryption.")); + } else { + ui->labelDialogDescription->setText(tr("Please enter the key used to encrypt the database.\nIf any of the other settings were altered for this database file " + "you need to provide this information as well.")); + ui->editPassword2->setVisible(false); + ui->labelPassword2->setVisible(false); + } + + // Set the default encryption settings depending on the SQLCipher version we use + QString sqlite_version, sqlcipher_version; + DBBrowserDB::getSqliteVersion(sqlite_version, sqlcipher_version); + if(sqlcipher_version.startsWith('4')) + ui->radioEncryptionSqlCipher4->setChecked(true); + else + ui->radioEncryptionSqlCipher3->setChecked(true); +} + +CipherDialog::~CipherDialog() +{ + delete rawKeyValidator; + delete ui; +} + +CipherSettings CipherDialog::getCipherSettings() const +{ + CipherSettings::KeyFormats keyFormat = CipherSettings::getKeyFormat(ui->comboKeyFormat->currentIndex()); + std::string password = ui->editPassword->text().toStdString(); + int pageSize = ui->comboPageSize->itemData(ui->comboPageSize->currentIndex()).toInt(); + + CipherSettings cipherSettings; + + cipherSettings.setKeyFormat(keyFormat); + cipherSettings.setPassword(password); + cipherSettings.setPageSize(pageSize); + cipherSettings.setKdfIterations(ui->spinKdfIterations->value()); + cipherSettings.setHmacAlgorithm("HMAC_" + ui->comboHmacAlgorithm->currentText().toStdString()); + cipherSettings.setKdfAlgorithm("PBKDF2_HMAC_" + ui->comboKdfAlgorithm->currentText().toStdString()); + cipherSettings.setPlaintextHeaderSize(ui->plaintextHeaderSize->value()); + + return cipherSettings; +} + +void CipherDialog::checkInputFields() +{ + if(sender() == ui->comboKeyFormat) + { + CipherSettings::KeyFormats keyFormat = CipherSettings::getKeyFormat(ui->comboKeyFormat->currentIndex()); + + if(keyFormat == CipherSettings::KeyFormats::Passphrase) + { + ui->editPassword->setValidator(nullptr); + ui->editPassword2->setValidator(nullptr); + ui->editPassword->setPlaceholderText(""); + } else if(keyFormat == CipherSettings::KeyFormats::RawKey) { + ui->editPassword->setValidator(rawKeyValidator); + ui->editPassword2->setValidator(rawKeyValidator); + ui->editPassword->setPlaceholderText("0x..."); + } + + ui->editPassword->setText(""); + ui->editPassword2->setText(""); + } + + bool valid = true; + if(encryptMode) + valid = ui->editPassword->text() == ui->editPassword2->text(); + + ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(valid); +} + +void CipherDialog::toggleEncryptionSettings() +{ + if(ui->radioEncryptionSqlCipher3->isChecked()) + { + // SQLCipher3 + ui->comboPageSize->setCurrentText(QLocale().toString(1024)); + ui->spinKdfIterations->setValue(64000); + ui->comboHmacAlgorithm->setCurrentText("SHA1"); + ui->comboKdfAlgorithm->setCurrentText("SHA1"); + ui->plaintextHeaderSize->setValue(0); + + ui->comboPageSize->setEnabled(false); + ui->spinKdfIterations->setEnabled(false); + ui->comboHmacAlgorithm->setEnabled(false); + ui->comboKdfAlgorithm->setEnabled(false); + ui->plaintextHeaderSize->setEnabled(false); + } else if(ui->radioEncryptionSqlCipher4->isChecked()) { + // SQLCipher4 + ui->comboPageSize->setCurrentText(QLocale().toString(4096)); + ui->spinKdfIterations->setValue(256000); + ui->comboHmacAlgorithm->setCurrentText("SHA512"); + ui->comboKdfAlgorithm->setCurrentText("SHA512"); + ui->plaintextHeaderSize->setValue(0); + + ui->comboPageSize->setEnabled(false); + ui->spinKdfIterations->setEnabled(false); + ui->comboHmacAlgorithm->setEnabled(false); + ui->comboKdfAlgorithm->setEnabled(false); + ui->plaintextHeaderSize->setEnabled(false); + } else if(ui->radioEncryptionCustom->isChecked()) { + // Custom + + ui->comboPageSize->setEnabled(true); + ui->spinKdfIterations->setEnabled(true); + ui->comboHmacAlgorithm->setEnabled(true); + ui->comboKdfAlgorithm->setEnabled(true); + ui->plaintextHeaderSize->setEnabled(true); + } +} diff --git a/src/SqliteDBProcess/src/CipherDialog.h b/src/SqliteDBProcess/src/CipherDialog.h new file mode 100644 index 0000000..75a7c12 --- /dev/null +++ b/src/SqliteDBProcess/src/CipherDialog.h @@ -0,0 +1,36 @@ +#ifndef CIPHERDIALOG_H +#define CIPHERDIALOG_H +#include "WBFZExchangePluginAPI.h" +#include + +#include "CipherSettings.h" + +class QRegularExpressionValidator; + +namespace Ui { +class CipherDialog; +} + +class CipherDialog : public QDialog +{ + Q_OBJECT + +public: + // Set the encrypt parameter to true when the dialog is used to encrypt a database; + // set it to false if the dialog is used to ask the user for the key to decrypt a file. + explicit CipherDialog(QWidget* parent, bool encrypt); + ~CipherDialog() override; + + CipherSettings getCipherSettings() const; + +private: + Ui::CipherDialog* ui; + bool encryptMode; + QRegularExpressionValidator* rawKeyValidator; + +private slots: + void checkInputFields(); + void toggleEncryptionSettings(); +}; + +#endif diff --git a/src/SqliteDBProcess/src/CipherDialog.ui b/src/SqliteDBProcess/src/CipherDialog.ui new file mode 100644 index 0000000..00c1d28 --- /dev/null +++ b/src/SqliteDBProcess/src/CipherDialog.ui @@ -0,0 +1,403 @@ + + + CipherDialog + + + + 0 + 0 + 712 + 299 + + + + SQLCipher encryption + + + + + + + + + + + + + &Password + + + editPassword + + + + + + + QLineEdit::Password + + + + + + + &Reenter password + + + editPassword2 + + + + + + + QLineEdit::Password + + + + + + + + + + + + Passphrase + + + + + Raw key + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + + + Encr&yption settings + + + radioEncryptionSqlCipher3 + + + + + + + + + SQLCipher &3 defaults + + + + + + + SQLCipher &4 defaults + + + + + + + Custo&m + + + + + + + + + Page si&ze + + + comboPageSize + + + + + + + + + + &KDF iterations + + + spinKdfIterations + + + + + + + 1 + + + 1000000 + + + + + + + HMAC algorithm + + + comboHmacAlgorithm + + + + + + + + SHA512 + + + + + SHA256 + + + + + SHA1 + + + + + + + + KDF algorithm + + + comboKdfAlgorithm + + + + + + + + SHA512 + + + + + SHA256 + + + + + SHA1 + + + + + + + + Plaintext Header Size + + + plaintextHeaderSize + + + + + + + 0 + + + 1000000 + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + editPassword + editPassword2 + comboKeyFormat + radioEncryptionSqlCipher3 + radioEncryptionSqlCipher4 + radioEncryptionCustom + comboPageSize + spinKdfIterations + comboHmacAlgorithm + comboKdfAlgorithm + plaintextHeaderSize + + + + + buttonBox + accepted() + CipherDialog + accept() + + + 175 + 265 + + + 157 + 126 + + + + + buttonBox + rejected() + CipherDialog + reject() + + + 175 + 265 + + + 286 + 126 + + + + + editPassword + textChanged(QString) + CipherDialog + checkInputFields() + + + 150 + 38 + + + 155 + 26 + + + + + editPassword2 + textChanged(QString) + CipherDialog + checkInputFields() + + + 446 + 79 + + + 206 + 46 + + + + + comboKeyFormat + currentIndexChanged(int) + CipherDialog + checkInputFields() + + + 670 + 38 + + + 665 + 0 + + + + + radioEncryptionSqlCipher3 + toggled(bool) + CipherDialog + toggleEncryptionSettings() + + + 217 + 114 + + + 231 + 94 + + + + + radioEncryptionSqlCipher4 + toggled(bool) + CipherDialog + toggleEncryptionSettings() + + + 353 + 117 + + + 407 + 97 + + + + + radioEncryptionCustom + toggled(bool) + CipherDialog + toggleEncryptionSettings() + + + 552 + 120 + + + 590 + 99 + + + + + + checkInputFields() + toggleEncryptionSettings() + + diff --git a/src/SqliteDBProcess/src/CipherSettings.cpp b/src/SqliteDBProcess/src/CipherSettings.cpp new file mode 100644 index 0000000..f7e3215 --- /dev/null +++ b/src/SqliteDBProcess/src/CipherSettings.cpp @@ -0,0 +1,26 @@ +#include "CipherSettings.h" +#include "sqlitedb.h" + +CipherSettings::CipherSettings() + : keyFormat(Passphrase), + pageSize(0), + kdfIterations(0), + plaintextHeaderSize(0) +{ +} + +std::string CipherSettings::getPassword() const +{ + if(keyFormat == Passphrase) + { + return sqlb::escapeString(password); + } else { + // Remove the '0x' part at the beginning + return "\"x'" + password.substr(2) + "'\""; + } +} + +CipherSettings::KeyFormats CipherSettings::getKeyFormat(int rawKeyFormat) +{ + return static_cast(rawKeyFormat); +} diff --git a/src/SqliteDBProcess/src/CipherSettings.h b/src/SqliteDBProcess/src/CipherSettings.h new file mode 100644 index 0000000..54b8ecd --- /dev/null +++ b/src/SqliteDBProcess/src/CipherSettings.h @@ -0,0 +1,50 @@ +#ifndef CIPHERSETTINGS_H +#define CIPHERSETTINGS_H + +#include + +class CipherSettings +{ +public: + CipherSettings(); + + enum KeyFormats + { + Passphrase, + RawKey + }; + + KeyFormats getKeyFormat() const { return keyFormat; } + void setKeyFormat(const KeyFormats &value) { keyFormat = value; } + + std::string getPassword() const; + void setPassword(const std::string& value) { password = value; } + + int getPageSize() const { return pageSize; } + void setPageSize(int value) { pageSize = value; } + + int getKdfIterations() const { return kdfIterations; } + void setKdfIterations(int value) { kdfIterations = value; } + + int getPlaintextHeaderSize() const { return plaintextHeaderSize; } + void setPlaintextHeaderSize(int value) { plaintextHeaderSize = value; } + + std::string getHmacAlgorithm() const { return hmacAlgorithm; } + void setHmacAlgorithm(const std::string& value) { hmacAlgorithm = value; } + + std::string getKdfAlgorithm() const { return kdfAlgorithm; } + void setKdfAlgorithm(const std::string& value) { kdfAlgorithm = value; } + + static KeyFormats getKeyFormat(int rawKeyFormat); + +private: + KeyFormats keyFormat; + std::string password; + int pageSize; + int kdfIterations; + int plaintextHeaderSize; + std::string hmacAlgorithm; + std::string kdfAlgorithm; +}; + +#endif // CIPHERSETTINGS_H diff --git a/src/SqliteDBProcess/src/ColumnDisplayFormatDialog.cpp b/src/SqliteDBProcess/src/ColumnDisplayFormatDialog.cpp new file mode 100644 index 0000000..001ae6d --- /dev/null +++ b/src/SqliteDBProcess/src/ColumnDisplayFormatDialog.cpp @@ -0,0 +1,139 @@ +#include + +#include "ColumnDisplayFormatDialog.h" +#include "ui_ColumnDisplayFormatDialog.h" +#include "sql/sqlitetypes.h" +#include "sqlitedb.h" + +ColumnDisplayFormatDialog::ColumnDisplayFormatDialog(DBBrowserDB& db, const sqlb::ObjectIdentifier& tableName, const QString& colname, const QString& current_format, QWidget* parent) + : QDialog(parent), + ui(new Ui::ColumnDisplayFormatDialog), + column_name(colname), + pdb(db), + curTable(tableName) +{ + // Create UI + ui->setupUi(this); + ui->comboDisplayFormat->addItem(tr("Default"), "default"); + ui->comboDisplayFormat->insertSeparator(ui->comboDisplayFormat->count()); + ui->comboDisplayFormat->addItem(tr("Decimal number"), "decimal"); + ui->comboDisplayFormat->addItem(tr("Exponent notation"), "exponent"); + ui->comboDisplayFormat->addItem(tr("Hex blob"), "hexblob"); + ui->comboDisplayFormat->addItem(tr("Hex number"), "hex"); + ui->comboDisplayFormat->addItem(tr("Octal number"), "octal"); + ui->comboDisplayFormat->addItem(tr("Round number"), "round"); + ui->comboDisplayFormat->insertSeparator(ui->comboDisplayFormat->count()); + ui->comboDisplayFormat->addItem(tr("Apple NSDate to date"), "appleDate"); + ui->comboDisplayFormat->addItem(tr("Java epoch (milliseconds) to date"), "javaEpoch"); + ui->comboDisplayFormat->addItem(tr(".NET DateTime.Ticks to date"), "dotNetTicks"); + ui->comboDisplayFormat->addItem(tr("Julian day to date"), "julian"); + ui->comboDisplayFormat->addItem(tr("Unix epoch to date"), "epoch"); + ui->comboDisplayFormat->addItem(tr("Unix epoch to local time"), "epochLocalTime"); + ui->comboDisplayFormat->addItem(tr("Windows DATE to date"), "winDate"); + ui->comboDisplayFormat->addItem(tr("Date as dd/mm/yyyy"), "ddmmyyyyDate"); + ui->comboDisplayFormat->insertSeparator(ui->comboDisplayFormat->count()); + ui->comboDisplayFormat->addItem(tr("Lower case"), "lower"); + ui->comboDisplayFormat->addItem(tr("Upper case"), "upper"); + ui->comboDisplayFormat->insertSeparator(ui->comboDisplayFormat->count()); + ui->comboDisplayFormat->addItem(tr("Custom"), "custom"); + + ui->labelDisplayFormat->setText(ui->labelDisplayFormat->text().arg(column_name)); + + formatFunctions["decimal"] = "printf('%d', " + sqlb::escapeIdentifier(column_name) + ")"; + formatFunctions["exponent"] = "printf('%e', " + sqlb::escapeIdentifier(column_name) + ")"; + formatFunctions["hexblob"] = "hex(" + sqlb::escapeIdentifier(column_name) + ")"; + formatFunctions["hex"] = "printf('0x%x', " + sqlb::escapeIdentifier(column_name) + ")"; + formatFunctions["octal"] = "printf('%o', " + sqlb::escapeIdentifier(column_name) + ")"; + formatFunctions["round"] = "round(" + sqlb::escapeIdentifier(column_name) + ")"; + formatFunctions["appleDate"] = "datetime('2001-01-01', " + sqlb::escapeIdentifier(column_name) + " || ' seconds')"; + formatFunctions["javaEpoch"] = "strftime('%Y-%m-%d %H:%M:%S.', " + sqlb::escapeIdentifier(column_name) + + "/1000, 'unixepoch') || (" + sqlb::escapeIdentifier(column_name) + "%1000)"; + formatFunctions["dotNetTicks"] = "datetime(" + sqlb::escapeIdentifier(column_name) + " / 10000000 - 62135596800, 'unixepoch')"; + formatFunctions["julian"] = "datetime(" + sqlb::escapeIdentifier(column_name) + ")"; + formatFunctions["epoch"] = "datetime(" + sqlb::escapeIdentifier(column_name) + ", 'unixepoch')"; + formatFunctions["epochLocalTime"] = "datetime(" + sqlb::escapeIdentifier(column_name) + ", 'unixepoch', 'localtime')"; + formatFunctions["winDate"] = "datetime('1899-12-30', " + sqlb::escapeIdentifier(column_name) + " || ' days')"; + formatFunctions["ddmmyyyyDate"] = "strftime('%d/%m/%Y', " + sqlb::escapeIdentifier(column_name) + ")"; + formatFunctions["lower"] = "lower(" + sqlb::escapeIdentifier(column_name) + ")"; + formatFunctions["upper"] = "upper(" + sqlb::escapeIdentifier(column_name) + ")"; + + // Set the current format, if it's empty set the default format + if(current_format.isEmpty()) + { + ui->comboDisplayFormat->setCurrentIndex(0); + updateSqlCode(); + } else { + // When it doesn't match any predefined format, it is considered custom + QString formatName = "custom"; + auto it = std::find_if(formatFunctions.begin(), formatFunctions.end(), [current_format](const std::pair& s) { + return s.second == current_format; + }); + if(it != formatFunctions.end()) + formatName = QString::fromStdString(it->first); + ui->comboDisplayFormat->setCurrentIndex(ui->comboDisplayFormat->findData(formatName)); + ui->editDisplayFormat->setText(current_format); + } +} + +ColumnDisplayFormatDialog::~ColumnDisplayFormatDialog() +{ + delete ui; +} + +QString ColumnDisplayFormatDialog::selectedDisplayFormat() const +{ + if(ui->comboDisplayFormat->currentData().toString() == "default") + return QString(); + else + return ui->editDisplayFormat->text(); +} + +void ColumnDisplayFormatDialog::updateSqlCode() +{ + std::string format = ui->comboDisplayFormat->currentData().toString().toStdString(); + + if(format == "default") + ui->editDisplayFormat->setText(sqlb::escapeIdentifier(column_name)); + else if(format != "custom") + ui->editDisplayFormat->setText(formatFunctions.at(format)); +} + +void ColumnDisplayFormatDialog::accept() +{ + QString errorMessage; + + // Accept the SQL code if it's the column name (default), it contains a function invocation applied to the column name and it can be + // executed without errors returning only one column. + // Users could still devise a way to break this, but this is considered good enough for letting them know about simple incorrect + // cases. + if(!(ui->editDisplayFormat->text() == sqlb::escapeIdentifier(column_name) || + ui->editDisplayFormat->text().contains(QRegularExpression("[a-z]+[a-z_0-9]* *\\(.*" + QRegularExpression::escape(sqlb::escapeIdentifier(column_name)) + ".*\\)", QRegularExpression::CaseInsensitiveOption)))) + errorMessage = tr("Custom display format must contain a function call applied to %1").arg(sqlb::escapeIdentifier(column_name)); + else { + // Execute a query using the display format and check that it only returns one column. + int customNumberColumns = 0; + + DBBrowserDB::execCallback callback = [&customNumberColumns](int numberColumns, std::vector, std::vector) -> bool { + customNumberColumns = numberColumns; + // Return false so the query is not aborted and no error is reported. + return false; + }; + if(!pdb.executeSQL("SELECT " + ui->editDisplayFormat->text().toStdString() + " FROM " + curTable.toString() + " LIMIT 1", + false, true, callback)) + errorMessage = tr("Error in custom display format. Message from database engine:\n\n%1").arg(pdb.lastError()); + else if(customNumberColumns != 1) + errorMessage = tr("Custom display format must return only one column but it returned %1.").arg(customNumberColumns); + + } + if(!errorMessage.isEmpty()) + QMessageBox::warning(this, QApplication::applicationName(), errorMessage); + else + QDialog::accept(); +} + +void ColumnDisplayFormatDialog::setCustom(bool modified) +{ + // If the SQL code is modified by user, select the custom value in the combo-box + if(modified && ui->editDisplayFormat->hasFocus()) + ui->comboDisplayFormat->setCurrentIndex(ui->comboDisplayFormat->findData("custom")); +} diff --git a/src/SqliteDBProcess/src/ColumnDisplayFormatDialog.h b/src/SqliteDBProcess/src/ColumnDisplayFormatDialog.h new file mode 100644 index 0000000..4342e37 --- /dev/null +++ b/src/SqliteDBProcess/src/ColumnDisplayFormatDialog.h @@ -0,0 +1,41 @@ +#ifndef COLUMNDISPLAYFORMATDIALOG_H +#define COLUMNDISPLAYFORMATDIALOG_H +#include "WBFZExchangePluginAPI.h" +#include + +#include + +#include "sql/ObjectIdentifier.h" + +class QString; + +class DBBrowserDB; + +namespace Ui { +class ColumnDisplayFormatDialog; +} + +class ColumnDisplayFormatDialog : public QDialog +{ + Q_OBJECT + +public: + explicit ColumnDisplayFormatDialog(DBBrowserDB& db, const sqlb::ObjectIdentifier& tableName, const QString& colname, const QString& current_format, QWidget* parent = nullptr); + ~ColumnDisplayFormatDialog() override; + + QString selectedDisplayFormat() const; + +private slots: + void updateSqlCode(); + void accept() override; + void setCustom(bool modified); + +private: + Ui::ColumnDisplayFormatDialog* ui; + QString column_name; + std::unordered_map formatFunctions; + DBBrowserDB& pdb; + sqlb::ObjectIdentifier curTable; +}; + +#endif diff --git a/src/SqliteDBProcess/src/ColumnDisplayFormatDialog.ui b/src/SqliteDBProcess/src/ColumnDisplayFormatDialog.ui new file mode 100644 index 0000000..5816b8b --- /dev/null +++ b/src/SqliteDBProcess/src/ColumnDisplayFormatDialog.ui @@ -0,0 +1,134 @@ + + + ColumnDisplayFormatDialog + + + + 0 + 0 + 624 + 205 + + + + Choose display format + + + + + + Display format + + + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + + + + + + + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + + SqlTextEdit + QTextEdit +
sqltextedit.h
+ 1 +
+
+ + comboDisplayFormat + editDisplayFormat + + + + + buttonBox + accepted() + ColumnDisplayFormatDialog + accept() + + + 227 + 188 + + + 157 + 204 + + + + + buttonBox + rejected() + ColumnDisplayFormatDialog + reject() + + + 295 + 194 + + + 286 + 204 + + + + + comboDisplayFormat + currentIndexChanged(int) + ColumnDisplayFormatDialog + updateSqlCode() + + + 125 + 69 + + + 244 + 4 + + + + + editDisplayFormat + modificationChanged(bool) + ColumnDisplayFormatDialog + setCustom(bool) + + + 125 + 69 + + + 244 + 4 + + + + + + updateSqlCode() + setCustom() + +
diff --git a/src/SqliteDBProcess/src/CondFormat.cpp b/src/SqliteDBProcess/src/CondFormat.cpp new file mode 100644 index 0000000..0597026 --- /dev/null +++ b/src/SqliteDBProcess/src/CondFormat.cpp @@ -0,0 +1,176 @@ +#include "CondFormat.h" +#include "Settings.h" +#include "Data.h" +#include "sqlitedb.h" + +#include + +CondFormat::Alignment CondFormat::fromCombinedAlignment(Qt::Alignment align) +{ + if (align.testFlag(Qt::AlignLeft)) + return AlignLeft; + if (align.testFlag(Qt::AlignRight)) + return AlignRight; + if (align.testFlag(Qt::AlignCenter)) + return AlignCenter; + if (align.testFlag(Qt::AlignJustify)) + return AlignJustify; + + return AlignLeft; +} + +CondFormat::CondFormat(const QString& filter, + const QColor& foreground, + const QColor& background, + const QFont& font, + const Alignment alignment, + const QString& encoding) + : m_filter(filter), + m_bgColor(background), + m_fgColor(foreground), + m_font(font), + m_align(alignment) +{ + if (!filter.isEmpty()) + m_sqlCondition = filterToSqlCondition(filter, encoding); +} + +CondFormat::CondFormat(const QString& filter, + const QAbstractTableModel* model, + const QModelIndex index, + const QString& encoding) + : m_filter(filter) +{ + + if (!filter.isEmpty()) + m_sqlCondition = filterToSqlCondition(filter, encoding); + + m_bgColor = QColor(model->data(index, Qt::BackgroundRole).toString()); + m_fgColor = QColor(model->data(index, Qt::ForegroundRole).toString()); + m_align = fromCombinedAlignment(Qt::Alignment(model->data(index, Qt::TextAlignmentRole).toInt())); + m_font.fromString(model->data(index, Qt::FontRole).toString()); +} + +std::string CondFormat::filterToSqlCondition(const QString& value, const QString& encoding) +{ + if(value.isEmpty()) + return {}; + + // Check for any special comparison operators at the beginning of the value string. If there are none default to LIKE. + QString op = "LIKE"; + QString val, val2; + QString escape; + bool numeric = false, ok = false; + + // range/BETWEEN operator + if (value.contains("~")) { + int sepIdx = value.indexOf('~'); + val = value.mid(0, sepIdx); + val2 = value.mid(sepIdx+1); + float valf = val.toFloat(&ok); + if (ok) { + float val2f = val2.toFloat(&ok); + ok = ok && (valf < val2f); + } + } + if (ok) { + op = "BETWEEN"; + numeric = true; + } else { + val.clear(); + val2.clear(); + if(value.left(2) == ">=" || value.left(2) == "<=" || value.left(2) == "<>") + { + // Check if we're filtering for '<> NULL'. In this case we need a special comparison operator. + if(value.left(2) == "<>" && value.mid(2) == "NULL") + { + // We are filtering for '<>NULL'. Override the comparison operator to search for NULL values in this column. Also treat search value (NULL) as number, + // in order to avoid putting quotes around it. + op = "IS NOT"; + numeric = true; + val = "NULL"; + } else if(value.left(2) == "<>" && value.mid(2) == "''") { + // We are filtering for "<>''", i.e. for everything which is not an empty string + op = "<>"; + numeric = true; + val = "''"; + } else { + value.midRef(2).toFloat(&numeric); + op = value.left(2); + val = value.mid(2); + } + } else if(value.left(1) == ">" || value.left(1) == "<") { + value.midRef(1).toFloat(&numeric); + op = value.at(0); + val = value.mid(1); + } else if(value.left(1) == "=") { + val = value.mid(1); + + // Check if value to compare with is 'NULL' + if(val != "NULL") + { + // It's not, so just compare normally to the value, whatever it is. + op = "="; + } else { + // It is NULL. Override the comparison operator to search for NULL values in this column. Also treat search value (NULL) as number, + // in order to avoid putting quotes around it. + op = "IS"; + numeric = true; + } + } else if(value.left(1) == "/" && value.right(1) == "/" && value.size() > 2) { + val = value.mid(1, value.length() - 2); + op = "REGEXP"; + numeric = false; + } else { + // Keep the default LIKE operator + + // Set the escape character if one has been specified in the settings dialog + QString escape_character = Settings::getValue("databrowser", "filter_escape").toString(); + if(escape_character == "'") escape_character = "''"; + if(escape_character.length()) + escape = QString("ESCAPE '%1'").arg(escape_character); + + // Add % wildcards at the start and at the beginning of the filter query, but only if there weren't set any + // wildcards manually. The idea is to assume that a user who's just typing characters expects the wildcards to + // be added but a user who adds them herself knows what she's doing and doesn't want us to mess up her query. + if(!value.contains("%")) + { + val = value; + val.prepend('%'); + val.append('%'); + } + } + } + if(val.isEmpty()) + val = value; + + if(val.isEmpty() || val == "%" || val == "%%") + return {}; + else { + // Quote and escape value, but only if it's not numeric and not the empty string sequence + if(!numeric && val != "''") + val = sqlb::escapeString(val); + + QString whereClause(op + " " + QString(encodeString(val.toUtf8(), encoding))); + if (!val2.isEmpty()) + whereClause += " AND " + QString(encodeString(val2.toUtf8(), encoding)); + whereClause += " " + escape; + return whereClause.toStdString(); + } +} + +Qt::AlignmentFlag CondFormat::alignmentFlag() const +{ + switch (m_align) { + case AlignLeft: + return Qt::AlignLeft; + case AlignCenter: + return Qt::AlignCenter; + case AlignRight: + return Qt::AlignRight; + case AlignJustify: + return Qt::AlignJustify; + } + + return Qt::AlignLeft; +} diff --git a/src/SqliteDBProcess/src/CondFormat.h b/src/SqliteDBProcess/src/CondFormat.h new file mode 100644 index 0000000..3541fd8 --- /dev/null +++ b/src/SqliteDBProcess/src/CondFormat.h @@ -0,0 +1,81 @@ +#ifndef CONDFORMAT_H +#define CONDFORMAT_H + +#include +#include +#include +#include + +class QAbstractTableModel; + +// Conditional formatting for given format to table cells based on a specified condition. +class CondFormat +{ +public: + + enum Alignment { + AlignLeft = 0, + AlignRight, + AlignCenter, + AlignJustify + }; + + // List of alignment texts. Order must be as Alignment definition above. + static QStringList alignmentTexts() { + return {QObject::tr("Left"), QObject::tr("Right"), QObject::tr("Center"), QObject::tr("Justify")}; + } + + // Get alignment from combined Qt alignment (note that this will lose any combination of our Alignment enum + // with other values present in the flag (e.g. vertical alignment). + static Alignment fromCombinedAlignment(Qt::Alignment align); + + CondFormat() {} + CondFormat(const QString& filter, + const QColor& foreground, + const QColor& background, + const QFont& font, + const Alignment alignment = AlignLeft, + const QString& encoding = QString()); + + // Create a new CondFormat from values obtained from the model + CondFormat(const QString& filter, + const QAbstractTableModel* model, + const QModelIndex index, + const QString& encoding = QString()); + + static std::string filterToSqlCondition(const QString& value, const QString& encoding = QString()); + +private: + std::string m_sqlCondition; + QString m_filter; + QColor m_bgColor; + QColor m_fgColor; + QFont m_font; + Alignment m_align; + +public: + std::string sqlCondition() const { return m_sqlCondition; } + QString filter() const { return m_filter; } + + QColor backgroundColor() const { return m_bgColor; } + QColor foregroundColor() const { return m_fgColor; } + void setBackgroundColor(QColor color) { m_bgColor = color; } + void setForegroundColor(QColor color) { m_fgColor = color; } + + bool isBold() const { return m_font.bold(); } + bool isItalic() const { return m_font.italic(); } + bool isUnderline() const { return m_font.underline(); } + void setBold(bool value) { m_font.setBold(value); } + void setItalic(bool value) { m_font.setItalic(value); } + void setUnderline(bool value) { m_font.setUnderline(value); } + + QFont font() const { return m_font; } + void setFontFamily(const QString &family) { m_font.setFamily(family); } + void setFontPointSize(int pointSize) { m_font.setPointSize(pointSize); } + + Alignment alignment() const { return m_align; } + void setAlignment(Alignment value) { m_align = value; } + Qt::AlignmentFlag alignmentFlag() const; +}; + +#endif // CONDFORMAT_H diff --git a/src/SqliteDBProcess/src/CondFormatManager.cpp b/src/SqliteDBProcess/src/CondFormatManager.cpp new file mode 100644 index 0000000..93367c7 --- /dev/null +++ b/src/SqliteDBProcess/src/CondFormatManager.cpp @@ -0,0 +1,252 @@ +#include "CondFormatManager.h" +#include "ui_CondFormatManager.h" +#include "CondFormat.h" +#include "Settings.h" +#include "FilterLineEdit.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +// Styled Item Delegate for non-editable columns (all except Condition) +class DefaultDelegate: public QStyledItemDelegate { +public: + explicit DefaultDelegate(QObject* parent=nullptr): QStyledItemDelegate(parent) {} + QWidget* createEditor(QWidget* /* parent */, const QStyleOptionViewItem& /* option */, const QModelIndex& /* index */) const override { + return nullptr; + } +}; + +// Styled Item Delegate for the Condition column as a filter line editor. +class FilterEditDelegate: public QStyledItemDelegate { + +public: + explicit FilterEditDelegate(QObject* parent=nullptr): QStyledItemDelegate(parent) {} + QWidget* createEditor(QWidget *parent, const QStyleOptionViewItem& /* option */, const QModelIndex& /* index */) const override { + FilterLineEdit* filterEditor = new FilterLineEdit(parent); + filterEditor->setConditionFormatContextMenuEnabled(false); + return filterEditor; + } +}; + +CondFormatManager::CondFormatManager(const std::vector& condFormats, const QString& encoding, QWidget *parent) : + QDialog(parent), + ui(new Ui::CondFormatManager), + m_condFormats(condFormats), + m_encoding(encoding) +{ + ui->setupUi(this); + + for(const CondFormat& aCondFormat : condFormats) + addItem(aCondFormat); + + // Make condition editable as a filter line editor. + ui->tableCondFormats->setEditTriggers(QAbstractItemView::AllEditTriggers); + ui->tableCondFormats->setItemDelegateForColumn(ColumnFilter, new FilterEditDelegate(this)); + + // Make columns not text-editable, except for the condition. + for(int col = ColumnForeground; col < ColumnFilter; ++col) { + ui->tableCondFormats->setItemDelegateForColumn(col, new DefaultDelegate(this)); + ui->tableCondFormats->resizeColumnToContents(col); + } + + connect(ui->buttonAdd, &QToolButton::clicked, this, &CondFormatManager::addNewItem); + connect(ui->buttonRemove, &QToolButton::clicked, this, &CondFormatManager::removeItem); + + connect(ui->buttonDown, &QToolButton::clicked, this, &CondFormatManager::downItem); + connect(ui->buttonUp, &QToolButton::clicked, this, &CondFormatManager::upItem); + + connect(ui->tableCondFormats, &QTreeWidget::itemClicked, this, &CondFormatManager::itemClicked); +} + +CondFormatManager::~CondFormatManager() +{ + delete ui; +} + +void CondFormatManager::addNewItem() +{ + // Clear focus from the current widget, so if there is some input, it is saved now. + QWidget* currentWidget = ui->tableCondFormats->itemWidget(ui->tableCondFormats->currentItem(), ColumnFilter); + if (currentWidget != nullptr) + currentWidget->clearFocus(); + + QFont font = QFont(Settings::getValue("databrowser", "font").toString()); + font.setPointSize(Settings::getValue("databrowser", "fontsize").toInt()); + + CondFormat newCondFormat("", QColor(Settings::getValue("databrowser", "reg_fg_colour").toString()), + m_condFormatPalette.nextSerialColor(Palette::appHasDarkTheme()), + font, + CondFormat::AlignLeft, + m_encoding); + addItem(newCondFormat); +} + +void CondFormatManager::addItem(const CondFormat& aCondFormat) +{ + int i = ui->tableCondFormats->topLevelItemCount(); + QTreeWidgetItem *newItem = new QTreeWidgetItem(ui->tableCondFormats); + newItem->setFlags(Qt::ItemIsEnabled | Qt::ItemIsEditable); + + newItem->setForeground(ColumnForeground, aCondFormat.foregroundColor()); + newItem->setBackground(ColumnForeground, aCondFormat.foregroundColor()); + newItem->setForeground(ColumnBackground, aCondFormat.backgroundColor()); + newItem->setBackground(ColumnBackground, aCondFormat.backgroundColor()); + newItem->setToolTip(ColumnBackground, tr("Click to select color")); + newItem->setToolTip(ColumnForeground, tr("Click to select color")); + + QFontComboBox* fontCombo = new QFontComboBox(ui->tableCondFormats); + fontCombo->setCurrentFont(aCondFormat.font()); + // Avoid that the font combo box gets too wide and work around a possible Qt bug where the box overlaps the next column. + fontCombo->setMaximumWidth(150); + ui->tableCondFormats->setItemWidget(newItem, ColumnFont, fontCombo); + + QSpinBox* sizeBox = new QSpinBox(ui->tableCondFormats); + sizeBox->setMinimum(1); + sizeBox->setValue(aCondFormat.font().pointSize()); + ui->tableCondFormats->setItemWidget(newItem, ColumnSize, sizeBox); + + newItem->setCheckState(ColumnBold, aCondFormat.isBold() ? Qt::Checked : Qt::Unchecked); + newItem->setCheckState(ColumnItalic, aCondFormat.isItalic() ? Qt::Checked : Qt::Unchecked); + newItem->setCheckState(ColumnUnderline, aCondFormat.isUnderline() ? Qt::Checked : Qt::Unchecked); + + QComboBox* alignCombo = new QComboBox(ui->tableCondFormats); + alignCombo->addItems(CondFormat::alignmentTexts()); + alignCombo->setCurrentIndex(aCondFormat.alignment()); + ui->tableCondFormats->setItemWidget(newItem, ColumnAlignment, alignCombo); + + newItem->setText(ColumnFilter, aCondFormat.filter()); + ui->tableCondFormats->insertTopLevelItem(i, newItem); +} + +void CondFormatManager::removeItem() +{ + QTreeWidgetItem* item = ui->tableCondFormats->takeTopLevelItem(ui->tableCondFormats->currentIndex().row()); + delete item; +} + +void CondFormatManager::moveItem(int offset) +{ + if (!ui->tableCondFormats->currentIndex().isValid()) + return; + + int selectedRow = ui->tableCondFormats->currentIndex().row(); + int newRow = selectedRow + offset; + if(newRow < 0 || newRow >= ui->tableCondFormats->topLevelItemCount()) + return; + + QTreeWidgetItem* item = ui->tableCondFormats->topLevelItem(selectedRow); + + // Rescue widgets, since they will be deleted, and add them later. + QFontComboBox* fontCombo = qobject_cast(ui->tableCondFormats->itemWidget(item, ColumnFont)); + QFontComboBox* fontCombo2 = new QFontComboBox(ui->tableCondFormats); + fontCombo2->setCurrentFont(fontCombo->currentFont()); + + QSpinBox* sizeBox = qobject_cast(ui->tableCondFormats->itemWidget(item, ColumnSize)); + QSpinBox* sizeBox2 = new QSpinBox(ui->tableCondFormats); + sizeBox2->setValue(sizeBox->value()); + sizeBox2->setMinimum(sizeBox->minimum()); + + QComboBox* alignCombo = qobject_cast(ui->tableCondFormats->itemWidget(item, ColumnAlignment)); + QComboBox* alignCombo2 = new QComboBox(ui->tableCondFormats); + alignCombo2->addItems(CondFormat::alignmentTexts()); + alignCombo2->setCurrentIndex(alignCombo->currentIndex()); + + item = ui->tableCondFormats->takeTopLevelItem(selectedRow); + ui->tableCondFormats->insertTopLevelItem(newRow, item); + + // Restore widgets and state + ui->tableCondFormats->setItemWidget(item, ColumnFont, fontCombo2); + ui->tableCondFormats->setItemWidget(item, ColumnSize, sizeBox2); + ui->tableCondFormats->setItemWidget(item, ColumnAlignment, alignCombo2); + ui->tableCondFormats->setCurrentIndex(ui->tableCondFormats->currentIndex().sibling(newRow, + ui->tableCondFormats->currentIndex().column())); + // This is added so the widgets are readjusted. Otherwise they can be misplaced when moving an item to the top. + ui->tableCondFormats->adjustSize(); +} + +void CondFormatManager::upItem() +{ + moveItem(-1); +} + +void CondFormatManager::downItem() +{ + moveItem(+1); +} + +std::vector CondFormatManager::getCondFormats() const +{ + std::vector result; + + for (int i = 0; i < ui->tableCondFormats->topLevelItemCount(); ++i) + { + QTreeWidgetItem* item = ui->tableCondFormats->topLevelItem(i); + + QFontComboBox* fontCombo = qobject_cast(ui->tableCondFormats->itemWidget(item, ColumnFont)); + QSpinBox* sizeBox = qobject_cast(ui->tableCondFormats->itemWidget(item, ColumnSize)); + QFont font = fontCombo->currentFont(); + font.setPointSize(sizeBox->value()); + font.setBold(item->checkState(ColumnBold) == Qt::Checked); + font.setItalic(item->checkState(ColumnItalic) == Qt::Checked); + font.setUnderline(item->checkState(ColumnUnderline) == Qt::Checked); + QComboBox* alignCombo = qobject_cast(ui->tableCondFormats->itemWidget(item, ColumnAlignment)); + + result.emplace_back(item->text(ColumnFilter), + item->background(ColumnForeground).color(), + item->background(ColumnBackground).color(), + font, + static_cast(alignCombo->currentIndex()), + m_encoding); + } + return result; +} + + +void CondFormatManager::itemClicked(QTreeWidgetItem* item, int column) +{ + switch (column) { + case ColumnForeground: + case ColumnBackground: { + QColor color = QColorDialog::getColor(item->background(column).color(), this); + if(color.isValid()) { + item->setTextColor(column, color); + item->setBackgroundColor(column, color); + } + break; + } + case ColumnBold: + case ColumnItalic: + case ColumnUnderline: + item->setCheckState(column, item->checkState(column) != Qt::Checked ? Qt::Checked : Qt::Unchecked); + break; + default: + // Nothing to do + break; + } +} + +void CondFormatManager::on_buttonBox_clicked(QAbstractButton* button) +{ + if (button == ui->buttonBox->button(QDialogButtonBox::Cancel)) + reject(); + else if (button == ui->buttonBox->button(QDialogButtonBox::Ok)) + accept(); + else if (button == ui->buttonBox->button(QDialogButtonBox::Help)) + QDesktopServices::openUrl(QUrl("https://github.com/sqlitebrowser/sqlitebrowser/wiki/Conditional-Formats")); + else if (button == ui->buttonBox->button(QDialogButtonBox::Reset)) { + if (QMessageBox::warning(this, + QApplication::applicationName(), + tr("Are you sure you want to clear all the conditional formats of this field?"), + QMessageBox::Reset | QMessageBox::Cancel, + QMessageBox::Cancel) == QMessageBox::Reset) + if(ui->tableCondFormats->model()->hasChildren()) + ui->tableCondFormats->model()->removeRows(0, ui->tableCondFormats->model()->rowCount()); + } +} diff --git a/src/SqliteDBProcess/src/CondFormatManager.h b/src/SqliteDBProcess/src/CondFormatManager.h new file mode 100644 index 0000000..317ac55 --- /dev/null +++ b/src/SqliteDBProcess/src/CondFormatManager.h @@ -0,0 +1,56 @@ +#ifndef CONDFORMATMANAGER_H +#define CONDFORMATMANAGER_H +#include "WBFZExchangePluginAPI.h" +#include +#include + +#include "Palette.h" + +namespace Ui { + class CondFormatManager; +} + +class CondFormat; +class QTreeWidgetItem; +class QAbstractButton; + +class CondFormatManager : public QDialog +{ + Q_OBJECT + +public: + explicit CondFormatManager(const std::vector& condFormats, const QString& encoding, QWidget *parent = nullptr); + ~CondFormatManager() override; + + std::vector getCondFormats() const; +private: + enum Columns { + ColumnForeground = 0, + ColumnBackground, + ColumnFont, + ColumnSize, + ColumnBold, + ColumnItalic, + ColumnUnderline, + ColumnAlignment, + ColumnFilter + }; + Ui::CondFormatManager *ui; + std::vector m_condFormats; + Palette m_condFormatPalette; + QString m_encoding; + +private slots: + void addNewItem(); + void addItem(const CondFormat& aCondFormat); + void removeItem(); + void moveItem(int offset); + void upItem(); + void downItem(); + void on_buttonBox_clicked(QAbstractButton* button); + +public slots: + void itemClicked(QTreeWidgetItem* item, int column); +}; + +#endif // CONDFORMATMANAGER_H diff --git a/src/SqliteDBProcess/src/CondFormatManager.ui b/src/SqliteDBProcess/src/CondFormatManager.ui new file mode 100644 index 0000000..41ead4d --- /dev/null +++ b/src/SqliteDBProcess/src/CondFormatManager.ui @@ -0,0 +1,279 @@ + + + CondFormatManager + + + + 0 + 0 + 750 + 400 + + + + Conditional Format Manager + + + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + + + true + + + + + + + + + Add new conditional format + + + &Add + + + + :/icons/field_add:/icons/field_add + + + Qt::ToolButtonTextBesideIcon + + + true + + + + + + + Remove selected conditional format + + + &Remove + + + + :/icons/field_delete:/icons/field_delete + + + Qt::ToolButtonTextBesideIcon + + + true + + + + + + + Move selected conditional format up + + + Move &up + + + + :/icons/up:/icons/up + + + Qt::ToolButtonTextBesideIcon + + + true + + + + + + + Move selected conditional format down + + + Move &down + + + + :/icons/down:/icons/down + + + Qt::ToolButtonTextBesideIcon + + + true + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + QAbstractScrollArea::AdjustToContents + + + QAbstractItemView::AllEditTriggers + + + true + + + QAbstractItemView::SelectItems + + + 0 + + + false + + + true + + + false + + + false + + + 25 + + + + Foreground + + + Text color + + + + + Background + + + Background color + + + + + Font + + + + + Size + + + + + + + + Bold + + + + :/icons/text_bold.png:/icons/text_bold.png + + + + + + + + Italic + + + + :/icons/text_italic.png:/icons/text_italic.png + + + + + + + + Underline + + + + :/icons/text_underline.png:/icons/text_underline.png + + + + + Alignment + + + + + Condition + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Help|QDialogButtonBox::Ok|QDialogButtonBox::Reset + + + + + + + + + + + buttonBox + accepted() + CondFormatManager + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + CondFormatManager + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/src/SqliteDBProcess/src/DBsqliconwin.ico b/src/SqliteDBProcess/src/DBsqliconwin.ico new file mode 100644 index 0000000..12063c9 Binary files /dev/null and b/src/SqliteDBProcess/src/DBsqliconwin.ico differ diff --git a/src/SqliteDBProcess/src/DBsqliconwin.jpg b/src/SqliteDBProcess/src/DBsqliconwin.jpg new file mode 100644 index 0000000..751c65f Binary files /dev/null and b/src/SqliteDBProcess/src/DBsqliconwin.jpg differ diff --git a/src/SqliteDBProcess/src/Data.cpp b/src/SqliteDBProcess/src/Data.cpp new file mode 100644 index 0000000..3429bd8 --- /dev/null +++ b/src/SqliteDBProcess/src/Data.cpp @@ -0,0 +1,157 @@ +#include "Data.h" + +#include +#include +#include +#include +#include + +#include + +// Note that these aren't all possible BOMs. But they are probably the most common ones. +// The size is needed at least for the ones with character zero in them. +static const QByteArray bom3("\xEF\xBB\xBF", 3); +static const QByteArray bom2a("\xFE\xFF", 2); +static const QByteArray bom2b("\xFF\xFE", 2); +static const QByteArray bom4a("\x00\x00\xFE\xFF", 4); +static const QByteArray bom4b("\xFF\xFE\x00\x00", 4); + +bool isTextOnly(QByteArray data, const QString& encoding, bool quickTest) +{ + // If the data starts with a Unicode BOM, we can use detection provided by QTextCodec. + if(startsWithBom(data)) { + QTextCodec *codec = encoding.isEmpty()? QTextCodec::codecForName("UTF-8") : QTextCodec::codecForName(encoding.toUtf8()); + QTextCodec *detectedCodec = QTextCodec::codecForUtfText(data, nullptr); + return detectedCodec == codec; + } + + // Truncate to the first few bytes for quick testing + int testSize = quickTest? std::min(512, data.size()) : data.size(); + + // If the quick test has been requested and we have to truncate the string, we have to use + // an approach where truncated multibyte characters are not interpreted as invalid characters. + if(quickTest && data.size() > testSize) { + + // We can assume that the default encoding (UTF-8) and all the ISO-8859 + // cannot contain character zero. + // This has to be checked explicitly because toUnicode() is using zero as + // a terminator for these encodings. + if((encoding.isEmpty() || encoding.startsWith("ISO-8859")) && data.contains('\0')) + return false; + + QTextCodec::ConverterState state; + QTextCodec *codec = encoding.isEmpty()? QTextCodec::codecForName("UTF-8") : QTextCodec::codecForName(encoding.toUtf8()); + codec->toUnicode(data.constData(), testSize, &state); + return state.invalidChars == 0; + } else { + // Convert to Unicode if necessary + data = decodeString(data, encoding); + // Perform check + return QString(data).toUtf8() == data; + } +} + +bool containsRightToLeft(const QString& text) { + + for(QChar ch : text) { + switch(ch.direction()) { + case QChar::DirR: + case QChar::DirAL: + case QChar::DirRLE: + case QChar::DirRLO: + case QChar::DirRLI: + return true; + default: + break; + } + } + return false; +} + +bool startsWithBom(const QByteArray& data) +{ + if(data.startsWith(bom3) || + data.startsWith(bom2a) || data.startsWith(bom2b) || + data.startsWith(bom4a) || data.startsWith(bom4b)) + return true; + else + return false; +} + +QByteArray removeBom(QByteArray& data) +{ + if(data.startsWith(bom3)) + { + QByteArray bom = data.left(3); + data.remove(0, 3); + return bom; + } else if(data.startsWith(bom2a) || data.startsWith(bom2b)) { + QByteArray bom = data.left(2); + data.remove(0, 2); + return bom; + } else if(data.startsWith(bom4a) || data.startsWith(bom4b)) { + QByteArray bom = data.left(4); + data.remove(0, 4); + return bom; + } else { + return QByteArray(); + } +} + +QString isImageData(const QByteArray& data) +{ + // Check if it's an image. First do a quick test by calling canRead() which only checks the first couple of bytes or so. Only if + // that returned true, do a more sophisticated test of the data. This way we get both, good performance and proper data checking. + QBuffer imageBuffer(const_cast(&data)); + QImageReader readerBuffer(&imageBuffer); + QString imageFormat = readerBuffer.format(); + if(readerBuffer.canRead() && !readerBuffer.read().isNull()) + return imageFormat; + else + return QString(); +} + +QStringList toStringList(const QList& list) { + QStringList strings; + for (const QByteArray &item : list) { + strings.append(QString::fromUtf8(item)); + } + return strings; +} + +QByteArray encodeString(const QByteArray& str, const QString& encoding) +{ + if(encoding.isEmpty()) + return str; + else + return QTextCodec::codecForName(encoding.toUtf8())->fromUnicode(str); +} + +QByteArray decodeString(const QByteArray& str, const QString& encoding) +{ + if(encoding.isEmpty()) + return str; + else + return QTextCodec::codecForName(encoding.toUtf8())->toUnicode(str).toUtf8(); +} + +QString humanReadableSize(unsigned long byteCount) +{ + static const std::vector units = {"B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "ZiB"}; + + double size = static_cast(byteCount); + for(const QString& unit : units) + { + if(size < 1024.0) + return QString::number(size, 'f', 2) + " " + unit; + + size /= 1024.0; + } + + return QString::number(size, 'f', 2) + " YiB"; +} + +QString isoDateTimeStringToLocalDateTimeString(const QString& date_string) +{ + return QLocale::system().toString(QDateTime::fromString(date_string, Qt::ISODate).toLocalTime(), QLocale::ShortFormat); +} diff --git a/src/SqliteDBProcess/src/Data.h b/src/SqliteDBProcess/src/Data.h new file mode 100644 index 0000000..8284588 --- /dev/null +++ b/src/SqliteDBProcess/src/Data.h @@ -0,0 +1,37 @@ +#ifndef DATA_H +#define DATA_H + +#include +#include + +// This returns false if the data in the data parameter contains binary data. If it is text only, the function returns +// true. If the second parameter is specified, it will be used to convert the data from the given encoding to Unicode +// before doing the check. The third parameter can be used to only check the first couple of bytes which speeds up the +// text but makes it less reliable +bool isTextOnly(QByteArray data, const QString& encoding = QString(), bool quickTest = false); + +// This returns true if text contains some character whose direction is right-to-left. +bool containsRightToLeft(const QString& text); + +// This function returns true if the data in the data parameter starts with a Unicode BOM. Otherwise it returns false. +bool startsWithBom(const QByteArray& data); + +// This function checks if the data in the data parameter starts with a Unicode BOM. If so, the BOM is removed from the +// byte array and passed back to the caller separately as the return value of the function. If the data does not start +// with a BOM an empty byte array is returned and the original data is not modified. +QByteArray removeBom(QByteArray& data); + +// Check if a byte array contains an image. Returns the name of the image format for images or a null string for non-image data. +QString isImageData(const QByteArray& data); + +QStringList toStringList(const QList& list); + +QByteArray encodeString(const QByteArray& str, const QString& encoding); + +QByteArray decodeString(const QByteArray& str, const QString& encoding); + +QString humanReadableSize(unsigned long byteCount); + +QString isoDateTimeStringToLocalDateTimeString(const QString& date_string); + +#endif diff --git a/src/SqliteDBProcess/src/DbStructureModel.cpp b/src/SqliteDBProcess/src/DbStructureModel.cpp new file mode 100644 index 0000000..22c2157 --- /dev/null +++ b/src/SqliteDBProcess/src/DbStructureModel.cpp @@ -0,0 +1,429 @@ +#include "DbStructureModel.h" +#include "IconCache.h" +#include "sqlitedb.h" +#include "sqlitetablemodel.h" +#include "Settings.h" + +#include +#include +#include +#include +#include +#include + +DbStructureModel::DbStructureModel(DBBrowserDB& db, QObject* parent) + : QAbstractItemModel(parent), + m_db(db), + browsablesRootItem(nullptr), + m_dropQualifiedNames(false), + m_dropEnquotedNames(false) +{ + // Create root item and use its columns to store the header strings + QStringList header; + header << tr("Name") << tr("Object") << tr("Type") << tr("Schema") << tr("Database"); + rootItem = new QTreeWidgetItem(header); +} + +DbStructureModel::~DbStructureModel() +{ + delete rootItem; +} + +int DbStructureModel::columnCount(const QModelIndex&) const +{ + return rootItem->columnCount(); +} + +QVariant DbStructureModel::data(const QModelIndex& index, int role) const +{ + if(!index.isValid()) + return QVariant(); + + // Get the item the index points at + QTreeWidgetItem* item = static_cast(index.internalPointer()); + + // Depending on the role either return the text or the icon + switch(role) + { + case Qt::DisplayRole: + // For the display role and the browsable branch of the tree we want to show the column name including the schema name if necessary (i.e. + // for schemata != "main"). For the normal structure branch of the tree we don't want to add the schema name because it's already obvious from + // the position of the item in the tree. + if(index.column() == ColumnName && item->parent() == browsablesRootItem) + return QString::fromStdString(sqlb::ObjectIdentifier(item->text(ColumnSchema).toStdString(), item->text(ColumnName).toStdString()).toDisplayString()); + else + return Settings::getValue("db", "hideschemalinebreaks").toBool() ? item->text(index.column()).simplified() : item->text(index.column()); + case Qt::EditRole: + return item->text(index.column()); + case Qt::ToolTipRole: { + // Show the original text but limited, when it's supposed to be shown in a tooltip + QString text = item->text(index.column()); + if (text.length() > 512) { + text.truncate(509); + text.append("..."); + } + return text; + } + case Qt::DecorationRole: + return item->icon(index.column()); + default: + return QVariant(); + } +} + +Qt::ItemFlags DbStructureModel::flags(const QModelIndex &index) const +{ + if(!index.isValid()) + return Qt::ItemIsDropEnabled; + + // All items are enabled and selectable + Qt::ItemFlags flags = Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsDropEnabled; + + // Only enable dragging for SQLite objects and for fields (composition in SQL text editor). + // Grouping nodes have no type. + QString type = data(index.sibling(index.row(), ColumnObjectType), Qt::DisplayRole).toString(); + if(!type.isEmpty()) + flags |= Qt::ItemIsDragEnabled; + + return flags; +} + +QVariant DbStructureModel::headerData(int section, Qt::Orientation orientation, int role) const +{ + // Get the header string from the root item + if(orientation == Qt::Horizontal && role == Qt::DisplayRole) + return rootItem->data(section, role); + + return QVariant(); +} + +QModelIndex DbStructureModel::index(int row, int column, const QModelIndex& parent) const +{ + if(!hasIndex(row, column, parent)) + return QModelIndex(); + + QTreeWidgetItem *parentItem; + if(!parent.isValid()) + parentItem = rootItem; + else + parentItem = static_cast(parent.internalPointer()); + + QTreeWidgetItem* childItem = parentItem->child(row); + if(childItem) + return createIndex(row, column, childItem); + else + return QModelIndex(); +} + +QModelIndex DbStructureModel::parent(const QModelIndex& index) const +{ + if(!index.isValid()) + return QModelIndex(); + + QTreeWidgetItem* childItem = static_cast(index.internalPointer()); + QTreeWidgetItem* parentItem = childItem->parent(); + + if(parentItem == rootItem) + return QModelIndex(); + else + return createIndex(0, 0, parentItem); +} + +int DbStructureModel::rowCount(const QModelIndex& parent) const +{ + if(parent.column() > 0) + return 0; + + if(!parent.isValid()) + return rootItem->childCount(); + else + return static_cast(parent.internalPointer())->childCount(); +} + +void DbStructureModel::reloadData() +{ + beginResetModel(); + + // Remove all data except for the root item + while(rootItem->childCount()) + delete rootItem->child(0); + + // Return here if no DB is opened + if(!m_db.isOpen()) + { + endResetModel(); + emit structureUpdated(); + return; + } + + // Create the nodes for browsables and for tables, indices, views and triggers. The idea here is to basically have two trees in one model: + // In the root node there are two nodes: 'browsables' and 'all'. The first node contains a list of all browsable objects, i.e. views and tables. + // The second node contains four sub-nodes (tables, indices, views and triggers), each containing a list of objects of that type. + // This way we only have to have and only have to update one model and can use it in all sorts of places, just by setting a different root node. + browsablesRootItem = new QTreeWidgetItem(rootItem); + browsablesRootItem->setIcon(ColumnName, IconCache::get("view")); + browsablesRootItem->setText(ColumnName, tr("Browsables")); + + // Make sure to always load the main schema first + QTreeWidgetItem* itemAll = new QTreeWidgetItem(rootItem); + itemAll->setIcon(ColumnName, IconCache::get("database")); + itemAll->setText(ColumnName, tr("All")); + itemAll->setText(ColumnObjectType, "database"); + buildTree(itemAll, "main"); + + // Add the temporary database as a node if it isn't empty. Make sure it's always second if it exists. + if(!m_db.schemata["temp"].empty()) + { + QTreeWidgetItem* itemTemp = new QTreeWidgetItem(itemAll); + itemTemp->setIcon(ColumnName, IconCache::get("database")); + itemTemp->setText(ColumnName, tr("Temporary")); + itemTemp->setText(ColumnObjectType, "database"); + buildTree(itemTemp, "temp"); + } + + // Now load all the other schemata last + for(const auto& it : m_db.schemata) + { + // Don't load the main and temp schema again + if(it.first != "main" && it.first != "temp") + { + QTreeWidgetItem* itemSchema = new QTreeWidgetItem(itemAll); + itemSchema->setIcon(ColumnName, IconCache::get("database")); + itemSchema->setText(ColumnName, QString::fromStdString(it.first)); + itemSchema->setText(ColumnObjectType, "database"); + buildTree(itemSchema, it.first); + } + } + + // Refresh the view + endResetModel(); + emit structureUpdated(); +} + +QStringList DbStructureModel::mimeTypes() const +{ + QStringList types; + types << "text/plain"; + return types; +} + +QMimeData* DbStructureModel::mimeData(const QModelIndexList& indices) const +{ + // We store the SQL data and the names data separately + QByteArray sqlData, namesData; + + // Loop through selected indices + for(const QModelIndex& index : indices) + { + // Get the item the index points at + QTreeWidgetItem* item = static_cast(index.internalPointer()); + + // Only export data for valid indices and only once per row (SQL column or Name column). + if(index.isValid()) { + QString objectType = data(index.sibling(index.row(), ColumnObjectType), Qt::DisplayRole).toString(); + + // For names, export a (qualified) (escaped) identifier of the item for statement composition in SQL editor. + if(objectType == "field") + namesData.append(getNameForDropping(item->text(ColumnSchema), item->parent()->text(ColumnName), item->text(ColumnName))); + else if(objectType == "database") + namesData.append(getNameForDropping(item->text(ColumnName), "", "")); + else if(!objectType.isEmpty()) + namesData.append(getNameForDropping(item->text(ColumnSchema), item->text(ColumnName), "")); + + if(objectType != "field" && index.column() == ColumnSQL) + { + // Add the SQL code used to create the object + sqlData.append(data(index, Qt::DisplayRole).toString() + ";\n"); + + // If it is a table also add the content + if(objectType == "table") + { + SqliteTableModel tableModel(m_db); + sqlb::ObjectIdentifier objid(data(index.sibling(index.row(), ColumnSchema), Qt::DisplayRole).toString().toStdString(), + data(index.sibling(index.row(), ColumnName), Qt::DisplayRole).toString().toStdString()); + tableModel.setQuery(sqlb::Query(objid)); + if(tableModel.completeCache()) + { + // Only continue if all data was fetched + + for(int i=0; i < tableModel.rowCount(); ++i) + { + QString insertStatement = "INSERT INTO " + QString::fromStdString(objid.toString()) + " VALUES("; + for(int j=1; j < tableModel.columnCount(); ++j) + insertStatement += QString("'%1',").arg(tableModel.data(tableModel.index(i, j), Qt::EditRole).toString()); + insertStatement.chop(1); + insertStatement += ");\n"; + sqlData.append(insertStatement); + } + } + } + } + } + } + + // Create the MIME data object + QMimeData* mime = new QMimeData(); + mime->setProperty("db_file", m_db.currentFile()); // Also save the file name to avoid dropping an object on the same database as it comes from + // When we have both SQL and Names data (probable row selection mode) we give precedence to the SQL data + if (sqlData.length() == 0 && namesData.length() > 0) { + // Remove last ", " or "." + if (namesData.endsWith(", ")) + namesData.chop(2); + else if (namesData.endsWith(".")) + namesData.chop(1); + + mime->setData("text/plain", namesData); + } else + mime->setData("text/plain", sqlData); + return mime; +} + +bool DbStructureModel::dropMimeData(const QMimeData* data, Qt::DropAction action, int, int, const QModelIndex&) +{ + if(action == Qt::IgnoreAction) + return true; + + if(!data->hasFormat("text/plain")) + return false; + + if(data->property("db_file") == m_db.currentFile()) + return false; + + // Get data + QByteArray d = data->data("text/plain"); + + // Try to execute the SQL statement + if(m_db.executeMultiSQL(d, true, true)) + { + m_db.updateSchema(); + return true; + } else { + QMessageBox::warning(nullptr, QApplication::applicationName(), m_db.lastError()); + return false; + } +} + +static long calc_number_of_objects_by_type(const objectMap& objmap, const std::string& type) +{ + auto objects = objmap.equal_range(type); + if(objects.first == objmap.end()) + return 0; + else + return std::distance(objects.first, objects.second); +} + +void DbStructureModel::buildTree(QTreeWidgetItem* parent, const std::string& schema) +{ + // Build a map from object type to tree node to simplify finding the correct tree node later + std::unordered_map typeToParentItem; + + // Get object map for the given schema + objectMap objmap = m_db.schemata[schema]; + + // Prepare tree + QTreeWidgetItem* itemTables = new QTreeWidgetItem(parent); + itemTables->setIcon(ColumnName, IconCache::get("table")); + itemTables->setText(ColumnName, tr("Tables (%1)").arg(calc_number_of_objects_by_type(objmap, "table"))); + typeToParentItem.insert({"table", itemTables}); + + QTreeWidgetItem* itemIndices = new QTreeWidgetItem(parent); + itemIndices->setIcon(ColumnName, IconCache::get("index")); + itemIndices->setText(ColumnName, tr("Indices (%1)").arg(calc_number_of_objects_by_type(objmap, "index"))); + typeToParentItem.insert({"index", itemIndices}); + + QTreeWidgetItem* itemViews = new QTreeWidgetItem(parent); + itemViews->setIcon(ColumnName, IconCache::get("view")); + itemViews->setText(ColumnName, tr("Views (%1)").arg(calc_number_of_objects_by_type(objmap, "view"))); + typeToParentItem.insert({"view", itemViews}); + + QTreeWidgetItem* itemTriggers = new QTreeWidgetItem(parent); + itemTriggers->setIcon(ColumnName, IconCache::get("trigger")); + itemTriggers->setText(ColumnName, tr("Triggers (%1)").arg(calc_number_of_objects_by_type(objmap, "trigger"))); + typeToParentItem.insert({"trigger", itemTriggers}); + + // Get all database objects and sort them by their name. + // This needs to be a multimap because SQLite allows views and triggers with the same name which means that names can appear twice. + std::multimap dbobjs; + for(const auto& it : objmap) + dbobjs.insert({it.second->name(), it.second}); + + // Add the database objects to the tree nodes + for(const auto& obj : dbobjs) + { + sqlb::ObjectPtr it = obj.second; + + // Object node + QTreeWidgetItem* item = addNode(typeToParentItem.at(sqlb::Object::typeToString(it->type())), it, schema); + + // If it is a table or view add the field nodes, add an extra node for the browsable section + if(it->type() == sqlb::Object::Types::Table || it->type() == sqlb::Object::Types::View) + addNode(browsablesRootItem, it, schema); + + // Add field nodes if there are any + sqlb::FieldInfoList fieldList = it->fieldInformation(); + if(!fieldList.empty()) + { + sqlb::StringVector pk_columns; + if(it->type() == sqlb::Object::Types::Table) + { + const auto pk = std::dynamic_pointer_cast(it)->primaryKey(); + if(pk) + pk_columns = pk->columnList(); + } + + for(const sqlb::FieldInfo& field : fieldList) + { + QTreeWidgetItem *fldItem = new QTreeWidgetItem(item); + bool isFK = false; + if(it->type() == sqlb::Object::Types::Table) + isFK = std::dynamic_pointer_cast(it)->constraint({field.name}, sqlb::Constraint::ForeignKeyConstraintType) != nullptr; + + fldItem->setText(ColumnName, QString::fromStdString(field.name)); + fldItem->setText(ColumnObjectType, "field"); + fldItem->setText(ColumnDataType, QString::fromStdString(field.type)); + fldItem->setText(ColumnSQL, QString::fromStdString(field.sql)); + fldItem->setText(ColumnSchema, QString::fromStdString(schema)); + if(contains(pk_columns, field.name)) + fldItem->setIcon(ColumnName, IconCache::get("field_key")); + else if(isFK) + fldItem->setIcon(ColumnName, IconCache::get("field_fk")); + else + fldItem->setIcon(ColumnName, IconCache::get("field")); + } + } + } +} + +QTreeWidgetItem* DbStructureModel::addNode(QTreeWidgetItem* parent, const sqlb::ObjectPtr& object, const std::string& schema) +{ + std::string type = sqlb::Object::typeToString(object->type()); + + QTreeWidgetItem *item = new QTreeWidgetItem(parent); + item->setIcon(ColumnName, IconCache::get(type)); + item->setText(ColumnName, QString::fromStdString(object->name())); + item->setText(ColumnObjectType, QString::fromStdString(type)); + item->setText(ColumnSQL, QString::fromStdString(object->originalSql())); + item->setText(ColumnSchema, QString::fromStdString(schema)); + + return item; +} + +QString DbStructureModel::getNameForDropping(const QString& domain, const QString& object, const QString& field) const +{ + // Take into account the drag&drop options for composing a name. Commas are included for composing a + // list of fields. A dot is added after other items, in order to allow composing a fully qualified name + // by selecting together and dropping a parent item and a child (e.g. select with control an attached + // database and a table, and drag and drop them to get "schema1"."table1".) Note that this only makes + // sense when the "Drop Qualified Names" option is not set. + QString name; + if ((domain != "main" && m_dropQualifiedNames) || object.isEmpty()) + name = m_dropEnquotedNames ? sqlb::escapeIdentifier(domain) + "." : domain + "."; + + if (!object.isEmpty() && (m_dropQualifiedNames || field.isEmpty())) + name += m_dropEnquotedNames ? sqlb::escapeIdentifier(object) + "." : object + "."; + + if (!field.isEmpty()) + name += m_dropEnquotedNames ? sqlb::escapeIdentifier(field) + ", " : field + ", "; + + return name; +} diff --git a/src/SqliteDBProcess/src/DbStructureModel.h b/src/SqliteDBProcess/src/DbStructureModel.h new file mode 100644 index 0000000..7347a5d --- /dev/null +++ b/src/SqliteDBProcess/src/DbStructureModel.h @@ -0,0 +1,60 @@ +#ifndef DBSTRUCTUREMODEL_H +#define DBSTRUCTUREMODEL_H +#include "WBFZExchangePluginAPI.h" +#include +#include + +class DBBrowserDB; +class QTreeWidgetItem; +namespace sqlb { class Object; using ObjectPtr = std::shared_ptr; } + +class DbStructureModel : public QAbstractItemModel +{ + Q_OBJECT + +public: + explicit DbStructureModel(DBBrowserDB& db, QObject* parent = nullptr); + ~DbStructureModel() override; + + QVariant data(const QModelIndex& index, int role) const override; + Qt::ItemFlags flags(const QModelIndex& index) const override; + QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; + QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const override; + QModelIndex parent(const QModelIndex& index) const override; + int rowCount(const QModelIndex& parent = QModelIndex()) const override; + int columnCount(const QModelIndex& = QModelIndex()) const override; + + QStringList mimeTypes() const override; + QMimeData* mimeData(const QModelIndexList& indices) const override; + bool dropMimeData(const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent) override; + + enum Columns + { + ColumnName, + ColumnObjectType, + ColumnDataType, + ColumnSQL, + ColumnSchema, + }; + +public slots: + void reloadData(); + void setDropQualifiedNames(bool value) { m_dropQualifiedNames = value; } + void setDropEnquotedNames(bool value) { m_dropEnquotedNames = value; } + +signals: + void structureUpdated(); + +private: + DBBrowserDB& m_db; + QTreeWidgetItem* rootItem; + QTreeWidgetItem* browsablesRootItem; + bool m_dropQualifiedNames; + bool m_dropEnquotedNames; + + void buildTree(QTreeWidgetItem* parent, const std::string& schema); + QTreeWidgetItem* addNode(QTreeWidgetItem* parent, const sqlb::ObjectPtr& object, const std::string& schema); + QString getNameForDropping(const QString& domain, const QString& object, const QString& field) const; +}; + +#endif diff --git a/src/SqliteDBProcess/src/DotenvFormat.cpp b/src/SqliteDBProcess/src/DotenvFormat.cpp new file mode 100644 index 0000000..8e4361e --- /dev/null +++ b/src/SqliteDBProcess/src/DotenvFormat.cpp @@ -0,0 +1,28 @@ +#include "DotenvFormat.h" + +#include +#include + +bool DotenvFormat::readEnvFile(QIODevice &device, QSettings::SettingsMap &map) +{ + QTextStream in(&device); + + QString line; + + QRegularExpression keyValueRegex("^\\s*([\\w\\.\\-]+)\\s*=\\s*(.*)\\s*$"); + + while (in.readLineInto(&line)) { + QRegularExpressionMatch match = keyValueRegex.match(line); + + if (match.capturedLength() < 3) { + continue; + } + + QString key = match.captured(1); + QString value = match.captured(2); + + map.insert(key, value); + } + + return true; +} diff --git a/src/SqliteDBProcess/src/DotenvFormat.h b/src/SqliteDBProcess/src/DotenvFormat.h new file mode 100644 index 0000000..8835754 --- /dev/null +++ b/src/SqliteDBProcess/src/DotenvFormat.h @@ -0,0 +1,14 @@ +#ifndef DOTENVFORMAT_H +#define DOTENVFORMAT_H + +#include + +class QIODevice; + +class DotenvFormat +{ +public: + static bool readEnvFile(QIODevice &device, QSettings::SettingsMap &map); +}; + +#endif // DOTENVFORMAT_H diff --git a/src/SqliteDBProcess/src/EditDialog.cpp b/src/SqliteDBProcess/src/EditDialog.cpp new file mode 100644 index 0000000..08fe58f --- /dev/null +++ b/src/SqliteDBProcess/src/EditDialog.cpp @@ -0,0 +1,1258 @@ +#include "EditDialog.h" +#include "ui_EditDialog.h" +#include "sqlitedb.h" +#include "Settings.h" +#include "qhexedit.h" +#include "docktextedit.h" +#include "FileDialog.h" +#include "Data.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +using json = nlohmann::json; + +EditDialog::EditDialog(QWidget* parent) + : QDialog(parent), + ui(new Ui::EditDialog), + m_currentIndex(QModelIndex()), + dataSource(SciBuffer), + dataType(Null), + isReadOnly(true) +{ + ui->setupUi(this); + + // Add Ctrl-Enter (Cmd-Enter on OSX) as a shortcut for the Apply button + ui->buttonApply->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Return)); + ui->buttonApply->setToolTip(ui->buttonApply->toolTip() + " [" + ui->buttonApply->shortcut().toString(QKeySequence::NativeText) + "]"); + + QHBoxLayout* hexLayout = new QHBoxLayout(ui->editorBinary); + hexEdit = new QHexEdit(this); + hexLayout->addWidget(hexEdit); + hexEdit->setOverwriteMode(false); + + QHBoxLayout* sciLayout = new QHBoxLayout(ui->editorSci); + sciEdit = new DockTextEdit(this); + sciLayout->addWidget(sciEdit); + + QShortcut* ins = new QShortcut(QKeySequence(Qt::Key_Insert), this); + connect(ins, &QShortcut::activated, this, &EditDialog::toggleOverwriteMode); + + connect(sciEdit, &DockTextEdit::textChanged, this, &EditDialog::updateApplyButton); + connect(sciEdit, &DockTextEdit::textChanged, this, &EditDialog::editTextChanged); + connect(ui->qtEdit, &QTextEdit::textChanged, this, &EditDialog::updateApplyButton); + connect(hexEdit, &QHexEdit::dataChanged, this, &EditDialog::updateApplyButton); + + // Create shortcuts for the widgets that doesn't have its own print action or printing mechanism. + QShortcut* shortcutPrint = new QShortcut(QKeySequence::Print, this, nullptr, nullptr, Qt::WidgetShortcut); + connect(shortcutPrint, &QShortcut::activated, this, &EditDialog::openPrintDialog); + + // Add actions to editors that have a context menu based on actions. This also activates the shortcuts. + ui->editorImage->addAction(ui->actionPrintImage); + ui->editorBinary->addAction(ui->actionPrint); + ui->editorBinary->addAction(ui->actionCopyHexAscii); + + // Set up popup menus + QMenu* popupImportFileMenu = new QMenu(this); + popupImportFileMenu->addAction(ui->actionImportInMenu); + popupImportFileMenu->addAction(ui->actionImportAsLink); + ui->actionImport->setMenu(popupImportFileMenu); + + connect(ui->actionImportAsLink, &QAction::triggered, this, [&]() { + importData(/* asLink */ true); + }); + + connect(ui->actionOpenInApp, &QAction::triggered, this, [&]() { + switch (dataSource) { + case SciBuffer: + emit requestUrlOrFileOpen(sciEdit->text()); + break; + case QtBuffer: + emit requestUrlOrFileOpen(ui->qtEdit->toPlainText()); + break; + default: + return; + } + }); + connect(ui->actionOpenInExternal, &QAction::triggered, this, &EditDialog::openDataWithExternal); + + mustIndentAndCompact = Settings::getValue("databrowser", "indent_compact").toBool(); + ui->actionIndent->setChecked(mustIndentAndCompact); + + ui->buttonAutoSwitchMode->setChecked(Settings::getValue("databrowser", "auto_switch_mode").toBool()); + ui->actionWordWrap->setChecked(Settings::getValue("databrowser", "editor_word_wrap").toBool()); + setWordWrapping(ui->actionWordWrap->isChecked()); + + reloadSettings(); +} + +EditDialog::~EditDialog() +{ + Settings::setValue("databrowser", "indent_compact", mustIndentAndCompact); + Settings::setValue("databrowser", "auto_switch_mode", ui->buttonAutoSwitchMode->isChecked()); + Settings::setValue("databrowser", "editor_word_wrap", ui->actionWordWrap->isChecked()); + delete ui; +} + +void EditDialog::setCurrentIndex(const QModelIndex& idx) +{ + m_currentIndex = QPersistentModelIndex(idx); + + QByteArray bArrData = idx.data(Qt::EditRole).toByteArray(); + loadData(bArrData); + updateCellInfoAndMode(bArrData); + + ui->buttonApply->setDisabled(true); +} + +void EditDialog::showEvent(QShowEvent*) +{ + // Whenever the dialog is shown, position it at the center of the parent dialog + QMainWindow* parentDialog = qobject_cast(parent()); + if(parentDialog) + { + move(parentDialog->x() + parentDialog->width() / 2 - width() / 2, + parentDialog->y() + parentDialog->height() / 2 - height() / 2); + } +} + +void EditDialog::reject() +{ + // We override this, to ensure the Escape key doesn't make the Edit Cell + // dock go away + return; +} + +// Loads data from a cell into the Edit Cell window +void EditDialog::loadData(const QByteArray& bArrdata) +{ + QImage img; + + // Clear previously removed BOM + removedBom.clear(); + + // Determine the data type, saving that info in the class variable + dataType = checkDataType(bArrdata); + + // Get the current editor mode (eg text, hex, image, json or xml mode) + int editMode = ui->comboMode->currentIndex(); + + // Data type specific handling + switch (dataType) { + case Null: + // Set enabled the text widget + sciEdit->setEnabled(true); + switch (editMode) { + case TextEditor: + case JsonEditor: + case XmlEditor: + + // The JSON widget buffer is now the main data source + dataSource = SciBuffer; + + // Empty the text editor contents, then enable text editing + sciEdit->clear(); + + break; + + case RtlTextEditor: + // The text widget buffer is now the main data source + dataSource = QtBuffer; + + // Empty the Qt text editor contents, then enable text editing + ui->qtEdit->clear(); + + break; + + case HexEditor: + // The hex widget buffer is now the main data source + dataSource = HexBuffer; + + // Load the Null into the hex editor + hexEdit->setData(bArrdata); + + break; + + case ImageViewer: + // The hex widget buffer is now the main data source + dataSource = HexBuffer; + + // Clear any image from the image viewing widget + ui->editorImage->setPixmap(QPixmap(0,0)); + + // Load the Null into the hex editor + hexEdit->setData(bArrdata); + + break; + } + break; + + case Text: + case RtlText: + case JSON: + case XML: + // Can be stored in any widget, except the ImageViewer + + sciEdit->clearTextInMargin(); + + switch (editMode) { + case TextEditor: + case JsonEditor: + case XmlEditor: + setDataInBuffer(bArrdata, SciBuffer); + break; + case RtlTextEditor: + setDataInBuffer(bArrdata, QtBuffer); + break; + case HexEditor: + setDataInBuffer(bArrdata, HexBuffer); + break; + case ImageViewer: + // The image viewer cannot hold data nor display text. + + // Clear any image from the image viewing widget + ui->editorImage->setPixmap(QPixmap(0,0)); + + // Load the text into the text editor + setDataInBuffer(bArrdata, SciBuffer); + + break; + } + break; + + case Image: + // Image data is kept in the hex widget, mainly for safety. If we + // stored it in the editorImage widget instead, it would be a pixmap + // and there's no good way to restore that back to the original + // (pristine) image data. eg image metadata would be lost + setDataInBuffer(bArrdata, HexBuffer); + + // Update the display if in text edit or image viewer mode + switch (editMode) { + case TextEditor: + case XmlEditor: + case JsonEditor: + // Disable text editing, and use a warning message as the contents + sciEdit->setText(tr("Image data can't be viewed in this mode.") % '\n' % + tr("Try switching to Image or Binary mode.")); + sciEdit->setTextInMargin(tr("Image")); + sciEdit->setEnabled(false); + break; + + case RtlTextEditor: + // Disable text editing, and use a warning message as the contents + ui->qtEdit->setText(QString("" % + tr("Image data can't be viewed in this mode.") % "
" % + tr("Try switching to Image or Binary mode.") % + "
")); + ui->qtEdit->setEnabled(false); + break; + + case ImageViewer: + // Load the image into the image viewing widget + if (img.loadFromData(bArrdata)) { + ui->editorImage->setPixmap(QPixmap::fromImage(img)); + } + break; + } + break; + case SVG: + // Set the XML data in any buffer or update image in image viewer mode + switch (editMode) { + case TextEditor: + case JsonEditor: + case XmlEditor: + + setDataInBuffer(bArrdata, SciBuffer); + break; + + case HexEditor: + + setDataInBuffer(bArrdata, HexBuffer); + break; + + case ImageViewer: + // Set data in the XML (Sci) Buffer and load the SVG Image + setDataInBuffer(bArrdata, SciBuffer); + sciEdit->setLanguage(DockTextEdit::XML); + + // Load the image into the image viewing widget + if (img.loadFromData(bArrdata)) { + ui->editorImage->setPixmap(QPixmap::fromImage(img)); + } + break; + case RtlTextEditor: + setDataInBuffer(bArrdata, QtBuffer); + break; + } + break; + + default: + + // The data seems to be general binary data, which is always loaded + // into the hex widget (the only safe place for it) + + // Load the data into the hex buffer + setDataInBuffer(bArrdata, HexBuffer); + + switch (editMode) { + case TextEditor: + case JsonEditor: + case XmlEditor: + // Disable text editing, and use a warning message as the contents + sciEdit->setText(QString(tr("Binary data can't be viewed in this mode.") % '\n' % + tr("Try switching to Binary mode."))); + sciEdit->setTextInMargin(Settings::getValue("databrowser", "blob_text").toString()); + sciEdit->setEnabled(false); + break; + + case RtlTextEditor: + // Disable text editing, and use a warning message as the contents + ui->qtEdit->setText(QString("" % + tr("Binary data can't be viewed in this mode.") % "
" % + tr("Try switching to Binary mode.") % + "
")); + ui->qtEdit->setEnabled(false); + break; + + case ImageViewer: + // Clear any image from the image viewing widget + ui->editorImage->setPixmap(QPixmap(0,0)); + break; + } + } +} + +void EditDialog::importData(bool asLink) +{ + // Get list of supported image file formats to include them in the file dialog filter + QString image_formats; + QList image_formats_list = QImageReader::supportedImageFormats(); + for(int i=0;icomboMode->currentIndex(); + + // Set as selected filter the appropriate for the current mode. + switch (mode) { + case TextEditor: + case RtlTextEditor: + selectedFilter = FILE_FILTER_TXT; + break; + case HexEditor: + selectedFilter = FILE_FILTER_BIN; + break; + case ImageViewer: + selectedFilter = tr("Image files (%1)").arg(image_formats); + break; + case JsonEditor: + selectedFilter = FILE_FILTER_JSON; + break; + case XmlEditor: + selectedFilter = FILE_FILTER_XML; + break; + } + QString fileName = FileDialog::getOpenFileName( + OpenDataFile, + this, + tr("Choose a file to import") +#ifndef Q_OS_MAC // Filters on OS X are buggy + , filters.join(";;") + , &selectedFilter +#endif + ); + if(QFile::exists(fileName)) + { + if(asLink) { + QByteArray fileNameBa = fileName.toUtf8(); + loadData(fileNameBa); + updateCellInfoAndMode(fileNameBa); + } else { + QFile file(fileName); + if(file.open(QIODevice::ReadOnly)) + { + QByteArray d = file.readAll(); + loadData(d); + file.close(); + + // Update the cell data info in the bottom left of the Edit Cell + // and update mode (if required) to the just imported data type. + updateCellInfoAndMode(d); + } + } + } +} + +void EditDialog::exportData() +{ + QStringList filters; + switch (dataType) { + case Image: { + // Images get special treatment. + // Determine the likely filename extension. + QByteArray cellData = hexEdit->data(); + QBuffer imageBuffer(&cellData); + QImageReader imageReader(&imageBuffer); + QString imageFormat = imageReader.format(); + filters << tr("%1 Image").arg(imageFormat.toUpper()) % " (*." % imageFormat.toLower() % ")"; + break; + } + case Binary: + filters << tr("Binary files (*.bin)"); + break; + case RtlText: + case Text: + // Include the XML case on the text data type, since XML detection is not very sofisticated. + if (ui->comboMode->currentIndex() == XmlEditor) + filters << FILE_FILTER_XML + << FILE_FILTER_TXT; + else + filters << FILE_FILTER_TXT + << FILE_FILTER_XML; + break; + case JSON: + filters << FILE_FILTER_JSON; + break; + case SVG: + filters << FILE_FILTER_SVG; + break; + case XML: + filters << FILE_FILTER_XML; + break; + case Null: + return; + } + + if (dataSource == HexBuffer) + filters << FILE_FILTER_HEX; + + filters << FILE_FILTER_ALL; + + QString selectedFilter = filters.first(); + QString fileName = FileDialog::getSaveFileName( + CreateDataFile, + this, + tr("Choose a filename to export data"), + filters.join(";;"), + /* defaultFileName */ QString(), + &selectedFilter); + if(fileName.size() > 0) + { + QFile file(fileName); + if(file.open(QIODevice::WriteOnly)) + { + switch (dataSource) { + case HexBuffer: + // Data source is the hex buffer + // If text option has been selected, the readable representation of the content is saved to file. + if (selectedFilter == FILE_FILTER_HEX) + file.write(hexEdit->toReadableString().toUtf8()); + else + file.write(hexEdit->data()); + break; + case SciBuffer: + // Data source is the Scintilla buffer + file.write(sciEdit->text().toUtf8()); + break; + case QtBuffer: + // Data source is the text buffer + file.write(ui->qtEdit->toPlainText().toUtf8()); + break; + } + file.close(); + } + } +} + +void EditDialog::setNull() +{ + ui->qtEdit->clear(); + ui->editorImage->clear(); + hexEdit->setData(QByteArray()); + sciEdit->clear(); + dataType = Null; + removedBom.clear(); + + // The text editors don't know the difference between an empty string + // and a NULL, so we need to record NULL outside of that + dataType = Null; + + // Ensure the text (Scintilla) editor is enabled + sciEdit->setEnabled(true); + + // Update the cell data info in the bottom left of the Edit Cell + // The mode is also (if required) updated to text since it gives + // the better visual clue of containing a NULL value (placeholder). + updateCellInfoAndMode(hexEdit->data()); + + sciEdit->setFocus(); +} + +void EditDialog::updateApplyButton() +{ + if (!isReadOnly) + ui->buttonApply->setEnabled(true); +} + +bool EditDialog::promptInvalidData(const QString& data_type, const QString& errorString) +{ + QMessageBox::StandardButton reply = QMessageBox::question( + this, + tr("Invalid data for this mode"), + tr("The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell?").arg(data_type, errorString), + QMessageBox::Apply | QMessageBox::Cancel); + return (reply == QMessageBox::Apply); +} + +void EditDialog::accept() +{ + if(!m_currentIndex.isValid()) + return; + + if (dataType == Null) { + emit recordTextUpdated(m_currentIndex, hexEdit->data(), true); + return; + } + + // New data for the plain text cases. This is processed after the case. + QString newTextData; + + switch (dataSource) { + case QtBuffer: + newTextData = removedBom + ui->qtEdit->toPlainText(); + break; + case SciBuffer: + switch (sciEdit->language()) { + case DockTextEdit::PlainText: + newTextData = removedBom + sciEdit->text(); + break; + case DockTextEdit::JSON: + { + sciEdit->clearErrorIndicators(); + + QString oldData = m_currentIndex.data(Qt::EditRole).toString(); + + QString newData; + bool proceed = true; + json jsonDoc; + + try { + jsonDoc = json::parse(sciEdit->text().toStdString()); + } catch(json::parse_error& parseError) { + sciEdit->setErrorIndicator(static_cast(parseError.byte - 1)); + + proceed = promptInvalidData("JSON", parseError.what()); + } + + if (!jsonDoc.is_null()) { + if (mustIndentAndCompact) + // Compact the JSON data before storing + newData = QString::fromStdString(jsonDoc.dump()); + else + newData = sciEdit->text(); + } else { + newData = sciEdit->text(); + } + proceed = proceed && (oldData != newData); + + if (proceed) + // The data is different, so commit it back to the database + emit recordTextUpdated(m_currentIndex, newData.toUtf8(), false); + } + break; + case DockTextEdit::XML: + { + QString oldData = m_currentIndex.data(Qt::EditRole).toString(); + + QString newData; + QDomDocument xmlDoc; + QString errorMsg; + int errorLine, errorColumn; + + bool isValid = xmlDoc.setContent(sciEdit->text().toUtf8(), true, &errorMsg, &errorLine, &errorColumn); + bool proceed; + + sciEdit->clearErrorIndicators(); + if (!isValid) { + sciEdit->setErrorIndicator(errorLine-1, errorColumn-1, errorLine, 0); + newData = sciEdit->text(); + proceed = (oldData != newData && promptInvalidData("XML", errorMsg)); + } else { + if (mustIndentAndCompact) + // Compact the XML data before storing. If indent is -1, no whitespace at all is added. + newData = xmlDoc.toString(-1); + else + newData = sciEdit->text(); + proceed = (oldData != newData); + } + if (proceed) + // The data is different, so commit it back to the database + emit recordTextUpdated(m_currentIndex, newData.toUtf8(), false); + } + break; + } + break; + case HexBuffer: + // The data source is the hex widget buffer, thus binary data + QByteArray oldData = m_currentIndex.data(Qt::EditRole).toByteArray(); + QByteArray newData = hexEdit->data(); + if (newData != oldData) + emit recordTextUpdated(m_currentIndex, newData, true); + break; + } + + if (!newTextData.isEmpty()) { + + QString oldData = m_currentIndex.data(Qt::EditRole).toString(); + // Check first for null case, otherwise empty strings cannot overwrite NULL values + if ((m_currentIndex.data(Qt::EditRole).isNull() && dataType != Null) || oldData != newTextData) + // The data is different, so commit it back to the database + emit recordTextUpdated(m_currentIndex, removedBom + newTextData.toUtf8(), false); + } +} + +void EditDialog::setDataInBuffer(const QByteArray& bArrdata, DataSources source) +{ + dataSource = source; + QString textData; + + // 1) Perform validation and text formatting (if applicable). + // 2) Set the text in the corresponding editor widget (the text widget for the Image case). + // 3) Enable the widget. + switch (dataSource) { + case QtBuffer: + { + // Load the text into the text editor, remove BOM first if there is one + QByteArray dataWithoutBom = bArrdata; + removedBom = removeBom(dataWithoutBom); + + textData = QString::fromUtf8(dataWithoutBom.constData(), dataWithoutBom.size()); + ui->qtEdit->setPlainText(textData); + + // Select all of the text by default (this is useful for simple text data that we usually edit as a whole). + // We don't want this when the QtBuffer has been automatically switched due to the insertion of RTL text, + // (detected through the state of the apply button) otherwise that would break the typing flow of the user. + if (!isReadOnly) + { + if (!ui->buttonApply->isEnabled()) + ui->qtEdit->selectAll(); + else + ui->qtEdit->moveCursor(QTextCursor::End); + } + ui->qtEdit->setEnabled(true); + break; + } + case SciBuffer: + switch (sciEdit->language()) { + case DockTextEdit::PlainText: + { + // Load the text into the text editor, remove BOM first if there is one + QByteArray dataWithoutBom = bArrdata; + removedBom = removeBom(dataWithoutBom); + + textData = QString::fromUtf8(dataWithoutBom.constData(), dataWithoutBom.size()); + sciEdit->setText(textData); + + // Select all of the text by default (this is useful for simple text data that we usually edit as a whole) + if (!isReadOnly) + sciEdit->selectAll(); + sciEdit->setEnabled(true); + break; + } + case DockTextEdit::JSON: + { + sciEdit->clearErrorIndicators(); + + json jsonDoc; + + try { + jsonDoc = json::parse(std::string(bArrdata.constData(), static_cast(bArrdata.size()))); + } catch(json::parse_error& parseError) { + sciEdit->setErrorIndicator(static_cast(parseError.byte - 1)); + } + + if (mustIndentAndCompact && !jsonDoc.is_null() && !jsonDoc.is_discarded()) { + // Load indented JSON into the JSON editor + textData = QString::fromStdString(jsonDoc.dump(4)); + } else { + // Fallback case. The data is not yet valid JSON or no auto-formatting applied. + textData = QString::fromUtf8(bArrdata.constData(), bArrdata.size()); + } + + sciEdit->setText(textData); + sciEdit->setEnabled(true); + } + + break; + + case DockTextEdit::XML: + { + QString errorMsg; + int errorLine, errorColumn; + QDomDocument xmlDoc; + bool isValid = xmlDoc.setContent(bArrdata, true, &errorMsg, &errorLine, &errorColumn); + + if (mustIndentAndCompact && isValid) { + // Load indented XML into the XML editor + textData = xmlDoc.toString(Settings::getValue("editor", "tabsize").toInt()); + } else { + // Fallback case. The data is not yet valid JSON or no auto-formatting applied. + textData = QString::fromUtf8(bArrdata.constData(), bArrdata.size()); + } + sciEdit->setText(textData); + + sciEdit->clearErrorIndicators(); + if (!isValid) + // Adjust line and column by one (Scintilla starts at 1 and QDomDocument at 0) + sciEdit->setErrorIndicator(errorLine-1, errorColumn-1, errorLine, 0); + sciEdit->setEnabled(true); + + } + break; + } + break; + case HexBuffer: + hexEdit->setData(bArrdata); + hexEdit->setEnabled(true); + + break; + } + +} + +// Called when the user manually changes the "Mode" drop down combobox +void EditDialog::editModeChanged(int newMode) +{ + ui->actionIndent->setEnabled(newMode == JsonEditor || newMode == XmlEditor); + setStackCurrentIndex(newMode); + + // * If the dataSource is the text buffer, the data is always text * + switch (dataSource) { + case QtBuffer: + switch (newMode) { + case RtlTextEditor: // Switching to the RTL text editor + // Nothing to do, as the text is already in the Qt buffer + break; + + case TextEditor: // Switching to one of the Scintilla editor modes + case JsonEditor: + case XmlEditor: + + setDataInBuffer(ui->qtEdit->toPlainText().toUtf8(), SciBuffer); + break; + + case HexEditor: // Switching to the hex editor + // Convert the text widget buffer for the hex widget + // The hex widget buffer is now the main data source + setDataInBuffer(removedBom + ui->qtEdit->toPlainText().toUtf8(), HexBuffer); + break; + + case ImageViewer: + // Clear any image from the image viewing widget + ui->editorImage->setPixmap(QPixmap(0,0)); + break; + } + break; + case HexBuffer: + + // * If the dataSource is the hex buffer, the contents could be anything + // so we just pass it to our loadData() function to handle * + // Note that we have already set the editor, as loadData() relies on it + // being current + + // Load the data into the appropriate widget, as done by loadData() + loadData(hexEdit->data()); + break; + case SciBuffer: + switch (newMode) { + case RtlTextEditor: // Switching to the RTL text editor + // Convert the Scintilla widget buffer for the Qt widget + setDataInBuffer(sciEdit->text().toUtf8(), QtBuffer); + break; + case HexEditor: // Switching to the hex editor + // Convert the text widget buffer for the hex widget + setDataInBuffer(sciEdit->text().toUtf8(), HexBuffer); + break; + case ImageViewer: + { + // When SVG format, load the image, else clear it. + QByteArray bArrdata = sciEdit->text().toUtf8(); + dataType = checkDataType(bArrdata); + if (dataType == SVG) { + QImage img; + + if (img.loadFromData(bArrdata)) + ui->editorImage->setPixmap(QPixmap::fromImage(img)); + else + // Clear any image from the image viewing widget + ui->editorImage->setPixmap(QPixmap(0,0)); + } + } + break; + + case TextEditor: // Switching to the text editor + case JsonEditor: // Switching to the JSON editor + case XmlEditor: // Switching to the XML editor + // The text is already in the Sci buffer but we need to perform the necessary formatting. + setDataInBuffer(sciEdit->text().toUtf8(), SciBuffer); + + break; + } + } +} + +// Called for every keystroke in the text editor (only) +void EditDialog::editTextChanged() +{ + if (dataSource == SciBuffer || dataSource == QtBuffer) { + + // Update the cell info in the bottom left manually. This is because + // updateCellInfoAndMode() only works with QByteArray's (for now) + int dataLength; + bool isModified; + + if(dataSource == QtBuffer) { + // QtBuffer + dataLength = ui->qtEdit->toPlainText().length(); + isModified = ui->qtEdit->document()->isModified(); + } else { + // SciBuffer + dataLength = sciEdit->text().length(); + isModified = sciEdit->isModified(); + + // Switch to the Qt Editor if we detect right-to-left text, + // since the QScintilla editor does not support it. + if (containsRightToLeft(sciEdit->text())) + ui->comboMode->setCurrentIndex(RtlTextEditor); + } + + // If data has been entered in the text editor, it can't be a NULL + // any more. It hasn't been validated yet, so it cannot be JSON nor XML. + if (dataType == Null && isModified && dataLength != 0) + dataType = Text; + + if (dataType != Null) + ui->labelType->setText(tr("Type of data currently in cell: Text / Numeric")); + ui->labelSize->setText(tr("%n character(s)", "", dataLength)); + } +} + +void EditDialog::setMustIndentAndCompact(bool enable) +{ + mustIndentAndCompact = enable; + + // Indent or compact if necessary. If data has changed (button Apply indicates so), reload from the widget, else from the table. + if (ui->buttonApply->isEnabled()) { + setDataInBuffer(sciEdit->text().toUtf8(), SciBuffer); + } else + setCurrentIndex(m_currentIndex); +} + +// Determine the type of data in the cell +int EditDialog::checkDataType(const QByteArray& bArrdata) const +{ + QByteArray cellData = bArrdata; + + // Check for NULL data type + if (cellData.isNull()) { + return Null; + } + + // Check if it's an image + QString imageFormat = isImageData(cellData); + if(!imageFormat.isNull()) + return imageFormat == "svg" ? SVG : Image; + + // Check if it's text only + if(isTextOnly(cellData)) + { + if (cellData.startsWith("setOverwriteMode(currentMode); + ui->qtEdit->setOverwriteMode(currentMode); + sciEdit->setOverwriteMode(currentMode); +} + +void EditDialog::setFocus() +{ + QDialog::setFocus(); + + // Set the focus to the editor widget. The idea here is that setting focus + // to the dock itself doesn't make much sense as it's just a frame; you'd + // have to tab to the editor which is what you most likely want to use. So + // in order to save the user from doing this we explicitly set the focus + // to the current editor. + int editMode = ui->editorStack->currentIndex(); + + switch (editMode) { + case TextEditor: + sciEdit->setFocus(); + if (sciEdit->language() == DockTextEdit::PlainText && !isReadOnly) + sciEdit->selectAll(); + break; + case RtlTextEditor: + ui->qtEdit->setFocus(); + ui->qtEdit->selectAll(); + break; + case HexEditor: + hexEdit->setFocus(); + break; + case ImageViewer: + // Nothing to do + break; + } + +} + +// Enables or disables the Apply, Null, & Import buttons in the Edit Cell dock. +// Sets or unsets read-only properties for the editors. +void EditDialog::setReadOnly(bool ro) +{ + isReadOnly = ro; + + ui->buttonApply->setEnabled(!ro); + ui->actionNull->setEnabled(!ro); + ui->actionImport->setEnabled(!ro); + + ui->qtEdit->setReadOnly(ro); + sciEdit->setReadOnly(ro); + hexEdit->setReadOnly(ro); + + // This makes the caret being visible for selection, although the editor is read-only. The read-only state is hinted by the + // caret not blinking. The same is done in ExtendedScintilla. + Qt::TextInteractionFlags textFlags = ro? Qt::TextSelectableByMouse | Qt::TextSelectableByKeyboard : Qt::TextEditorInteraction; + ui->qtEdit->setTextInteractionFlags(textFlags); +} + +void EditDialog::switchEditorMode(bool autoSwitchForType) +{ + if (autoSwitchForType) { + // Switch automatically the editing mode according to the detected data. + switch (dataType) { + case Image: + ui->comboMode->setCurrentIndex(ImageViewer); + break; + case Binary: + ui->comboMode->setCurrentIndex(HexEditor); + break; + case Null: + case Text: + ui->comboMode->setCurrentIndex(TextEditor); + break; + case RtlText: + ui->comboMode->setCurrentIndex(RtlTextEditor); + break; + case JSON: + ui->comboMode->setCurrentIndex(JsonEditor); + break; + case SVG: + case XML: + ui->comboMode->setCurrentIndex(XmlEditor); + break; + } + } +} + +// Update the information labels in the bottom left corner of the dialog +// and switches the editor mode, if required, according to the detected data type. +void EditDialog::updateCellInfoAndMode(const QByteArray& bArrdata) +{ + QByteArray cellData = bArrdata; + + switchEditorMode(ui->buttonAutoSwitchMode->isChecked()); + + // Image data needs special treatment + if (dataType == Image || dataType == SVG) { + QBuffer imageBuffer(&cellData); + QImageReader imageReader(&imageBuffer); + + // Display the image format + QString imageFormat = imageReader.format(); + + ui->labelType->setText(tr("Type of data currently in cell: %1 Image").arg(imageFormat.toUpper())); + + // Display the image dimensions and size + QSize imageDimensions = imageReader.size(); + unsigned int imageSize = static_cast(cellData.size()); + + QString labelSizeText = tr("%1x%2 pixel(s)").arg(imageDimensions.width()).arg(imageDimensions.height()) + ", " + humanReadableSize(imageSize); + + ui->labelSize->setText(labelSizeText); + + return; + } + + // Use a switch statement for the other data types to keep things neat :) + switch (dataType) { + case Null: { + // NULL data type + ui->labelType->setText(tr("Type of data currently in cell: NULL")); + ui->labelSize->setText(tr("%n byte(s)", "", 0)); + + // Use margin to set the NULL text. + sciEdit->setTextInMargin(Settings::getValue("databrowser", "null_text").toString()); + break; + } + case XML: + case Text: + case RtlText: { + // Text only + // Determine the length of the cell text in characters (possibly different to number of bytes). + int textLength = QString(cellData).length(); + ui->labelType->setText(tr("Type of data currently in cell: Text / Numeric")); + ui->labelSize->setText(tr("%n character(s)", "", textLength)); + break; + } + case JSON: { + // Valid JSON + // Determine the length of the cell text in characters (possibly different to number of bytes). + int jsonLength = QString(cellData).length(); + ui->labelType->setText(tr("Type of data currently in cell: Valid JSON")); + ui->labelSize->setText(tr("%n character(s)", "", jsonLength)); + break; + } + default: + + // Determine the length of the cell data + int dataLength = cellData.length(); + // If none of the above data types, consider it general binary data + ui->labelType->setText(tr("Type of data currently in cell: Binary")); + ui->labelSize->setText(tr("%n byte(s)", "", dataLength)); + break; + } +} + +void EditDialog::reloadSettings() +{ + // Set the (SQL) editor font for hex editor, since it needs a + // Monospace font and the databrowser font would be usually of + // variable width. + QFont hexFont(Settings::getValue("editor", "font").toString()); + hexFont.setPointSize(Settings::getValue("databrowser", "fontsize").toInt()); + hexEdit->setFont(hexFont); + + ui->editCellToolbar->setToolButtonStyle(static_cast + (Settings::getValue("General", "toolbarStyleEditCell").toInt())); + + sciEdit->reloadSettings(); +} + +void EditDialog::setStackCurrentIndex(int editMode) +{ + switch (editMode) { + case TextEditor: + // Scintilla case: switch to the single Scintilla editor and set language + ui->editorStack->setCurrentIndex(TextEditor); + sciEdit->setLanguage(DockTextEdit::PlainText); + break; + case HexEditor: + case ImageViewer: + case RtlTextEditor: + // General case: switch to the selected editor + ui->editorStack->setCurrentIndex(editMode); + break; + case JsonEditor: + // Scintilla case: switch to the single Scintilla editor and set language + ui->editorStack->setCurrentIndex(TextEditor); + sciEdit->setLanguage(DockTextEdit::JSON); + break; + case XmlEditor: + // Scintilla case: switch to the single Scintilla editor and set language + ui->editorStack->setCurrentIndex(TextEditor); + sciEdit->setLanguage(DockTextEdit::XML); + break; + } +} + +void EditDialog::openPrintDialog() +{ + int editMode = ui->editorStack->currentIndex(); + if (editMode == ImageViewer) { + openPrintImageDialog(); + return; + } + + QPrinter printer; + QPrintPreviewDialog *dialog = new QPrintPreviewDialog(&printer); + + connect(dialog, &QPrintPreviewDialog::paintRequested, [this](QPrinter *previewPrinter) { + QTextDocument document; + switch (dataSource) { + case SciBuffer: + // This case isn't really expected because the Scintilla widget has it's own printing slot + document.setPlainText(sciEdit->text()); + break; + case HexBuffer: + document.setPlainText(hexEdit->toReadableString()); + document.setDefaultFont(hexEdit->font()); + break; + case QtBuffer: + document.setPlainText(ui->qtEdit->toPlainText()); + break; + } + + document.print(previewPrinter); + }); + + dialog->exec(); + delete dialog; + +} + +void EditDialog::openPrintImageDialog() +{ + QPrinter printer; + QPrintPreviewDialog *dialog = new QPrintPreviewDialog(&printer); + + connect(dialog, &QPrintPreviewDialog::paintRequested, [&](QPrinter *previewPrinter) { + QPainter painter(previewPrinter); + QRect rect = painter.viewport(); + QSize size = ui->editorImage->pixmap()->size(); + size.scale(rect.size(), Qt::KeepAspectRatio); + painter.setViewport(rect.x(), rect.y(), size.width(), size.height()); + painter.setWindow(ui->editorImage->pixmap()->rect()); + painter.drawPixmap(0, 0, *ui->editorImage->pixmap()); + }); + + dialog->exec(); + + delete dialog; +} + +void EditDialog::copyHexAscii() +{ + QApplication::clipboard()->setText(hexEdit->selectionToReadableString()); +} + +void EditDialog::setWordWrapping(bool value) +{ + // Set wrap lines + sciEdit->setWrapMode(value ? QsciScintilla::WrapWord : QsciScintilla::WrapNone); + ui->qtEdit->setWordWrapMode(value ? QTextOption::WrapAtWordBoundaryOrAnywhere : QTextOption::NoWrap); +} + +void EditDialog::openDataWithExternal() +{ + QString extension; + switch (dataType) { + case Image: { + // Images get special treatment. + // Determine the likely filename extension. + QByteArray cellData = hexEdit->data(); + QBuffer imageBuffer(&cellData); + QImageReader imageReader(&imageBuffer); + extension = imageReader.format().toLower().prepend("."); + break; + } + case Binary: + extension = FILE_EXT_BIN_DEFAULT; + break; + case RtlText: + case Text: + if (ui->comboMode->currentIndex() == XmlEditor) + extension = FILE_EXT_XML_DEFAULT; + else + extension = FILE_EXT_TXT_DEFAULT; + break; + case JSON: + extension = FILE_EXT_JSON_DEFAULT; + break; + case SVG: + extension = FILE_EXT_SVG_DEFAULT; + break; + case XML: + extension = FILE_EXT_XML_DEFAULT; + break; + case Null: + return; + } + QTemporaryFile* file = new QTemporaryFile (QDir::tempPath() + QString("/DB4S-XXXXXX") + extension); + + if(!file->open()) { + QMessageBox::warning(this, qApp->applicationName(), + tr("Couldn't save file: %1.").arg(file->fileName())); + delete file; + } else { + switch (dataSource) { + case HexBuffer: + file->write(hexEdit->data()); + break; + case SciBuffer: + file->write(sciEdit->text().toUtf8()); + break; + case QtBuffer: + file->write(ui->qtEdit->toPlainText().toUtf8()); + break; + } + // We don't want the file to be automatically removed by Qt when destroyed. + file->setAutoRemove(false); + // But we don't want Qt to keep the file open (and locked in Windows), + // and the only way is to destroy the object. + QString fileName = file->fileName(); + delete file; + emit requestUrlOrFileOpen(fileName); + + QMessageBox::StandardButton reply = QMessageBox::information + (nullptr, + QApplication::applicationName(), + tr("The data has been saved to a temporary file and has been opened with the default application. " + "You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes."), + QMessageBox::Apply | QMessageBox::Cancel); + + QFile readFile(fileName); + if(reply == QMessageBox::Apply && readFile.open(QIODevice::ReadOnly)){ + QByteArray d = readFile.readAll(); + loadData(d); + readFile.close(); + } + readFile.remove(); + } +} diff --git a/src/SqliteDBProcess/src/EditDialog.h b/src/SqliteDBProcess/src/EditDialog.h new file mode 100644 index 0000000..32e9703 --- /dev/null +++ b/src/SqliteDBProcess/src/EditDialog.h @@ -0,0 +1,106 @@ +#ifndef EDITDIALOG_H +#define EDITDIALOG_H +#include "WBFZExchangePluginAPI.h" +#include +#include + +class QHexEdit; +class DockTextEdit; + +namespace Ui { +class EditDialog; +} + +class EditDialog : public QDialog +{ + Q_OBJECT + +public: + explicit EditDialog(QWidget* parent = nullptr); + ~EditDialog() override; + + void setCurrentIndex(const QModelIndex& idx); + QPersistentModelIndex currentIndex() { return m_currentIndex; }; + +public slots: + void setFocus(); + void reject() override; + void setReadOnly(bool ro); + void reloadSettings(); + +protected: + void showEvent(QShowEvent* ev) override; + +private slots: + void importData(bool asLink = false); + void exportData(); + void setNull(); + void updateApplyButton(); + void accept() override; + void loadData(const QByteArray& bArrdata); + void toggleOverwriteMode(); + void editModeChanged(int newMode); + void editTextChanged(); + void switchEditorMode(bool autoSwitchForType); + void updateCellInfoAndMode(const QByteArray& bArrdata); + void setMustIndentAndCompact(bool enable); + void openPrintDialog(); + void openPrintImageDialog(); + void copyHexAscii(); + void setWordWrapping(bool value); + +signals: + void recordTextUpdated(const QPersistentModelIndex& idx, const QByteArray& bArrdata, bool isBlob); + void requestUrlOrFileOpen(const QString& urlString); + +private: + Ui::EditDialog* ui; + QHexEdit* hexEdit; + DockTextEdit* sciEdit; + QPersistentModelIndex m_currentIndex; + int dataSource; + int dataType; + bool isReadOnly; + bool mustIndentAndCompact; + QByteArray removedBom; + + enum DataSources { + QtBuffer, + HexBuffer, + SciBuffer + }; + + // SVG is both an Image and an XML document so it is treated separately + enum DataTypes { + Binary, + Image, + Null, + Text, + JSON, + SVG, + XML, + RtlText + }; + + // Edit modes and editor stack (this must be aligned with the UI). + // Note that text modes (plain, JSON and XML) share the Scintilla widget, + // Consequently the editor stack range is TextEditor..ImageViewer. + enum EditModes { + // Modes with their own widget in the stack: + TextEditor = 0, + RtlTextEditor = 1, + HexEditor = 2, + ImageViewer = 3, + // Modes in the Scintilla editor: + JsonEditor = 4, + XmlEditor = 5 + }; + + int checkDataType(const QByteArray& bArrdata) const; + bool promptInvalidData(const QString& data_type, const QString& errorString); + void setDataInBuffer(const QByteArray& bArrdata, DataSources source); + void setStackCurrentIndex(int editMode); + void openDataWithExternal(); +}; + +#endif diff --git a/src/SqliteDBProcess/src/EditDialog.ui b/src/SqliteDBProcess/src/EditDialog.ui new file mode 100644 index 0000000..a1aab0f --- /dev/null +++ b/src/SqliteDBProcess/src/EditDialog.ui @@ -0,0 +1,690 @@ + + + EditDialog + + + + 0 + 0 + 618 + 382 + + + + Edit database cell + + + This area displays information about the data present in this database cell + + + + + + + + + 0 + 0 + + + + Mode: + + + comboMode + + + + + + + + 0 + 0 + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + + + + Text + + + + + RTL Text + + + + + Binary + + + + + Image + + + + + JSON + + + + + XML + + + + + + + + Automatically adjust the editor mode to the loaded data type + + + Automatically adjust the editor mode to the loaded data type + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + + + Auto-switch + + + + :/icons/keyword + :/icons/cog_go.png:/icons/keyword + + + true + + + true + + + + + + + Qt::Horizontal + + + + 0 + 0 + + + + + + + + + + + + + + + + + + + + + + 0 + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + + + + + + + + + Monospace + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + + + false + + + + + + + + Qt::ActionsContextMenu + + + + + true + + + + + 0 + 0 + 84 + 35 + + + + + + + Qt::ActionsContextMenu + + + + + + + + + + + + + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + Type of data currently in cell + + + true + + + + + + + + 0 + 0 + + + + + 100 + 0 + + + + Size of data currently in table + + + Qt::PlainText + + + true + + + + + + + + + + 0 + 0 + + + + Apply data to cell + + + This button saves the changes performed in the cell editor to the database cell. + + + Apply + + + true + + + + + + + + + + :/icons/print:/icons/print + + + Print... + + + Open preview dialog for printing displayed image + + + Ctrl+P + + + + + + :/icons/print:/icons/print + + + Print... + + + Open preview dialog for printing displayed text + + + Open preview dialog for printing the data currently stored in the cell + + + Ctrl+P + + + Qt::WidgetShortcut + + + + + + :/icons/special_copy:/icons/special_copy + + + Copy Hex and ASCII + + + Copy selected hexadecimal and ASCII columns to the clipboard + + + Ctrl+Shift+C + + + + + true + + + + :/icons/text_indent:/icons/text_indent + + + Autoformat + + + Auto-format: pretty print on loading, compact on saving. + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + + + + + + :/icons/save_sql:/icons/save_sql + + + &Export... + + + Export to file + + + Opens a file dialog used to export the contents of this database cell to a file. + + + + + + :/icons/document_open:/icons/document_open + + + &Import... + + + Import from file + + + Opens a file dialog used to import any kind of data to this database cell. + + + + + + :/icons/set_to_null:/icons/set_to_null + + + Set as &NULL + + + Erases the contents of the cell + + + + + true + + + true + + + + :/icons/word_wrap:/icons/word_wrap + + + Word Wrap + + + Wrap lines on word boundaries + + + + + + :/icons/open_in_app:/icons/open_in_app + + + Open in default application or browser + + + Open in application + + + Open in default application or browser + + + The value is interpreted as a file or URL and opened in the default application or web browser. + + + + + + :/icons/document_link:/icons/document_link + + + Save file reference... + + + Save reference to file + + + + + + :/icons/document_open:/icons/document_open + + + &Import... + + + Import from file + + + Opens a file dialog used to import any kind of data to this database cell. + + + + + + :/icons/open_data_in_app:/icons/open_data_in_app + + + Open in external application + + + Open in external application + + + + + comboMode + buttonAutoSwitchMode + buttonApply + + + + + + + buttonApply + clicked() + EditDialog + accept() + + + 605 + 358 + + + 241 + 406 + + + + + comboMode + currentIndexChanged(int) + EditDialog + editModeChanged(int) + + + 71 + 27 + + + 201 + 431 + + + + + qtEdit + textChanged() + EditDialog + editTextChanged() + + + 279 + 191 + + + 339 + 335 + + + + + actionIndent + toggled(bool) + EditDialog + setMustIndentAndCompact(bool) + + + -1 + -1 + + + 308 + 190 + + + + + buttonAutoSwitchMode + toggled(bool) + EditDialog + switchEditorMode(bool) + + + 162 + 33 + + + 308 + 190 + + + + + actionPrintImage + triggered() + EditDialog + openPrintImageDialog() + + + -1 + -1 + + + 308 + 190 + + + + + actionPrint + triggered() + EditDialog + openPrintDialog() + + + -1 + -1 + + + 308 + 190 + + + + + actionCopyHexAscii + triggered() + EditDialog + copyHexAscii() + + + -1 + -1 + + + 308 + 190 + + + + + actionNull + triggered() + EditDialog + setNull() + + + -1 + -1 + + + 308 + 190 + + + + + actionImport + triggered() + EditDialog + importData() + + + -1 + -1 + + + 308 + 190 + + + + + actionExport + triggered() + EditDialog + exportData() + + + -1 + -1 + + + 308 + 190 + + + + + actionWordWrap + toggled(bool) + EditDialog + setWordWrapping(bool) + + + -1 + -1 + + + 308 + 190 + + + + + actionImportInMenu + triggered() + EditDialog + importData() + + + -1 + -1 + + + 308 + 190 + + + + + + importData() + exportData() + editTextChanged() + editModeChanged(int) + setNull() + + diff --git a/src/SqliteDBProcess/src/EditIndexDialog.cpp b/src/SqliteDBProcess/src/EditIndexDialog.cpp new file mode 100644 index 0000000..d8449b7 --- /dev/null +++ b/src/SqliteDBProcess/src/EditIndexDialog.cpp @@ -0,0 +1,351 @@ +#include "EditIndexDialog.h" +#include "ui_EditIndexDialog.h" +#include "sqlitedb.h" +#include "IconCache.h" + +#include +#include + +EditIndexDialog::EditIndexDialog(DBBrowserDB& db, const sqlb::ObjectIdentifier& indexName, bool createIndex, QWidget* parent) + : QDialog(parent), + pdb(db), + curIndex(indexName), + index(indexName.name()), + newIndex(createIndex), + ui(new Ui::EditIndexDialog), + m_sRestorePointName(pdb.generateSavepointName("editindex")) +{ + // Create UI + ui->setupUi(this); + ui->sqlTextEdit->setReadOnly(true); + + // Get list of tables, sort it alphabetically and fill the combobox + std::map dbobjs; // Map from display name to full object identifier + if(newIndex) // If this is a new index, offer all tables of all database schemata + { + for(const auto& it : pdb.schemata) + { + auto tables = it.second.equal_range("table"); + for(auto jt=tables.first;jt!=tables.second;++jt) + { + // Only show the schema name for non-main schemata + sqlb::ObjectIdentifier obj(it.first, jt->second->name()); + dbobjs.insert({obj.toDisplayString(), obj}); + } + } + } else { // If this is an existing index, only offer tables of the current database schema + auto tables = pdb.schemata[curIndex.schema()].equal_range("table"); + for(auto it=tables.first;it!=tables.second;++it) + { + // Only show the schema name for non-main schemata + sqlb::ObjectIdentifier obj(curIndex.schema(), it->second->name()); + dbobjs.insert({obj.toDisplayString(), obj}); + } + } + ui->comboTableName->blockSignals(true); + for(auto it=dbobjs.cbegin();it!=dbobjs.cend();++it) + ui->comboTableName->addItem(IconCache::get("table"), QString::fromStdString(it->first), QString::fromStdString(it->second.toSerialised())); + ui->comboTableName->blockSignals(false); + + QHeaderView *tableHeaderView = ui->tableIndexColumns->horizontalHeader(); + tableHeaderView->setSectionResizeMode(0, QHeaderView::Stretch); + + // Editing an existing index? + if(!newIndex) + { + // Load the current layout and fill in the dialog fields + index = *(pdb.getObjectByName(curIndex)); + + ui->editIndexName->blockSignals(true); + ui->editIndexName->setText(QString::fromStdString(index.name())); + ui->editIndexName->blockSignals(false); + ui->checkIndexUnique->blockSignals(true); + ui->checkIndexUnique->setChecked(index.unique()); + ui->checkIndexUnique->blockSignals(false); + ui->comboTableName->blockSignals(true); + ui->comboTableName->setCurrentText(QString::fromStdString(index.table())); + ui->comboTableName->blockSignals(false); + ui->editPartialClause->blockSignals(true); + ui->editPartialClause->setText(QString::fromStdString(index.whereExpr())); + ui->editPartialClause->blockSignals(false); + + tableChanged(QString::fromStdString(index.table()), true); + } else { + tableChanged(ui->comboTableName->currentText(), false); + } + + // Add event handler for index column name changes. These are only allowed for expression columns, though. + connect(ui->tableIndexColumns, &QTableWidget::itemChanged, + [=](QTableWidgetItem* item) + { + index.fields[static_cast(item->row())].setName(item->text().toStdString()); + updateSqlText(); + }); + + // Create a savepoint to revert back to + pdb.setSavepoint(m_sRestorePointName); +} + +EditIndexDialog::~EditIndexDialog() +{ + delete ui; +} + +void EditIndexDialog::tableChanged(const QString& new_table, bool initialLoad) +{ + // Set the table name and clear all index columns + if(!initialLoad) + { + index.setTable(sqlb::ObjectIdentifier(ui->comboTableName->currentData().toString().toStdString()).name()); + index.fields.clear(); + } + + // Stop here if table name is empty + if(new_table.isEmpty()) + { + // Call checkInput() before to make sure the OK button is disabled + checkInput(); + return; + } + + updateColumnLists(); +} + +void EditIndexDialog::updateColumnLists() +{ + // Fill the table column list + sqlb::TablePtr table = pdb.getObjectByName(sqlb::ObjectIdentifier(ui->comboTableName->currentData().toString().toStdString())); + if(!table) + return; + sqlb::FieldInfoList tableFields = table->fieldInformation(); + ui->tableTableColumns->setRowCount(static_cast(tableFields.size())); + int tableRows = 0; + for(size_t i=0;isetFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + ui->tableTableColumns->setItem(tableRows, 0, name); + + // Put the data type in the second column + QTableWidgetItem* type = new QTableWidgetItem(QString::fromStdString(tableFields.at(i).type)); + type->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + ui->tableTableColumns->setItem(tableRows, 1, type); + + tableRows++; + } + } + + // Set row count to actual count. This is needed for the intial loading, when some rows might have been omitted because they were used in the index + ui->tableTableColumns->setRowCount(tableRows); + + // Fill the index column list. This is done separately from the table column to include expression columns (these are not found in the original + // table) and to preserve the order of the index columns + auto indexFields = index.fields; + ui->tableIndexColumns->blockSignals(true); + ui->tableIndexColumns->setRowCount(static_cast(indexFields.size())); + for(size_t i=0;isetFlags(flags); + ui->tableIndexColumns->setItem(static_cast(i), 0, name); + + // And put a combobox to select the order in which to index the field in the last column + QComboBox* order = new QComboBox(this); + order->addItem(""); + order->addItem("ASC"); + order->addItem("DESC"); + order->setCurrentText(QString::fromStdString(indexFields.at(i).order()).toUpper()); + ui->tableIndexColumns->setCellWidget(static_cast(i), 1, order); + connect(order, &QComboBox::currentTextChanged, + [=](QString new_order) + { + auto colnum = sqlb::findField(index, indexFields.at(i).name()); + if(colnum != index.fields.end()) + { + colnum->setOrder(new_order.toStdString()); + updateSqlText(); + } + }); + } + ui->tableIndexColumns->blockSignals(false); + + checkInput(); +} + +void EditIndexDialog::addToIndex(const QModelIndex& idx) +{ + // Get current row number + int row; + if(idx.isValid()) + row = idx.row(); + else + row = ui->tableTableColumns->currentRow(); + + // No row selected? Abort. + if(row == -1) + return; + + // Add field to index + index.fields.emplace_back( + ui->tableTableColumns->item(row, 0)->text().toStdString(), // Column name + false, // Is expression + ""); // Order + + // Update UI + updateColumnLists(); +} + +void EditIndexDialog::removeFromIndex(const QModelIndex& idx) +{ + // Get current row number + int row; + if(idx.isValid()) + row = idx.row(); + else + row = ui->tableIndexColumns->currentRow(); + + // No row selected? Abort. + if(row == -1) + return; + + // If this is an expression column and the action was triggered by a double click event instead of a button click, + // we won't remove the expression column because it's too likely that this was only done by accident by the user. + // Instead just open the expression column for editing. + if(index.fields[static_cast(row)].expression() && sender() != ui->buttonFromIndex) + { + ui->tableIndexColumns->editItem(ui->tableIndexColumns->item(row, 0)); + return; + } + + // Remove column from index + sqlb::removeField(index, ui->tableIndexColumns->item(row, 0)->text().toStdString()); + + // Update UI + updateColumnLists(); +} + +void EditIndexDialog::checkInput() +{ + // Check if index name is set + bool valid = true; + if(ui->editIndexName->text().isEmpty()) + valid = false; + + // Check if a table is selected (this is especially important in the case where there are no tables in the database yet). + if(ui->comboTableName->currentText().isNull()) + valid = false; + + // Check if index has any columns + if(index.fields.size() == 0) + valid = false; + + // Only activate OK button if index data is valid + ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(valid); + + // Set the index name and the unique flag + index.setName(ui->editIndexName->text().toStdString()); + index.setUnique(ui->checkIndexUnique->isChecked()); + index.setWhereExpr(ui->editPartialClause->text().toStdString()); + updateSqlText(); +} + +void EditIndexDialog::accept() +{ + // When editing an index, delete the old one first + if(!newIndex) + { + if(!pdb.executeSQL("DROP INDEX IF EXISTS " + curIndex.toString())) + { + QMessageBox::warning(this, qApp->applicationName(), tr("Deleting the old index failed:\n%1").arg(pdb.lastError())); + return; + } + } + + // Create the new index in the schema of the selected table + if(pdb.executeSQL(index.sql(sqlb::ObjectIdentifier(ui->comboTableName->currentData().toString().toStdString()).schema()))) + QDialog::accept(); + else + QMessageBox::warning(this, QApplication::applicationName(), tr("Creating the index failed:\n%1").arg(pdb.lastError())); +} + +void EditIndexDialog::reject() +{ + // Rollback to our savepoint + pdb.revertToSavepoint(m_sRestorePointName); + + QDialog::reject(); +} + +void EditIndexDialog::updateSqlText() +{ + ui->sqlTextEdit->setText(QString::fromStdString(index.sql(sqlb::ObjectIdentifier(ui->comboTableName->currentData().toString().toStdString()).schema()))); +} + +void EditIndexDialog::moveColumnUp() +{ + moveCurrentColumn(false); +} + +void EditIndexDialog::moveColumnDown() +{ + moveCurrentColumn(true); +} + +void EditIndexDialog::moveCurrentColumn(bool down) +{ + // Get current row number and calculate row number after the movement. Check the values + int currentRow = ui->tableIndexColumns->currentRow(); + if(currentRow == -1) + return; + int newRow = currentRow + (down ? 1 : -1); + if(newRow < 0) + return; + if(newRow >= ui->tableIndexColumns->rowCount()) + return; + + // Swap the columns + std::swap(index.fields[static_cast(currentRow)], index.fields[static_cast(newRow)]); + + // Update UI + updateColumnLists(); + + // Select old row at new position + ui->tableIndexColumns->selectRow(newRow); +} + +void EditIndexDialog::addExpressionColumn() +{ + // Check if there already is an empty expression column + auto field_it = sqlb::findField(index, ""); + int row = static_cast(std::distance(index.fields.begin(), field_it)); + if(field_it == index.fields.end()) + { + // There is no empty expression column yet, so add one. + + // Add new expression column to the index + index.fields.emplace_back( + "", // Column name + true, // Is expression + ""); // Order + + // Update UI + updateColumnLists(); + + // Get row number of new column + row = ui->tableIndexColumns->rowCount() - 1; + } + + // Now we should have the row number of the empty expression column, no matter if it was newly added or it already existed. + // Select the row for editing + ui->tableIndexColumns->editItem(ui->tableIndexColumns->item(row, 0)); +} diff --git a/src/SqliteDBProcess/src/EditIndexDialog.h b/src/SqliteDBProcess/src/EditIndexDialog.h new file mode 100644 index 0000000..993321c --- /dev/null +++ b/src/SqliteDBProcess/src/EditIndexDialog.h @@ -0,0 +1,49 @@ +#ifndef EDITINDEXDIALOG_H +#define EDITINDEXDIALOG_H +#include "WBFZExchangePluginAPI.h" +#include "sql/ObjectIdentifier.h" +#include "sql/sqlitetypes.h" + +#include +#include + +class DBBrowserDB; + +namespace Ui { +class EditIndexDialog; +} + +class EditIndexDialog : public QDialog +{ + Q_OBJECT + +public: + explicit EditIndexDialog(DBBrowserDB& db, const sqlb::ObjectIdentifier& indexName, bool createIndex, QWidget* parent = nullptr); + ~EditIndexDialog() override; + +private slots: + void accept() override; + void reject() override; + + void tableChanged(const QString& new_table, bool initialLoad = false); + void checkInput(); + void addToIndex(const QModelIndex& idx = QModelIndex()); + void removeFromIndex(const QModelIndex& idx = QModelIndex()); + void moveColumnUp(); + void moveColumnDown(); + void addExpressionColumn(); + +private: + DBBrowserDB& pdb; + sqlb::ObjectIdentifier curIndex; + sqlb::Index index; + bool newIndex; + Ui::EditIndexDialog* ui; + std::string m_sRestorePointName; + + void updateColumnLists(); + void updateSqlText(); + void moveCurrentColumn(bool down); +}; + +#endif diff --git a/src/SqliteDBProcess/src/EditIndexDialog.ui b/src/SqliteDBProcess/src/EditIndexDialog.ui new file mode 100644 index 0000000..4477fbc --- /dev/null +++ b/src/SqliteDBProcess/src/EditIndexDialog.ui @@ -0,0 +1,573 @@ + + + EditIndexDialog + + + + 0 + 0 + 703 + 543 + + + + Edit Index Schema + + + + :/icons/index_create:/icons/index_create + + + + + + + + &Name + + + editIndexName + + + + + + + + + + &Table + + + comboTableName + + + + + + + + + + &Unique + + + checkIndexUnique + + + + + + + + + + + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + + + Partial inde&x clause + + + editPartialClause + + + + + + + + + + Colu&mns + + + tableIndexColumns + + + + + + + + 0 + 0 + + + + Qt::Vertical + + + + + + + QAbstractItemView::NoEditTriggers + + + false + + + true + + + QAbstractItemView::SingleSelection + + + QAbstractItemView::SelectRows + + + true + + + false + + + + Table column + + + + + Type + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + Qt::RightArrow + + + + + + + Qt::LeftArrow + + + + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + + + + :/icons/cog_go.png:/icons/cog_go.png + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + 0 + 1 + + + + + 0 + 250 + + + + QAbstractItemView::AnyKeyPressed|QAbstractItemView::EditKeyPressed|QAbstractItemView::SelectedClicked + + + false + + + true + + + QAbstractItemView::SingleSelection + + + QAbstractItemView::SelectRows + + + true + + + false + + + + Index column + + + + + Order + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + Qt::UpArrow + + + + + + + Qt::DownArrow + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + 0 + 100 + + + + true + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + + SqlTextEdit + QWidget +
sqltextedit.h
+ 1 +
+
+ + editIndexName + comboTableName + checkIndexUnique + editPartialClause + tableTableColumns + tableIndexColumns + buttonToIndex + buttonFromIndex + + + + + + + buttonBox + accepted() + EditIndexDialog + accept() + + + 264 + 536 + + + 157 + 274 + + + + + buttonBox + rejected() + EditIndexDialog + reject() + + + 332 + 536 + + + 286 + 274 + + + + + comboTableName + currentIndexChanged(QString) + EditIndexDialog + tableChanged(QString) + + + 145 + 74 + + + 236 + 31 + + + + + editIndexName + textChanged(QString) + EditIndexDialog + checkInput() + + + 429 + 14 + + + 443 + 39 + + + + + tableIndexColumns + cellChanged(int,int) + EditIndexDialog + checkInput() + + + 443 + 170 + + + 566 + 40 + + + + + checkIndexUnique + toggled(bool) + EditIndexDialog + checkInput() + + + 153 + 100 + + + 304 + 251 + + + + + buttonToIndex + clicked() + EditIndexDialog + addToIndex() + + + 406 + 247 + + + 385 + 103 + + + + + buttonFromIndex + clicked() + EditIndexDialog + removeFromIndex() + + + 406 + 285 + + + 350 + 95 + + + + + tableIndexColumns + doubleClicked(QModelIndex) + EditIndexDialog + removeFromIndex(QModelIndex) + + + 520 + 236 + + + 684 + 175 + + + + + tableTableColumns + doubleClicked(QModelIndex) + EditIndexDialog + addToIndex(QModelIndex) + + + 231 + 357 + + + 19 + 205 + + + + + editPartialClause + textChanged(QString) + EditIndexDialog + checkInput() + + + 242 + 129 + + + 47 + 103 + + + + + buttonMoveColumnUp + clicked() + EditIndexDialog + moveColumnUp() + + + 676 + 241 + + + 700 + 212 + + + + + buttonMoveColumnDown + clicked() + EditIndexDialog + moveColumnDown() + + + 686 + 299 + + + 699 + 307 + + + + + buttonAddExpressionColumn + clicked() + EditIndexDialog + addExpressionColumn() + + + 398 + 311 + + + 379 + 500 + + + + + + tableChanged(QString) + checkInput() + addToIndex() + addToIndex(QModelIndex) + removeFromIndex() + removeFromIndex(QModelIndex) + moveColumnUp() + moveColumnDown() + addExpressionColumn() + +
diff --git a/src/SqliteDBProcess/src/EditTableDialog.cpp b/src/SqliteDBProcess/src/EditTableDialog.cpp new file mode 100644 index 0000000..02a2303 --- /dev/null +++ b/src/SqliteDBProcess/src/EditTableDialog.cpp @@ -0,0 +1,1008 @@ +#include "EditTableDialog.h" +#include "Settings.h" +#include "ForeignKeyEditorDelegate.h" +#include "ui_EditTableDialog.h" +#include "sqlitetablemodel.h" +#include "sqlitedb.h" +#include "SelectItemsPopup.h" + +#include +#include +#include +#include +#include +#include + +#include + +Q_DECLARE_METATYPE(sqlb::ConstraintPtr) + +EditTableDialog::EditTableDialog(DBBrowserDB& db, const sqlb::ObjectIdentifier& tableName, bool createTable, QWidget* parent) + : QDialog(parent), + ui(new Ui::EditTableDialog), + pdb(db), + curTable(tableName), + m_table(tableName.name()), + m_bNewTable(createTable), + m_sRestorePointName(pdb.generateSavepointName("edittable")) +{ + // Create UI + ui->setupUi(this); + ui->widgetExtension->setVisible(false); + connect(ui->treeWidget, &QTreeWidget::itemChanged, this, &EditTableDialog::fieldItemChanged); + connect(ui->tableConstraints, &QTableWidget::itemChanged, this, &EditTableDialog::constraintItemChanged); + + // Set item delegate for foreign key column + m_fkEditorDelegate = new ForeignKeyEditorDelegate(db, m_table, this); + ui->treeWidget->setItemDelegateForColumn(kForeignKey, m_fkEditorDelegate); + + // Set up popup menu for adding constraints + QMenu* constraint_menu = new QMenu(this); + constraint_menu->addAction(ui->actionAddPrimaryKey); + constraint_menu->addAction(ui->actionAddForeignKey); + constraint_menu->addAction(ui->actionAddUniqueConstraint); + constraint_menu->addAction(ui->actionAddCheckConstraint); + connect(ui->actionAddPrimaryKey, &QAction::triggered, [this]() { addConstraint(sqlb::Constraint::PrimaryKeyConstraintType); }); + connect(ui->actionAddForeignKey, &QAction::triggered, [this]() { addConstraint(sqlb::Constraint::ForeignKeyConstraintType); }); + connect(ui->actionAddUniqueConstraint, &QAction::triggered, [this]() { addConstraint(sqlb::Constraint::UniqueConstraintType); }); + connect(ui->actionAddCheckConstraint, &QAction::triggered, [this]() { addConstraint(sqlb::Constraint::CheckConstraintType); }); + ui->buttonAddConstraint->setMenu(constraint_menu); + + // Get list of all collations + db.executeSQL("PRAGMA collation_list;", false, true, [this](int column_count, std::vector columns, std::vector) -> bool { + if(column_count >= 2) + m_collationList.push_back(columns.at(1)); + return false; + }); + if(!m_collationList.contains("")) + m_collationList.push_back(""); + m_collationList.sort(); + + // Editing an existing table? + if(m_bNewTable == false) + { + // Existing table, so load and set the current layout + m_table = *(pdb.getObjectByName(curTable)); + ui->labelEditWarning->setVisible(!m_table.fullyParsed()); + + // Initialise the list of tracked columns for table layout changes + for(const auto& field : m_table.fields) + trackColumns[QString::fromStdString(field.name())] = QString::fromStdString(field.name()); + + // Set without rowid checkbox and schema dropdown. No need to trigger any events here as we're only loading a table exactly as it is stored by SQLite, so no need + // for error checking etc. + ui->checkWithoutRowid->blockSignals(true); + ui->checkWithoutRowid->setChecked(m_table.withoutRowidTable()); + ui->checkWithoutRowid->blockSignals(false); + ui->comboSchema->blockSignals(true); + for(const auto& n : pdb.schemata) // Load list of database schemata + ui->comboSchema->addItem(QString::fromStdString(n.first)); + ui->comboSchema->setCurrentText(QString::fromStdString(curTable.schema())); + ui->comboSchema->blockSignals(false); + + populateFields(); + populateConstraints(); + } else { + for(const auto& n : pdb.schemata) // Load list of database schemata + ui->comboSchema->addItem(QString::fromStdString(n.first)); + ui->comboSchema->setCurrentText("main"); // Always create tables in the main schema by default + ui->labelEditWarning->setVisible(false); + } + + // Enable/disable remove constraint button depending on whether a constraint is selected + connect(ui->tableConstraints, &QTableWidget::itemSelectionChanged, [this]() { + bool hasSelection = ui->tableConstraints->selectionModel()->hasSelection(); + ui->buttonRemoveConstraint->setEnabled(hasSelection); + }); + + // And create a savepoint + pdb.setSavepoint(m_sRestorePointName); + + // Update UI + ui->editTableName->setText(QString::fromStdString(curTable.name())); + updateColumnWidth(); + + // Allow editing of constraint columns by double clicking the columns column of the constraints table + connect(ui->tableConstraints, &QTableWidget::itemDoubleClicked, [this](QTableWidgetItem* item) { + // Check whether the double clicked item is in the columns column + if(item->column() == kConstraintColumns) + { + sqlb::ConstraintPtr constraint = ui->tableConstraints->item(item->row(), kConstraintColumns)->data(Qt::UserRole).value(); + + // Do not allow editing the columns list of a CHECK constraint because CHECK constraints are independent of column lists + if(constraint->type() == sqlb::Constraint::CheckConstraintType) + return; + + // Show the select items popup dialog + SelectItemsPopup* dialog = new SelectItemsPopup(m_table.fieldNames(), item->data(Qt::UserRole).value()->columnList(), this); + QRect item_rect = ui->tableConstraints->visualItemRect(item); + dialog->move(ui->tableConstraints->mapToGlobal(QPoint(ui->tableConstraints->x() + item_rect.x(), + ui->tableConstraints->y() + item_rect.y() + item_rect.height() / 2))); + dialog->show(); + + // When clicking the Apply button in the popup dialog, save the new columns list + connect(dialog, &SelectItemsPopup::accepted, [this, dialog, constraint]() { + // Check if column selection changed at all + sqlb::StringVector new_columns = dialog->selectedItems(); + if(constraint->columnList() != new_columns) + { + // Remove the constraint with the old columns and add a new one with the new columns + m_table.removeConstraint(constraint); + constraint->setColumnList(new_columns); + m_table.addConstraint(constraint); + + // Update the UI + populateFields(); + populateConstraints(); + updateSqlText(); + } + }); + } + }); + + // (De-)activate fields + checkInput(); + + ui->sqlTextEdit->setReadOnly(true); +} + +EditTableDialog::~EditTableDialog() +{ + delete ui; +} + +void EditTableDialog::keyPressEvent(QKeyEvent *evt) +{ + if((evt->modifiers() & Qt::ControlModifier) + && (evt->key() == Qt::Key_Enter || evt->key() == Qt::Key_Return)) + { + accept(); + return; + } + if(evt->key() == Qt::Key_Enter || evt->key() == Qt::Key_Return) + return; + QDialog::keyPressEvent(evt); +} + +void EditTableDialog::updateColumnWidth() +{ + ui->treeWidget->setColumnWidth(kName, 190); + ui->treeWidget->setColumnWidth(kType, 100); + ui->treeWidget->setColumnWidth(kNotNull, 30); + ui->treeWidget->setColumnWidth(kPrimaryKey, 30); + ui->treeWidget->setColumnWidth(kAutoIncrement, 30); + ui->treeWidget->setColumnWidth(kUnique, 30); + ui->treeWidget->setColumnWidth(kForeignKey, 500); + + ui->tableConstraints->setColumnWidth(kConstraintColumns, 180); + ui->tableConstraints->setColumnWidth(kConstraintType, 130); + ui->tableConstraints->setColumnWidth(kConstraintName, 130); + ui->tableConstraints->setColumnWidth(kConstraintSql, 300); +} + +void EditTableDialog::populateFields() +{ + // Disable the itemChanged signal or the table item will be updated while filling the treewidget + ui->treeWidget->blockSignals(true); + + ui->treeWidget->clear(); + const auto& fields = m_table.fields; + const auto pk = m_table.primaryKey(); + for(const sqlb::Field& f : fields) + { + QTreeWidgetItem *tbitem = new QTreeWidgetItem(ui->treeWidget); + tbitem->setFlags(tbitem->flags() | Qt::ItemIsEditable); + tbitem->setText(kName, QString::fromStdString(f.name())); + QComboBox* typeBox = new QComboBox(ui->treeWidget); + typeBox->setProperty("column", QString::fromStdString(f.name())); + typeBox->setEditable(true); + typeBox->addItems(DBBrowserDB::Datatypes); + int index = typeBox->findText(QString::fromStdString(f.type()), Qt::MatchExactly); + if(index == -1) + { + // non standard named type + typeBox->addItem(QString::fromStdString(f.type())); + index = typeBox->count() - 1; + } + typeBox->setCurrentIndex(index); + typeBox->installEventFilter(this); + connect(typeBox, SIGNAL(currentIndexChanged(int)), this, SLOT(updateTypeAndCollation())); + ui->treeWidget->setItemWidget(tbitem, kType, typeBox); + + tbitem->setCheckState(kNotNull, f.notnull() ? Qt::Checked : Qt::Unchecked); + tbitem->setCheckState(kPrimaryKey, pk && contains(pk->columnList(), f.name()) ? Qt::Checked : Qt::Unchecked); + tbitem->setCheckState(kAutoIncrement, pk && pk->autoIncrement() && contains(pk->columnList(), f.name()) ? Qt::Checked : Qt::Unchecked); + tbitem->setCheckState(kUnique, f.unique() ? Qt::Checked : Qt::Unchecked); + + // For the default value check if it is surrounded by parentheses and if that's the case + // add a '=' character before the entire string to match the input format we're expecting + // from the user when using functions in the default value field. + if(f.defaultValue().front() == '(' && f.defaultValue().back() == ')') + tbitem->setText(kDefault, "=" + QString::fromStdString(f.defaultValue())); + else + tbitem->setText(kDefault, QString::fromStdString(f.defaultValue())); + + tbitem->setText(kCheck, QString::fromStdString(f.check())); + + QComboBox* collationBox = new QComboBox(ui->treeWidget); + collationBox->setProperty("column", QString::fromStdString(f.name())); + collationBox->addItems(m_collationList); + index = collationBox->findText(QString::fromStdString(f.collation()), Qt::MatchCaseSensitive); + if(index == -1) + { + // some non-existing collation + collationBox->addItem(QString::fromStdString(f.collation())); + index = collationBox->count() - 1; + } + collationBox->setCurrentIndex(index); + collationBox->installEventFilter(this); + connect(collationBox, SIGNAL(currentIndexChanged(int)), this, SLOT(updateTypeAndCollation())); + ui->treeWidget->setItemWidget(tbitem, kCollation, collationBox); + + auto fk = std::dynamic_pointer_cast(m_table.constraint({f.name()}, sqlb::Constraint::ForeignKeyConstraintType)); + if(fk) + tbitem->setText(kForeignKey, QString::fromStdString(fk->toString())); + ui->treeWidget->addTopLevelItem(tbitem); + } + + // and reconnect + ui->treeWidget->blockSignals(false); +} + +void EditTableDialog::populateConstraints() +{ + // Disable the itemChanged signal or the table item will be updated while filling the treewidget + ui->tableConstraints->blockSignals(true); + + const auto& constraints = m_table.allConstraints(); + + ui->tableConstraints->setRowCount(static_cast(constraints.size())); + int row = 0; + for(const auto& constraint : constraints) + { + const auto columns = constraint->columnList(); + + // Columns + QTableWidgetItem* column = new QTableWidgetItem(QString::fromStdString(sqlb::joinStringVector(columns, ","))); + column->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + column->setData(Qt::UserRole, QVariant::fromValue(constraint)); // Remember address of constraint object. This is used for modifying it later + ui->tableConstraints->setItem(row, kConstraintColumns, column); + + // Type + QComboBox* type = new QComboBox(this); + type->addItem(tr("Primary Key")); // NOTE: The order of the items here have to match the order in the sqlb::Constraint::ConstraintTypes enum! + type->addItem(tr("Unique")); + type->addItem(tr("Foreign Key")); + type->addItem(tr("Check")); + type->setCurrentIndex(constraint->type()); + connect(type, static_cast(&QComboBox::currentIndexChanged), [this, type, constraint](int index) { + // Handle change of constraint type. Effectively this means removing the old constraint and replacing it by an entirely new one. + // Only the column list and the name can be migrated to the new constraint. + + // Make sure there is only one primary key at a time + if(index == 0 && m_table.primaryKey()) + { + QMessageBox::warning(this, qApp->applicationName(), tr("There can only be one primary key for each table. Please modify the existing primary " + "key instead.")); + + // Set combo box back to original constraint type + type->blockSignals(true); + type->setCurrentIndex(constraint->type()); + type->blockSignals(false); + return; + } + + // Create new constraint depending on selected type + sqlb::ConstraintPtr new_constraint = sqlb::Constraint::makeConstraint(static_cast(index)); + new_constraint->setName(constraint->name()); + new_constraint->setColumnList(constraint->columnList()); + + // Replace old by new constraint + m_table.replaceConstraint(constraint, new_constraint); + + // Update SQL and view + populateFields(); + populateConstraints(); + updateSqlText(); + }); + ui->tableConstraints->setCellWidget(row, kConstraintType, type); + + // Name + QTableWidgetItem* name = new QTableWidgetItem(QString::fromStdString(constraint->name())); + name->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsEditable); + ui->tableConstraints->setItem(row, kConstraintName, name); + + // SQL + QTableWidgetItem* sql = new QTableWidgetItem(QString::fromStdString(constraint->toSql())); + sql->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + ui->tableConstraints->setItem(row, kConstraintSql, sql); + + row++; + } + + ui->tableConstraints->blockSignals(false); +} + +void EditTableDialog::accept() +{ + // Are we editing an already existing table or designing a new one? In the first case there is a table name set, + // in the latter the current table name is empty + if(m_bNewTable) + { + // Creation of new table + if(!pdb.executeSQL(m_table.sql(ui->comboSchema->currentText().toStdString()))) + { + QMessageBox::warning( + this, + QApplication::applicationName(), + tr("Error creating table. Message from database engine:\n%1").arg(pdb.lastError())); + return; + } + } else { + // Editing of old table + + // Apply all changes to the actual table in the database + if(!pdb.alterTable(curTable, m_table, trackColumns, ui->comboSchema->currentText().toStdString())) + { + QMessageBox::warning(this, QApplication::applicationName(), pdb.lastError()); + return; + } + } + + QDialog::accept(); +} + +void EditTableDialog::reject() +{ + // Then rollback to our savepoint + pdb.revertToSavepoint(m_sRestorePointName); + + QDialog::reject(); +} + +void EditTableDialog::updateSqlText() +{ + ui->sqlTextEdit->setText(QString::fromStdString(m_table.sql(ui->comboSchema->currentText().toStdString()))); +} + +void EditTableDialog::checkInput() +{ + std::string normTableName = ui->editTableName->text().toStdString(); + bool valid = true; + if(normTableName.empty()) + valid = false; + if(ui->treeWidget->topLevelItemCount() == 0) + valid = false; + if (normTableName != m_table.name()) { + const std::string oldTableName = m_table.name(); + m_table.setName(normTableName); + + // update fk's that refer to table itself recursively + const auto& fields = m_table.fields; + for(const sqlb::Field& f : fields) { + auto fk = std::dynamic_pointer_cast(m_table.constraint({f.name()}, sqlb::Constraint::ForeignKeyConstraintType)); + if(fk && oldTableName == fk->table()) + fk->setTable(normTableName); + } + + populateFields(); + } + + updateSqlText(); + ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(valid); +} + +void EditTableDialog::updateTypeAndCollation(QObject* object) +{ + // Get sender combo box and retrieve field name from it + QComboBox* combo = qobject_cast(object); + if(!combo) + return; + QString column = combo->property("column").toString(); + + // Get type *and* collation combo box for this field + auto item = ui->treeWidget->findItems(column, Qt::MatchExactly, kName); + if(item.size() != 1) + return; + QComboBox* typeBox = qobject_cast(ui->treeWidget->itemWidget(item.front(), kType)); + QComboBox* collationBox = qobject_cast(ui->treeWidget->itemWidget(item.front(), kCollation)); + + // Update table + if(typeBox && collationBox) + { + QString type = typeBox->currentText(); + QString collation = collationBox->currentText(); + + for(size_t index=0; index < m_table.fields.size(); ++index) + { + if(m_table.fields.at(index).name() == column.toStdString()) + { + m_table.fields.at(index).setType(type.toStdString()); + m_table.fields.at(index).setCollation(collation.toStdString()); + break; + } + } + + checkInput(); + } +} + +void EditTableDialog::updateTypeAndCollation() +{ + updateTypeAndCollation(sender()); +} + +bool EditTableDialog::eventFilter(QObject *object, QEvent *event) +{ + if(event->type() == QEvent::FocusOut) + { + updateTypeAndCollation(object); + } + return false; +} + +void EditTableDialog::fieldItemChanged(QTreeWidgetItem *item, int column) +{ + size_t index = static_cast(ui->treeWidget->indexOfTopLevelItem(item)); + if(index < m_table.fields.size()) + { + sqlb::Field& field = m_table.fields.at(index); + QString oldFieldName = QString::fromStdString(field.name()); + + switch(column) + { + case kName: + { + // When a field of that name already exists, show a warning to the user and don't apply the new name. This is done by searching for an + // existing field with the new name. There is one exception, however, to this rule: if the field that we have found is the same field + // as the one we are currently trying to rename, this means the user is trying to rename the field to essentially the same name but + // with different case. Example: if I rename column 'COLUMN' to 'column', findField() is going to return the current field number + // because it's doing a case-independent search and it can't return another field number because SQLite prohibits duplicate field + // names (no matter the case). So when this happens we just allow the renaming because there's no harm to be expected from it. + auto foundField = sqlb::findField(m_table, item->text(column).toStdString()); + if(foundField != m_table.fields.end() && foundField-m_table.fields.begin() != static_cast(index)) + { + QMessageBox::warning(this, qApp->applicationName(), tr("There already is a field with that name. Please rename it first or choose a different " + "name for this field.")); + // Reset the name to the old value but avoid calling this method again for that automatic change + ui->treeWidget->blockSignals(true); + item->setText(column, oldFieldName); + ui->treeWidget->blockSignals(false); + return; + } + + // When editing an exiting table, check if any foreign keys would cause trouble in case this name is edited + if(!m_bNewTable) + { + const auto pk = m_table.primaryKey(); + const auto tables = pdb.schemata[curTable.schema()].equal_range("table"); + for(auto it=tables.first;it!=tables.second;++it) + { + const sqlb::ObjectPtr& fkobj = it->second; + + + auto fks = std::dynamic_pointer_cast(fkobj)->constraints({}, sqlb::Constraint::ForeignKeyConstraintType); + for(const sqlb::ConstraintPtr& fkptr : fks) + { + auto fk = std::dynamic_pointer_cast(fkptr); + if(fk->table() == m_table.name()) + { + if(contains(fk->columns(), field.name()) || (pk && contains(pk->columnList(), field.name()))) + { + QMessageBox::warning(this, qApp->applicationName(), tr("This column is referenced in a foreign key in table %1 and thus " + "its name cannot be changed.") + .arg(QString::fromStdString(fkobj->name()))); + // Reset the name to the old value but avoid calling this method again for that automatic change + ui->treeWidget->blockSignals(true); + item->setText(column, oldFieldName); + ui->treeWidget->blockSignals(false); + return; + } + } + } + } + } + + field.setName(item->text(column).toStdString()); + m_table.renameKeyInAllConstraints(oldFieldName.toStdString(), item->text(column).toStdString()); + qobject_cast(ui->treeWidget->itemWidget(item, kType))->setProperty("column", item->text(column)); + qobject_cast(ui->treeWidget->itemWidget(item, kCollation))->setProperty("column", item->text(column)); + + // Update the field name in the map of old column names to new column names + if(!m_bNewTable) + { + for(const auto& it : trackColumns) + { + if(trackColumns[it.first] == oldFieldName) + trackColumns[it.first] = QString::fromStdString(field.name()); + } + } + + // Update the constraints view + populateConstraints(); + } break; + case kType: + case kCollation: + // see updateTypeAndCollation() SLOT + break; + case kPrimaryKey: + { + // Check if there already is a primary key + auto pk = m_table.primaryKey(); + if(pk) + { + // There already is a primary key for this table. So edit that one as there always can only be one primary key anyway. + if(item->checkState(column) == Qt::Checked) + { + pk->addToColumnList(field.name()); + } else { + pk->removeFromColumnList(field.name()); + + // If this is now a primary key constraint without any columns, remove it entirely + if(pk->columnList().empty()) + m_table.removeConstraints({}, sqlb::Constraint::PrimaryKeyConstraintType); + } + } else if(item->checkState(column) == Qt::Checked) { + // There is no primary key in the table yet. This means we need to add a default one. + m_table.addConstraint(sqlb::ConstraintPtr(new sqlb::PrimaryKeyConstraint({field.name()}))); + } + + if(item->checkState(column) == Qt::Checked) + { + // this will unset any other autoincrement + for(int i = 0; i < ui->treeWidget->topLevelItemCount(); ++i) + { + QTreeWidgetItem* tbitem = ui->treeWidget->topLevelItem(i); + if(tbitem != item) + tbitem->setCheckState(kAutoIncrement, Qt::Unchecked); + } + } else { + item->setCheckState(kAutoIncrement, Qt::Unchecked); + } + + // Update the constraints view + populateConstraints(); + } + break; + case kNotNull: + { + // When editing an existing table and trying to set a column to Not Null an extra check is needed + if(!m_bNewTable && item->checkState(column) == Qt::Checked) + { + // Because our renameColumn() function fails when setting a column to Not Null when it already contains some NULL values + // we need to check for this case and cancel here. Maybe we can think of some way to modify the INSERT INTO ... SELECT statement + // to at least replace all troublesome NULL values by the default value + SqliteTableModel m(pdb, this); + m.setQuery(QString("SELECT COUNT(%1) FROM %2 WHERE coalesce(NULL,%3) IS NULL;").arg( + QString::fromStdString(sqlb::joinStringVector(sqlb::escapeIdentifier(pdb.getObjectByName(curTable)->rowidColumns()), ",")), + QString::fromStdString(curTable.toString()), + QString::fromStdString(sqlb::escapeIdentifier(field.name())))); + if(!m.completeCache()) + { + // If we couldn't load all data because the cancel button was clicked, just unset the checkbox again and stop. + item->setCheckState(column, Qt::Unchecked); + return; + } + if(m.data(m.index(0, 0)).toInt() > 0) + { + // There is a NULL value, so print an error message, uncheck the combobox, and return here + QMessageBox::information(this, qApp->applicationName(), tr("There is at least one row with this field set to NULL. " + "This makes it impossible to set this flag. Please change the table data first.")); + item->setCheckState(column, Qt::Unchecked); + return; + } + } + field.setNotNull(item->checkState(column) == Qt::Checked); + } + break; + case kAutoIncrement: + { + bool ischecked = item->checkState(column) == Qt::Checked; + if(ischecked) + { + // First check if the contents of this column are all integers. If not this field cannot be set to AI + if(!m_bNewTable) + { + SqliteTableModel m(pdb, this); + m.setQuery(QString("SELECT COUNT(*) FROM %1 WHERE %2 <> CAST(%3 AS INTEGER);").arg( + QString::fromStdString(curTable.toString()), + QString::fromStdString(sqlb::escapeIdentifier(field.name())), + QString::fromStdString(sqlb::escapeIdentifier(field.name())))); + if(!m.completeCache()) + { + // If we couldn't load all data because the cancel button was clicked, just unset the checkbox again and stop. + item->setCheckState(column, Qt::Unchecked); + return; + } + if(m.data(m.index(0, 0)).toInt() > 0) + { + // There is a non-integer value, so print an error message, uncheck the combobox, and return here + QMessageBox::information(this, qApp->applicationName(), tr("There is at least one row with a non-integer value in this field. " + "This makes it impossible to set the AI flag. Please change the table data first.")); + item->setCheckState(column, Qt::Unchecked); + return; + } + } + + // Make sure the data type is set to integer + QComboBox* comboType = qobject_cast(ui->treeWidget->itemWidget(item, kType)); + comboType->setCurrentIndex(comboType->findText("INTEGER")); + item->setCheckState(kPrimaryKey, Qt::Checked); + + // this will unset all other primary keys + // there can't be more than one autoincrement pk + for(int i = 0; i < ui->treeWidget->topLevelItemCount(); ++i) + { + QTreeWidgetItem* tbitem = ui->treeWidget->topLevelItem(i); + if(tbitem != item) + { + tbitem->setCheckState(kAutoIncrement, Qt::Unchecked); + tbitem->setCheckState(kPrimaryKey, Qt::Unchecked); + } + } + } + if(m_table.primaryKey()) + m_table.primaryKey()->setAutoIncrement(ischecked); + } + break; + case kUnique: + { + // When editing an existing table and trying to set a column to unique an extra check is needed + if(!m_bNewTable && item->checkState(column) == Qt::Checked) + { + // Because our renameColumn() function fails when setting a column to unique when it already contains the same values + SqliteTableModel m(pdb, this); + m.setQuery(QString("SELECT COUNT(%2) FROM %1;").arg( + QString::fromStdString(curTable.toString()), + QString::fromStdString(sqlb::escapeIdentifier(field.name())))); + if(!m.completeCache()) + { + // If we couldn't load all data because the cancel button was clicked, just unset the checkbox again and stop. + item->setCheckState(column, Qt::Unchecked); + return; + } + int rowcount = m.data(m.index(0, 0)).toInt(); + m.setQuery(QString("SELECT COUNT(DISTINCT %2) FROM %1;").arg( + QString::fromStdString(curTable.toString()), + QString::fromStdString(sqlb::escapeIdentifier(field.name())))); + if(!m.completeCache()) + { + // If we couldn't load all data because the cancel button was clicked, just unset the checkbox again and stop. + item->setCheckState(column, Qt::Unchecked); + return; + } + int uniquecount = m.data(m.index(0, 0)).toInt(); + if(rowcount != uniquecount) + { + // There is a NULL value, so print an error message, uncheck the combobox, and return here + QMessageBox::information(this, qApp->applicationName(), tr("Column '%1' has duplicate data.\n").arg(QString::fromStdString(field.name())) + + tr("This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled.")); + item->setCheckState(column, Qt::Unchecked); + return; + } + } + field.setUnique(item->checkState(column) == Qt::Checked); + } + break; + case kDefault: + { + QString new_value = item->text(column); + // If the default value isn't a SQL keyword perform an extra check: If it isn't numeric but doesn't start and end with quotes, + // add the quotes + if(new_value.size() && new_value.compare("null", Qt::CaseInsensitive) && + new_value.compare("current_time", Qt::CaseInsensitive) && + new_value.compare("current_date", Qt::CaseInsensitive) && + new_value.compare("current_timestamp", Qt::CaseInsensitive)) + { + QChar first_char = new_value.trimmed().at(0); + if(!((first_char == '\'' || first_char == '"') && new_value.trimmed().endsWith(first_char))) + { + bool is_numeric; + new_value.toDouble(&is_numeric); + if(!is_numeric) + { + if(new_value.trimmed().startsWith("=(") && new_value.trimmed().endsWith(')')) + { + new_value = new_value.trimmed().mid(1); // Leave the brackets as they are needed for a valid SQL expression + } else { + new_value = sqlb::escapeString(new_value); + item->setText(column, new_value); + } + } + } + } + field.setDefaultValue(new_value.toStdString()); + } + break; + case kCheck: + field.setCheck(item->text(column).toStdString()); + break; + case kForeignKey: + // handled in delegate + break; + } + } + + checkInput(); +} + +void EditTableDialog::constraintItemChanged(QTableWidgetItem* item) +{ + // Find modified constraint + sqlb::ConstraintPtr constraint = ui->tableConstraints->item(item->row(), kConstraintColumns)->data(Qt::UserRole).value(); + + // Which column has been modified? + switch(item->column()) + { + case kConstraintName: + constraint->setName(item->text().toStdString()); + break; + } + + // Update SQL + ui->tableConstraints->item(item->row(), kConstraintSql)->setText(QString::fromStdString(constraint->toSql())); + checkInput(); +} + +void EditTableDialog::addField() +{ + QTreeWidgetItem *tbitem = new QTreeWidgetItem(ui->treeWidget); + tbitem->setFlags(tbitem->flags() | Qt::ItemIsEditable); + + // Find an unused name for the field by starting with 'Fieldx' where x is the number of fields + 1. + // If this name happens to exist already, increase x by one until we find an unused name. + { + int field_number = ui->treeWidget->topLevelItemCount(); + std::string field_name; + do + { + field_name = "Field" + std::to_string(field_number); + field_number++; + } while(sqlb::findField(m_table, field_name) != m_table.fields.end()); + tbitem->setText(kName, QString::fromStdString(field_name)); + } + + QComboBox* typeBox = new QComboBox(ui->treeWidget); + typeBox->setProperty("column", tbitem->text(kName)); + typeBox->setEditable(true); + typeBox->addItems(DBBrowserDB::Datatypes); + + int defaultFieldTypeIndex = Settings::getValue("db", "defaultfieldtype").toInt(); + + if (defaultFieldTypeIndex < DBBrowserDB::Datatypes.count()) + { + typeBox->setCurrentIndex(defaultFieldTypeIndex); + } + + ui->treeWidget->setItemWidget(tbitem, kType, typeBox); + typeBox->installEventFilter(this); + connect(typeBox, SIGNAL(currentIndexChanged(int)), this, SLOT(updateTypeAndCollation())); + + QComboBox* collationBox = new QComboBox(ui->treeWidget); + collationBox->setProperty("column", tbitem->text(kName)); + collationBox->addItems(m_collationList); + collationBox->setCurrentIndex(collationBox->findText("")); + ui->treeWidget->setItemWidget(tbitem, kCollation, collationBox); + collationBox->installEventFilter(this); + connect(collationBox, SIGNAL(currentIndexChanged(int)), this, SLOT(updateTypeAndCollation())); + + tbitem->setCheckState(kNotNull, Qt::Unchecked); + tbitem->setCheckState(kPrimaryKey, Qt::Unchecked); + tbitem->setCheckState(kAutoIncrement, Qt::Unchecked); + tbitem->setCheckState(kUnique, Qt::Unchecked); + + ui->treeWidget->addTopLevelItem(tbitem); + ui->treeWidget->scrollToBottom(); + ui->treeWidget->editItem(tbitem, 0); + + // add field to table object + m_table.fields.emplace_back(tbitem->text(kName).toStdString(), typeBox->currentText().toStdString()); + + // Add the new column to the list of tracked columns to indicate it has been added + if(!m_bNewTable) + trackColumns.insert({QString(), tbitem->text(kName)}); + + checkInput(); +} + +void EditTableDialog::removeField() +{ + // Is there any item selected to delete? + if(!ui->treeWidget->currentItem()) + return; + + // If we are editing an existing table, ask the user for confirmation + if(!m_bNewTable) + { + QString msg = tr("Are you sure you want to delete the field '%1'?\nAll data currently stored in this field will be lost.").arg(ui->treeWidget->currentItem()->text(0)); + if(QMessageBox::warning(this, QApplication::applicationName(), msg, QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::No) + return; + + // Update the map of tracked columns to indicate the column is deleted + QString name = ui->treeWidget->currentItem()->text(0); + for(const auto& it : trackColumns) + { + if(trackColumns[it.first] == name) + trackColumns[it.first] = QString(); + } + } + + // Just delete that item. At this point there is no DB table to edit or data to be lost anyway + m_table.fields.erase(m_table.fields.begin() + ui->treeWidget->indexOfTopLevelItem(ui->treeWidget->currentItem())); + m_table.removeKeyFromAllConstraints(ui->treeWidget->currentItem()->text(kName).toStdString()); + delete ui->treeWidget->currentItem(); + + // Update the constraints view + populateConstraints(); + + checkInput(); +} + +void EditTableDialog::fieldSelectionChanged() +{ + bool hasSelection = ui->treeWidget->selectionModel()->hasSelection(); + + // Enable the remove and the move up/down buttons if a field is selected, disable it otherwise + ui->removeFieldButton->setEnabled(hasSelection); + ui->buttonMoveUp->setEnabled(hasSelection); + ui->buttonMoveDown->setEnabled(hasSelection); + + // If the selected line is the first one disable the move up button, it it's the last one disable the move down button + if(hasSelection) + { + ui->buttonMoveUp->setEnabled(ui->treeWidget->selectionModel()->currentIndex().row() != 0); + ui->buttonMoveTop->setEnabled(ui->buttonMoveUp->isEnabled()); + ui->buttonMoveDown->setEnabled(ui->treeWidget->selectionModel()->currentIndex().row() != ui->treeWidget->topLevelItemCount() - 1); + ui->buttonMoveBottom->setEnabled(ui->buttonMoveDown->isEnabled()); + } +} + +void EditTableDialog::moveUp() +{ + moveCurrentField(MoveUp); +} + +void EditTableDialog::moveDown() +{ + moveCurrentField(MoveDown); +} + +void EditTableDialog::moveTop() +{ + moveCurrentField(MoveTop); +} + +void EditTableDialog::moveBottom() +{ + moveCurrentField(MoveBottom); +} + +void EditTableDialog::moveCurrentField(MoveFieldDirection dir) +{ + int currentRow = ui->treeWidget->currentIndex().row(); + int newRow; + if(dir == MoveUp) + newRow = currentRow - 1; + else if(dir == MoveDown) + newRow = currentRow + 1; + else if(dir == MoveTop) + newRow = 0; + else if(dir == MoveBottom) + newRow = ui->treeWidget->topLevelItemCount() - 1; + else + return; + + // Save the comboboxes first by making copies + QComboBox* newCombo[2]; + for(int c=0;c<2;c++) + { + int column = (c == 0 ? kType : kCollation); + + QComboBox* oldCombo = qobject_cast(ui->treeWidget->itemWidget(ui->treeWidget->topLevelItem(currentRow), column)); + newCombo[c] = new QComboBox(ui->treeWidget); + newCombo[c]->setProperty("column", oldCombo->property("column")); + newCombo[c]->installEventFilter(this); + connect(newCombo[c], SIGNAL(currentIndexChanged(int)), this, SLOT(updateTypeAndCollation())); + newCombo[c]->setEditable(oldCombo->isEditable()); + for(int i=0; i < oldCombo->count(); ++i) + newCombo[c]->addItem(oldCombo->itemText(i)); + newCombo[c]->setCurrentIndex(oldCombo->currentIndex()); + } + + // Now, just remove the item and insert it at it's new position, then restore the combobox + QTreeWidgetItem* item = ui->treeWidget->takeTopLevelItem(currentRow); + ui->treeWidget->insertTopLevelItem(newRow, item); + ui->treeWidget->setItemWidget(item, kType, newCombo[0]); + ui->treeWidget->setItemWidget(item, kCollation, newCombo[1]); + + // Select the old item at its new position + ui->treeWidget->setCurrentIndex(ui->treeWidget->currentIndex().sibling(newRow, 0)); + + // Finally update the table SQL + sqlb::Field temp = m_table.fields[static_cast(currentRow)]; + m_table.fields.erase(m_table.fields.begin() + currentRow); + m_table.fields.insert(m_table.fields.begin() + newRow, temp); + + // Update the SQL preview + updateSqlText(); +} + +void EditTableDialog::setWithoutRowid(bool without_rowid) +{ + if(without_rowid) + { + // Before setting the without rowid flag, first perform a check to see if the table meets all the required criteria for without rowid tables + const auto pk = m_table.primaryKey(); + if(!pk || pk->autoIncrement()) + { + QMessageBox::information(this, QApplication::applicationName(), + tr("Please add a field which meets the following criteria before setting the without rowid flag:\n" + " - Primary key flag set\n" + " - Auto increment disabled")); + + // Reset checkbox state to unchecked. Block any signals while doing this in order to avoid an extra call to + // this function being triggered. + ui->checkWithoutRowid->blockSignals(true); + ui->checkWithoutRowid->setChecked(false); + ui->checkWithoutRowid->blockSignals(false); + return; + } + + // If it does, set the without rowid flag of the table + m_table.setWithoutRowidTable(true); + } else { + // If the without rowid flag is unset no further checks are required. Just unset the without rowid flag + m_table.setWithoutRowidTable(false); + } + + // Update the SQL preview + updateSqlText(); +} + +void EditTableDialog::changeSchema(const QString& /*schema*/) +{ + // Update the SQL preview + updateSqlText(); +} + +void EditTableDialog::removeConstraint() +{ + // Is there any item selected to delete? + if(!ui->tableConstraints->currentItem()) + return; + + // Find constraint to delete + int row = ui->tableConstraints->currentRow(); + sqlb::ConstraintPtr constraint = ui->tableConstraints->item(row, kConstraintColumns)->data(Qt::UserRole).value(); + + // Remove the constraint. If there is more than one constraint with this combination of columns and constraint type, only delete the first one. + m_table.removeConstraint(constraint); + ui->tableConstraints->removeRow(ui->tableConstraints->currentRow()); + + // Update SQL and view + updateSqlText(); + populateFields(); +} + +void EditTableDialog::addConstraint(sqlb::Constraint::ConstraintTypes type) +{ + // There can only be one primary key + if(type == sqlb::Constraint::PrimaryKeyConstraintType) + { + if(m_table.primaryKey()) + { + QMessageBox::information(this, qApp->applicationName(), tr("There can only be one primary key for each table. Please modify the existing primary " + "key instead.")); + return; + } + } + + // Create new constraint + sqlb::ConstraintPtr constraint = sqlb::Constraint::makeConstraint(type); + m_table.addConstraint(constraint); + + // Update SQL and view + populateFields(); + populateConstraints(); + updateSqlText(); +} diff --git a/src/SqliteDBProcess/src/EditTableDialog.h b/src/SqliteDBProcess/src/EditTableDialog.h new file mode 100644 index 0000000..3ad43a3 --- /dev/null +++ b/src/SqliteDBProcess/src/EditTableDialog.h @@ -0,0 +1,101 @@ +#ifndef EDITTABLEDIALOG_H +#define EDITTABLEDIALOG_H +#include "WBFZExchangePluginAPI.h" +#include "sql/ObjectIdentifier.h" +#include "sql/sqlitetypes.h" + +#include + +#include + +class DBBrowserDB; +class ForeignKeyEditorDelegate; + +class QTableWidgetItem; +class QTreeWidgetItem; + +namespace Ui { +class EditTableDialog; +} + +class EditTableDialog : public QDialog +{ + Q_OBJECT + +public: + explicit EditTableDialog(DBBrowserDB& pdb, const sqlb::ObjectIdentifier& tableName, bool createTable, QWidget* parent = nullptr); + ~EditTableDialog() override; + +protected: + void keyPressEvent(QKeyEvent *evt) override; + +private: + enum Columns { + kName = 0, + kType = 1, + kNotNull = 2, + kPrimaryKey = 3, + kAutoIncrement = 4, + kUnique = 5, + kDefault = 6, + kCheck = 7, + kCollation = 8, + kForeignKey = 9 + }; + + enum ConstraintColumns { + kConstraintColumns = 0, + kConstraintType = 1, + kConstraintName = 2, + kConstraintSql = 3 + }; + + enum MoveFieldDirection + { + MoveUp, + MoveDown, + MoveTop, + MoveBottom + }; + + void updateColumnWidth(); + void updateSqlText(); + + void moveCurrentField(MoveFieldDirection dir); + +private slots: + void populateFields(); + void populateConstraints(); + void addField(); + void removeField(); + void fieldSelectionChanged(); + void accept() override; + void reject() override; + void checkInput(); + void fieldItemChanged(QTreeWidgetItem* item, int column); + void constraintItemChanged(QTableWidgetItem* item); + void updateTypeAndCollation(QObject *object); + bool eventFilter(QObject *object, QEvent *event) override; + void updateTypeAndCollation(); + void moveUp(); + void moveDown(); + void moveTop(); + void moveBottom(); + void setWithoutRowid(bool without_rowid); + void changeSchema(const QString& schema); + void removeConstraint(); + void addConstraint(sqlb::Constraint::ConstraintTypes type); + +private: + Ui::EditTableDialog* ui; + DBBrowserDB& pdb; + ForeignKeyEditorDelegate* m_fkEditorDelegate; + sqlb::ObjectIdentifier curTable; + std::map trackColumns; + sqlb::Table m_table; + bool m_bNewTable; + std::string m_sRestorePointName; + QStringList m_collationList; +}; + +#endif diff --git a/src/SqliteDBProcess/src/EditTableDialog.ui b/src/SqliteDBProcess/src/EditTableDialog.ui new file mode 100644 index 0000000..a4cf505 --- /dev/null +++ b/src/SqliteDBProcess/src/EditTableDialog.ui @@ -0,0 +1,782 @@ + + + EditTableDialog + + + + 0 + 0 + 652 + 600 + + + + Edit table definition + + + + :/icons/table:/icons/table + + + true + + + + + + Table + + + + + + + 75 + true + + + + + + + + Advanced + + + true + + + Qt::ToolButtonTextBesideIcon + + + Qt::DownArrow + + + + + + + + + + Database sche&ma + + + comboSchema + + + + + + + + + + Without Rowid + + + checkWithoutRowid + + + + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + + + + + + + + + + + + + Qt::Vertical + + + + 0 + + + + Fields + + + + + + + + Add + + + + :/icons/field_add:/icons/field_add + + + Qt::ToolButtonTextBesideIcon + + + true + + + + + + + false + + + Remove + + + + :/icons/field_delete:/icons/field_delete + + + Qt::ToolButtonTextBesideIcon + + + true + + + + + + + false + + + Move to top + + + + :/icons/arrow_top:/icons/arrow_top + + + Qt::ToolButtonTextBesideIcon + + + true + + + Qt::NoArrow + + + + + + + false + + + Move up + + + + :/icons/up:/icons/up + + + Qt::ToolButtonTextBesideIcon + + + true + + + + + + + false + + + Move down + + + + :/icons/down:/icons/down + + + Qt::ToolButtonTextBesideIcon + + + true + + + + + + + false + + + Move to bottom + + + + :/icons/arrow_bottom:/icons/arrow_bottom + + + Qt::ToolButtonTextBesideIcon + + + true + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + 0 + 0 + + + + + 0 + 140 + + + + false + + + + Name + + + + + Type + + + + + NN + + + Not null + + + + + PK + + + Primary key + + + + + AI + + + Autoincrement + + + + + U + + + Unique + + + + + Default + + + Default value + + + + + Check + + + Check constraint + + + + + Collation + + + + + Foreign Key + + + + + + + + + Constraints + + + + + + + + Add constraint + + + + :/icons/field_add:/icons/field_add + + + QToolButton::InstantPopup + + + Qt::ToolButtonTextBesideIcon + + + true + + + + + + + false + + + Remove constraint + + + + :/icons/field_delete:/icons/field_delete + + + Qt::ToolButtonTextBesideIcon + + + true + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + QAbstractItemView::ScrollPerPixel + + + + Columns + + + + + Type + + + + + Name + + + + + SQL + + + + + + + + + + true + + + + + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + + + true + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + + :/icons/field_key:/icons/field_key + + + Primary Key + + + Add a primary key constraint + + + + + + :/icons/field_fk:/icons/field_fk + + + Foreign Key + + + Add a foreign key constraint + + + + + Unique + + + Add a unique constraint + + + + + Check + + + Add a check constraint + + + + + + SqlTextEdit + QWidget +
sqltextedit.h
+ 1 +
+
+ + editTableName + buttonMore + comboSchema + checkWithoutRowid + groupDefinition + addFieldButton + removeFieldButton + buttonMoveTop + buttonMoveUp + buttonMoveDown + buttonMoveBottom + treeWidget + sqlTextEdit + buttonAddConstraint + buttonRemoveConstraint + tableConstraints + + + + + + + buttonBox + accepted() + EditTableDialog + accept() + + + 261 + 590 + + + 157 + 274 + + + + + buttonBox + rejected() + EditTableDialog + reject() + + + 329 + 590 + + + 286 + 274 + + + + + treeWidget + itemSelectionChanged() + EditTableDialog + fieldSelectionChanged() + + + 137 + 367 + + + 411 + 181 + + + + + addFieldButton + clicked() + EditTableDialog + addField() + + + 78 + 255 + + + 79 + 65 + + + + + removeFieldButton + clicked() + EditTableDialog + removeField() + + + 167 + 255 + + + 249 + 63 + + + + + editTableName + textChanged(QString) + EditTableDialog + checkInput() + + + 62 + 48 + + + 115 + 3 + + + + + buttonMoveUp + clicked() + EditTableDialog + moveUp() + + + 343 + 253 + + + 308 + 235 + + + + + buttonMoveDown + clicked() + EditTableDialog + moveDown() + + + 481 + 253 + + + 308 + 235 + + + + + buttonMore + toggled(bool) + widgetExtension + setVisible(bool) + + + 97 + 78 + + + 138 + 172 + + + + + checkWithoutRowid + toggled(bool) + EditTableDialog + setWithoutRowid(bool) + + + 485 + 160 + + + 324 + 299 + + + + + treeWidget + currentItemChanged(QTreeWidgetItem*,QTreeWidgetItem*) + EditTableDialog + fieldSelectionChanged() + + + 324 + 294 + + + 324 + 299 + + + + + comboSchema + currentIndexChanged(QString) + EditTableDialog + changeSchema(QString) + + + 327 + 139 + + + 647 + 157 + + + + + buttonRemoveConstraint + clicked() + EditTableDialog + removeConstraint() + + + 295 + 255 + + + 647 + 157 + + + + + buttonMoveTop + clicked() + EditTableDialog + moveTop() + + + 207 + 240 + + + 202 + 190 + + + + + buttonMoveBottom + clicked() + EditTableDialog + moveBottom() + + + 530 + 246 + + + 400 + 186 + + + + + + fieldSelectionChanged() + addField() + editField() + removeField() + checkInput() + itemChanged() + moveUp() + moveDown() + setWithoutRowid(bool) + changeSchema(QString) + removeConstraint() + moveTop() + moveBottom() + +
diff --git a/src/SqliteDBProcess/src/ExportDataDialog.cpp b/src/SqliteDBProcess/src/ExportDataDialog.cpp new file mode 100644 index 0000000..6d2e382 --- /dev/null +++ b/src/SqliteDBProcess/src/ExportDataDialog.cpp @@ -0,0 +1,585 @@ +#include "ExportDataDialog.h" +#include "ui_ExportDataDialog.h" +#include "sqlitedb.h" +#include "Settings.h" +#include "sqlite.h" +#include "FileDialog.h" +#include "IconCache.h" + +#include +#include +#include +#include +#include + +using json = nlohmann::json; + +ExportDataDialog::ExportDataDialog(DBBrowserDB& db, ExportFormats format, QWidget* parent, const std::string& query, const sqlb::ObjectIdentifier& selection) + : QDialog(parent), + ui(new Ui::ExportDataDialog), + pdb(db), + m_format(format), + m_sQuery(query) +{ + // Create UI + ui->setupUi(this); + + // Show different option widgets depending on the export format + ui->stackFormat->setCurrentIndex(format); + if(format == ExportFormatJson) { + setWindowTitle(tr("Export data as JSON")); + } + + // Retrieve the saved dialog preferences + ui->checkHeader->setChecked(Settings::getValue("exportcsv", "firstrowheader").toBool()); + setSeparatorChar(Settings::getValue("exportcsv", "separator").toInt()); + setQuoteChar(Settings::getValue("exportcsv", "quotecharacter").toInt()); + setNewLineString(Settings::getValue("exportcsv", "newlinecharacters").toString()); + ui->checkPrettyPrint->setChecked(Settings::getValue("exportjson", "prettyprint").toBool()); + + // Update the visible/hidden status of the "Other" line edit fields + showCustomCharEdits(); + + // If a SQL query was specified hide the table combo box. If not fill it with tables to export + if(query.empty()) + { + // Get list of tables to export + for(const auto& it : pdb.schemata) + { + const auto tables = it.second.equal_range("table"); + const auto views = it.second.equal_range("view"); + std::map objects; + for(auto jt=tables.first;jt!=tables.second;++jt) + objects.insert({jt->second->name(), jt->second}); + for(auto jt=views.first;jt!=views.second;++jt) + objects.insert({jt->second->name(), jt->second}); + + for(const auto& jt : objects) + { + sqlb::ObjectIdentifier obj(it.first, jt.second->name()); + QListWidgetItem* item = new QListWidgetItem(IconCache::get(sqlb::Object::typeToString(jt.second->type())), QString::fromStdString(obj.toDisplayString())); + item->setData(Qt::UserRole, QString::fromStdString(obj.toSerialised())); + ui->listTables->addItem(item); + } + } + + // Sort list of tables and select the table specified in the selection parameter or alternatively the first one + ui->listTables->model()->sort(0); + if(selection.isEmpty()) + { + ui->listTables->setCurrentItem(ui->listTables->item(0)); + } else { + for(int i=0;ilistTables->count();i++) + { + if(sqlb::ObjectIdentifier(ui->listTables->item(i)->data(Qt::UserRole).toString().toStdString()) == selection) + { + ui->listTables->setCurrentRow(i); + break; + } + } + } + } else { + // Hide table combo box + ui->labelTable->setVisible(false); + ui->listTables->setVisible(false); + resize(minimumSize()); + } +} + +ExportDataDialog::~ExportDataDialog() +{ + delete ui; +} + +bool ExportDataDialog::exportQuery(const std::string& sQuery, const QString& sFilename) +{ + switch(m_format) + { + case ExportFormatCsv: + return exportQueryCsv(sQuery, sFilename); + case ExportFormatJson: + return exportQueryJson(sQuery, sFilename); + } + + return false; +} + +bool ExportDataDialog::exportQueryCsv(const std::string& sQuery, const QString& sFilename) +{ + // Prepare the quote and separating characters + QChar quoteChar = currentQuoteChar(); + QString quotequoteChar = QString(quoteChar) + quoteChar; + QChar sepChar = currentSeparatorChar(); + QString newlineStr = currentNewLineString(); + + // Chars that require escaping + std::string special_chars = newlineStr.toStdString() + sepChar.toLatin1() + quoteChar.toLatin1(); + + // Open file + QFile file(sFilename); + if(file.open(QIODevice::WriteOnly)) + { + // Open text stream to the file + QTextStream stream(&file); + + auto pDb = pdb.get(tr("exporting CSV")); + + sqlite3_stmt* stmt; + int status = sqlite3_prepare_v2(pDb.get(), sQuery.c_str(), static_cast(sQuery.size()), &stmt, nullptr); + if(SQLITE_OK == status) + { + if(ui->checkHeader->isChecked()) + { + int columns = sqlite3_column_count(stmt); + for (int i = 0; i < columns; ++i) + { + QString content = QString::fromUtf8(sqlite3_column_name(stmt, i)); + if(content.toStdString().find_first_of(special_chars) != std::string::npos) + stream << quoteChar << content.replace(quoteChar, quotequoteChar) << quoteChar; + else + stream << content; + if(i != columns - 1) + // Only output the separator value if sepChar isn't 0, + // as that's used to indicate no separator character + // should be used + if(!sepChar.isNull()) + stream << sepChar; + } + stream << newlineStr; + } + + QApplication::setOverrideCursor(Qt::WaitCursor); + int columns = sqlite3_column_count(stmt); + size_t counter = 0; + while(sqlite3_step(stmt) == SQLITE_ROW) + { + for (int i = 0; i < columns; ++i) + { + QString content = QString::fromUtf8( + reinterpret_cast(sqlite3_column_blob(stmt, i)), + sqlite3_column_bytes(stmt, i)); + + // If no quote char is set but the content contains a line break, we enforce some quote characters. This probably isn't entirely correct + // but still better than having the line breaks unquoted and effectively outputting a garbage file. + if(quoteChar.isNull() && content.contains(newlineStr)) + stream << '"' << content.replace('"', "\"\"") << '"'; + // If the content needs to be quoted, quote it. But only if a quote char has been specified + else if(!quoteChar.isNull() && content.toStdString().find_first_of(special_chars) != std::string::npos) + stream << quoteChar << content.replace(quoteChar, quotequoteChar) << quoteChar; + // If it doesn't need to be quoted, don't quote it + else + stream << content; + + if(i != columns - 1) + // Only output the separator value if sepChar isn't 0, + // as that's used to indicate no separator character + // should be used + if(!sepChar.isNull()) + stream << sepChar; + } + stream << newlineStr; + if(counter % 1000 == 0) + qApp->processEvents(); + counter++; + } + } + sqlite3_finalize(stmt); + + QApplication::restoreOverrideCursor(); + qApp->processEvents(); + + // Done writing the file + file.close(); + } else { + QMessageBox::warning(this, QApplication::applicationName(), + tr("Could not open output file: %1").arg(sFilename)); + return false; + } + + return true; +} + +bool ExportDataDialog::exportQueryJson(const std::string& sQuery, const QString& sFilename) +{ + // Open file + QFile file(sFilename); + if(file.open(QIODevice::WriteOnly)) + { + auto pDb = pdb.get(tr("exporting JSON")); + + sqlite3_stmt* stmt; + int status = sqlite3_prepare_v2(pDb.get(), sQuery.c_str(), static_cast(sQuery.size()), &stmt, nullptr); + + json json_table; + + if(SQLITE_OK == status) + { + QApplication::setOverrideCursor(Qt::WaitCursor); + int columns = sqlite3_column_count(stmt); + size_t counter = 0; + std::vector column_names; + while(sqlite3_step(stmt) == SQLITE_ROW) + { + // Get column names if we didn't do so before + if(!column_names.size()) + { + for(int i=0;i(i)]; + + switch (type) { + case SQLITE_INTEGER: { + qint64 content = sqlite3_column_int64(stmt, i); + json_row[column_name] = content; + break; + } + case SQLITE_FLOAT: { + double content = sqlite3_column_double(stmt, i); + json_row[column_name] = content; + break; + } + case SQLITE_NULL: { + json_row[column_name] = nullptr; + break; + } + case SQLITE_TEXT: { + QString content = QString::fromUtf8( + reinterpret_cast(sqlite3_column_text(stmt, i)), + sqlite3_column_bytes(stmt, i)); + json_row[column_name] = content.toStdString(); + break; + } + case SQLITE_BLOB: { + QByteArray content(reinterpret_cast(sqlite3_column_blob(stmt, i)), + sqlite3_column_bytes(stmt, i)); + QTextCodec *codec = QTextCodec::codecForName("UTF-8"); + QString string = codec->toUnicode(content.toBase64(QByteArray::Base64Encoding)); + json_row[column_name] = string.toStdString(); + break; + } + } + } + + json_table.push_back(json_row); + + if(counter % 1000 == 0) + qApp->processEvents(); + counter++; + } + } + + sqlite3_finalize(stmt); + + // Create JSON document + file.write(json_table.dump(ui->checkPrettyPrint->isChecked() ? 4 : -1).c_str()); + + QApplication::restoreOverrideCursor(); + qApp->processEvents(); + + // Done writing the file + file.close(); + } else { + QMessageBox::warning(this, QApplication::applicationName(), + tr("Could not open output file: %1").arg(sFilename)); + return false; + } + + return true; +} + +void ExportDataDialog::accept() +{ + QStringList file_dialog_filter; + QString default_file_extension; + switch(m_format) + { + case ExportFormatCsv: + file_dialog_filter << FILE_FILTER_CSV + << FILE_FILTER_TSV + << FILE_FILTER_DSV + << FILE_FILTER_TXT + << FILE_FILTER_ALL; + default_file_extension = FILE_EXT_CSV_DEFAULT; + break; + case ExportFormatJson: + file_dialog_filter << FILE_FILTER_JSON + << FILE_FILTER_TXT + << FILE_FILTER_ALL; + default_file_extension = FILE_EXT_JSON_DEFAULT; + break; + } + + if(!m_sQuery.empty()) + { + // called from sqlexecute query tab + QString sFilename = FileDialog::getSaveFileName( + CreateDataFile, + this, + tr("Choose a filename to export data"), + file_dialog_filter.join(";;")); + if(sFilename.isEmpty()) + { + close(); + return; + } + + exportQuery(m_sQuery, sFilename); + } else { + // called from the File export menu + QList selectedItems = ui->listTables->selectedItems(); + + if(selectedItems.isEmpty()) + { + QMessageBox::warning(this, QApplication::applicationName(), + tr("Please select at least 1 table.")); + return; + } + + // Get filename + QStringList filenames; + if(selectedItems.size() == 1) + { + QString fileName = FileDialog::getSaveFileName( + CreateDataFile, + this, + tr("Choose a filename to export data"), + file_dialog_filter.join(";;"), + selectedItems.at(0)->text() + default_file_extension); + if(fileName.isEmpty()) + { + close(); + return; + } + + filenames << fileName; + } else { + // ask for folder + QString exportfolder = FileDialog::getExistingDirectory( + CreateDataFile, + this, + tr("Choose a directory"), + QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks); + + if(exportfolder.isEmpty()) + { + close(); + return; + } + + for(const QListWidgetItem* item : selectedItems) + filenames << QDir(exportfolder).filePath(item->text() + default_file_extension); + } + + // Only if the user hasn't clicked the cancel button + for(int i = 0; i < selectedItems.size(); ++i) + { + // if we are called from execute sql tab, query is already set + // and we only export 1 select + std::string sQuery = "SELECT * FROM " + sqlb::ObjectIdentifier(selectedItems.at(i)->data(Qt::UserRole).toString().toStdString()).toString() + ";"; + exportQuery(sQuery, filenames.at(i)); + } + } + + // Save the dialog preferences for future use + Settings::setValue("exportcsv", "firstrowheader", ui->checkHeader->isChecked()); + Settings::setValue("exportjson", "prettyprint", ui->checkPrettyPrint->isChecked()); + Settings::setValue("exportcsv", "separator", currentSeparatorChar()); + Settings::setValue("exportcsv", "quotecharacter", currentQuoteChar()); + Settings::setValue("exportcsv", "newlinecharacters", currentNewLineString()); + + // Notify the user the export has completed + QMessageBox::information(this, QApplication::applicationName(), tr("Export completed.")); + QDialog::accept(); +} + +void ExportDataDialog::showCustomCharEdits() +{ + // Retrieve selection info for the quote, separator, and newline widgets + int quoteIndex = ui->comboQuoteCharacter->currentIndex(); + int quoteCount = ui->comboQuoteCharacter->count(); + int sepIndex = ui->comboFieldSeparator->currentIndex(); + int sepCount = ui->comboFieldSeparator->count(); + int newLineIndex = ui->comboNewLineString->currentIndex(); + int newLineCount = ui->comboNewLineString->count(); + + // Determine which will have their 'Other' line edit widget visible + bool quoteVisible = quoteIndex == (quoteCount - 1); + bool sepVisible = sepIndex == (sepCount - 1); + bool newLineVisible = newLineIndex == (newLineCount - 1); + + // Update the visibility of the 'Other' line edit widgets + ui->editCustomQuote->setVisible(quoteVisible); + ui->editCustomSeparator->setVisible(sepVisible); + ui->editCustomNewLine->setVisible(newLineVisible); +} + +void ExportDataDialog::setQuoteChar(const QChar& c) +{ + QComboBox* combo = ui->comboQuoteCharacter; + + // Set the combo and/or Other box to the correct selection + switch (c.toLatin1()) { + case '"': + combo->setCurrentIndex(0); // First option is a quote character + break; + + case '\'': + combo->setCurrentIndex(1); // Second option is a single quote character + break; + + case 0: + combo->setCurrentIndex(2); // Third option is blank (no character) + break; + + default: + // For everything else, set the combo box to option 3 ('Other') and + // place the desired string into the matching edit line box + combo->setCurrentIndex(3); + if(!c.isNull()) + { + // Don't set it if/when it's the 0 flag value + ui->editCustomQuote->setText(c); + } + break; + } +} + +char ExportDataDialog::currentQuoteChar() const +{ + QComboBox* combo = ui->comboQuoteCharacter; + + switch (combo->currentIndex()) { + case 0: + return '"'; // First option is a quote character + + case 1: + return '\''; // Second option is a single quote character + + case 2: + return 0; // Third option is a blank (no character) + + default: + // The 'Other' option was selected, so check if the matching edit + // line widget contains something + int customQuoteLength = ui->editCustomQuote->text().length(); + if (customQuoteLength > 0) { + // Yes it does. Return its first character + char customQuoteChar = ui->editCustomQuote->text().at(0).toLatin1(); + return customQuoteChar; + } else { + // No it doesn't, so return 0 to indicate it was empty + return 0; + } + } +} + +void ExportDataDialog::setSeparatorChar(const QChar& c) +{ + QComboBox* combo = ui->comboFieldSeparator; + + // Set the combo and/or Other box to the correct selection + switch (c.toLatin1()) { + case ',': + combo->setCurrentIndex(0); // First option is a comma character + break; + + case ';': + combo->setCurrentIndex(1); // Second option is a semi-colon character + break; + + case '\t': + combo->setCurrentIndex(2); // Third option is a tab character + break; + + case '|': + combo->setCurrentIndex(3); // Fourth option is a pipe symbol + break; + + default: + // For everything else, set the combo box to option 3 ('Other') and + // place the desired string into the matching edit line box + combo->setCurrentIndex(4); + + // Only put the separator character in the matching line edit box if + // it's not the flag value of 0, which is for indicating its empty + if(!c.isNull()) + ui->editCustomSeparator->setText(c); + break; + } +} + +char ExportDataDialog::currentSeparatorChar() const +{ + QComboBox* combo = ui->comboFieldSeparator; + + switch (combo->currentIndex()) { + case 0: + return ','; // First option is a comma character + + case 1: + return ';'; // Second option is a semi-colon character + + case 2: + return '\t'; // Third option is a tab character + + case 3: + return '|'; // Fourth option is a pipe character + + default: + // The 'Other' option was selected, so check if the matching edit + // line widget contains something + int customSeparatorLength = ui->editCustomSeparator->text().length(); + if (customSeparatorLength > 0) { + // Yes it does. Return its first character + char customSeparatorChar = ui->editCustomSeparator->text().at(0).toLatin1(); + return customSeparatorChar; + } else { + // No it doesn't, so return 0 to indicate it was empty + return 0; + } + } +} + +void ExportDataDialog::setNewLineString(const QString& s) +{ + QComboBox* combo = ui->comboNewLineString; + + // Set the combo and/or Other box to the correct selection + if (s == "\r\n") { + // For Windows style newlines, set the combo box to option 0 + combo->setCurrentIndex(0); + } else if (s == "\n") { + // For Unix style newlines, set the combo box to option 1 + combo->setCurrentIndex(1); + } else { + // For everything else, set the combo box to option 2 ('Other') and + // place the desired string into the matching edit line box + combo->setCurrentIndex(2); + ui->editCustomNewLine->setText(s); + } +} + +QString ExportDataDialog::currentNewLineString() const +{ + QComboBox* combo = ui->comboNewLineString; + + switch (combo->currentIndex()) { + case 0: + // Windows style newlines + return QString("\r\n"); + + case 1: + // Unix style newlines + return QString("\n"); + + default: + // Return the text from the 'Other' box + return QString(ui->editCustomNewLine->text().toLatin1()); + } +} diff --git a/src/SqliteDBProcess/src/ExportDataDialog.h b/src/SqliteDBProcess/src/ExportDataDialog.h new file mode 100644 index 0000000..25bb814 --- /dev/null +++ b/src/SqliteDBProcess/src/ExportDataDialog.h @@ -0,0 +1,56 @@ +#ifndef ExportDataDialog_H +#define ExportDataDialog_H +#include "WBFZExchangePluginAPI.h" +#include + +#include "sql/ObjectIdentifier.h" + +class DBBrowserDB; + +namespace Ui { +class ExportDataDialog; +} + +class ExportDataDialog : public QDialog +{ + Q_OBJECT + +public: + enum ExportFormats + { + ExportFormatCsv, + ExportFormatJson, + }; + + explicit ExportDataDialog(DBBrowserDB& db, ExportFormats format, QWidget* parent = nullptr, + const std::string& query = {}, const sqlb::ObjectIdentifier& selection = sqlb::ObjectIdentifier()); + ~ExportDataDialog() override; + +private slots: + void accept() override; + void showCustomCharEdits(); + +private: + void setQuoteChar(const QChar& c); + char currentQuoteChar() const; + + void setSeparatorChar(const QChar& c); + char currentSeparatorChar() const; + + void setNewLineString(const QString& s); + QString currentNewLineString() const; + + bool exportQuery(const std::string& sQuery, const QString& sFilename); + bool exportQueryCsv(const std::string& sQuery, const QString& sFilename); + bool exportQueryJson(const std::string& sQuery, const QString& sFilename); + +private: + Ui::ExportDataDialog* ui; + DBBrowserDB& pdb; + + ExportFormats m_format; + + std::string m_sQuery; +}; + +#endif diff --git a/src/SqliteDBProcess/src/ExportDataDialog.ui b/src/SqliteDBProcess/src/ExportDataDialog.ui new file mode 100644 index 0000000..262e8e1 --- /dev/null +++ b/src/SqliteDBProcess/src/ExportDataDialog.ui @@ -0,0 +1,408 @@ + + + ExportDataDialog + + + + 0 + 0 + 527 + 381 + + + + Export data as CSV + + + + + + + + Tab&le(s) + + + listTables + + + + + + + + 360 + 0 + + + + QAbstractItemView::MultiSelection + + + false + + + + + + + + + 0 + + + + + + + Colu&mn names in first line + + + checkHeader + + + + + + + + + + true + + + + + + + Fie&ld separator + + + comboFieldSeparator + + + + + + + + + + 180 + 0 + + + + + 180 + 16777215 + + + + + , + + + + + ; + + + + + Tab + + + + + | + + + + + Other + + + + + + + + 1 + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + &Quote character + + + comboQuoteCharacter + + + + + + + + + + 180 + 0 + + + + + 180 + 16777215 + + + + + " + + + + + ' + + + + + + + + + + Other + + + + + + + + 1 + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + New line characters + + + + + + + + + + 180 + 0 + + + + + 180 + 16777215 + + + + + Windows: CR+LF (\r\n) + + + + + Unix: LF (\n) + + + + + Other + + + + + + + + 5 + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + + + Pretty print + + + checkPrettyPrint + + + + + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Save + + + + + + + listTables + checkHeader + comboFieldSeparator + editCustomSeparator + comboQuoteCharacter + editCustomQuote + + + + + buttonBox + accepted() + ExportDataDialog + accept() + + + 263 + 612 + + + 157 + 140 + + + + + buttonBox + rejected() + ExportDataDialog + reject() + + + 263 + 612 + + + 286 + 140 + + + + + comboFieldSeparator + currentIndexChanged(int) + ExportDataDialog + showCustomCharEdits() + + + 390 + 293 + + + 264 + 45 + + + + + comboQuoteCharacter + currentIndexChanged(int) + ExportDataDialog + showCustomCharEdits() + + + 390 + 332 + + + 270 + 85 + + + + + comboNewLineString + currentIndexChanged(int) + ExportDataDialog + showCustomCharEdits() + + + 390 + 371 + + + 296 + 248 + + + + + + showCustomCharEdits() + + diff --git a/src/SqliteDBProcess/src/ExportSqlDialog.cpp b/src/SqliteDBProcess/src/ExportSqlDialog.cpp new file mode 100644 index 0000000..6e9b510 --- /dev/null +++ b/src/SqliteDBProcess/src/ExportSqlDialog.cpp @@ -0,0 +1,133 @@ +#include "ExportSqlDialog.h" +#include "ui_ExportSqlDialog.h" +#include "sqlitedb.h" +#include "FileDialog.h" +#include "Settings.h" +#include "IconCache.h" + +#include +#include + +enum WhatComboEntries +{ + ExportEverything, + ExportSchemaOnly, + ExportDataOnly, +}; + +ExportSqlDialog::ExportSqlDialog(DBBrowserDB* db, QWidget* parent, const QString& selection) + : QDialog(parent), + ui(new Ui::ExportSqlDialog), + pdb(db) +{ + // Create UI + ui->setupUi(this); + + // Load settings + ui->checkColNames->setChecked(Settings::getValue("exportsql", "insertcolnames").toBool()); + ui->checkMultiple->setChecked(Settings::getValue("exportsql", "insertmultiple").toBool()); + ui->comboOldSchema->setCurrentIndex(Settings::getValue("exportsql", "oldschema").toInt()); + + // Get list of tables to export + const auto objects = pdb->schemata["main"].equal_range("table"); + for(auto it=objects.first;it!=objects.second;++it) + ui->listTables->addItem(new QListWidgetItem(IconCache::get(sqlb::Object::typeToString(it->second->type())), QString::fromStdString(it->second->name()))); + + // Sort list of tables and select the table specified in the + // selection parameter or all tables if table not specified + ui->listTables->model()->sort(0); + if(selection.isEmpty()) + { + for (int i = 0; i < ui->listTables->count(); ++i) + ui->listTables->item(i)->setSelected(true); + } + else + { + QList items = ui->listTables->findItems(selection, Qt::MatchExactly); + ui->listTables->setCurrentItem(items.at(0)); + } + ui->listTables->setFocus(); +} + +ExportSqlDialog::~ExportSqlDialog() +{ + delete ui; +} + +void ExportSqlDialog::doSelectAll() +{ + for (int i = 0; i < ui->listTables->count(); ++i) + ui->listTables->item(i)->setSelected(true); +} + +void ExportSqlDialog::doDeselectAll() +{ + for (int i = 0; i < ui->listTables->count(); ++i) + ui->listTables->item(i)->setSelected(false); +} + +void ExportSqlDialog::accept() +{ + QList selectedItems = ui->listTables->selectedItems(); + if(selectedItems.isEmpty()) + { + QMessageBox::warning(this, QApplication::applicationName(), + tr("Please select at least one table.")); + return; + } + + // Try to find a default file name + QString defaultFileName; + if(selectedItems.count() == 1) // One table -> Suggest table name + defaultFileName = selectedItems.at(0)->text() + FILE_EXT_SQL_DEFAULT; + else if(selectedItems.count() == ui->listTables->count()) // All tables -> Suggest database name + defaultFileName = pdb->currentFile() + FILE_EXT_SQL_DEFAULT; + + QString fileName = FileDialog::getSaveFileName( + CreateSQLFile, + this, + tr("Choose a filename to export"), + FILE_FILTER_SQL, + defaultFileName); + if(fileName.isEmpty()) + return; + + // Save settings + Settings::setValue("exportsql", "insertcolnames", ui->checkColNames->isChecked()); + Settings::setValue("exportsql", "insertmultiple", ui->checkMultiple->isChecked()); + Settings::setValue("exportsql", "oldschema", ui->comboOldSchema->currentIndex()); + + std::vector tables; + for(const QListWidgetItem* item : ui->listTables->selectedItems()) + tables.push_back(item->text().toStdString()); + + // Check what to export. The indices here depend on the order of the items in the combobox in the ui file + bool exportSchema = ui->comboWhat->currentIndex() == ExportEverything || ui->comboWhat->currentIndex() == ExportSchemaOnly; + bool exportData = ui->comboWhat->currentIndex() == ExportEverything || ui->comboWhat->currentIndex() == ExportDataOnly; + bool keepSchema = ui->comboOldSchema->currentIndex() == 0; + + // Perform actual export + bool dumpOk = pdb->dump(fileName, + tables, + ui->checkColNames->isChecked(), + ui->checkMultiple->isChecked(), + exportSchema, + exportData, + keepSchema); + if (dumpOk) + QMessageBox::information(this, QApplication::applicationName(), tr("Export completed.")); + else + QMessageBox::warning(this, QApplication::applicationName(), tr("Export cancelled or failed.")); + + QDialog::accept(); +} + +void ExportSqlDialog::whatChanged(int index) +{ + // Only show the combobox for deciding what to do with the old schema when importing into an existing database when we're + // actually exporting the schema here + if(index != ExportDataOnly) + ui->comboOldSchema->setVisible(true); + else + ui->comboOldSchema->setVisible(false); +} diff --git a/src/SqliteDBProcess/src/ExportSqlDialog.h b/src/SqliteDBProcess/src/ExportSqlDialog.h new file mode 100644 index 0000000..23bf2a3 --- /dev/null +++ b/src/SqliteDBProcess/src/ExportSqlDialog.h @@ -0,0 +1,31 @@ +#ifndef ExportSqlDialog_H +#define ExportSqlDialog_H +#include "WBFZExchangePluginAPI.h" +#include + +class DBBrowserDB; + +namespace Ui { +class ExportSqlDialog; +} + +class ExportSqlDialog : public QDialog +{ + Q_OBJECT + +public: + explicit ExportSqlDialog(DBBrowserDB* db, QWidget* parent = nullptr, const QString& selection = QString()); + ~ExportSqlDialog() override; + +private slots: + void accept() override; + void doSelectAll(); + void doDeselectAll(); + void whatChanged(int index); + +private: + Ui::ExportSqlDialog* ui; + DBBrowserDB* pdb; +}; + +#endif diff --git a/src/SqliteDBProcess/src/ExportSqlDialog.ui b/src/SqliteDBProcess/src/ExportSqlDialog.ui new file mode 100644 index 0000000..b65fcca --- /dev/null +++ b/src/SqliteDBProcess/src/ExportSqlDialog.ui @@ -0,0 +1,242 @@ + + + ExportSqlDialog + + + + 0 + 0 + 497 + 352 + + + + Export SQL... + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Save + + + + + + + QFormLayout::AllNonFixedFieldsGrow + + + + + Tab&le(s) + + + listTables + + + + + + + QAbstractItemView::MultiSelection + + + false + + + + + + + QLayout::SetFixedSize + + + 10 + + + + + Select All + + + + + + + Deselect All + + + + + + + + + &Options + + + + + + Keep column names in INSERT INTO + + + true + + + + + + + Multiple rows (VALUES) per INSERT statement + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + Export everything + + + + + Export schema only + + + + + Export data only + + + + + + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + + + + + + + + + + + + + listTables + + + + + buttonBox + accepted() + ExportSqlDialog + accept() + + + 258 + 331 + + + 157 + 140 + + + + + buttonDeselectAll + clicked() + ExportSqlDialog + doDeselectAll() + + + 488 + 129 + + + 20 + 20 + + + + + buttonSelectAll + clicked() + ExportSqlDialog + doSelectAll() + + + 140 + 129 + + + 20 + 20 + + + + + buttonBox + rejected() + ExportSqlDialog + reject() + + + 248 + 317 + + + 248 + 168 + + + + + comboWhat + currentIndexChanged(int) + ExportSqlDialog + whatChanged(int) + + + 320 + 234 + + + 492 + 226 + + + + + + showCustomCharEdits() + whatChanged(int) + + diff --git a/src/SqliteDBProcess/src/ExtendedScintilla.cpp b/src/SqliteDBProcess/src/ExtendedScintilla.cpp new file mode 100644 index 0000000..1b332d5 --- /dev/null +++ b/src/SqliteDBProcess/src/ExtendedScintilla.cpp @@ -0,0 +1,325 @@ +#include "ExtendedScintilla.h" +#include "FindReplaceDialog.h" +#include "Settings.h" + +#include "Qsci/qscilexer.h" +#include "Qsci/qsciprinter.h" +#ifdef Q_OS_MACX +#include +#include +#endif + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +ExtendedScintilla::ExtendedScintilla(QWidget* parent) : + QsciScintilla(parent), + showErrorIndicators(true), + findReplaceDialog(new FindReplaceDialog(this)) +{ + // This class does not set any lexer, that must be done in the child classes. + + // Enable UTF8 + setUtf8(true); + + // Enable brace matching + setBraceMatching(QsciScintilla::SloppyBraceMatch); + + // Enable auto indentation + setAutoIndent(true); + + // Enable folding + setFolding(QsciScintilla::BoxedTreeFoldStyle); + + // Create error indicator + errorIndicatorNumber = indicatorDefine(QsciScintilla::SquiggleIndicator); + setIndicatorForegroundColor(Qt::red, errorIndicatorNumber); + + // Set a sensible scroll width, so the scroll bar is avoided in + // most cases. + setScrollWidth(80); + + // Scroll width is adjusted to ensure that all of the lines + // currently displayed can be completely scrolled. This mode never + // adjusts the scroll width to be narrower. + setScrollWidthTracking(true); + + // Visual flags for when wrap lines is enabled + setWrapVisualFlags(QsciScintilla::WrapFlagByBorder); + + // Connect signals + connect(this, &ExtendedScintilla::linesChanged, this, &ExtendedScintilla::updateLineNumberAreaWidth); + + // The shortcuts are constrained to the Widget context so they do not conflict with other SqlTextEdit widgets in the Main Window. + QShortcut* shortcutFindReplace = new QShortcut(QKeySequence(tr("Ctrl+H")), this, nullptr, nullptr, Qt::WidgetShortcut); + connect(shortcutFindReplace, &QShortcut::activated, this, &ExtendedScintilla::openFindReplaceDialog); + shortcutFind = new QShortcut(QKeySequence(tr("Ctrl+F")), this, nullptr, nullptr, Qt::WidgetShortcut); + connect(shortcutFind, &QShortcut::activated, this, &ExtendedScintilla::openFindDialog); + +#ifdef Q_OS_MACX + // Alt+Backspace on Mac is expected to delete one word to the left, + // instead of undoing (default Scintilla binding). + QsciCommand * command = standardCommands()->find(QsciCommand::DeleteWordLeft); + command->setKey(Qt::AltModifier+Qt::Key_Backspace); + // And Cmd+Backspace should delete from cursor to the beginning of line + command = standardCommands()->find(QsciCommand::DeleteLineLeft); + command->setKey(Qt::ControlModifier+Qt::Key_Backspace); +#endif + + QShortcut* shortcutPrint = new QShortcut(QKeySequence(tr("Ctrl+P")), this, nullptr, nullptr, Qt::WidgetShortcut); + connect(shortcutPrint, &QShortcut::activated, this, &ExtendedScintilla::openPrintDialog); + + // Prepare for adding the find/replace option to the QScintilla context menu + setContextMenuPolicy(Qt::CustomContextMenu); + connect(this, &ExtendedScintilla::customContextMenuRequested, this, &ExtendedScintilla::showContextMenu); +} + +void ExtendedScintilla::updateLineNumberAreaWidth() +{ + // Calculate number of digits of the current number of lines + int digits = static_cast(std::log10(lines())) + 1; + + // Calculate the width of this number if it was all zeros (this is because a 1 might require less space than a 0 and this could + // cause some flickering depending on the font) and set the new margin width. + setMarginWidth(0, QFontMetrics(font()).width(QString("0").repeated(digits)) + 5); +} + +void ExtendedScintilla::dropEvent(QDropEvent* e) +{ + QList urls = e->mimeData()->urls(); + if(urls.isEmpty()) + return QsciScintilla::dropEvent(e); + + QString file = urls.first().toLocalFile(); + if(!QFile::exists(file)) + return; + + QFile f(file); + f.open(QIODevice::ReadOnly); + setText(f.readAll()); + f.close(); +} + +void ExtendedScintilla::setupSyntaxHighlightingFormat(QsciLexer* lexer, const std::string& settings_name, int style) +{ + lexer->setColor(QColor(Settings::getValue("syntaxhighlighter", settings_name + "_colour").toString()), style); + + QFont font(Settings::getValue("editor", "font").toString()); + font.setPointSize(Settings::getValue("editor", "fontsize").toInt()); + font.setBold(Settings::getValue("syntaxhighlighter", settings_name + "_bold").toBool()); + font.setItalic(Settings::getValue("syntaxhighlighter", settings_name + "_italic").toBool()); + font.setUnderline(Settings::getValue("syntaxhighlighter", settings_name + "_underline").toBool()); + lexer->setFont(font, style); +} + +void ExtendedScintilla::setLexer(QsciLexer *lexer) +{ + QsciScintilla::setLexer(lexer); + reloadCommonSettings(); +} + +void ExtendedScintilla::reloadCommonSettings() +{ + // Set margins and default text colours according to settings. setLexer seems to reset these colours. + + // Use desktop default colors for margins when following desktop + // style, or the colors matching the dark style-sheet, otherwise. + switch (Settings::getValue("General", "appStyle").toInt()) { + case Settings::FollowDesktopStyle : + setMarginsBackgroundColor(QPalette().color(QPalette::Active, QPalette::Window)); + setMarginsForegroundColor(QPalette().color(QPalette::Active, QPalette::WindowText)); + break; + case Settings::DarkStyle : + setMarginsBackgroundColor(QColor("#32414B")); + setMarginsForegroundColor(QColor("#EFF0F1")); + break; + } + setPaper(Settings::getValue("syntaxhighlighter", "background_colour").toString()); + setColor(Settings::getValue("syntaxhighlighter", "foreground_colour").toString()); +} + +void ExtendedScintilla::reloadKeywords() +{ + // Set lexer again to reload the updated keywords list + setLexer(lexer()); +} + +void ExtendedScintilla::reloadSettings() +{ + reloadLexerSettings(lexer()); + reloadKeywords(); +} +void ExtendedScintilla::reloadLexerSettings(QsciLexer *lexer) +{ + QColor foreground (Settings::getValue("syntaxhighlighter", "foreground_colour").toString()); + QColor background (Settings::getValue("syntaxhighlighter", "background_colour").toString()); + + QFont defaultfont(Settings::getValue("editor", "font").toString()); + defaultfont.setStyleHint(QFont::TypeWriter); + defaultfont.setPointSize(Settings::getValue("editor", "fontsize").toInt()); + + // Set syntax highlighting settings + if(lexer) + { + lexer->setFont(defaultfont); + + lexer->setDefaultPaper(background); + lexer->setDefaultColor(foreground); + + // This sets the base colors for all the styles + lexer->setPaper(background); + lexer->setColor(foreground); + } + + // Set font + setFont(defaultfont); + + // Show line numbers + setMarginsFont(defaultfont); + setMarginLineNumbers(0, true); + updateLineNumberAreaWidth(); + + // Highlight current line + setCaretLineVisible(true); + setCaretLineBackgroundColor(QColor(Settings::getValue("syntaxhighlighter", "currentline_colour").toString())); + setCaretForegroundColor(foreground); + + // Set tab width + setTabWidth(Settings::getValue("editor", "tabsize").toInt()); + if(lexer) + lexer->refreshProperties(); + + // Check if error indicators are enabled and clear them if they just got disabled + showErrorIndicators = Settings::getValue("editor", "error_indicators").toBool(); + if(!showErrorIndicators) + clearErrorIndicators(); + +} + +void ExtendedScintilla::clearErrorIndicators() +{ + // Clear any error indicators from position (0,0) to the last column of the last line + clearIndicatorRange(0, 0, lines(), lineLength(lines()), errorIndicatorNumber); +} + +void ExtendedScintilla::setErrorIndicator(int fromRow, int fromIndex, int toRow, int toIndex) +{ + // Set error indicator for the specified range but only if they're enabled + if(showErrorIndicators) + fillIndicatorRange(fromRow, fromIndex, toRow, toIndex, errorIndicatorNumber); +} + +void ExtendedScintilla::setErrorIndicator(int position) +{ + // Set error indicator for the position until end of line, but only if they're enabled + if(showErrorIndicators) { + + int column = static_cast(SendScintilla(QsciScintillaBase::SCI_GETCOLUMN, position)); + int line = static_cast(SendScintilla(QsciScintillaBase::SCI_LINEFROMPOSITION, position)); + + fillIndicatorRange(line, column, line+1, 0, errorIndicatorNumber); + } +} + +bool ExtendedScintilla::findText(QString text, bool regexp, bool caseSensitive, bool words, bool wrap, bool forward) { + + // For finding the previous occurrence, we need to skip the current + // selection, otherwise we'd always found the same occurrence. + if (!forward && hasSelectedText()) { + int lineFrom, indexFrom; + int lineTo, indexTo; + getSelection(&lineFrom, &indexFrom, &lineTo, &indexTo); + setCursorPosition(lineFrom, indexFrom); + } + + return findFirst(text, regexp, caseSensitive, words, wrap, forward, + /* line */ -1, /* index */ -1, + /* show */ true, /* posix */ true, /* cxx11 */ true); +} + +void ExtendedScintilla::setEnabledFindDialog(bool value) +{ + shortcutFind->setEnabled(value); +} + +void ExtendedScintilla::clearSelection() +{ + setSelection(-1,-1,-1,-1); +} + +void ExtendedScintilla::openFindReplaceDialog() +{ + findReplaceDialog->setExtendedScintilla(this); + findReplaceDialog->showFindReplaceDialog(true); +} + +void ExtendedScintilla::openFindDialog() +{ + findReplaceDialog->setExtendedScintilla(this); + findReplaceDialog->showFindReplaceDialog(false); +} + +void ExtendedScintilla::showContextMenu(const QPoint &pos) +{ + + // This has to be created here, otherwise the set of enabled options would not update accordingly. + QMenu* editContextMenu = createStandardContextMenu(); + editContextMenu->addSeparator(); + if (shortcutFind->isEnabled()) { + QAction* findAction = new QAction(QIcon(":/icons/find"), tr("Find..."), this); + findAction->setShortcut(shortcutFind->key()); + connect(findAction, &QAction::triggered, this, &ExtendedScintilla::openFindDialog); + editContextMenu->addAction(findAction); + } + QAction* findReplaceAction = new QAction(QIcon(":/icons/text_replace"), tr("Find and Replace..."), this); + findReplaceAction->setShortcut(QKeySequence(tr("Ctrl+H"))); + connect(findReplaceAction, &QAction::triggered, this, &ExtendedScintilla::openFindReplaceDialog); + + QAction* printAction = new QAction(QIcon(":/icons/print"), tr("Print..."), this); + printAction->setShortcut(QKeySequence(tr("Ctrl+P"))); + connect(printAction, &QAction::triggered, this, &ExtendedScintilla::openPrintDialog); + + editContextMenu->addAction(findReplaceAction); + editContextMenu->addSeparator(); + editContextMenu->addAction(printAction); + + editContextMenu->exec(mapToGlobal(pos)); +} + +void ExtendedScintilla::openPrintDialog() +{ + QsciPrinter printer; + QPrintPreviewDialog *dialog = new QPrintPreviewDialog(&printer); + + connect(dialog, &QPrintPreviewDialog::paintRequested, [&](QPrinter *previewPrinter) { + QsciPrinter* sciPrinter = static_cast(previewPrinter); + sciPrinter->printRange(this); + }); + + dialog->exec(); + + delete dialog; +} + +void ExtendedScintilla::setReadOnly(bool ro) +{ + QsciScintilla::setReadOnly(ro); + // Disable or enable caret blinking so it is obvious whether the text can be modified or not. Otherwise there isn't any other hint. + SendScintilla(QsciScintillaBase::SCI_SETCARETPERIOD, ro ? 0 : 500); +} + +void ExtendedScintilla::setText(const QString& text) +{ + // Reset scroll width, so the scroll bar is readjusted to the new text. + // Otherwise, it grows always bigger. + setScrollWidth(80); + QsciScintilla::setText(text); +} diff --git a/src/SqliteDBProcess/src/ExtendedScintilla.h b/src/SqliteDBProcess/src/ExtendedScintilla.h new file mode 100644 index 0000000..c6869c5 --- /dev/null +++ b/src/SqliteDBProcess/src/ExtendedScintilla.h @@ -0,0 +1,58 @@ +#ifndef EXTENDEDSCINTILLA_H +#define EXTENDEDSCINTILLA_H +#include "WBFZExchangePluginAPI.h" +#include "Qsci/qsciscintilla.h" + +class FindReplaceDialog; +class QShortcut; + +/** + * @brief The ExtendedScintilla class + * This class extends the QScintilla widget for the application + */ +class ExtendedScintilla : public QsciScintilla +{ + Q_OBJECT + +public: + explicit ExtendedScintilla(QWidget *parent = nullptr); + + bool findText(QString text, bool regexp, bool caseSensitive, bool words, bool wrap, bool forward); + void setEnabledFindDialog(bool value); + void clearSelection(); + // Override parent setLexer + void setLexer(QsciLexer *lexer) override; + // Override parent setReadOnly + void setReadOnly(bool ro) override; + // Override parent setText + void setText(const QString& text) override; + +public slots: + void reloadKeywords(); + void reloadSettings(); + void clearErrorIndicators(); + void setErrorIndicator(int fromRow, int fromIndex, int toRow, int toIndex); + // Set error indicator from position to end of line + void setErrorIndicator(int position); + void openFindReplaceDialog(); + void openFindDialog(); + void openPrintDialog(); + +protected: + void dropEvent(QDropEvent* e) override; + + void setupSyntaxHighlightingFormat(QsciLexer* lexer, const std::string& settings_name, int style); + void reloadLexerSettings(QsciLexer *lexer); + void reloadCommonSettings(); + + int errorIndicatorNumber; + bool showErrorIndicators; + FindReplaceDialog* findReplaceDialog; + QShortcut* shortcutFind; + +private slots: + void updateLineNumberAreaWidth(); + void showContextMenu(const QPoint &pos); +}; + +#endif diff --git a/src/SqliteDBProcess/src/ExtendedTableWidget.cpp b/src/SqliteDBProcess/src/ExtendedTableWidget.cpp new file mode 100644 index 0000000..fb58963 --- /dev/null +++ b/src/SqliteDBProcess/src/ExtendedTableWidget.cpp @@ -0,0 +1,1081 @@ +#include "ExtendedTableWidget.h" +#include "sqlitetablemodel.h" +#include "FilterTableHeader.h" +#include "sql/sqlitetypes.h" +#include "Settings.h" +#include "sqlitedb.h" +#include "CondFormat.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +using BufferRow = std::vector; +std::vector ExtendedTableWidget::m_buffer; +QString ExtendedTableWidget::m_generatorStamp; + +namespace +{ + +std::vector parseClipboard(QString clipboard) +{ + // Remove trailing line break from the clipboard text. This is necessary because some applications append an extra + // line break to the clipboard contents which we would then interpret as regular data, setting the first field of the + // first row after the paste area to NULL. One problem here is that this breaks for those cases where an empty line at + // the end of the selection is explicitly copied and the originating application doesn't add an extra line break. However, + // there are two reasons for favoring this way: 1) Spreadsheet applications seem to add an extra line break and they are + // probably the main source for pasted data, 2) Having to manually delete on extra field seems to be less problematic than + // having one extra field deleted without any warning. + if(clipboard.endsWith("\n")) + clipboard.chop(1); + if(clipboard.endsWith("\r")) + clipboard.chop(1); + + // Make sure there is some data in the clipboard + std::vector result; + if(clipboard.isEmpty()) + return result; + + result.push_back(BufferRow()); + + QRegExp re("(\"(?:[^\t\"]+|\"\"[^\"]*\"\")*)\"|(\t|\r?\n)"); + int offset = 0; + int whitespace_offset = 0; + + while (offset >= 0) { + QString text; + int pos = re.indexIn(clipboard, offset); + if (pos < 0) { + // insert everything that left + text = clipboard.mid(whitespace_offset); + if(QRegExp("\".*\"").exactMatch(text)) + text = text.mid(1, text.length() - 2); + text.replace("\"\"", "\""); + result.back().push_back(text.toUtf8()); + break; + } + + if (re.pos(2) < 0) { + offset = pos + re.cap(1).length() + 1; + continue; + } + + QString ws = re.cap(2); + // if two whitespaces in row - that's an empty cell + if (!(pos - whitespace_offset)) { + result.back().push_back(QByteArray()); + } else { + text = clipboard.mid(whitespace_offset, pos - whitespace_offset); + if(QRegExp("\".*\"").exactMatch(text)) + text = text.mid(1, text.length() - 2); + text.replace("\"\"", "\""); + result.back().push_back(text.toUtf8()); + } + + if (ws.endsWith("\n")) + // create new row + result.push_back(BufferRow()); + + whitespace_offset = offset = pos + ws.length(); + } + + return result; +} + +} + +UniqueFilterModel::UniqueFilterModel(QObject* parent) + : QSortFilterProxyModel(parent) +{ +} + +bool UniqueFilterModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const +{ + QModelIndex index = sourceModel()->index(sourceRow, filterKeyColumn(), sourceParent); + const std::string value = index.data(Qt::EditRole).toString().toStdString(); + + if (!value.empty() && m_uniqueValues.find(value) == m_uniqueValues.end()) { + const_cast(this)->m_uniqueValues.insert(value); + return true; + } + else + return false; + +} + +ExtendedTableWidgetEditorDelegate::ExtendedTableWidgetEditorDelegate(QObject* parent) + : QStyledItemDelegate(parent) +{ +} + +QWidget* ExtendedTableWidgetEditorDelegate::createEditor(QWidget* parent, const QStyleOptionViewItem& /*option*/, const QModelIndex& index) const +{ + + SqliteTableModel* m = qobject_cast(const_cast(index.model())); + sqlb::ForeignKeyClause fk = m->getForeignKeyClause(static_cast(index.column()-1)); + + if(fk.isSet()) { + + sqlb::ObjectIdentifier foreignTable = sqlb::ObjectIdentifier(m->currentTableName().schema(), fk.table()); + + std::string column; + // If no column name is set, assume the primary key is meant + if(fk.columns().empty()) { + sqlb::TablePtr obj = m->db().getObjectByName(foreignTable); + column = obj->primaryKey()->columnList().front(); + } else + column = fk.columns().at(0); + + sqlb::TablePtr currentTable = m->db().getObjectByName(m->currentTableName()); + QString query = QString("SELECT %1 FROM %2").arg(QString::fromStdString(sqlb::escapeIdentifier(column)), QString::fromStdString(foreignTable.toString())); + + // if the current column of the current table does NOT have not-null constraint, + // the NULL is united to the query to get the possible values in the combo-box. + if (!currentTable->fields.at(static_cast(index.column())-1).notnull()) + query.append (" UNION SELECT NULL"); + + SqliteTableModel* fkModel = new SqliteTableModel(m->db(), parent, m->encoding()); + fkModel->setQuery(query); + + QComboBox* combo = new QComboBox(parent); + + // Complete cache so it is ready when setEditorData is invoked. + fkModel->completeCache(); + combo->setModel(fkModel); + + return combo; + } else { + + QLineEdit* editor = new QLineEdit(parent); + // If the row count is not greater than the complete threshold setting, set a completer of values based on current values in the column. + if (index.model()->rowCount() <= Settings::getValue("databrowser", "complete_threshold").toInt()) { + QCompleter* completer = new QCompleter(editor); + UniqueFilterModel* completerFilter = new UniqueFilterModel(completer); + // Provide a filter for the source model, so only unique and non-empty values are accepted. + completerFilter->setSourceModel(const_cast(index.model())); + completerFilter->setFilterKeyColumn(index.column()); + completer->setModel(completerFilter); + // Complete on this column, using a popup and case-insensitively. + completer->setCompletionColumn(index.column()); + completer->setCompletionMode(QCompleter::PopupCompletion); + completer->setCaseSensitivity(Qt::CaseInsensitive); + editor->setCompleter(completer); + } + // Set the maximum length to the highest possible value instead of the default 32768. + editor->setMaxLength(std::numeric_limits::max()); + return editor; + } +} + +void ExtendedTableWidgetEditorDelegate::setEditorData(QWidget* editor, const QModelIndex& index) const +{ + QLineEdit* lineedit = dynamic_cast(editor); + // Set the data for the editor + QString data = index.data(Qt::EditRole).toString(); + + if(!lineedit) { + QComboBox* combo = static_cast(editor); + int comboIndex = combo->findText(data); + if (comboIndex >= 0) + // if it is valid, adjust the combobox + combo->setCurrentIndex(comboIndex); + } else { + lineedit->setText(data); + + // Put the editor in read only mode if the actual data is larger than the maximum length to avoid accidental truncation of the data + lineedit->setReadOnly(data.size() > lineedit->maxLength()); + } +} + +void ExtendedTableWidgetEditorDelegate::setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& index) const +{ + // Only apply the data back to the model if the editor is not in read only mode to avoid accidental truncation of the data + QLineEdit* lineedit = dynamic_cast(editor); + if(!lineedit) { + QComboBox* combo = static_cast(editor); + model->setData(index, combo->currentData(Qt::EditRole), Qt::EditRole); + } else + if(!lineedit->isReadOnly()) + model->setData(index, lineedit->text()); +} + +void ExtendedTableWidgetEditorDelegate::updateEditorGeometry(QWidget* editor, const QStyleOptionViewItem& option, const QModelIndex& /*index*/) const +{ + editor->setGeometry(option.rect); +} + + +ExtendedTableWidget::ExtendedTableWidget(QWidget* parent) : + QTableView(parent) +{ + setHorizontalScrollMode(ExtendedTableWidget::ScrollPerPixel); + // Force ScrollPerItem, so scrolling shows all table rows + setVerticalScrollMode(ExtendedTableWidget::ScrollPerItem); + + connect(verticalScrollBar(), &QScrollBar::valueChanged, this, &ExtendedTableWidget::vscrollbarChanged); + connect(this, &ExtendedTableWidget::clicked, this, &ExtendedTableWidget::cellClicked); + + // Set up filter row + m_tableHeader = new FilterTableHeader(this); + setHorizontalHeader(m_tableHeader); + + // Disconnect clicking in header to select column, since we will use it for sorting. + // Note that, in order to work, this cannot be converted to the standard C++11 format. + disconnect(m_tableHeader, SIGNAL(sectionPressed(int)),this, SLOT(selectColumn(int))); + + // Set up vertical header context menu + verticalHeader()->setContextMenuPolicy(Qt::CustomContextMenu); + + // Set up table view context menu + m_contextMenu = new QMenu(this); + + QAction* filterAction = new QAction(QIcon(":/icons/filter"), tr("Use as Exact Filter"), m_contextMenu); + QAction* containingAction = new QAction(tr("Containing"), m_contextMenu); + QAction* notContainingAction = new QAction(tr("Not containing"), m_contextMenu); + QAction* notEqualToAction = new QAction(tr("Not equal to"), m_contextMenu); + QAction* greaterThanAction = new QAction(tr("Greater than"), m_contextMenu); + QAction* lessThanAction = new QAction(tr("Less than"), m_contextMenu); + QAction* greaterEqualAction = new QAction(tr("Greater or equal"), m_contextMenu); + QAction* lessEqualAction = new QAction(tr("Less or equal"), m_contextMenu); + QAction* inRangeAction = new QAction(tr("Between this and..."), m_contextMenu); + QAction* regexpAction = new QAction(tr("Regular expression"), m_contextMenu); + QAction* condFormatAction = new QAction(QIcon(":/icons/edit_cond_formats"), tr("Edit Conditional Formats..."), m_contextMenu); + + QAction* nullAction = new QAction(QIcon(":/icons/set_to_null"), tr("Set to NULL"), m_contextMenu); + QAction* copyAction = new QAction(QIcon(":/icons/copy"), tr("Copy"), m_contextMenu); + QAction* copyWithHeadersAction = new QAction(QIcon(":/icons/special_copy"), tr("Copy with Headers"), m_contextMenu); + QAction* copyAsSQLAction = new QAction(QIcon(":/icons/sql_copy"), tr("Copy as SQL"), m_contextMenu); + QAction* pasteAction = new QAction(QIcon(":/icons/paste"), tr("Paste"), m_contextMenu); + QAction* printAction = new QAction(QIcon(":/icons/print"), tr("Print..."), m_contextMenu); + + m_contextMenu->addAction(filterAction); + QMenu* filterMenu = m_contextMenu->addMenu(tr("Use in Filter Expression")); + filterMenu->addAction(containingAction); + filterMenu->addAction(notContainingAction); + filterMenu->addAction(notEqualToAction); + filterMenu->addAction(greaterThanAction); + filterMenu->addAction(lessThanAction); + filterMenu->addAction(greaterEqualAction); + filterMenu->addAction(lessEqualAction); + filterMenu->addAction(inRangeAction); + filterMenu->addAction(regexpAction); + m_contextMenu->addAction(condFormatAction); + + m_contextMenu->addSeparator(); + m_contextMenu->addAction(nullAction); + m_contextMenu->addSeparator(); + m_contextMenu->addAction(copyAction); + m_contextMenu->addAction(copyWithHeadersAction); + m_contextMenu->addAction(copyAsSQLAction); + m_contextMenu->addAction(pasteAction); + m_contextMenu->addSeparator(); + m_contextMenu->addAction(printAction); + setContextMenuPolicy(Qt::CustomContextMenu); + + // Create and set up delegate + m_editorDelegate = new ExtendedTableWidgetEditorDelegate(this); + setItemDelegate(m_editorDelegate); + + // This is only for displaying the shortcut in the context menu. + // An entry in keyPressEvent is still needed. + nullAction->setShortcut(QKeySequence(tr("Alt+Del"))); + copyAction->setShortcut(QKeySequence::Copy); + copyWithHeadersAction->setShortcut(QKeySequence(tr("Ctrl+Shift+C"))); + copyAsSQLAction->setShortcut(QKeySequence(tr("Ctrl+Alt+C"))); + pasteAction->setShortcut(QKeySequence::Paste); + printAction->setShortcut(QKeySequence::Print); + + // Set up context menu actions + connect(this, &QTableView::customContextMenuRequested, + [=](const QPoint& pos) + { + // Deactivate context menu options if there is no model set + bool enabled = model(); + filterAction->setEnabled(enabled); + filterMenu->setEnabled(enabled); + copyAction->setEnabled(enabled); + copyWithHeadersAction->setEnabled(enabled); + copyAsSQLAction->setEnabled(enabled); + printAction->setEnabled(enabled); + condFormatAction->setEnabled(enabled); + + // Hide filter actions when there isn't any filters + bool hasFilters = m_tableHeader->hasFilters(); + filterAction->setVisible(hasFilters); + filterMenu->menuAction()->setVisible(hasFilters); + condFormatAction->setVisible(hasFilters); + + // Try to find out whether the current view is editable and (de)activate menu options according to that + bool editable = editTriggers() != QAbstractItemView::NoEditTriggers; + nullAction->setEnabled(enabled && editable); + pasteAction->setEnabled(enabled && editable); + + // Show menu + m_contextMenu->popup(viewport()->mapToGlobal(pos)); + }); + connect(filterAction, &QAction::triggered, [&]() { + useAsFilter(QString ("=")); + }); + connect(containingAction, &QAction::triggered, [&]() { + useAsFilter(QString ("")); + }); + // Use a regular expression for the not containing filter. Simplify this if we ever support the NOT LIKE filter. + connect(notContainingAction, &QAction::triggered, [&]() { + useAsFilter(QString ("/^((?!"), /* binary */ false, QString (").)*$/")); + }); + connect(notEqualToAction, &QAction::triggered, [&]() { + useAsFilter(QString ("<>")); + }); + connect(greaterThanAction, &QAction::triggered, [&]() { + useAsFilter(QString (">")); + }); + connect(lessThanAction, &QAction::triggered, [&]() { + useAsFilter(QString ("<")); + }); + connect(greaterEqualAction, &QAction::triggered, [&]() { + useAsFilter(QString (">=")); + }); + connect(lessEqualAction, &QAction::triggered, [&]() { + useAsFilter(QString ("<=")); + }); + connect(inRangeAction, &QAction::triggered, [&]() { + useAsFilter(QString ("~"), /* binary */ true); + }); + connect(regexpAction, &QAction::triggered, [&]() { + useAsFilter(QString ("/"), /* binary */ false, QString ("/")); + }); + connect(condFormatAction, &QAction::triggered, [&]() { + emit editCondFormats(currentIndex().column()); + }); + + connect(nullAction, &QAction::triggered, [&]() { + setToNull(selectedIndexes()); + }); + connect(copyAction, &QAction::triggered, [&]() { + copy(false, false); + }); + connect(copyWithHeadersAction, &QAction::triggered, [&]() { + copy(true, false); + }); + connect(copyAsSQLAction, &QAction::triggered, [&]() { + copy(false, true); + }); + connect(pasteAction, &QAction::triggered, [&]() { + paste(); + }); + connect(printAction, &QAction::triggered, [&]() { + openPrintDialog(); + }); + + // Add spreadsheet shortcuts for selecting entire columns or entire rows. + QShortcut* selectColumnShortcut = new QShortcut(QKeySequence("Ctrl+Space"), this); + connect(selectColumnShortcut, &QShortcut::activated, [this]() { + if(!hasFocus() || selectionModel()->selectedIndexes().isEmpty()) + return; + selectionModel()->select(QItemSelection(selectionModel()->selectedIndexes().first(), selectionModel()->selectedIndexes().last()), QItemSelectionModel::Select | QItemSelectionModel::Columns); + }); + QShortcut* selectRowShortcut = new QShortcut(QKeySequence("Shift+Space"), this); + connect(selectRowShortcut, &QShortcut::activated, [this]() { + if(!hasFocus() || selectionModel()->selectedIndexes().isEmpty()) + return; + selectionModel()->select(QItemSelection(selectionModel()->selectedIndexes().first(), selectionModel()->selectedIndexes().last()), QItemSelectionModel::Select | QItemSelectionModel::Rows); + }); + +#if QT_VERSION >= QT_VERSION_CHECK(5, 12, 0) && QT_VERSION < QT_VERSION_CHECK(5, 12, 3) + // This work arounds QTBUG-73721 and it is applied only for the affected version range. + setWordWrap(false); +#endif +} + +void ExtendedTableWidget::reloadSettings() +{ + // Set the new font and font size + QFont dataBrowserFont(Settings::getValue("databrowser", "font").toString()); + dataBrowserFont.setPointSize(Settings::getValue("databrowser", "fontsize").toInt()); + setFont(dataBrowserFont); + + // Set new default row height depending on the font size + verticalHeader()->setDefaultSectionSize(verticalHeader()->fontMetrics().height()+10); +} + +void ExtendedTableWidget::copyMimeData(const QModelIndexList& fromIndices, QMimeData* mimeData, const bool withHeaders, const bool inSQL) +{ + QModelIndexList indices = fromIndices; + + // Remove all indices from hidden columns, because if we don't we might copy data from hidden columns as well which is very + // unintuitive; especially copying the rowid column when selecting all columns of a table is a problem because pasting the data + // won't work as expected. + QMutableListIterator it(indices); + while (it.hasNext()) { + if (isColumnHidden(it.next().column())) + it.remove(); + } + + // Abort if there's nothing to copy + if (indices.isEmpty()) + return; + + SqliteTableModel* m = qobject_cast(model()); + + // Clear internal copy-paste buffer + m_buffer.clear(); + + // If a single cell is selected which contains an image, copy it to the clipboard + if (!inSQL && !withHeaders && indices.size() == 1) { + QImage img; + QVariant varData = m->data(indices.first(), Qt::EditRole); + + if (img.loadFromData(varData.toByteArray())) + { + // If it's an image, copy the image data to the clipboard + mimeData->setImageData(img); + return; + } + } + + // If we got here, a non-image cell was or multiple cells were selected, or copy with headers was requested. + // In this case, we copy selected data into internal copy-paste buffer and then + // we write a table both in HTML and text formats to the system clipboard. + + // Copy selected data into internal copy-paste buffer + int last_row = indices.first().row(); + BufferRow lst; + for(int i=0;i"; + htmlResult.append(""); + htmlResult.append(""); + + // The generator-stamp is later used to know whether the data in the system clipboard is still ours. + // In that case we will give precedence to our internal copy buffer. + QString now = QDateTime::currentDateTime().toString("YYYY-MM-DDTHH:mm:ss.zzz"); + m_generatorStamp = QString("").arg(QApplication::applicationName().toHtmlEscaped(), now); + htmlResult.append(m_generatorStamp); + // TODO: is this really needed by Excel, since we use
 for multi-line cells?
+    htmlResult.append(""
+                      "
"); + + int currentRow = indices.first().row(); + + const QString fieldSepText = "\t"; +#ifdef Q_OS_WIN + const QString rowSepText = "\r\n"; +#else + const QString rowSepText = "\n"; +#endif + + QString sqlInsertStatement = QString("INSERT INTO %1 (").arg(QString::fromStdString(m->currentTableName().toString())); + // Table headers + if (withHeaders || inSQL) { + htmlResult.append(""); + sqlInsertStatement.append(") VALUES ("); + } + + // Table data rows + for(const QModelIndex& index : indices) { + QFont font; + font.fromString(index.data(Qt::FontRole).toString()); + const QString fontStyle(font.italic() ? "italic" : "normal"); + const QString fontWeigth(font.bold() ? "bold" : "normal"); + const QString fontDecoration(font.underline() ? " text-decoration: underline;" : ""); + const QColor bgColor(index.data(Qt::BackgroundRole).toString()); + const QColor fgColor(index.data(Qt::ForegroundRole).toString()); + const Qt::Alignment align(index.data(Qt::TextAlignmentRole).toInt()); + const QString textAlign(CondFormat::alignmentTexts().at(CondFormat::fromCombinedAlignment(align)).toLower()); + const QString style = QString("font-family: '%1'; font-size: %2pt; font-style: %3; font-weight: %4;%5 " + "background-color: %6; color: %7; text-align: %8").arg( + font.family().toHtmlEscaped(), + QString::number(font.pointSize()), + fontStyle, + fontWeigth, + fontDecoration, + bgColor.name(), + fgColor.name(), + textAlign); + + // Separators. For first cell, only opening table row tags must be added for the HTML and nothing for the text version. + if (indices.first() == index) { + htmlResult.append(QString("
"); + int firstColumn = indices.front().column(); + for(int i = firstColumn; i <= indices.back().column(); i++) { + QByteArray headerText = model()->headerData(i, Qt::Horizontal, Qt::EditRole).toByteArray(); + if (i != firstColumn) { + result.append(fieldSepText); + htmlResult.append(""); + sqlInsertStatement.append(", "); + } + + result.append(headerText); + htmlResult.append(headerText); + sqlInsertStatement.append(sqlb::escapeIdentifier(headerText)); + } + result.append(rowSepText); + htmlResult.append("
").arg(style)); + sqlResult.append(sqlInsertStatement); + } else if (index.row() != currentRow) { + result.append(rowSepText); + htmlResult.append(QString("
").arg(style)); + sqlResult.append(");" + rowSepText + sqlInsertStatement); + } else { + result.append(fieldSepText); + htmlResult.append(QString("").arg(style)); + sqlResult.append(", "); + } + currentRow = index.row(); + + QImage img; + QVariant bArrdata = index.data(Qt::EditRole); + + // Table cell data: image? Store it as an embedded image in HTML + if (!inSQL && img.loadFromData(bArrdata.toByteArray())) + { + QByteArray ba; + QBuffer buffer(&ba); + buffer.open(QIODevice::WriteOnly); + img.save(&buffer, "PNG"); + buffer.close(); + + QString imageBase64 = ba.toBase64(); + htmlResult.append("\"Image\""); + } else { + QByteArray text; + if (!m->isBinary(index)) { + text = bArrdata.toByteArray(); + + // Table cell data: text + if (text.contains('\n') || text.contains('\t')) + htmlResult.append("
" + QString(text).toHtmlEscaped() + "
"); + else + htmlResult.append(QString(text).toHtmlEscaped()); + + result.append(text); + sqlResult.append(sqlb::escapeString(text)); + } else + // Table cell data: binary. Save as BLOB literal in SQL + sqlResult.append( "X'" + bArrdata.toByteArray().toHex() + "'" ); + + } + } + sqlResult.append(");"); + + if ( inSQL ) + { + mimeData->setText(sqlResult); + } else { + mimeData->setHtml(htmlResult + "
"); + mimeData->setText(result); + } +} + +void ExtendedTableWidget::copy(const bool withHeaders, const bool inSQL ) +{ + QMimeData *mimeData = new QMimeData; + copyMimeData(selectionModel()->selectedIndexes(), mimeData, withHeaders, inSQL); + qApp->clipboard()->setMimeData(mimeData); +} + +void ExtendedTableWidget::paste() +{ + // Get list of selected items + QItemSelectionModel* selection = selectionModel(); + QModelIndexList indices = selection->selectedIndexes(); + + // Abort if there's nowhere to paste + if(indices.isEmpty()) + return; + + SqliteTableModel* m = qobject_cast(model()); + + // We're also checking for system clipboard data first. Only if the data in the system clipboard is not ours, we use the system + // clipboard, otherwise we prefer the internal buffer. That's because the data in the internal buffer is easier to parse and more + // accurate, too. However, if we always preferred the internal copy-paste buffer there would be no way to copy data from other + // applications in here once the internal buffer has been filled. + + // If clipboard contains an image and no text, just insert the image + const QMimeData* mimeClipboard = qApp->clipboard()->mimeData(); + if (mimeClipboard->hasImage() && !mimeClipboard->hasText()) { + QImage img = qApp->clipboard()->image(); + QByteArray ba; + QBuffer buffer(&ba); + buffer.open(QIODevice::WriteOnly); + img.save(&buffer, "PNG"); // We're always converting the image format to PNG here. TODO: Is that correct? + buffer.close(); + + m->setData(indices.first(), ba); + return; + } + + // Get the clipboard text + QString clipboard = qApp->clipboard()->text(); + + + // If data in system clipboard is ours and the internal copy-paste buffer is filled, use the internal buffer; otherwise parse the + // system clipboard contents (case for data copied by other application). + + std::vector clipboardTable; + std::vector* source; + + if(mimeClipboard->hasHtml() && mimeClipboard->html().contains(m_generatorStamp) && !m_buffer.empty()) + { + source = &m_buffer; + } else { + clipboardTable = parseClipboard(clipboard); + source = &clipboardTable; + } + + // Stop here if there's nothing to paste + if(!source->size()) + return; + + // Starting from assumption that selection is rectangular, and then first index is upper-left corner and last is lower-right. + int rows = static_cast(source->size()); + int columns = static_cast(source->front().size()); + + int firstRow = indices.front().row(); + int firstColumn = indices.front().column(); + int selectedRows = indices.back().row() - firstRow + 1; + int selectedColumns = indices.back().column() - firstColumn + 1; + + // If last row and column are after table size, clamp it + int lastRow = qMin(firstRow + rows - 1, m->rowCount() - 1); + int lastColumn = qMin(firstColumn + columns - 1, m->columnCount() - 1); + + // Special case: if there is only one cell of data to be pasted, paste it into all selected fields + if(rows == 1 && columns == 1) + { + QByteArray bArrdata = source->front().front(); + for(int row=firstRow;rowsetData(m->index(row, column), bArrdata); + } + return; + } + + // If more than one cell was selected, check if the selection matches the cliboard dimensions + if(selectedRows != rows || selectedColumns != columns) + { + // Ask user if they are sure about this + if(QMessageBox::question(this, QApplication::applicationName(), + tr("The content of the clipboard is bigger than the range selected.\nDo you want to insert it anyway?"), + QMessageBox::Yes | QMessageBox::No) != QMessageBox::Yes) + { + // If the user doesn't want to paste the clipboard data anymore, stop now + return; + } + } + + // If we get here, we can definitely start pasting: either the ranges match in their size or the user agreed to paste anyway + + // Copy the data cell by cell and as-is from the source buffer to the table + int row = firstRow; + for(const auto& source_row : *source) + { + int column = firstColumn; + for(const QByteArray& source_cell : source_row) + { + m->setData(m->index(row, column), source_cell); + + column++; + if (column > lastColumn) + break; + } + + row++; + if (row > lastRow) + break; + } +} + +void ExtendedTableWidget::useAsFilter(const QString& filterOperator, bool binary, const QString& operatorSuffix) +{ + QModelIndex index = selectionModel()->currentIndex(); + SqliteTableModel* m = qobject_cast(model()); + + // Abort if there's nothing to filter + if (!index.isValid() || !selectionModel()->hasSelection() || m->isBinary(index)) + return; + + QVariant bArrdata = model()->data(index, Qt::EditRole); + QString value; + if (bArrdata.isNull()) + value = "NULL"; + else if (bArrdata.toString().isEmpty()) + value = "''"; + else + value = bArrdata.toString(); + + // When Containing filter is requested (empty operator) and the value starts with + // an operator character, the character is escaped. + if (filterOperator.isEmpty()) + value.replace(QRegExp("^(<|>|=|/)"), Settings::getValue("databrowser", "filter_escape").toString() + QString("\\1")); + + // If binary operator, the cell data is used as first value and + // the second value must be added by the user. + size_t column = static_cast(index.column()); + if (binary) + m_tableHeader->setFilter(column, value + filterOperator); + else + m_tableHeader->setFilter(column, filterOperator + value + operatorSuffix); +} + +void ExtendedTableWidget::duplicateUpperCell() +{ + const QModelIndex& currentIndex = selectionModel()->currentIndex(); + QModelIndex upperIndex = currentIndex.sibling(currentIndex.row() - 1, currentIndex.column()); + if (upperIndex.isValid()) { + SqliteTableModel* m = qobject_cast(model()); + // When the data is binary, just copy it, since it cannot be edited inline. + if (m->isBinary(upperIndex)) + m->setData(currentIndex, m->data(upperIndex, Qt::EditRole), Qt::EditRole); + else { + // Open the inline editor and set the value (this mimics the behaviour of LibreOffice Calc) + edit(currentIndex); + QLineEdit* editor = qobject_cast(indexWidget(currentIndex)); + editor->setText(upperIndex.data().toString()); + } + } +} + +void ExtendedTableWidget::keyPressEvent(QKeyEvent* event) +{ + // Call a custom copy method when Ctrl-C is pressed + if(event->matches(QKeySequence::Copy)) + { + copy(false, false); + return; + } else if(event->matches(QKeySequence::Paste)) { + // Call a custom paste method when Ctrl-V is pressed + paste(); + } else if(event->matches(QKeySequence::Print)) { + openPrintDialog(); + } else if(event->modifiers().testFlag(Qt::ControlModifier) && event->modifiers().testFlag(Qt::ShiftModifier) && (event->key() == Qt::Key_C)) { + // Call copy with headers when Ctrl-Shift-C is pressed + copy(true, false); + } else if(event->modifiers().testFlag(Qt::ControlModifier) && event->modifiers().testFlag(Qt::AltModifier) && (event->key() == Qt::Key_C)) { + // Call copy in SQL format when Ctrl-Alt-C is pressed + copy(false, true); + } else if(event->modifiers().testFlag(Qt::ControlModifier) && (event->key() == Qt::Key_Apostrophe)) { + // Call duplicateUpperCell when Ctrl-' is pressed (this is used by spreadsheets for "Copy Formula from Cell Above") + duplicateUpperCell(); + } else if(event->key() == Qt::Key_Tab && hasFocus() && + selectedIndexes().count() == 1 && + selectedIndexes().at(0).row() == model()->rowCount()-1 && selectedIndexes().at(0).column() == model()->columnCount()-1) { + // If the Tab key was pressed while the focus was on the last cell of the last row insert a new row automatically + model()->insertRow(model()->rowCount()); + } else if ((event->key() == Qt::Key_Delete) || (event->key() == Qt::Key_Backspace)) { + // Check if entire rows are selected. We call the selectedRows() method here not only for simplicity reasons but also because it distinguishes between + // "an entire row is selected" and "all cells of a row are selected", the former is e.g. the case when the row number is clicked, the latter when all cells + // are selected manually. This is an important distinction (especially when a table has only one column!) to match the users' expectations. Also never + // delete records when the backspace key was pressed. + if(event->key() == Qt::Key_Delete && selectionModel()->selectedRows().size()) + { + // At least on entire row is selected. Because we don't allow completely arbitrary selections (at least at the moment) but only block selections, + // this means that only entire entire rows are selected. If an entire row is (or multiple entire rows are) selected, we delete that record instead + // of deleting only the cell contents. + + emit selectedRowsToBeDeleted(); + } else { + // No entire row is selected. So just set the selected cells to null or empty string depending on the modifier keys + + if(event->modifiers().testFlag(Qt::AltModifier)) + { + // When pressing Alt+Delete set the value to NULL + setToNull(selectedIndexes()); + } else { + // When pressing Delete only set the value to empty string + for(const QModelIndex& index : selectedIndexes()) + model()->setData(index, ""); + } + } + } else if(event->modifiers().testFlag(Qt::ControlModifier) && (event->key() == Qt::Key_PageUp || event->key() == Qt::Key_PageDown)) { + // When pressing Ctrl + Page up/down send a signal indicating the user wants to change the current table + emit switchTable(event->key() == Qt::Key_PageDown); + return; + } + + // This prevents the current selection from being changed when pressing tab to move to the next filter. Note that this is in an 'if' condition, + // not in an 'else if' because this way, when the tab key was pressed and the focus was on the last cell, a new row is inserted and then the tab + // key press is processed a second time to move the cursor as well + if((event->key() != Qt::Key_Tab && event->key() != Qt::Key_Backtab) || hasFocus()) + QTableView::keyPressEvent(event); +} + +void ExtendedTableWidget::updateGeometries() +{ + // Call the parent implementation first - it does most of the actual logic + QTableView::updateGeometries(); + + // Check if a model has already been set yet + if(model()) + { + // If so and if it is a SqliteTableModel and if the parent implementation of this method decided that a scrollbar is needed, update its maximum value + SqliteTableModel* m = qobject_cast(model()); + if(m && verticalScrollBar()->maximum()) + verticalScrollBar()->setMaximum(m->rowCount() - numVisibleRows() + 1); + } +} + +void ExtendedTableWidget::vscrollbarChanged(int value) +{ + // Cancel if there is no model set yet - this shouldn't happen (because without a model there should be no scrollbar) but just to be sure... + if(!model()) + return; + + // Fetch more data from the DB if necessary + const auto nrows = model()->rowCount(); + if(nrows == 0) + return; + + if(auto * m = dynamic_cast(model())) + { + int row_begin = std::min(value, nrows - 1); + int row_end = std::min(value + numVisibleRows(), nrows); + m->triggerCacheLoad(row_begin, row_end); + } +} + +int ExtendedTableWidget::numVisibleRows() const +{ + if(!isVisible() || !model() || !verticalHeader()) + return 0; + + // Get the row numbers of the rows currently visible at the top and the bottom of the widget + int row_top = rowAt(0) == -1 ? 0 : rowAt(0); + int row_bottom = verticalHeader()->visualIndexAt(height()) == -1 ? model()->rowCount() : (verticalHeader()->visualIndexAt(height()) - 1); + if(horizontalScrollBar()->isVisible()) // Assume the scrollbar covers about one row + row_bottom--; + + // Calculate the number of visible rows + return row_bottom - row_top; +} + +std::unordered_set ExtendedTableWidget::selectedCols() const +{ + std::unordered_set selectedCols; + for(const auto& idx : selectionModel()->selectedColumns()) + selectedCols.insert(static_cast(idx.column())); + return selectedCols; +} + +std::unordered_set ExtendedTableWidget::colsInSelection() const +{ + std::unordered_set colsInSelection; + for(const QModelIndex & idx : selectedIndexes()) + colsInSelection.insert(static_cast(idx.column())); + return colsInSelection; +} + +void ExtendedTableWidget::cellClicked(const QModelIndex& index) +{ + // If Ctrl-Shift is pressed try to jump to the row referenced by the foreign key of the clicked cell + if(qApp->keyboardModifiers().testFlag(Qt::ControlModifier) && qApp->keyboardModifiers().testFlag(Qt::ShiftModifier) && model()) + { + SqliteTableModel* m = qobject_cast(model()); + sqlb::ForeignKeyClause fk = m->getForeignKeyClause(static_cast(index.column()-1)); + + if(fk.isSet()) + emit foreignKeyClicked(sqlb::ObjectIdentifier(m->currentTableName().schema(), fk.table()), + fk.columns().size() ? fk.columns().at(0) : "", + m->data(index, Qt::EditRole).toByteArray()); + else { + // If this column does not have a foreign-key, try to interpret it as a filename/URL and open it in external application. + + // TODO: Qt is doing a contiguous selection when Control+Click is pressed. It should be disabled, but at least moving the + // current index gives better result. + setCurrentIndex(index); + emit requestUrlOrFileOpen(model()->data(index, Qt::EditRole).toString()); + } + } +} + +void ExtendedTableWidget::dragEnterEvent(QDragEnterEvent* event) +{ + event->accept(); +} + +void ExtendedTableWidget::dragMoveEvent(QDragMoveEvent* event) +{ + event->accept(); +} + +void ExtendedTableWidget::dropEvent(QDropEvent* event) +{ + QModelIndex index = indexAt(event->pos()); + + if (!index.isValid()) + { + if (event->mimeData()->hasUrls() && event->mimeData()->urls().first().isLocalFile()) + emit openFileFromDropEvent(event->mimeData()->urls().first().toLocalFile()); + return; + } + + model()->dropMimeData(event->mimeData(), Qt::CopyAction, index.row(), index.column(), QModelIndex()); + event->acceptProposedAction(); +} + +void ExtendedTableWidget::selectTableLine(int lineToSelect) +{ + SqliteTableModel* m = qobject_cast(model()); + + // Are there even that many lines? + if(lineToSelect >= m->rowCount()) + return; + + QApplication::setOverrideCursor( Qt::WaitCursor ); + m->triggerCacheLoad(lineToSelect); + + // Select it + clearSelection(); + selectRow(lineToSelect); + scrollTo(currentIndex(), QAbstractItemView::PositionAtTop); + QApplication::restoreOverrideCursor(); +} + +void ExtendedTableWidget::selectTableLines(int firstLine, int count) +{ + SqliteTableModel* m = qobject_cast(model()); + + int lastLine = firstLine+count-1; + // Are there even that many lines? + if(lastLine >= m->rowCount()) + return; + + selectTableLine(firstLine); + + QModelIndex topLeft = m->index(firstLine, 0); + QModelIndex bottomRight = m->index(lastLine, m->columnCount()-1); + + selectionModel()->select(QItemSelection(topLeft, bottomRight), QItemSelectionModel::Select | QItemSelectionModel::Rows); +} + +void ExtendedTableWidget::selectAll() +{ + SqliteTableModel* m = qobject_cast(model()); + + // Fetch all the data if needed and user accepts, then call parent's selectAll() + + QMessageBox::StandardButton answer = QMessageBox::Yes; + + // If we can fetch more data, ask user if they are sure about it. + if (!m->isCacheComplete()) { + + answer = QMessageBox::question(this, QApplication::applicationName(), + tr("

Not all data has been loaded. Do you want to load all data before selecting all the rows?

" + "

Answering No means that no more data will be loaded and the selection will not be performed.
" + "Answering Yes might take some time while the data is loaded but the selection will be complete.

" + "Warning: Loading all the data might require a great amount of memory for big tables."), + QMessageBox::Yes | QMessageBox::No); + + if (answer == QMessageBox::Yes) + m->completeCache(); + } + if (answer == QMessageBox::Yes) + QTableView::selectAll(); +} + +void ExtendedTableWidget::openPrintDialog() +{ + QMimeData *mimeData = new QMimeData; + QModelIndexList indices; + + // Print the selection, if active, or the entire table otherwise. + // Given that simply clicking over a cell, selects it, one-cell selections are ignored. + if (selectionModel()->hasSelection() && selectionModel()->selectedIndexes().count() > 1) + indices = selectionModel()->selectedIndexes(); + else + for (int row=0; row < model()->rowCount(); row++) + for (int column=0; column < model()->columnCount(); column++) + indices << model()->index(row, column); + + // Copy the specified indices content to mimeData for getting the HTML representation of + // the table with headers. We can then print it using an HTML text document. + copyMimeData(indices, mimeData, true, false); + + QPrinter printer; + QPrintPreviewDialog *dialog = new QPrintPreviewDialog(&printer); + + connect(dialog, &QPrintPreviewDialog::paintRequested, [mimeData](QPrinter *previewPrinter) { + QTextDocument document; + document.setHtml(mimeData->html()); + document.print(previewPrinter); + }); + + dialog->exec(); + + delete dialog; + delete mimeData; +} + +void ExtendedTableWidget::sortByColumns(const std::vector& columns) +{ + // Are there even any columns to sort by? + if(columns.size() == 0) + return; + + // Are we using a SqliteTableModel as a model? These support multiple sort columns. Other models might not; for those we just use the first sort column + SqliteTableModel* sqlite_model = dynamic_cast(model()); + if(sqlite_model == nullptr) + model()->sort(static_cast(columns.front().column), columns.front().direction == sqlb::Ascending ? Qt::AscendingOrder : Qt::DescendingOrder); + else + sqlite_model->sort(columns); +} + +void ExtendedTableWidget::currentChanged(const QModelIndex ¤t, const QModelIndex &previous) +{ + QTableView::currentChanged(current, previous); + emit currentIndexChanged(current, previous); +} + +void ExtendedTableWidget::setToNull(const QModelIndexList& indices) +{ + SqliteTableModel* m = qobject_cast(const_cast(model())); + sqlb::TablePtr currentTable = m->db().getObjectByName(m->currentTableName()); + + // Check if some column in the selection has a NOT NULL constraint, before trying to update the cells. + if(currentTable) + for(const QModelIndex& index : indices) { + const sqlb::Field& field = currentTable->fields.at(static_cast(index.column())-1); + if(field.notnull()) { + QMessageBox::warning(nullptr, qApp->applicationName(), + tr("Cannot set selection to NULL. Column %1 has a NOT NULL constraint."). + arg(QString::fromStdString(field.name()))); + return; + } + } + + for(const QModelIndex& index : indices) + model()->setData(index, QVariant()); +} diff --git a/src/SqliteDBProcess/src/ExtendedTableWidget.h b/src/SqliteDBProcess/src/ExtendedTableWidget.h new file mode 100644 index 0000000..ea576a9 --- /dev/null +++ b/src/SqliteDBProcess/src/ExtendedTableWidget.h @@ -0,0 +1,110 @@ +#ifndef EXTENDEDTABLEWIDGET_H +#define EXTENDEDTABLEWIDGET_H +#include "WBFZExchangePluginAPI.h" +#include +#include +#include +#include + +#include "sql/Query.h" + +class QMenu; +class QMimeData; +class QDropEvent; +class QDragMoveEvent; + +class FilterTableHeader; +namespace sqlb { class ObjectIdentifier; } + +// Filter proxy model that only accepts distinct non-empty values. +class UniqueFilterModel : public QSortFilterProxyModel +{ + Q_OBJECT + +public: + explicit UniqueFilterModel(QObject* parent = nullptr); + bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const override; + private: + std::unordered_set m_uniqueValues; +}; + +// We use this class to provide editor widgets for the ExtendedTableWidget. It's used for every cell in the table view. +class ExtendedTableWidgetEditorDelegate : public QStyledItemDelegate +{ + Q_OBJECT + +public: + explicit ExtendedTableWidgetEditorDelegate(QObject* parent = nullptr); + + QWidget* createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const override; + void setEditorData(QWidget* editor, const QModelIndex& index) const override; + void setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& index) const override; + void updateEditorGeometry(QWidget* editor, const QStyleOptionViewItem& option, const QModelIndex& index) const override; +}; + +class ExtendedTableWidget : public QTableView +{ + Q_OBJECT + +public: + explicit ExtendedTableWidget(QWidget* parent = nullptr); + + FilterTableHeader* filterHeader() { return m_tableHeader; } + +public: + // Get set of selected columns (all cells in column has to be selected) + std::unordered_set selectedCols() const; + // Get set of columns traversed by selection (only some cells in column has to be selected) + std::unordered_set colsInSelection() const; + + int numVisibleRows() const; + + void sortByColumns(const std::vector& columns); + +public slots: + void reloadSettings(); + void selectTableLine(int lineToSelect); + void selectTableLines(int firstLine, int count); + void selectAll() override; + void openPrintDialog(); + +signals: + void foreignKeyClicked(const sqlb::ObjectIdentifier& table, const std::string& column, const QByteArray& value); + void switchTable(bool next); // 'next' parameter is set to true if next table should be selected and to false if previous table should be selected + void openFileFromDropEvent(QString); + void selectedRowsToBeDeleted(); + void editCondFormats(int column); + void currentIndexChanged(const QModelIndex ¤t, const QModelIndex &previous); + void requestUrlOrFileOpen(const QString& urlString); + +private: + void copyMimeData(const QModelIndexList& fromIndices, QMimeData* mimeData, const bool withHeaders, const bool inSQL); + void copy(const bool withHeaders, const bool inSQL); + void paste(); + + void useAsFilter(const QString& filterOperator, bool binary = false, const QString& operatorSuffix = QString()); + void duplicateUpperCell(); + + void setToNull(const QModelIndexList& indices); + + static std::vector> m_buffer; + static QString m_generatorStamp; + +private slots: + void vscrollbarChanged(int value); + void cellClicked(const QModelIndex& index); + +protected: + void keyPressEvent(QKeyEvent* event) override; + void updateGeometries() override; + void dragEnterEvent(QDragEnterEvent* event) override; + void dragMoveEvent(QDragMoveEvent* event) override; + void dropEvent(QDropEvent* event) override; + void currentChanged(const QModelIndex ¤t, const QModelIndex &previous) override; + + FilterTableHeader* m_tableHeader; + QMenu* m_contextMenu; + ExtendedTableWidgetEditorDelegate* m_editorDelegate; +}; + +#endif diff --git a/src/SqliteDBProcess/src/FileDialog.cpp b/src/SqliteDBProcess/src/FileDialog.cpp new file mode 100644 index 0000000..6f96293 --- /dev/null +++ b/src/SqliteDBProcess/src/FileDialog.cpp @@ -0,0 +1,83 @@ +#include "FileDialog.h" +#include "Settings.h" + +QString FileDialog::getOpenFileName(const FileDialogTypes dialogType, QWidget* parent, const QString& caption, const QString &filter, QString *selectedFilter, Options options) +{ + QString result = QFileDialog::getOpenFileName(parent, caption, getFileDialogPath(dialogType), filter, selectedFilter, options); + if(!result.isEmpty()) + setFileDialogPath(dialogType, result); + return result; +} + +QStringList FileDialog::getOpenFileNames(const FileDialogTypes dialogType, QWidget *parent, const QString &caption, const QString &filter, QString *selectedFilter, QFileDialog::Options options) +{ + QStringList result = QFileDialog::getOpenFileNames(parent, caption, getFileDialogPath(dialogType), filter, selectedFilter, options); + if(!result.isEmpty()) + { + QFileInfo path = QFileInfo(result.first()); + setFileDialogPath(dialogType, path.absolutePath()); + } + return result; +} + +QString FileDialog::getSaveFileName(const FileDialogTypes dialogType, QWidget* parent, const QString& caption, const QString& filter, const QString& defaultFileName, QString* selectedFilter, Options options) +{ + QString dir = getFileDialogPath(dialogType); + if(!defaultFileName.isEmpty()) + dir += "/" + defaultFileName; + + QString result = QFileDialog::getSaveFileName(parent, caption, dir, filter, selectedFilter, options); + if(!result.isEmpty()) + setFileDialogPath(dialogType, result); + return result; +} + +QString FileDialog::getExistingDirectory(const FileDialogTypes dialogType, QWidget* parent, const QString& caption, Options options) +{ + QString result = QFileDialog::getExistingDirectory(parent, caption, getFileDialogPath(dialogType), options); + if(!result.isEmpty()) + setFileDialogPath(dialogType, result); + return result; +} + +QString FileDialog::getFileDialogPath(const FileDialogTypes dialogType) +{ + switch(Settings::getValue("db", "savedefaultlocation").toInt()) + { + case 0: // Remember last location + case 2: { // Remember last location for current session only + QHash lastLocations = Settings::getValue("db", "lastlocations").toHash(); + + return lastLocations[QString(dialogType)].toString(); + } + case 1: // Always use this locations + return Settings::getValue("db", "defaultlocation").toString(); + default: + return QString(); + } +} + +void FileDialog::setFileDialogPath(const FileDialogTypes dialogType, const QString& new_path) +{ + QString dir = QFileInfo(new_path).absolutePath(); + QHash lastLocations = Settings::getValue("db", "lastlocations").toHash(); + + lastLocations[QString(dialogType)] = dir; + + switch(Settings::getValue("db", "savedefaultlocation").toInt()) + { + case 0: // Remember last location + Settings::setValue("db", "lastlocations", lastLocations); + break; + case 2: // Remember last location for current session only + Settings::setValue("db", "lastlocations", lastLocations, true); + break; + case 1: // Always use this locations + break; // Do nothing + } +} + +QString FileDialog::getSqlDatabaseFileFilter() +{ + return Settings::getValue("General", "DBFileExtensions").toString() + ";;" + QObject::tr("All files (*)"); //Always add "All files (*)" to the available filters +} diff --git a/src/SqliteDBProcess/src/FileDialog.h b/src/SqliteDBProcess/src/FileDialog.h new file mode 100644 index 0000000..81f885a --- /dev/null +++ b/src/SqliteDBProcess/src/FileDialog.h @@ -0,0 +1,104 @@ +#ifndef FILEDIALOG_H +#define FILEDIALOG_H +#include "WBFZExchangePluginAPI.h" +#include + +// +// File Extensions Filters +// - space separated list of file extensions in QString +// - used during import/export +// - passed to QFileDialog to filter files shown based on extension +// +// SQLite DB File Extensions +static const QString FILE_FILTER_SQLDB(QObject::tr("SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3)")); + +// SQLite DB Project File Extensions +static const QString FILE_FILTER_SQLPRJ(QObject::tr("DB Browser for SQLite Project Files (*.sqbpro)")); +static const QString FILE_EXT_SQLPRJ_DEFAULT(".sqbpro"); + +// SQL File Extensions Filter +static const QString FILE_FILTER_SQL(QObject::tr("SQL Files (*.sql)")); +static const QString FILE_EXT_SQL_DEFAULT(".sql"); + +// All Files Extensions Filter +static const QString FILE_FILTER_ALL(QObject::tr("All Files (*)")); + +// Text Files Extensions Filter +static const QString FILE_FILTER_TXT(QObject::tr("Text Files (*.txt)")); +static const QString FILE_EXT_TXT_DEFAULT(".txt"); + +// Comma,Tab,or Delimiter-Separated Values File Extensions Filter +static const QString FILE_FILTER_CSV(QObject::tr("Comma-Separated Values Files (*.csv)")); +static const QString FILE_EXT_CSV_DEFAULT(".csv"); +static const QString FILE_FILTER_TSV(QObject::tr("Tab-Separated Values Files (*.tsv)")); +static const QString FILE_FILTER_DSV(QObject::tr("Delimiter-Separated Values Files (*.dsv)")); +static const QString FILE_FILTER_DAT(QObject::tr("Concordance DAT files (*.dat)")); + +// JSON File Extensions Filter +static const QString FILE_FILTER_JSON(QObject::tr("JSON Files (*.json *.js)")); +static const QString FILE_EXT_JSON_DEFAULT(".json"); + +// XML File Extensions Filter +static const QString FILE_FILTER_XML(QObject::tr("XML Files (*.xml)")); +static const QString FILE_EXT_XML_DEFAULT(".xml"); + +// Binary File Extensions Filter +static const QString FILE_FILTER_BIN(QObject::tr("Binary Files (*.bin *.dat)")); +static const QString FILE_EXT_BIN_DEFAULT(".bin"); + +// Scalar Vector Graphics File Extensions Filter +static const QString FILE_FILTER_SVG(QObject::tr("SVG Files (*.svg)")); +static const QString FILE_EXT_SVG_DEFAULT(".svg"); + +// Hex-Dump File Extension Filter +static const QString FILE_FILTER_HEX(QObject::tr("Hex Dump Files (*.dat *.bin)")); + +// Dynamic/Shared Objects File Extension Filter +static const QString FILE_FILTER_DYN(QObject::tr("Extensions (*.so *.dylib *.dll)")); + +enum FileDialogTypes { + NoSpecificType, + + CreateProjectFile, + OpenProjectFile, + + CreateDatabaseFile, + OpenDatabaseFile, + + CreateSQLFile, + OpenSQLFile, + + OpenCSVFile, + + CreateDataFile, + OpenDataFile, + + OpenExtensionFile, + OpenCertificateFile +}; + +class FileDialog : public QFileDialog +{ + Q_OBJECT + +public: + static QString getOpenFileName(const FileDialogTypes dialogType, QWidget* parent = nullptr, const QString& caption = QString(), + const QString& filter = QString(), QString* selectedFilter = nullptr, + Options options = Options()); + static QStringList getOpenFileNames(const FileDialogTypes dialogType, QWidget* parent = nullptr, const QString& caption = QString(), + const QString& filter = QString(), QString* selectedFilter = nullptr, + Options options = Options()); + static QString getSaveFileName(const FileDialogTypes dialogType, QWidget* parent = nullptr, const QString& caption = QString(), + const QString& filter = QString(), const QString& defaultFileName = QString(), QString* selectedFilter = nullptr, + Options options = Options()); + static QString getExistingDirectory(const FileDialogTypes dialogType, QWidget* parent = nullptr, const QString& caption = QString(), + Options options = Options()); + + static QString getSqlDatabaseFileFilter(); + +private: + static QString getFileDialogPath(const FileDialogTypes dialogType); + static void setFileDialogPath(const FileDialogTypes dialogType, const QString& new_path); +}; + +#endif diff --git a/src/SqliteDBProcess/src/FileExtensionManager.cpp b/src/SqliteDBProcess/src/FileExtensionManager.cpp new file mode 100644 index 0000000..71ce8eb --- /dev/null +++ b/src/SqliteDBProcess/src/FileExtensionManager.cpp @@ -0,0 +1,104 @@ +#include "FileExtensionManager.h" +#include "ui_FileExtensionManager.h" + +#include + +FileExtensionManager::FileExtensionManager(QStringList init, QWidget *parent) : + QDialog(parent), + ui(new Ui::FileExtensionManager) +{ + ui->setupUi(this); + + int i = 0; + for(const QString& itemString : init) + { + QString description = itemString.left(itemString.indexOf('(')).trimmed(); + QString extension = itemString; + extension = extension.remove (0, itemString.indexOf('(')+1).remove(')').simplified().trimmed(); + + QTableWidgetItem *newItemDescription = new QTableWidgetItem(description); + QTableWidgetItem *newItemExtension = new QTableWidgetItem(extension); + ui->tableExtensions->insertRow(i); + ui->tableExtensions->setItem(i, 0, newItemDescription); + ui->tableExtensions->setItem(i, 1, newItemExtension); + i++; + } + + connect(ui->buttonAdd, SIGNAL(clicked(bool)), this, SLOT(addItem())); + connect(ui->buttonRemove, SIGNAL(clicked(bool)), this, SLOT(removeItem())); + + connect(ui->buttonDown, SIGNAL(clicked(bool)), this, SLOT(downItem())); + connect(ui->buttonUp, SIGNAL(clicked(bool)), this, SLOT(upItem())); +} + +FileExtensionManager::~FileExtensionManager() +{ + delete ui; +} + +void FileExtensionManager::addItem() +{ + int i = ui->tableExtensions->rowCount(); + ui->tableExtensions->insertRow(i); + QTableWidgetItem *newItemDescription = new QTableWidgetItem(tr("Description")); + QTableWidgetItem *newItemExtension = new QTableWidgetItem(tr("*.extension")); + ui->tableExtensions->setItem(i, 0, newItemDescription); + ui->tableExtensions->setItem(i, 1, newItemExtension); +} + +void FileExtensionManager::removeItem() +{ + std::set selectedRows; + for (const QTableWidgetItem* item : ui->tableExtensions->selectedItems()) + selectedRows.insert(item->row()); + + for(int row : selectedRows) + ui->tableExtensions->removeRow(row); +} + +void FileExtensionManager::upItem() +{ + if (ui->tableExtensions->selectedItems().isEmpty()) return; + + int selectedRow = ui->tableExtensions->selectedItems().first()->row(); + if(selectedRow == 0) + return; + + QTableWidgetItem *t1, *t2; + t1 = ui->tableExtensions->takeItem(selectedRow, 0); + t2 = ui->tableExtensions->takeItem(selectedRow, 1); + ui->tableExtensions->removeRow(selectedRow); + ui->tableExtensions->insertRow(selectedRow-1); + ui->tableExtensions->setItem(selectedRow-1, 0, t1); + ui->tableExtensions->setItem(selectedRow-1, 1, t2); + ui->tableExtensions->selectRow(selectedRow-1); +} + +void FileExtensionManager::downItem() +{ + if (ui->tableExtensions->selectedItems().isEmpty()) return; + + int selectedRow = ui->tableExtensions->selectedItems().first()->row(); + if(selectedRow == ui->tableExtensions->rowCount() - 1) + return; + + QTableWidgetItem *t1, *t2; + t1 = ui->tableExtensions->takeItem(selectedRow, 0); + t2 = ui->tableExtensions->takeItem(selectedRow, 1); + ui->tableExtensions->removeRow(selectedRow); + ui->tableExtensions->insertRow(selectedRow+1); + ui->tableExtensions->setItem(selectedRow+1, 0, t1); + ui->tableExtensions->setItem(selectedRow+1, 1, t2); + ui->tableExtensions->selectRow(selectedRow+1); +} + +QStringList FileExtensionManager::getDBFileExtensions() const +{ + QStringList result; + for (int i = 0; i < ui->tableExtensions->rowCount(); ++i) + { + result.append(QString("%1 (%2)").arg(ui->tableExtensions->item(i, 0)->text(), ui->tableExtensions->item(i, 1)->text())); + } + return result; +} + diff --git a/src/SqliteDBProcess/src/FileExtensionManager.h b/src/SqliteDBProcess/src/FileExtensionManager.h new file mode 100644 index 0000000..0e1bd21 --- /dev/null +++ b/src/SqliteDBProcess/src/FileExtensionManager.h @@ -0,0 +1,30 @@ +#ifndef FILEEXTENSIONMANAGER_H +#define FILEEXTENSIONMANAGER_H +#include "WBFZExchangePluginAPI.h" +#include + +namespace Ui { +class FileExtensionManager; +} + +class FileExtensionManager : public QDialog +{ + Q_OBJECT + +public: + explicit FileExtensionManager(QStringList init, QWidget *parent = nullptr); + ~FileExtensionManager() override; + + QStringList getDBFileExtensions() const; + +private: + Ui::FileExtensionManager *ui; + +public slots: + void addItem(); + void removeItem(); + void upItem(); + void downItem(); +}; + +#endif // FILEEXTENSIONMANAGER_H diff --git a/src/SqliteDBProcess/src/FileExtensionManager.ui b/src/SqliteDBProcess/src/FileExtensionManager.ui new file mode 100644 index 0000000..691d5b5 --- /dev/null +++ b/src/SqliteDBProcess/src/FileExtensionManager.ui @@ -0,0 +1,153 @@ + + + FileExtensionManager + + + + 0 + 0 + 578 + 463 + + + + File Extension Manager + + + + + + + + &Up + + + + :/icons/up:/icons/up + + + + + + + &Down + + + + :/icons/down:/icons/down + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + &Add + + + + :/icons/field_add:/icons/field_add + + + + + + + &Remove + + + + :/icons/field_delete:/icons/field_delete + + + + + + + + + QAbstractScrollArea::AdjustToContents + + + true + + + 100 + + + 100 + + + + Description + + + + + Extensions + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + + + + + buttonBox + accepted() + FileExtensionManager + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + FileExtensionManager + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/src/SqliteDBProcess/src/FilterLineEdit.cpp b/src/SqliteDBProcess/src/FilterLineEdit.cpp new file mode 100644 index 0000000..73e8e74 --- /dev/null +++ b/src/SqliteDBProcess/src/FilterLineEdit.cpp @@ -0,0 +1,224 @@ +#include "FilterLineEdit.h" +#include "Settings.h" + +#include +#include +#include +#include + +FilterLineEdit::FilterLineEdit(QWidget* parent, std::vector* filters, size_t columnnum) : + QLineEdit(parent), + filterList(filters), + columnNumber(columnnum), + conditional_format(true) +{ + setPlaceholderText(tr("Filter")); + setClearButtonEnabled(true); + setProperty("column", static_cast(columnnum)); // Store the column number for later use + + // Introduce a timer for delaying the signal triggered whenever the user changes the filter value. + // The idea here is that the textChanged() event isn't connected to the update filter slot directly anymore + // but instead there this timer mechanism in between: whenever the user changes the filter the delay timer + // is (re)started. As soon as the user stops typing the timer has a chance to trigger and call the + // delayedSignalTimerTriggered() method which then stops the timer and emits the delayed signal. + delaySignalTimer = new QTimer(this); + delaySignalTimer->setInterval(Settings::getValue("databrowser", "filter_delay").toInt()); // This is the milliseconds of not-typing we want to wait before triggering + connect(this, &FilterLineEdit::textChanged, delaySignalTimer, static_cast(&QTimer::start)); + connect(delaySignalTimer, &QTimer::timeout, this, &FilterLineEdit::delayedSignalTimerTriggered); + + setWhatsThis(tr("These input fields allow you to perform quick filters in the currently selected table.\n" + "By default, the rows containing the input text are filtered out.\n" + "The following operators are also supported:\n" + "%\tWildcard\n" + ">\tGreater than\n" + "<\tLess than\n" + ">=\tEqual to or greater\n" + "<=\tEqual to or less\n" + "=\tEqual to: exact match\n" + "<>\tUnequal: exact inverse match\n" + "x~y\tRange: values between x and y\n" + "/regexp/\tValues matching the regular expression")); + + // Immediately emit the delayed filter value changed signal if the user presses the enter or the return key or + // the line edit widget loses focus + connect(this, &FilterLineEdit::editingFinished, this, &FilterLineEdit::delayedSignalTimerTriggered); + + // Prepare for adding the What's This information and filter helper actions to the context menu + setContextMenuPolicy(Qt::CustomContextMenu); + connect(this, &FilterLineEdit::customContextMenuRequested, this, &FilterLineEdit::showContextMenu); +} + +void FilterLineEdit::delayedSignalTimerTriggered() +{ + // Stop the timer first to avoid triggering in intervals + delaySignalTimer->stop(); + + // Only emit text changed signal if the text has actually changed in comparison to the last emitted signal. This is necessary + // because this method is also called whenever the line edit loses focus and not only when its text has definitely been changed. + if(text() != lastValue) + { + // Emit the delayed signal using the current value + emit delayedTextChanged(text()); + + // Remember this value for the next time + lastValue = text(); + } +} + +void FilterLineEdit::keyReleaseEvent(QKeyEvent* event) +{ + if(event->key() == Qt::Key_Tab) + { + if(filterList && columnNumber < filterList->size() - 1) + { + filterList->at(columnNumber + 1)->setFocus(); + event->accept(); + } + } else if(event->key() == Qt::Key_Backtab) { + if(filterList && columnNumber > 0) + { + filterList->at(columnNumber - 1)->setFocus(); + event->accept(); + } + } +} + +void FilterLineEdit::clear() +{ + // When programatically clearing the line edit's value make sure the effects are applied immediately, i.e. + // bypass the delayed signal timer + QLineEdit::clear(); + delayedSignalTimerTriggered(); +} + +void FilterLineEdit::setText(const QString& text) +{ + // When programatically setting the line edit's value make sure the effects are applied immediately, i.e. + // bypass the delayed signal timer + QLineEdit::setText(text); + delayedSignalTimerTriggered(); +} + +void FilterLineEdit::setFilterHelper(const QString& filterOperator, const QString& operatorSuffix) +{ + setText(filterOperator + "?" + operatorSuffix); + // Select the value for easy editing of the expression + setSelection(filterOperator.length(), 1); +} + +void FilterLineEdit::showContextMenu(const QPoint &pos) +{ + + // This has to be created here, otherwise the set of enabled options would not update accordingly. + QMenu* editContextMenu = createStandardContextMenu(); + editContextMenu->addSeparator(); + + QMenu* filterMenu = editContextMenu->addMenu(tr("Set Filter Expression")); + + QAction* whatsThisAction = new QAction(QIcon(":/icons/whatis"), tr("What's This?"), editContextMenu); + connect(whatsThisAction, &QAction::triggered, [&]() { + QWhatsThis::showText(pos, whatsThis(), this); + }); + + QAction* isNullAction = new QAction(tr("Is NULL"), editContextMenu); + connect(isNullAction, &QAction::triggered, [&]() { + setText("=NULL"); + }); + + QAction* isNotNullAction = new QAction(tr("Is not NULL"), editContextMenu); + connect(isNotNullAction, &QAction::triggered, [&]() { + setText("<>NULL"); + }); + + QAction* isEmptyAction = new QAction(tr("Is empty"), editContextMenu); + connect(isEmptyAction, &QAction::triggered, [&]() { + setText("=''"); + }); + + QAction* isNotEmptyAction = new QAction(tr("Is not empty"), editContextMenu); + connect(isNotEmptyAction, &QAction::triggered, [&]() { + setText("<>''"); + }); + // Simplify this if we ever support a NOT LIKE filter + QAction* notContainingAction = new QAction(tr("Not containing..."), editContextMenu); + connect(notContainingAction, &QAction::triggered, [&]() { + setFilterHelper(QString ("/^((?!"), QString(").)*$/")); + }); + QAction* equalToAction = new QAction(tr("Equal to..."), editContextMenu); + connect(equalToAction, &QAction::triggered, [&]() { + setFilterHelper(QString ("=")); + }); + QAction* notEqualToAction = new QAction(tr("Not equal to..."), editContextMenu); + connect(notEqualToAction, &QAction::triggered, [&]() { + setFilterHelper(QString ("<>")); + }); + QAction* greaterThanAction = new QAction(tr("Greater than..."), editContextMenu); + connect(greaterThanAction, &QAction::triggered, [&]() { + setFilterHelper(QString (">")); + }); + QAction* lessThanAction = new QAction(tr("Less than..."), editContextMenu); + connect(lessThanAction, &QAction::triggered, [&]() { + setFilterHelper(QString ("<")); + }); + QAction* greaterEqualAction = new QAction(tr("Greater or equal..."), editContextMenu); + connect(greaterEqualAction, &QAction::triggered, [&]() { + setFilterHelper(QString (">=")); + }); + QAction* lessEqualAction = new QAction(tr("Less or equal..."), editContextMenu); + connect(lessEqualAction, &QAction::triggered, [&]() { + setFilterHelper(QString ("<=")); + }); + QAction* inRangeAction = new QAction(tr("In range..."), editContextMenu); + connect(inRangeAction, &QAction::triggered, [&]() { + setFilterHelper(QString ("?~")); + }); + + QAction* regexpAction = new QAction(tr("Regular expression..."), editContextMenu); + connect(regexpAction, &QAction::triggered, [&]() { + setFilterHelper(QString ("/"), QString ("/")); + }); + + + if(conditional_format) + { + QAction* conditionalFormatAction; + if (text().isEmpty()) { + conditionalFormatAction = new QAction(QIcon(":/icons/clear_cond_formats"), tr("Clear All Conditional Formats"), editContextMenu); + connect(conditionalFormatAction, &QAction::triggered, [&]() { + emit clearAllCondFormats(); + }); + } else { + conditionalFormatAction = new QAction(QIcon(":/icons/add_cond_format"), tr("Use for Conditional Format"), editContextMenu); + connect(conditionalFormatAction, &QAction::triggered, [&]() { + emit addFilterAsCondFormat(text()); + }); + } + QAction* editCondFormatsAction = new QAction(QIcon(":/icons/edit_cond_formats"), tr("Edit Conditional Formats..."), editContextMenu); + connect(editCondFormatsAction, &QAction::triggered, [&]() { + emit editCondFormats(); + }); + editContextMenu->addSeparator(); + + editContextMenu->addAction(conditionalFormatAction); + editContextMenu->addAction(editCondFormatsAction); + } + + + filterMenu->addAction(whatsThisAction); + filterMenu->addSeparator(); + filterMenu->addAction(isNullAction); + filterMenu->addAction(isNotNullAction); + filterMenu->addAction(isEmptyAction); + filterMenu->addAction(isNotEmptyAction); + filterMenu->addSeparator(); + filterMenu->addAction(notContainingAction); + filterMenu->addAction(equalToAction); + filterMenu->addAction(notEqualToAction); + filterMenu->addAction(greaterThanAction); + filterMenu->addAction(lessThanAction); + filterMenu->addAction(greaterEqualAction); + filterMenu->addAction(lessEqualAction); + filterMenu->addAction(inRangeAction); + filterMenu->addAction(regexpAction); + editContextMenu->exec(mapToGlobal(pos)); +} diff --git a/src/SqliteDBProcess/src/FilterLineEdit.h b/src/SqliteDBProcess/src/FilterLineEdit.h new file mode 100644 index 0000000..945a5c9 --- /dev/null +++ b/src/SqliteDBProcess/src/FilterLineEdit.h @@ -0,0 +1,47 @@ +#ifndef FILTERLINEEDIT_H +#define FILTERLINEEDIT_H +#include "WBFZExchangePluginAPI.h" +#include +#include + +class QTimer; +class QKeyEvent; + +class FilterLineEdit : public QLineEdit +{ + Q_OBJECT + +public: + explicit FilterLineEdit(QWidget* parent, std::vector* filters = nullptr, size_t columnnum = 0); + + // Override methods for programatically changing the value of the line edit + void clear(); + void setText(const QString& text); + + void setConditionFormatContextMenuEnabled(bool enable) { conditional_format = enable; } + +private slots: + void delayedSignalTimerTriggered(); + +signals: + void delayedTextChanged(QString text); + void addFilterAsCondFormat(QString text); + void clearAllCondFormats(); + void editCondFormats(); + +protected: + void keyReleaseEvent(QKeyEvent* event) override; + void setFilterHelper(const QString& filterOperator, const QString& operatorSuffix = QString()); + +private: + std::vector* filterList; + size_t columnNumber; + QTimer* delaySignalTimer; + QString lastValue; + bool conditional_format; + +private slots: + void showContextMenu(const QPoint &pos); +}; + +#endif diff --git a/src/SqliteDBProcess/src/FilterTableHeader.cpp b/src/SqliteDBProcess/src/FilterTableHeader.cpp new file mode 100644 index 0000000..0149e39 --- /dev/null +++ b/src/SqliteDBProcess/src/FilterTableHeader.cpp @@ -0,0 +1,130 @@ +#include "FilterTableHeader.h" +#include "FilterLineEdit.h" + +#include +#include +#include + +FilterTableHeader::FilterTableHeader(QTableView* parent) : + QHeaderView(Qt::Horizontal, parent) +{ + // Activate the click signals to allow sorting + setSectionsClickable(true); + + // But use our own indicators allowing multi-column sorting + setSortIndicatorShown(false); + + // Make sure to not automatically resize the columns according to the contents + setSectionResizeMode(QHeaderView::Interactive); + + // Highlight column headers of selected cells to emulate spreadsheet behaviour + setHighlightSections(true); + + // Do some connects: Basically just resize and reposition the input widgets whenever anything changes + connect(this, &FilterTableHeader::sectionResized, this, &FilterTableHeader::adjustPositions); + connect(parent->horizontalScrollBar(), &QScrollBar::valueChanged, this, &FilterTableHeader::adjustPositions); + connect(parent->verticalScrollBar(), &QScrollBar::valueChanged, this, &FilterTableHeader::adjustPositions); + + // Set custom context menu handling + setContextMenuPolicy(Qt::CustomContextMenu); +} + +void FilterTableHeader::generateFilters(size_t number, bool showFirst) +{ + // Delete all the current filter widgets + qDeleteAll(filterWidgets); + filterWidgets.clear(); + + // And generate a bunch of new ones + for(size_t i=0;i < number; ++i) + { + FilterLineEdit* l = new FilterLineEdit(this, &filterWidgets, i); + if(!showFirst && i == 0) // This hides the first input widget which belongs to the hidden rowid column + l->setVisible(false); + else + l->setVisible(true); + connect(l, &FilterLineEdit::delayedTextChanged, this, &FilterTableHeader::inputChanged); + connect(l, &FilterLineEdit::addFilterAsCondFormat, this, &FilterTableHeader::addFilterAsCondFormat); + connect(l, &FilterLineEdit::clearAllCondFormats, this, &FilterTableHeader::clearAllCondFormats); + connect(l, &FilterLineEdit::editCondFormats, this, &FilterTableHeader::editCondFormats); + filterWidgets.push_back(l); + } + + // Position them correctly + adjustPositions(); +} + +QSize FilterTableHeader::sizeHint() const +{ + // For the size hint just take the value of the standard implementation and add the height of a input widget to it if necessary + QSize s = QHeaderView::sizeHint(); + if(filterWidgets.size()) + s.setHeight(s.height() + filterWidgets.at(0)->sizeHint().height() + 4); // The 4 adds just adds some extra space + return s; +} + +void FilterTableHeader::updateGeometries() +{ + // If there are any input widgets add a viewport margin to the header to generate some empty space for them which is not affected by scrolling + if(filterWidgets.size()) + setViewportMargins(0, 0, 0, filterWidgets.at(0)->sizeHint().height()); + else + setViewportMargins(0, 0, 0, 0); + + // Now just call the parent implementation and reposition the input widgets + QHeaderView::updateGeometries(); + adjustPositions(); +} + +void FilterTableHeader::adjustPositions() +{ + // Loop through all widgets + for(int i=0;i < static_cast(filterWidgets.size()); ++i) + { + // Get the current widget, move it and resize it + QWidget* w = filterWidgets.at(static_cast(i)); + // The two adds some extra space between the header label and the input widget + int y = QHeaderView::sizeHint().height() + 2; + if (QApplication::layoutDirection() == Qt::RightToLeft) + w->move(width() - (sectionPosition(i) + sectionSize(i) - offset()), y); + else + w->move(sectionPosition(i) - offset(), y); + w->resize(sectionSize(i), w->sizeHint().height()); + } +} + +void FilterTableHeader::inputChanged(const QString& new_value) +{ + // Just get the column number and the new value and send them to anybody interested in filter changes + emit filterChanged(sender()->property("column").toUInt(), new_value); +} + +void FilterTableHeader::addFilterAsCondFormat(const QString& filter) +{ + // Just get the column number and the new value and send them to anybody interested in new conditional formatting + emit addCondFormat(sender()->property("column").toUInt(), filter); +} + +void FilterTableHeader::clearAllCondFormats() +{ + // Just get the column number and send it to anybody responsible or interested in clearing conditional formatting + emit allCondFormatsCleared(sender()->property("column").toUInt()); +} + +void FilterTableHeader::editCondFormats() +{ + // Just get the column number and the new value and send them to anybody interested in editting conditional formatting + emit condFormatsEdited(sender()->property("column").toUInt()); +} + +void FilterTableHeader::clearFilters() +{ + for(FilterLineEdit* filterLineEdit : filterWidgets) + filterLineEdit->clear(); +} + +void FilterTableHeader::setFilter(size_t column, const QString& value) +{ + if(column < filterWidgets.size()) + filterWidgets.at(column)->setText(value); +} diff --git a/src/SqliteDBProcess/src/FilterTableHeader.h b/src/SqliteDBProcess/src/FilterTableHeader.h new file mode 100644 index 0000000..6b8c363 --- /dev/null +++ b/src/SqliteDBProcess/src/FilterTableHeader.h @@ -0,0 +1,44 @@ +#ifndef FILTERTABLEHEADER_H +#define FILTERTABLEHEADER_H +#include "WBFZExchangePluginAPI.h" +#include +#include + +class QTableView; +class FilterLineEdit; + +class FilterTableHeader : public QHeaderView +{ + Q_OBJECT + +public: + explicit FilterTableHeader(QTableView* parent = nullptr); + QSize sizeHint() const override; + bool hasFilters() const {return (filterWidgets.size() > 0);} + +public slots: + void generateFilters(size_t number, bool showFirst = false); + void adjustPositions(); + void clearFilters(); + void setFilter(size_t column, const QString& value); + +signals: + void filterChanged(size_t column, QString value); + void addCondFormat(size_t column, QString filter); + void allCondFormatsCleared(size_t column); + void condFormatsEdited(size_t column); + +protected: + void updateGeometries() override; + +private slots: + void inputChanged(const QString& new_value); + void addFilterAsCondFormat(const QString& filter); + void clearAllCondFormats(); + void editCondFormats(); + +private: + std::vector filterWidgets; +}; + +#endif diff --git a/src/SqliteDBProcess/src/FindReplaceDialog.cpp b/src/SqliteDBProcess/src/FindReplaceDialog.cpp new file mode 100644 index 0000000..4279b3f --- /dev/null +++ b/src/SqliteDBProcess/src/FindReplaceDialog.cpp @@ -0,0 +1,227 @@ +#include "FindReplaceDialog.h" +#include "ui_FindReplaceDialog.h" +#include "ExtendedScintilla.h" + +#include + +FindReplaceDialog::FindReplaceDialog(QWidget* parent) + : QDialog(parent), + ui(new Ui::FindReplaceDialog), + m_scintilla(nullptr), + foundIndicatorNumber(0), + findInProgress(false) +{ + // Create UI + ui->setupUi(this); +} + +FindReplaceDialog::~FindReplaceDialog() +{ + delete ui; +} + +void FindReplaceDialog::setExtendedScintilla(ExtendedScintilla* scintilla) +{ + m_scintilla = scintilla; + + // Create indicator for find-all and replace-all occurrences + foundIndicatorNumber = m_scintilla->indicatorDefine(QsciScintilla::StraightBoxIndicator); + m_scintilla->setIndicatorForegroundColor(Qt::magenta, foundIndicatorNumber); + m_scintilla->setIndicatorDrawUnder(true, foundIndicatorNumber); + + bool isWriteable = ! m_scintilla->isReadOnly(); + ui->replaceWithText->setEnabled(isWriteable); + ui->replaceButton->setEnabled(isWriteable); + ui->replaceAllButton->setEnabled(isWriteable); + + connect(m_scintilla, &ExtendedScintilla::destroyed, this, &FindReplaceDialog::hide); + connect(ui->findText, &QLineEdit::editingFinished, this, &FindReplaceDialog::cancelFind); + connect(ui->regexpCheckBox, &QCheckBox::toggled, this, &FindReplaceDialog::cancelFind); + connect(ui->caseCheckBox, &QCheckBox::toggled, this, &FindReplaceDialog::cancelFind); + connect(ui->wholeWordsCheckBox, &QCheckBox::toggled, this, &FindReplaceDialog::cancelFind); + connect(ui->wrapCheckBox, &QCheckBox::toggled, this, &FindReplaceDialog::cancelFind); + connect(ui->backwardsCheckBox, &QCheckBox::toggled, this, &FindReplaceDialog::cancelFind); + connect(ui->selectionCheckBox, &QCheckBox::toggled, this, &FindReplaceDialog::cancelFind); + connect(ui->selectionCheckBox, &QCheckBox::toggled, ui->wrapCheckBox, &QCheckBox::setDisabled); +} + +bool FindReplaceDialog::findFirst(bool wrap, bool forward) +{ + if (ui->selectionCheckBox->isChecked()) + return m_scintilla->findFirstInSelection + (ui->findText->text(), + ui->regexpCheckBox->isChecked(), + ui->caseCheckBox->isChecked(), + ui->wholeWordsCheckBox->isChecked(), + forward, + /* show */ true, + /* posix */ true, + /* cxx11 */ true); + else + return m_scintilla->findFirst + (ui->findText->text(), + ui->regexpCheckBox->isChecked(), + ui->caseCheckBox->isChecked(), + ui->wholeWordsCheckBox->isChecked(), + wrap, + forward, + /* line */ -1, + /* index */ -1, + /* show */ true, + /* posix */ true, + /* cxx11 */ true); +} + +bool FindReplaceDialog::findNext() +{ + clearIndicators(); + + if (findInProgress) + findInProgress = m_scintilla->findNext(); + else + findInProgress = findFirst(ui->wrapCheckBox->isChecked(), + !ui->backwardsCheckBox->isChecked()); + + if (!findInProgress) + ui->messageLabel->setText(tr("The searched text was not found")); + + return findInProgress; + +} + +void FindReplaceDialog::showFindReplaceDialog(bool hasReplace) +{ + ui->replaceWithText->setVisible(hasReplace); + ui->replaceButton->setVisible(hasReplace); + ui->replaceWithLabel->setVisible(hasReplace); + ui->replaceAllButton->setVisible(hasReplace); + show(); +} + +void FindReplaceDialog::show() +{ + ui->findText->setFocus(); + + // If there is multi-line selected text set automatically the selection + // check box. If it's only part of a line, use it as text to find. + if (m_scintilla->hasSelectedText()) + if (m_scintilla->selectedText().contains("\n")) + ui->selectionCheckBox->setChecked(true); + else { + ui->findText->setText(m_scintilla->selectedText()); + ui->selectionCheckBox->setChecked(false); + } + else + ui->selectionCheckBox->setChecked(false); + + ui->findText->selectAll(); + QDialog::show(); +} + +void FindReplaceDialog::replace() +{ + if (m_scintilla->hasSelectedText()) + m_scintilla->replace(ui->replaceWithText->text()); + findNext(); +} + +void FindReplaceDialog::indicateSelection() +{ + int fromRow, fromIndex, toRow, toIndex; + m_scintilla->getSelection(&fromRow, &fromIndex, &toRow, &toIndex); + m_scintilla->fillIndicatorRange(fromRow, fromIndex, toRow, toIndex, foundIndicatorNumber); +} + +void FindReplaceDialog::searchAll(bool replace) +{ + clearIndicators(); + if (!ui->selectionCheckBox->isChecked()) + m_scintilla->setCursorPosition(0, 0); + + bool found = findFirst(/* wrap */ false, /* fordward */ true); + + int occurrences = 0; + while (found) { + if (replace) + m_scintilla->replace(ui->replaceWithText->text()); + indicateSelection(); + ++occurrences; + found = m_scintilla->findNext(); + } + + if (!ui->selectionCheckBox->isChecked()) + m_scintilla->clearSelection(); + + QString message; + switch (occurrences) { + case 0: + message = tr("The searched text was not found."); + break; + case 1: + if (replace) + message = tr("The searched text was replaced one time."); + else + message = tr("The searched text was found one time."); + break; + default: + if (replace) + message = tr("The searched text was replaced %1 times.").arg(occurrences); + else + message = tr("The searched text was found %1 times.").arg(occurrences); + + break; + } + + ui->messageLabel->setText(message); +} + +void FindReplaceDialog::findAll() +{ + searchAll(/* replace */ false); +} + +void FindReplaceDialog::replaceAll() +{ + searchAll(/* replace */ true); +} + +void FindReplaceDialog::cancelFind() +{ + m_scintilla->findFirst(QString(), false, false, false, false); + clearIndicators(); + findInProgress = false; + ui->messageLabel->setText(""); +} +void FindReplaceDialog::help() +{ + QWhatsThis::enterWhatsThisMode(); +} + +void FindReplaceDialog::clearIndicators() +{ + m_scintilla->clearIndicatorRange(0, 0, m_scintilla->lines(), m_scintilla->lineLength(m_scintilla->lines()), foundIndicatorNumber); + ui->messageLabel->setText(""); +} + +void FindReplaceDialog::close() +{ + m_scintilla->clearSelection(); + // Reset any previous find so it does not interfere with the next time + // the dialog is open. + cancelFind(); + QDialog::close(); +} + +void FindReplaceDialog::buttonBox_clicked(QAbstractButton* button) +{ + if (button == ui->buttonBox->button(QDialogButtonBox::Help)) + help(); + else if (button == ui->buttonBox->button(QDialogButtonBox::Close)) + close(); + +} +void FindReplaceDialog::reject() +{ + close(); + QDialog::reject(); +} diff --git a/src/SqliteDBProcess/src/FindReplaceDialog.h b/src/SqliteDBProcess/src/FindReplaceDialog.h new file mode 100644 index 0000000..ee32beb --- /dev/null +++ b/src/SqliteDBProcess/src/FindReplaceDialog.h @@ -0,0 +1,48 @@ +#ifndef FindReplaceDialog_H +#define FindReplaceDialog_H +#include "WBFZExchangePluginAPI.h" +#include + +class QAbstractButton; + +class ExtendedScintilla; + +namespace Ui { +class FindReplaceDialog; +} + +class FindReplaceDialog : public QDialog +{ + Q_OBJECT + +public: + + explicit FindReplaceDialog(QWidget* parent = nullptr); + ~FindReplaceDialog() override; + void setExtendedScintilla(ExtendedScintilla* scintilla); + void show(); + void showFindReplaceDialog(bool hasReplace); + +private slots: + bool findNext(); + void replace(); + void findAll(); + void replaceAll(); + void cancelFind(); + void help(); + void close(); + void reject() override; + void buttonBox_clicked(QAbstractButton* button); + +private: + bool findFirst(bool wrap, bool forward); + void searchAll(bool replace); + void indicateSelection(); + void clearIndicators(); + Ui::FindReplaceDialog* ui; + ExtendedScintilla* m_scintilla; + int foundIndicatorNumber; + bool findInProgress; +}; + +#endif diff --git a/src/SqliteDBProcess/src/FindReplaceDialog.ui b/src/SqliteDBProcess/src/FindReplaceDialog.ui new file mode 100644 index 0000000..25a0a51 --- /dev/null +++ b/src/SqliteDBProcess/src/FindReplaceDialog.ui @@ -0,0 +1,322 @@ + + + FindReplaceDialog + + + + 0 + 0 + 451 + 288 + + + + Find and Replace + + + + + + true + + + + 0 + + + 0 + + + 0 + + + 0 + + + + + QFormLayout::ExpandingFieldsGrow + + + + + Fi&nd text: + + + findText + + + + + + + + + + Re&place with: + + + replaceWithText + + + + + + + + + + Match &exact case + + + false + + + + + + + Match &only whole words + + + + + + + When enabled, the search continues from the other end when it reaches one end of the page + + + &Wrap around + + + + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + + + Search &backwards + + + + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + + + &Selection only + + + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + Use regular e&xpressions + + + + + + + + + 7 + + + QLayout::SetDefaultConstraint + + + 0 + + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + + + &Find Next + + + F3 + + + + + + + &Replace + + + + + + + Highlight all the occurrences of the text in the page + + + F&ind All + + + + + + + Replace all the occurrences of the text in the page + + + Replace &All + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + + + 75 + true + + + + + + + Qt::AlignCenter + + + + + + + QDialogButtonBox::Close|QDialogButtonBox::Help + + + + + + + findText + replaceWithText + caseCheckBox + wholeWordsCheckBox + wrapCheckBox + backwardsCheckBox + selectionCheckBox + regexpCheckBox + findNextButton + replaceButton + findAllButton + replaceAllButton + + + + + findNextButton + clicked() + FindReplaceDialog + findNext() + + + 225 + 242 + + + 225 + 132 + + + + + replaceButton + clicked() + FindReplaceDialog + replace() + + + 225 + 242 + + + 225 + 132 + + + + + findAllButton + clicked() + FindReplaceDialog + findAll() + + + 225 + 242 + + + 225 + 132 + + + + + replaceAllButton + clicked() + FindReplaceDialog + replaceAll() + + + 225 + 242 + + + 225 + 132 + + + + + buttonBox + clicked(QAbstractButton*) + FindReplaceDialog + buttonBox_clicked(QAbstractButton*) + + + 225 + 265 + + + 225 + 143 + + + + + + updatePreview() + checkInput() + updateSelection(bool) + matchSimilar() + + diff --git a/src/SqliteDBProcess/src/ForeignKeyEditorDelegate.cpp b/src/SqliteDBProcess/src/ForeignKeyEditorDelegate.cpp new file mode 100644 index 0000000..edf4ce5 --- /dev/null +++ b/src/SqliteDBProcess/src/ForeignKeyEditorDelegate.cpp @@ -0,0 +1,191 @@ +#include "WBFZExchangePluginAPI.h" +#include "sqlitedb.h" +#include "ForeignKeyEditorDelegate.h" + +#include +#include +#include +#include + +class ForeignKeyEditor : public QWidget +{ + Q_OBJECT + +public: + explicit ForeignKeyEditor(QWidget* parent = nullptr) + : QWidget(parent) + , tablesComboBox(new QComboBox(this)) + , idsComboBox(new QComboBox(this)) + , clauseEdit(new QLineEdit(this)) + , m_btnReset(new QPushButton(tr("&Reset"), this)) + { + idsComboBox->setSizeAdjustPolicy(QComboBox::AdjustToContents); + clauseEdit->setPlaceholderText(tr("Foreign key clauses (ON UPDATE, ON DELETE etc.)")); + + QHBoxLayout* layout = new QHBoxLayout(this); + layout->addWidget(tablesComboBox); + layout->addWidget(idsComboBox); + layout->addWidget(clauseEdit); + layout->addWidget(m_btnReset); + layout->setSpacing(0); + layout->setMargin(0); + setLayout(layout); + + connect(m_btnReset, &QPushButton::clicked, [&] + { + tablesComboBox->setCurrentIndex(-1); + idsComboBox->setCurrentIndex(-1); + clauseEdit->clear(); + }); + + connect(tablesComboBox, static_cast(&QComboBox::currentIndexChanged), + [=](int index) + { + // reset ids combo box + idsComboBox->setCurrentIndex(-1); + + // disable clauses editor if none of tables is selected + bool enableClausesEditor = (index!= -1); + clauseEdit->setEnabled(enableClausesEditor); + }); + } + + QString getSql() const + { + if (tablesComboBox->currentText().isEmpty()) + return QString(); + + const QString table = sqlb::escapeIdentifier(tablesComboBox->currentText()); + const QString clauses = clauseEdit->text(); + + QString id = idsComboBox->currentText(); + if (!id.isEmpty()) + id = QString("(%1)").arg(sqlb::escapeIdentifier(id)); + + return QString("%1%2 %3").arg( + table, + id, + clauses) + .trimmed(); + } + + QComboBox* tablesComboBox; + QComboBox* idsComboBox; + QLineEdit* clauseEdit; // for ON CASCADE and such + +private: + QPushButton* m_btnReset; +}; + +ForeignKeyEditorDelegate::ForeignKeyEditorDelegate(const DBBrowserDB& db, sqlb::Table& table, QObject* parent) + : QStyledItemDelegate(parent) + , m_db(db) + , m_table(table) +{ + for(const auto& it : m_db.schemata) + { + for(const auto& jt : it.second) + { + // Don't insert the current table into the list. The name and fields of the current table are always taken from the m_table reference + if(jt.second->type() == sqlb::Object::Types::Table && jt.second->name() != m_table.name()) + m_tablesIds.insert({jt.second->name(), std::dynamic_pointer_cast(jt.second)->fieldNames()}); + } + } +} + +QWidget* ForeignKeyEditorDelegate::createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const +{ + Q_UNUSED(option) + Q_UNUSED(index) + + ForeignKeyEditor* editor = new ForeignKeyEditor(parent); + editor->setAutoFillBackground(true); + + connect(editor->tablesComboBox, static_cast(&QComboBox::currentIndexChanged), + [=](const QString& tableName) + { + QComboBox* box = editor->idsComboBox; + box->clear(); + box->addItem(QString()); // for those heroes who don't like to specify key explicitly + + // For recursive foreign keys get the field list from the m_table reference. For other foreign keys from the prepared field lists. + if(tableName.toStdString() == m_table.name()) + { + for(const auto& n : m_table.fieldNames()) + box->addItem(QString::fromStdString(n)); + } else { + for(const auto& n : m_tablesIds[tableName.toStdString()]) + box->addItem(QString::fromStdString(n)); + } + + + box->setCurrentIndex(0); + }); + + editor->tablesComboBox->clear(); + for(const auto& i : m_tablesIds) + editor->tablesComboBox->addItem(QString::fromStdString(i.first)); + editor->tablesComboBox->addItem(QString::fromStdString(m_table.name())); // For recursive foreign keys + + return editor; +} + +void ForeignKeyEditorDelegate::setEditorData(QWidget* editor, const QModelIndex& index) const +{ + ForeignKeyEditor* fkEditor = static_cast(editor); + + size_t column = static_cast(index.row()); // weird? I know right + const sqlb::Field& field = m_table.fields.at(column); + auto fk = std::dynamic_pointer_cast(m_table.constraint({field.name()}, sqlb::Constraint::ForeignKeyConstraintType)); + if (fk) { + fkEditor->tablesComboBox->setCurrentText(QString::fromStdString(fk->table())); + fkEditor->clauseEdit->setText(QString::fromStdString(fk->constraint())); + if (!fk->columns().empty()) + fkEditor->idsComboBox->setCurrentText(QString::fromStdString(fk->columns().front())); + } else { + fkEditor->tablesComboBox->setCurrentIndex(-1); + } +} + +void ForeignKeyEditorDelegate::setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& index) const +{ + ForeignKeyEditor* fkEditor = static_cast(editor); + QString sql = fkEditor->getSql(); + + size_t column = static_cast(index.row()); + const sqlb::Field& field = m_table.fields.at(column); + if (sql.isEmpty()) { + // Remove the foreign key + m_table.removeConstraints({field.name()}, sqlb::Constraint::ConstraintTypes::ForeignKeyConstraintType); + } else { + // Set the foreign key + sqlb::ForeignKeyClause* fk = new sqlb::ForeignKeyClause; + + const QString table = fkEditor->tablesComboBox->currentText(); + const std::string id = fkEditor->idsComboBox->currentText().toStdString(); + const QString clause = fkEditor->clauseEdit->text(); + + fk->setTable(table.toStdString()); + fk->setColumnList({ field.name() }); + + if (!id.empty()) + fk->setColumns({id}); + + if (!clause.trimmed().isEmpty()) { + fk->setConstraint(clause.toStdString()); + } + + m_table.setConstraint(sqlb::ConstraintPtr(fk)); + } + + model->setData(index, sql); +} + +void ForeignKeyEditorDelegate::updateEditorGeometry(QWidget* editor, const QStyleOptionViewItem& option, const QModelIndex& index) const +{ + Q_UNUSED(index) + + editor->setGeometry(option.rect); +} + +#include "ForeignKeyEditorDelegate.moc" diff --git a/src/SqliteDBProcess/src/ForeignKeyEditorDelegate.h b/src/SqliteDBProcess/src/ForeignKeyEditorDelegate.h new file mode 100644 index 0000000..98e4fcd --- /dev/null +++ b/src/SqliteDBProcess/src/ForeignKeyEditorDelegate.h @@ -0,0 +1,34 @@ +#ifndef FOREIGNKEYDELEGATE_H +#define FOREIGNKEYDELEGATE_H +#include "WBFZExchangePluginAPI.h" +#include +#include +#include +#include + +class DBBrowserDB; + +namespace sqlb +{ +class Table; +} + +class ForeignKeyEditorDelegate : public QStyledItemDelegate +{ + Q_OBJECT + +public: + explicit ForeignKeyEditorDelegate(const DBBrowserDB& db, sqlb::Table& table, QObject* parent = nullptr); + + QWidget* createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const override; + void setEditorData(QWidget* editor, const QModelIndex& index) const override; + void setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& index) const override; + void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const override; + +private: + const DBBrowserDB& m_db; + sqlb::Table& m_table; + mutable std::unordered_map> m_tablesIds; +}; + +#endif // FOREIGNKEYDELEGATE_H diff --git a/src/SqliteDBProcess/src/IconCache.cpp b/src/SqliteDBProcess/src/IconCache.cpp new file mode 100644 index 0000000..fcc219f --- /dev/null +++ b/src/SqliteDBProcess/src/IconCache.cpp @@ -0,0 +1,22 @@ +#include "IconCache.h" + +QIcon IconCache::null_icon; +std::unordered_map IconCache::icons; + +const QIcon& IconCache::get(const std::string& name) +{ + // Check if we already have an icon object with that name in the cache. If so, just return that + auto it = icons.find(name); + if(it != icons.end()) + return it->second; + + // If now, try to load an icon with that name and insert it into the cache + QIcon icon(":/icons/" + QString::fromStdString(name)); + auto ins = icons.insert({name, icon}); + + // If the insertion was successful, return the inserted icon object. If it was not, return a null icon. + if(ins.second) + return ins.first->second; + else + return null_icon; +} diff --git a/src/SqliteDBProcess/src/IconCache.h b/src/SqliteDBProcess/src/IconCache.h new file mode 100644 index 0000000..73200f5 --- /dev/null +++ b/src/SqliteDBProcess/src/IconCache.h @@ -0,0 +1,21 @@ +#ifndef ICONCACHE_H +#define ICONCACHE_H + +#include + +#include +#include + +class IconCache +{ +public: + IconCache() = delete; + + static const QIcon& get(const std::string& name); + +private: + static QIcon null_icon; + static std::unordered_map icons; +}; + +#endif diff --git a/src/SqliteDBProcess/src/ImportCsvDialog.cpp b/src/SqliteDBProcess/src/ImportCsvDialog.cpp new file mode 100644 index 0000000..4ff98f4 --- /dev/null +++ b/src/SqliteDBProcess/src/ImportCsvDialog.cpp @@ -0,0 +1,843 @@ +#include "ImportCsvDialog.h" +#include "ui_ImportCsvDialog.h" +#include "sqlitedb.h" +#include "csvparser.h" +#include "sqlite.h" +#include "Settings.h" +#include "Data.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +// Enable this line to show basic performance stats after each imported CSV file. Please keep in mind that while these +// numbers might help to estimate the performance of the algorithm, this is not a proper benchmark. +//#define CSV_BENCHMARK + +#ifdef CSV_BENCHMARK +#include +#endif + +ImportCsvDialog::ImportCsvDialog(const std::vector& filenames, DBBrowserDB* db, QWidget* parent) + : QDialog(parent), + ui(new Ui::ImportCsvDialog), + csvFilenames(filenames), + pdb(db) +{ + ui->setupUi(this); + + // Hide "Advanced" section of the settings + toggleAdvancedSection(false); + + // Get the actual file name out of the provided path and use it as the default table name for import + // For importing several files at once, the fields have to be the same so we can safely use the first + QFileInfo file(filenames.front()); + ui->editName->setText(file.baseName()); + + // Create a list of all available encodings and create an auto completion list from them + encodingCompleter = new QCompleter(toStringList(QTextCodec::availableCodecs()), this); + encodingCompleter->setCaseSensitivity(Qt::CaseInsensitive); + ui->editCustomEncoding->setCompleter(encodingCompleter); + + // Load last used settings and apply them + ui->checkboxHeader->blockSignals(true); + ui->checkBoxTrimFields->blockSignals(true); + ui->checkBoxSeparateTables->blockSignals(true); + ui->comboSeparator->blockSignals(true); + ui->comboQuote->blockSignals(true); + ui->comboEncoding->blockSignals(true); + + ui->checkboxHeader->setChecked(Settings::getValue("importcsv", "firstrowheader").toBool()); + ui->checkBoxTrimFields->setChecked(Settings::getValue("importcsv", "trimfields").toBool()); + ui->checkBoxSeparateTables->setChecked(Settings::getValue("importcsv", "separatetables").toBool()); + setSeparatorChar(Settings::getValue("importcsv", "separator").toChar()); + setQuoteChar(Settings::getValue("importcsv", "quotecharacter").toChar()); + setEncoding(Settings::getValue("importcsv", "encoding").toString()); + + ui->checkboxHeader->blockSignals(false); + ui->checkBoxTrimFields->blockSignals(false); + ui->checkBoxSeparateTables->blockSignals(false); + ui->comboSeparator->blockSignals(false); + ui->comboQuote->blockSignals(false); + ui->comboEncoding->blockSignals(false); + + // Prepare and show interface depending on how many files are selected + if (csvFilenames.size() > 1) + { + ui->separateTables->setVisible(true); + ui->checkBoxSeparateTables->setVisible(true); + ui->filePickerBlock->setVisible(true); + selectFiles(); + } + else if (csvFilenames.size() == 1) + { + ui->separateTables->setVisible(false); + ui->checkBoxSeparateTables->setVisible(false); + ui->filePickerBlock->setVisible(false); + } + + selectedFile = csvFilenames.front(); + updatePreview(); + checkInput(); +} + +ImportCsvDialog::~ImportCsvDialog() +{ + delete ui; +} + +namespace { +void rollback( + ImportCsvDialog* dialog, + DBBrowserDB* pdb, + DBBrowserDB::db_pointer_type* db_ptr, + const std::string& savepointName, + size_t nRecord, + const QString& message) +{ + // Release DB handle. This needs to be done before calling revertToSavepoint as that function needs to be able to acquire its own handle. + if(db_ptr) + *db_ptr = nullptr; + + QApplication::restoreOverrideCursor(); // restore original cursor + if(!message.isEmpty()) + { + QString sCSVInfo = QObject::tr("Error importing data"); + if(nRecord) + sCSVInfo += QObject::tr(" from record number %1").arg(nRecord); + QString error = sCSVInfo + QObject::tr(".\n%1").arg(message); + QMessageBox::warning(dialog, QApplication::applicationName(), error); + } + pdb->revertToSavepoint(savepointName); +} +} + +class CSVImportProgress : public CSVProgress +{ +public: + explicit CSVImportProgress(int64_t filesize) + : m_pProgressDlg(new QProgressDialog( + QObject::tr("Importing CSV file..."), + QObject::tr("Cancel"), + 0, + 10000)), + totalFileSize(filesize) + { + m_pProgressDlg->setWindowModality(Qt::ApplicationModal); + } + + CSVImportProgress(const CSVImportProgress&) = delete; + bool operator=(const CSVImportProgress&) = delete; + + void start() override + { + m_pProgressDlg->show(); + } + + bool update(int64_t pos) override + { + m_pProgressDlg->setValue(static_cast((static_cast(pos) / static_cast(totalFileSize)) * 10000.0f)); + qApp->processEvents(); + + return !m_pProgressDlg->wasCanceled(); + } + + void end() override + { + m_pProgressDlg->hide(); + } + +private: + std::unique_ptr m_pProgressDlg; + + int64_t totalFileSize; +}; + +void ImportCsvDialog::accept() +{ + // Save settings + Settings::setValue("importcsv", "firstrowheader", ui->checkboxHeader->isChecked()); + Settings::setValue("importcsv", "separator", currentSeparatorChar()); + Settings::setValue("importcsv", "quotecharacter", currentQuoteChar()); + Settings::setValue("importcsv", "trimfields", ui->checkBoxTrimFields->isChecked()); + Settings::setValue("importcsv", "separatetables", ui->checkBoxSeparateTables->isChecked()); + Settings::setValue("importcsv", "encoding", currentEncoding()); + + // Get all the selected files and start the import + if (ui->filePickerBlock->isVisible()) + { + bool filesLeft = false; + + // Loop through all the rows in the file picker list + for (int i = 0; i < ui->filePicker->count(); i++) { + auto item = ui->filePicker->item(i); + int row = ui->filePicker->row(item); + + // Check for files that aren't hidden (=imported) yet but that are checked and thus marked for import + if (item->checkState() == Qt::Checked && !ui->filePicker->isRowHidden(row)) { + if(!importCsv(item->data(Qt::DisplayRole).toString(), item->data(Qt::UserRole).toString())) + { + // If we're supposed to cancel the import process, we always have at least one file left (the cancelled one). Also + // we stop looping through the rest of the CSV files. + filesLeft = true; + break; + } + + // Hide each row after it's done + ui->filePicker->setRowHidden(row, true); + } else if(!ui->filePicker->isRowHidden(row)) { + // Check for files that aren't hidden yet but that aren't checked either. These are files that are still left + // to be imported + filesLeft = true; + } + } + + // Don't close the window if there are still files left to be imported + if(filesLeft) + { + QApplication::restoreOverrideCursor(); // restore original cursor + return; + } + } else { + importCsv(csvFilenames.front()); + } + + QApplication::restoreOverrideCursor(); // restore original cursor + QDialog::accept(); +} + +void ImportCsvDialog::updatePreview() +{ + // Show/hide custom quote/separator input fields + ui->editCustomQuote->setVisible(ui->comboQuote->currentIndex() == ui->comboQuote->count() - OtherPrintable); + ui->editCustomSeparator->setVisible(ui->comboSeparator->currentIndex() == ui->comboSeparator->count() - OtherPrintable); + ui->spinBoxQuote->setVisible(ui->comboQuote->currentIndex() == ui->comboQuote->count() - OtherCode); + ui->spinBoxSeparator->setVisible(ui->comboSeparator->currentIndex() == ui->comboSeparator->count() - OtherCode); + + ui->editCustomEncoding->setVisible(ui->comboEncoding->currentIndex() == ui->comboEncoding->count()-1); + + // Reset preview widget + ui->tablePreview->clear(); + ui->tablePreview->setColumnCount(0); + ui->tablePreview->setRowCount(0); + + // Analyse CSV file + sqlb::FieldVector fieldList = generateFieldList(selectedFile); + + // Reset preview widget + ui->tablePreview->clear(); + ui->tablePreview->setColumnCount(static_cast(fieldList.size())); + + // Exit if there are no lines to preview at all + if(fieldList.size() == 0) + return; + + // Set horizontal header data + QStringList horizontalHeader; + for(const sqlb::Field& field : fieldList) + horizontalHeader.push_back(QString::fromStdString(field.name())); + ui->tablePreview->setHorizontalHeaderLabels(horizontalHeader); + + // Parse file + parseCSV(selectedFile, [this](size_t rowNum, const CSVRow& rowData) -> bool { + // Skip first row if it is to be used as header + if(rowNum == 0 && ui->checkboxHeader->isChecked()) + return true; + + // Decrease the row number by one if the header checkbox is checked to take into account that the first row was used for the table header labels + // and therefore all data rows move one row up. + if(ui->checkboxHeader->isChecked()) + rowNum--; + + // Fill data section + ui->tablePreview->setRowCount(ui->tablePreview->rowCount() + 1); + for(size_t i=0;itablePreview->setVerticalHeaderItem(static_cast(rowNum), new QTableWidgetItem(QString::number(rowNum + 1))); + + // Add table item. Limit data length to a maximum character count to avoid a sluggish ui-> And it's very unlikely that this + // many characters are going to be needed anyway for a preview. + uint64_t data_length = rowData.fields[i].data_length; + if(data_length > 1024) + data_length = 1024; + ui->tablePreview->setItem( + static_cast(rowNum), + static_cast(i), + new QTableWidgetItem(QString::fromUtf8(rowData.fields[i].data, static_cast(data_length)))); + } + + return true; + }, 20); +} + +void ImportCsvDialog::checkInput() +{ + bool allowImporting = false; + if (ui->filePickerBlock->isVisible()) { + bool checkedItem = false; + for (int i = 0; i < ui->filePicker->count(); i++) { + if (ui->filePicker->item(i)->checkState() == Qt::Checked) checkedItem = true; + } + allowImporting = !ui->editName->text().isEmpty() && checkedItem; + } else { + allowImporting = !ui->editName->text().isEmpty(); + } + + if (ui->filePicker->currentItem() && ui->checkBoxSeparateTables->isChecked()) { + ui->filePicker->currentItem()->setData(Qt::UserRole, ui->editName->text()); + } + + ui->matchSimilar->setEnabled(ui->filePicker->currentItem() != nullptr); + ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(allowImporting); +} + +void ImportCsvDialog::selectFiles() +{ + for (const auto& fileName : csvFilenames) { + auto fInfo = QFileInfo(fileName); + auto item = new QListWidgetItem(); + item->setText(fileName); + item->setData(Qt::UserRole, fInfo.baseName()); + item->setCheckState(Qt::Checked); + ui->filePicker->addItem(item); + } + + connect(ui->filePicker, &QListWidget::itemSelectionChanged, this, &ImportCsvDialog::updateSelectedFilePreview); +} + +void ImportCsvDialog::updateSelectedFilePreview() +{ + auto selection = ui->filePicker->selectedItems(); + if(!selection.isEmpty()) + { + auto item = selection.first(); + selectedFile = item->data(Qt::DisplayRole).toString(); + ui->editName->setText(item->data(Qt::UserRole).toString()); + updatePreview(); + checkInput(); + } +} + +void ImportCsvDialog::updateSelection(bool selected) +{ + for (int i = 0; i < ui->filePicker->count(); i++) + ui->filePicker->item(i)->setCheckState(selected ? Qt::Checked : Qt::Unchecked); + ui->toggleSelected->setText(selected ? tr("Deselect All") : tr("Select All")); + checkInput(); +} + +void ImportCsvDialog::matchSimilar() +{ + auto selectedHeader = generateFieldList(ui->filePicker->currentItem()->data(Qt::DisplayRole).toString()); + + for (int i = 0; i < ui->filePicker->count(); i++) + { + auto item = ui->filePicker->item(i); + auto header = generateFieldList(item->data(Qt::DisplayRole).toString()); + + if (selectedHeader.size() == header.size()) + { + bool matchingHeader = std::equal(selectedHeader.begin(), selectedHeader.end(), header.begin(), + [](const sqlb::Field& item1, const sqlb::Field& item2) -> bool { + return (item1.name() == item2.name()); + }); + if (matchingHeader) { + item->setCheckState(Qt::Checked); + item->setBackgroundColor(Qt::green); + } + } + else + { + item->setCheckState(Qt::Unchecked); + item->setBackground(Qt::white); + } + } + + checkInput(); +} + +CSVParser::ParserResult ImportCsvDialog::parseCSV(const QString &fileName, std::function rowFunction, size_t count) const +{ + // Parse all csv data + QFile file(fileName); + file.open(QIODevice::ReadOnly); + + CSVParser csv(ui->checkBoxTrimFields->isChecked(), toUtf8(currentSeparatorChar()), toUtf8(currentQuoteChar())); + + // Only show progress dialog if we parse all rows. The assumption here is that if a row count limit has been set, it won't be a very high one. + if(count == 0) + csv.setCSVProgress(new CSVImportProgress(file.size())); + + QTextStream tstream(&file); + tstream.setCodec(currentEncoding().toUtf8()); + + return csv.parse(rowFunction, tstream, count); +} + +sqlb::FieldVector ImportCsvDialog::generateFieldList(const QString& filename) const +{ + sqlb::FieldVector fieldList; // List of fields in the file + + // Parse the first couple of records of the CSV file and only analyse them + parseCSV(filename, [this, &fieldList](size_t rowNum, const CSVRow& rowData) -> bool { + // Has this row more columns than the previous one? Then add more fields to the field list as necessary. + for(size_t i=fieldList.size();icheckboxHeader->isChecked()) + { + // Take field name from CSV and remove invalid characters + fieldname = std::string(rowData.fields[i].data, rowData.fields[i].data_length); + fieldname.erase(std::remove(fieldname.begin(), fieldname.end(), '`'), fieldname.end()); + fieldname.erase(std::remove(fieldname.begin(), fieldname.end(), ' '), fieldname.end()); + fieldname.erase(std::remove(fieldname.begin(), fieldname.end(), '"'), fieldname.end()); + fieldname.erase(std::remove(fieldname.begin(), fieldname.end(), '\''), fieldname.end()); + fieldname.erase(std::remove(fieldname.begin(), fieldname.end(), ','), fieldname.end()); + fieldname.erase(std::remove(fieldname.begin(), fieldname.end(), ';'), fieldname.end()); + } + + // If we don't have a field name by now, generate one + if(fieldname.empty()) + fieldname = "field" + std::to_string(i + 1); + + // Add field to the column list. For now we set the data type to nothing but this might be overwritten later in the automatic + // type detection code. + fieldList.emplace_back(fieldname, ""); + } + + // Try to find out a data type for each column. Skip the header row if there is one. + if(!ui->checkNoTypeDetection->isChecked() && !(rowNum == 0 && ui->checkboxHeader->isChecked())) + { + for(size_t i=0;i(rowData.fields[i].data_length)); + + // Check if the content can be converted to an integer or to float + bool convert_to_int, convert_to_float; + content.toInt(&convert_to_int); + content.toFloat(&convert_to_float); + + // Set new data type. If we don't find any better data type, we fall back to the TEXT data type + std::string new_type = "TEXT"; + if(old_type == "INTEGER" && !convert_to_int && convert_to_float) // So far it's integer, but now it's only convertible to float + new_type = "REAL"; + else if(old_type.empty() && convert_to_int) // No type yet, but this bit is convertible to integer + new_type = "INTEGER"; + else if(old_type.empty() && convert_to_float) // No type yet and only convertible to float (less 'difficult' than integer) + new_type = "REAL"; + else if(old_type == "REAL" && convert_to_float) // It was float so far and still is + new_type = "INTEGER"; + else if(old_type == "INTEGER" && convert_to_int) // It was integer so far and still is + new_type = "INTEGER"; + + fieldList.at(i).setType(new_type); + } + } + } + + // All good + return true; + }, 20); + + return fieldList; +} + +bool ImportCsvDialog::importCsv(const QString& fileName, const QString& name) +{ + // This function returns a boolean to indicate whether to continue or abort the import process. It's worth keeping in mind that + // this doesn't correlate 100% to this import being a success or not. The general rule is that if there was some internal error + // when writing to the database, we stop the entire import process. Also, if the user has clicked Cancel during the import of one + // file, we stop the entire import process, i.e. also the import of the remaining files. Furthermore, if the user clicks the Cancel + // button in a message box we (obviously) cancel the import process, too. In all other cases we return true to indicate that the import + // should continue. + +#ifdef CSV_BENCHMARK + // If benchmark mode is enabled start measuring the performance now + qint64 timesRowFunction = 0; + QElapsedTimer timer; + timer.start(); +#endif + + QString tableName; + + if (csvFilenames.size() > 1 && ui->checkBoxSeparateTables->isChecked()) { + if (name.isEmpty()) { + QFileInfo fileInfo(fileName); + tableName = fileInfo.baseName(); + } else { + tableName = name; + } + } else { + tableName = ui->editName->text(); + } + + // Analyse CSV file + sqlb::FieldVector fieldList = generateFieldList(fileName); + if(fieldList.size() == 0) + return true; + + // Are we importing into an existing table? + bool importToExistingTable = false; + const sqlb::ObjectPtr obj = pdb->getObjectByName(sqlb::ObjectIdentifier("main", tableName.toStdString())); + if(obj && obj->type() == sqlb::Object::Types::Table) + { + if(std::dynamic_pointer_cast(obj)->fields.size() != fieldList.size()) + { + QMessageBox::warning(this, QApplication::applicationName(), + tr("There is already a table named '%1' and an import into an existing table is only possible if the number of columns match.").arg(tableName)); + return true; + } else { + // Only ask whether to import into the existing table if the 'Yes all' button has not been clicked (yet) + if(!dontAskForExistingTableAgain.contains(tableName)) + { + int answer = QMessageBox::question(this, QApplication::applicationName(), + tr("There is already a table named '%1'. Do you want to import the data into it?").arg(tableName), + QMessageBox::Yes | QMessageBox::No | QMessageBox::YesAll | QMessageBox::Cancel, QMessageBox::No); + + // Stop now if the No button has been clicked + if(answer == QMessageBox::No) + return true; + + // Stop now if the Cancel button has been clicked. But also indicate, that the entire import process should be stopped. + if(answer == QMessageBox::Cancel) + return false; + + // If the 'Yes all' button has been clicked, save that for later + if(answer == QMessageBox::YesAll) + dontAskForExistingTableAgain.append(tableName); + } + + // If we reached this point, this means that either the 'Yes' or the 'Yes all' button has been clicked or that no message box was shown at all + // because the 'Yes all' button has been clicked for a previous file + importToExistingTable = true; + } + } + + // Create a savepoint, so we can rollback in case of any errors during importing + // db needs to be saved or an error will occur + std::string restorepointName = pdb->generateSavepointName("csvimport"); + if(!pdb->setSavepoint(restorepointName)) + { + rollback(this, pdb, nullptr, restorepointName, 0, tr("Creating restore point failed: %1").arg(pdb->lastError())); + return false; + } + + // Create table + std::vector nullValues; + std::vector failOnMissingFieldList; + bool ignoreDefaults = ui->checkIgnoreDefaults->isChecked(); + bool failOnMissing = ui->checkFailOnMissing->isChecked(); + if(!importToExistingTable) + { + if(!pdb->createTable(sqlb::ObjectIdentifier("main", tableName.toStdString()), fieldList)) + { + rollback(this, pdb, nullptr, restorepointName, 0, tr("Creating the table failed: %1").arg(pdb->lastError())); + return false; + } + + // If we're creating the table in this import session, don't ask the user if it's okay to import more data into it. It seems + // safe to just assume that's what they want. + dontAskForExistingTableAgain.append(tableName); + } else { + // Importing into an existing table. So find out something about it's structure. + + // Prepare the values for each table column that are to be inserted if the field in the CSV file is empty. Depending on the data type + // and the constraints of a field, we need to handle this case differently. + sqlb::TablePtr tbl = pdb->getObjectByName(sqlb::ObjectIdentifier("main", tableName.toStdString())); + if(tbl) + { + for(const sqlb::Field& f : tbl->fields) + { + // For determining the value for empty fields we follow a set of rules + + // Normally we don't have to fail the import when importing an empty field. This last value of the vector + // is changed to true later if we actually do want to fail the import for this field. + failOnMissingFieldList.push_back(false); + + // If a field has a default value, that gets priority over everything else. + // Exception: if the user wants to ignore default values we never use them. + if(!ignoreDefaults && !f.defaultValue().empty()) + { + nullValues.push_back(f.defaultValue().c_str()); + } else { + // If it has no default value, check if the field is NOT NULL + if(f.notnull()) + { + // The field is NOT NULL + + // If this is an integer column insert 0. Otherwise insert an empty string. + if(f.isInteger()) + nullValues.push_back("0"); + else + nullValues.push_back(""); + + // If the user wants to fail the import, remember this field + if(failOnMissing) + failOnMissingFieldList.back() = true; + } else { + // The field is not NOT NULL (stupid double negation here! NULL values are allowed in this case) + + // Just insert a NULL value + nullValues.push_back(QByteArray()); + } + } + } + } + } + + // Prepare the INSERT statement. The prepared statement can then be reused for each row to insert + std::string sQuery = "INSERT " + currentOnConflictStrategy() + " INTO " + sqlb::escapeIdentifier(tableName.toStdString()) + " VALUES("; + for(size_t i=1;i<=fieldList.size();i++) + sQuery += "?" + std::to_string(i) + ","; + sQuery.pop_back(); // Remove last comma + sQuery.append(")"); + sqlite3_stmt* stmt; + auto pDb = pdb->get(tr("importing CSV")); + sqlite3_prepare_v2(pDb.get(), sQuery.c_str(), static_cast(sQuery.size()), &stmt, nullptr); + + // Parse entire file + size_t lastRowNum = 0; + CSVParser::ParserResult result = parseCSV(fileName, [&](size_t rowNum, const CSVRow& rowData) -> bool { + // Process the parser results row by row + +#ifdef CSV_BENCHMARK + qint64 timeAtStartOfRowFunction = timer.elapsed(); +#endif + + // Save row num for later use. This is used in the case of an error to tell the user in which row the error ocurred + lastRowNum = rowNum; + + // If this is the first row and we want to use the first row as table header, skip it now because this is the data import, not the header parsing + if(rowNum == 0 && ui->checkboxHeader->isChecked()) + return true; + + // Bind all values + for(size_t i=0;i i) + { + // Do we want to fail when trying to import an empty value into this field? Then exit with an error. + if(failOnMissingFieldList.at(i)) + return false; + + // This is an empty value. We'll need to look up how to handle it depending on the field to be inserted into. + const QByteArray& val = nullValues.at(i); + if(!val.isNull()) // No need to bind NULL values here as that is the default bound value in SQLite + sqlite3_bind_text(stmt, static_cast(i)+1, val, val.size(), SQLITE_STATIC); + // When importing into a new table, use the missing values setting directly + } else if(!importToExistingTable && rowData.fields[i].data_length == 0) { + // No need to bind NULL values here as that is the default bound value in SQLite + } else { + // This is a non-empty value, or we want to insert the empty string. Just add it to the statement + sqlite3_bind_text(stmt, static_cast(i)+1, rowData.fields[i].data, static_cast(rowData.fields[i].data_length), SQLITE_STATIC); + } + } + + // Insert row + if(sqlite3_step(stmt) != SQLITE_DONE) + return false; + + // Reset statement for next use. Also reset all bindings to NULL. This is important, so we don't need to bind missing columns or empty values in NULL + // columns manually. + sqlite3_reset(stmt); + sqlite3_clear_bindings(stmt); + +#ifdef CSV_BENCHMARK + timesRowFunction += timer.elapsed() - timeAtStartOfRowFunction; +#endif + + return true; + }); + + // Success? + if(result != CSVParser::ParserResult::ParserResultSuccess) + { + // Some error occurred or the user cancelled the action + + // Rollback the entire import. If the action was cancelled, don't show an error message. If it errored, show an error message. + if(result == CSVParser::ParserResult::ParserResultCancelled) + { + sqlite3_finalize(stmt); + rollback(this, pdb, &pDb, restorepointName, 0, QString()); + return false; + } else { + QString error(sqlite3_errmsg(pDb.get())); + sqlite3_finalize(stmt); + rollback(this, pdb, &pDb, restorepointName, lastRowNum, tr("Inserting row failed: %1").arg(error)); + return false; + } + } + + // Clean up prepared statement + sqlite3_finalize(stmt); + +#ifdef CSV_BENCHMARK + QMessageBox::information(this, qApp->applicationName(), + tr("Importing the file '%1' took %2ms. Of this %3ms were spent in the row function.") + .arg(fileName) + .arg(timer.elapsed()) + .arg(timesRowFunction)); +#endif + + return true; +} + +void ImportCsvDialog::setQuoteChar(QChar c) +{ + QComboBox* combo = ui->comboQuote; + int index = combo->findText(QString(c)); + ui->spinBoxQuote->setValue(c.unicode()); + if(index == -1) + { + if(c.isPrint()) + { + combo->setCurrentIndex(combo->count() - OtherPrintable); + ui->editCustomQuote->setText(QString(c)); + } + else + { + combo->setCurrentIndex(combo->count() - OtherCode); + } + } + else + { + combo->setCurrentIndex(index); + } +} + +QChar ImportCsvDialog::currentQuoteChar() const +{ + QString value; + + // The last item in the combobox is the 'Other' item; if it is selected return the text of the line edit field instead + if(ui->comboQuote->currentIndex() == ui->comboQuote->count() - OtherPrintable) + value = ui->editCustomQuote->text().length() ? ui->editCustomQuote->text() : ""; + else if(ui->comboQuote->currentIndex() == ui->comboQuote->count() - OtherCode) + value = QString(QChar(ui->spinBoxQuote->value())); + else if(ui->comboQuote->currentText().length()) + value = ui->comboQuote->currentText(); + + return value.size() ? value.at(0) : QChar(); +} + +void ImportCsvDialog::setSeparatorChar(QChar c) +{ + QComboBox* combo = ui->comboSeparator; + QString sText = c == '\t' ? QString("Tab") : QString(c); + int index = combo->findText(sText); + ui->spinBoxSeparator->setValue(c.unicode()); + if(index == -1) + { + if(c.isPrint()) + { + combo->setCurrentIndex(combo->count() - OtherPrintable); + ui->editCustomSeparator->setText(QString(c)); + } + else + { + combo->setCurrentIndex(combo->count() - OtherCode); + } + } + else + { + combo->setCurrentIndex(index); + } +} + +QChar ImportCsvDialog::currentSeparatorChar() const +{ + QString value; + + // The last options in the combobox are the 'Other (*)' items; + // if one of them is selected return the text or code of the corresponding field instead + if(ui->comboSeparator->currentIndex() == ui->comboSeparator->count() - OtherPrintable) + value = ui->editCustomSeparator->text().length() ? ui->editCustomSeparator->text() : ""; + else if(ui->comboSeparator->currentIndex() == ui->comboSeparator->count() - OtherCode) + value = QString(QChar(ui->spinBoxSeparator->value())); + else + value = ui->comboSeparator->currentText() == tr("Tab") ? "\t" : ui->comboSeparator->currentText(); + + return value.size() ? value.at(0) : QChar(); +} + +void ImportCsvDialog::setEncoding(const QString& sEnc) +{ + QComboBox* combo = ui->comboEncoding; + int index = combo->findText(sEnc); + if(index == -1) + { + combo->setCurrentIndex(combo->count() - 1); + ui->editCustomEncoding->setText(sEnc); + } + else + { + combo->setCurrentIndex(index); + } +} + +QString ImportCsvDialog::currentEncoding() const +{ + // The last item in the combobox is the 'Other' item; if it is selected return the text of the line edit field instead + if(ui->comboEncoding->currentIndex() == ui->comboEncoding->count()-1) + return ui->editCustomEncoding->text().length() ? ui->editCustomEncoding->text() : "UTF-8"; + else + return ui->comboEncoding->currentText(); +} + +std::string ImportCsvDialog::currentOnConflictStrategy() const +{ + switch(ui->comboOnConflictStrategy->currentIndex()) + { + case 1: + return "OR IGNORE"; + case 2: + return "OR REPLACE"; + default: + return {}; + } +} + +void ImportCsvDialog::toggleAdvancedSection(bool show) +{ + ui->labelNoTypeDetection->setVisible(show); + ui->checkNoTypeDetection->setVisible(show); + ui->labelFailOnMissing->setVisible(show); + ui->checkFailOnMissing->setVisible(show); + ui->labelIgnoreDefaults->setVisible(show); + ui->checkIgnoreDefaults->setVisible(show); + ui->labelOnConflictStrategy->setVisible(show); + ui->comboOnConflictStrategy->setVisible(show); +} + +char32_t ImportCsvDialog::toUtf8(const QString& s) const +{ + if(s.isEmpty()) + return 0; + + QByteArray ba = s.toUtf8(); + + char32_t result = 0; + for(int i=std::min(ba.size()-1,3);i>=0;i--) + result = (result << 8) + static_cast(ba.at(i)); + + return result; +} diff --git a/src/SqliteDBProcess/src/ImportCsvDialog.h b/src/SqliteDBProcess/src/ImportCsvDialog.h new file mode 100644 index 0000000..22e9edc --- /dev/null +++ b/src/SqliteDBProcess/src/ImportCsvDialog.h @@ -0,0 +1,67 @@ +#ifndef IMPORTCSVDIALOG_H +#define IMPORTCSVDIALOG_H +#include "WBFZExchangePluginAPI.h" +#include "csvparser.h" +#include "sql/sqlitetypes.h" + +#include +#include + +class DBBrowserDB; +class QCompleter; + +namespace Ui { +class ImportCsvDialog; +} + +class ImportCsvDialog : public QDialog +{ + Q_OBJECT + +public: + explicit ImportCsvDialog(const std::vector& filenames, DBBrowserDB* db, QWidget* parent = nullptr); + ~ImportCsvDialog() override; + +private slots: + void accept() override; + void updatePreview(); + void checkInput(); + void selectFiles(); + void updateSelectedFilePreview(); + void updateSelection(bool); + void matchSimilar(); + void toggleAdvancedSection(bool show); + +private: + + // Positions for combos starting at the bottom + enum {OtherCode = 1, + OtherPrintable = 2}; + + Ui::ImportCsvDialog* ui; + std::vector csvFilenames; + QString selectedFile; + DBBrowserDB* pdb; + QCompleter* encodingCompleter; + QStringList dontAskForExistingTableAgain; + + CSVParser::ParserResult parseCSV(const QString& fileName, std::function rowFunction, size_t count = 0) const; + sqlb::FieldVector generateFieldList(const QString& filename) const; + + bool importCsv(const QString& f, const QString& n = QString()); + + void setQuoteChar(QChar c); + QChar currentQuoteChar() const; + + void setSeparatorChar(QChar c); + QChar currentSeparatorChar() const; + + void setEncoding(const QString& sEnc); + QString currentEncoding() const; + + std::string currentOnConflictStrategy() const; + + char32_t toUtf8(const QString& s) const; +}; + +#endif diff --git a/src/SqliteDBProcess/src/ImportCsvDialog.ui b/src/SqliteDBProcess/src/ImportCsvDialog.ui new file mode 100644 index 0000000..c470c8d --- /dev/null +++ b/src/SqliteDBProcess/src/ImportCsvDialog.ui @@ -0,0 +1,786 @@ + + + ImportCsvDialog + + + + 0 + 0 + 788 + 717 + + + + Import CSV file + + + + + + QFormLayout::ExpandingFieldsGrow + + + + + Table na&me + + + editName + + + + + + + + + + &Column names in first line + + + checkboxHeader + + + + + + + + + + + + + + Field &separator + + + comboSeparator + + + + + + + + + + , + + + + + ; + + + + + Tab + + + + + | + + + + + Other (printable) + + + + + Other (code) + + + + + + + + 1 + + + + + + + 1114112 + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + &Quote character + + + comboQuote + + + + + + + + + + " + + + + + ' + + + + + + + + + + Other (printable) + + + + + Other (code) + + + + + + + + 1 + + + + + + + 1114112 + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + &Encoding + + + comboEncoding + + + + + + + + + + UTF-8 + + + + + UTF-16 + + + + + ISO-8859-1 + + + + + Other + + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + Trim fields? + + + checkBoxTrimFields + + + + + + + + + + true + + + + + + + Separate tables + + + checkBoxSeparateTables + + + + + + + + + + + + + + Advanced + + + + :/icons/down:/icons/down + + + true + + + + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + + + + + + + Ignore default &values + + + checkIgnoreDefaults + + + + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + + + + + + + Fail on missing values + + + checkFailOnMissing + + + + + + + Disable data type detection + + + checkNoTypeDetection + + + + + + + Disable the automatic data type detection when creating a new table. + + + + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + + + + Abort import + + + + + Ignore row + + + + + Replace existing row + + + + + + + + Conflict strategy + + + comboOnConflictStrategy + + + + + + + + + Qt::Vertical + + + false + + + + true + + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + + + 7 + + + QLayout::SetDefaultConstraint + + + 0 + + + + + Deselect All + + + true + + + true + + + + + + + false + + + Match Similar + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + editName + checkboxHeader + comboSeparator + editCustomSeparator + comboQuote + editCustomQuote + comboEncoding + editCustomEncoding + checkBoxTrimFields + checkBoxSeparateTables + buttonAdvanced + checkIgnoreDefaults + checkNoTypeDetection + checkFailOnMissing + comboOnConflictStrategy + filePicker + toggleSelected + matchSimilar + tablePreview + + + + + + + comboSeparator + currentIndexChanged(int) + ImportCsvDialog + updatePreview() + + + 245 + 92 + + + 445 + 64 + + + + + editName + textChanged(QString) + ImportCsvDialog + checkInput() + + + 609 + 13 + + + 631 + 45 + + + + + editCustomSeparator + textChanged(QString) + ImportCsvDialog + updatePreview() + + + 511 + 92 + + + 577 + 76 + + + + + editCustomQuote + textChanged(QString) + ImportCsvDialog + updatePreview() + + + 511 + 126 + + + 530 + 90 + + + + + editCustomEncoding + textChanged(QString) + ImportCsvDialog + updatePreview() + + + 524 + 160 + + + 540 + 133 + + + + + checkBoxTrimFields + toggled(bool) + ImportCsvDialog + updatePreview() + + + 192 + 182 + + + 368 + 244 + + + + + comboEncoding + currentIndexChanged(int) + ImportCsvDialog + updatePreview() + + + 271 + 160 + + + 572 + 121 + + + + + checkboxHeader + toggled(bool) + ImportCsvDialog + updatePreview() + + + 192 + 56 + + + 354 + 45 + + + + + toggleSelected + toggled(bool) + ImportCsvDialog + updateSelection(bool) + + + 777 + 385 + + + 368 + 244 + + + + + comboQuote + currentIndexChanged(int) + ImportCsvDialog + updatePreview() + + + 245 + 126 + + + 350 + 88 + + + + + buttonBox + accepted() + ImportCsvDialog + accept() + + + 281 + 707 + + + 157 + 274 + + + + + buttonBox + rejected() + ImportCsvDialog + reject() + + + 349 + 707 + + + 286 + 274 + + + + + checkBoxSeparateTables + toggled(bool) + ImportCsvDialog + checkInput() + + + 192 + 206 + + + 368 + 244 + + + + + matchSimilar + pressed() + ImportCsvDialog + matchSimilar() + + + 777 + 418 + + + 368 + 244 + + + + + buttonAdvanced + toggled(bool) + ImportCsvDialog + toggleAdvancedSection(bool) + + + 265 + 241 + + + 393 + 358 + + + + + spinBoxQuote + valueChanged(int) + ImportCsvDialog + updatePreview() + + + 529 + 111 + + + 393 + 358 + + + + + spinBoxSeparator + valueChanged(int) + ImportCsvDialog + updatePreview() + + + 529 + 77 + + + 393 + 358 + + + + + + updatePreview() + checkInput() + updateSelection(bool) + matchSimilar() + toggleAdvancedSection(bool) + + diff --git a/src/SqliteDBProcess/src/Palette.cpp b/src/SqliteDBProcess/src/Palette.cpp new file mode 100644 index 0000000..61e8389 --- /dev/null +++ b/src/SqliteDBProcess/src/Palette.cpp @@ -0,0 +1,94 @@ +#include "Palette.h" + +#include + +Palette::Palette() + : m_lastColourIndex(0) +{ +} + +QColor Palette::nextSerialColor(bool dark) +{ + if (dark) { + switch(m_lastColourIndex++) + { + case 0: + return QColor(0, 69, 134); + case 1: + return QColor(255, 66, 14); + case 2: + return QColor(255, 211, 32); + case 3: + return QColor(87, 157, 28); + case 4: + return QColor(126, 0, 33); + case 5: + return QColor(131, 202, 255); + case 6: + return QColor(49, 64, 4); + case 7: + return QColor(174, 207, 0); + case 8: + return QColor(75, 31, 111); + case 9: + return QColor(255, 149, 14); + case 10: + return QColor(197, 00, 11); + case 11: + + // Since this is the last colour in our table, reset the counter back + // to the first colour + m_lastColourIndex = 0; + + return QColor(0, 132, 209); + default: + // NOTE: This shouldn't happen! + m_lastColourIndex = 0; + return QColor(0, 0, 0); + } + } else { + // TODO: review the bright colours + switch(m_lastColourIndex++) + { + case 0: + return QColor(Qt::yellow); + case 1: + return QColor(Qt::cyan); + case 2: + return QColor(Qt::green); + case 3: + return QColor(Qt::magenta); + case 4: + return QColor(Qt::lightGray); + case 5: + return QColor("beige"); + case 6: + return QColor("lightblue"); + case 7: + return QColor("turquoise"); + case 8: + return QColor("mediumspringgreen"); + case 9: + return QColor("lightskyblue"); + case 10: + return QColor("moccasin"); + case 11: + + // Since this is the last colour in our table, reset the counter back + // to the first colour + m_lastColourIndex = 0; + + return QColor("pink"); + default: + // NOTE: This shouldn't happen! + return QColor(0, 0, 0); + } + } +} + +bool Palette::appHasDarkTheme() +{ + QColor backgroundColour = QPalette().color(QPalette::Active, QPalette::Base); + QColor foregroundColour = QPalette().color(QPalette::Active, QPalette::Text); + return backgroundColour.value() < foregroundColour.value(); +} diff --git a/src/SqliteDBProcess/src/Palette.h b/src/SqliteDBProcess/src/Palette.h new file mode 100644 index 0000000..1106b30 --- /dev/null +++ b/src/SqliteDBProcess/src/Palette.h @@ -0,0 +1,21 @@ +#ifndef PALETTE_H +#define PALETTE_H + +#include + +// Class providing series of colours in a given dark or light side of +// the spectrum. +class Palette +{ +public: + Palette(); + + QColor nextSerialColor(bool dark = true); + + static bool appHasDarkTheme(); + +private: + int m_lastColourIndex; +}; + +#endif diff --git a/src/SqliteDBProcess/src/PlotDock.cpp b/src/SqliteDBProcess/src/PlotDock.cpp new file mode 100644 index 0000000..d0e9afa --- /dev/null +++ b/src/SqliteDBProcess/src/PlotDock.cpp @@ -0,0 +1,1003 @@ +#include "PlotDock.h" +#include "ui_PlotDock.h" +#include "Settings.h" +#include "sqlitetablemodel.h" +#include "FileDialog.h" +#include "TableBrowser.h" // Just for BrowseDataTableSettings, not for the actual table browser class + +#include +#include +#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) +#include +#endif + +// Enable this line to show the most basic performance stats after pressing the fetch-all-data button. Please keep in mind that while these +// numbers might help to estimate the performance of the data loading procedure, this is not a proper benchmark. +//#define LOAD_DATA_BENCHMARK + +#ifdef LOAD_DATA_BENCHMARK +#include +#endif + +static int random_number(int from, int to) +{ +#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) + return QRandomGenerator::global()->bounded(from, to); +#else + return qrand() % to + from; +#endif +} + +PlotDock::PlotDock(QWidget* parent) + : QDialog(parent), + ui(new Ui::PlotDock), + m_currentPlotModel(nullptr), + m_currentTableSettings(nullptr), + m_showLegend(false), + m_stackedBars(false) +{ + ui->setupUi(this); + + // Init widgets + ui->treePlotColumns->setSelectionMode(QAbstractItemView::NoSelection); + + // Restore state + ui->splitterForPlot->restoreState(Settings::getValue("PlotDock", "splitterSize").toByteArray()); + ui->comboLineType->setCurrentIndex(Settings::getValue("PlotDock", "lineType").toInt()); + ui->comboPointShape->setCurrentIndex(Settings::getValue("PlotDock", "pointShape").toInt()); + + // Connect signals + connect(ui->treePlotColumns, &QTreeWidget::itemChanged, this, &PlotDock::on_treePlotColumns_itemChanged); + connect(ui->plotWidget, &QCustomPlot::selectionChangedByUser, this, &PlotDock::selectionChanged); + + // connect slots that takes care that when an axis is selected, only that direction can be dragged and zoomed: + connect(ui->plotWidget, &QCustomPlot::mousePress, this, &PlotDock::mousePress); + connect(ui->plotWidget, &QCustomPlot::mouseWheel, this, &PlotDock::mouseWheel); + + // Enable: click on items to select them, Ctrl+Click for multi-selection, mouse-wheel for zooming and mouse drag for + // changing the visible range. + // Select one axis for zoom and drag applying only to that orientation. + ui->plotWidget->setInteractions(QCP::iSelectPlottables | QCP::iMultiSelect | QCP::iRangeZoom | QCP::iRangeDrag | QCP::iSelectAxes); + ui->plotWidget->setSelectionRectMode(QCP::srmNone); + + QShortcut* shortcutCopy = new QShortcut(QKeySequence::Copy, ui->plotWidget, nullptr, nullptr, Qt::WidgetShortcut); + connect(shortcutCopy, &QShortcut::activated, this, &PlotDock::copy); + + QShortcut* shortcutPrint = new QShortcut(QKeySequence::Print, ui->plotWidget, nullptr, nullptr, Qt::WidgetShortcut); + connect(shortcutPrint, &QShortcut::activated, this, &PlotDock::openPrintDialog); + + ui->plotWidget->setContextMenuPolicy(Qt::CustomContextMenu); + + // Set up context menu + m_contextMenu = new QMenu(this); + + QAction* copyAction = new QAction(QIcon(":/icons/copy"), tr("Copy"), m_contextMenu); + copyAction->setShortcut(shortcutCopy->key()); + m_contextMenu->addAction(copyAction); + connect(copyAction, &QAction::triggered, [&]() { + copy(); + }); + + QAction* printAction = new QAction(QIcon(":/icons/print"), tr("Print..."), m_contextMenu); + printAction->setShortcut(shortcutPrint->key()); + m_contextMenu->addAction(printAction); + connect(printAction, &QAction::triggered, [&]() { + openPrintDialog(); + }); + + QAction* showLegendAction = new QAction(tr("Show legend"), m_contextMenu); + showLegendAction->setCheckable(true); + m_contextMenu->addAction(showLegendAction); + + connect(showLegendAction, &QAction::toggled, this, &PlotDock::toggleLegendVisible); + + QAction* stackedBarsAction = new QAction(tr("Stacked bars"), m_contextMenu); + stackedBarsAction->setCheckable(true); + m_contextMenu->addAction(stackedBarsAction); + + connect(stackedBarsAction, &QAction::toggled, this, &PlotDock::toggleStackedBars); + + connect(ui->plotWidget, &QTableView::customContextMenuRequested, + [=](const QPoint& pos) { + // Show menu + m_contextMenu->popup(ui->plotWidget->mapToGlobal(pos)); + }); + + // Initialise the y axes and plotcolumn indices for y axes + yAxes = {ui->plotWidget->yAxis, ui->plotWidget->yAxis2}; + PlotColumnY = {PlotColumnY1, PlotColumnY2}; +} + +PlotDock::~PlotDock() +{ + // Save state + Settings::setValue("PlotDock", "splitterSize", ui->splitterForPlot->saveState()); + Settings::setValue("PlotDock", "lineType", ui->comboLineType->currentIndex()); + Settings::setValue("PlotDock", "pointShape", ui->comboPointShape->currentIndex()); + + // Finally, delete all widgets + delete ui; +} + +void PlotDock::updatePlot(SqliteTableModel* model, BrowseDataTableSettings* settings, bool update, bool keepOrResetSelection) +{ + // Each column has an id that we use internally, starting from 0. However, at the beginning of the columns list we want to add + // the virtual 'Row #' column which needs a separate unique id for internal use. This id is defined here as -1. + const int RowNumId = -1; + + // add columns to x/y selection tree widget + if(update) + { + // Store pointer to the current browse table settings in the main window + m_currentTableSettings = settings; + + // disable tree plot columns item changed updates + ui->treePlotColumns->blockSignals(true); + + m_currentPlotModel = model; + + // save current selected columns, so we can restore them after the update + QString sItemX; // selected X column + QList> mapItemsY = {QMap(), QMap()}; + + if(keepOrResetSelection) + { + // Store the currently selected plot columns to restore them later + for(int i = 0; i < ui->treePlotColumns->topLevelItemCount(); ++i) + { + QTreeWidgetItem* item = ui->treePlotColumns->topLevelItem(i); + if(item->checkState(PlotColumnX) == Qt::Checked) + sItemX = item->text(PlotColumnField); + + for(int y_ind = 0; y_ind < 2; y_ind++) + if(item->checkState(PlotColumnY[y_ind]) == Qt::Checked) + mapItemsY[y_ind][item->text(PlotColumnField)] = PlotSettings(0, 0, item->backgroundColor(PlotColumnY[y_ind]), item->checkState(PlotColumnY[y_ind]) == Qt::Checked); + + } + } else { + // Get the plot columns to select from the stored browse table information + sItemX = m_currentTableSettings->plotXAxis; + mapItemsY[0] = m_currentTableSettings->plotYAxes[0]; + mapItemsY[1] = m_currentTableSettings->plotYAxes[1]; + } + + ui->treePlotColumns->clear(); + + if(model) + { + // Add each column with a supported data type to the column selection view + for(int i=0;icolumnCount();++i) + { + QVariant::Type columntype = guessDataType(model, i); + if(columntype != QVariant::Invalid) + { + QTreeWidgetItem* columnitem = new QTreeWidgetItem(ui->treePlotColumns); + + switch (columntype) { + case QVariant::DateTime: + columnitem->setText(PlotColumnType, tr("Date/Time")); + break; + case QVariant::Date: + columnitem->setText(PlotColumnType, tr("Date")); + break; + case QVariant::Time: + columnitem->setText(PlotColumnType, tr("Time")); + break; + case QVariant::Double: + columnitem->setText(PlotColumnType, tr("Numeric")); + break; + case QVariant::String: + columnitem->setText(PlotColumnType, tr("Label")); + break; + default: + // This is not actually expected + columnitem->setText(PlotColumnType, tr("Invalid")); + } + + // Store the model column index in the PlotColumnField and the type + // in the PlotColumnType, both using the User Role. + columnitem->setData(PlotColumnField, Qt::UserRole, i); + columnitem->setData(PlotColumnType, Qt::UserRole, static_cast(columntype)); + columnitem->setText(PlotColumnField, model->headerData(i, Qt::Horizontal, Qt::EditRole).toString()); + + // restore previous check state + for(int y_ind = 0; y_ind < 2; y_ind++) + { + if(mapItemsY[y_ind].contains(columnitem->text(PlotColumnField))) + { + columnitem->setCheckState(PlotColumnY[y_ind], mapItemsY[y_ind][columnitem->text(PlotColumnField)].active ? Qt::Checked : Qt::Unchecked); + columnitem->setBackgroundColor(PlotColumnY[y_ind], mapItemsY[y_ind][columnitem->text(PlotColumnField)].colour); + } else { + if (columntype == QVariant::Double) + columnitem->setCheckState(PlotColumnY[y_ind], Qt::Unchecked); + } + } + + if(sItemX == columnitem->text(PlotColumnField)) + columnitem->setCheckState(PlotColumnX, Qt::Checked); + else + columnitem->setCheckState(PlotColumnX, Qt::Unchecked); + } + } + + ui->treePlotColumns->resizeColumnToContents(PlotColumnField); + + // Add a row number column at the beginning of the column list, but only when there were (other) columns added + if(ui->treePlotColumns->topLevelItemCount()) + { + QTreeWidgetItem* columnitem = new QTreeWidgetItem(ui->treePlotColumns); + + // Just set RowNumId in the user role information field here to somehow indicate what column this is + columnitem->setData(PlotColumnField, Qt::UserRole, RowNumId); + columnitem->setText(PlotColumnField, tr("Row #")); + columnitem->setData(PlotColumnType, Qt::UserRole, static_cast(QVariant::Double)); + columnitem->setText(PlotColumnType, tr("Numeric")); + + // restore previous check state + for(int y_ind = 0; y_ind < 2; y_ind++) + { + if(mapItemsY[y_ind].contains(columnitem->text(PlotColumnField))) + { + columnitem->setCheckState(PlotColumnY[y_ind], mapItemsY[y_ind][columnitem->text(PlotColumnField)].active ? Qt::Checked : Qt::Unchecked); + columnitem->setBackgroundColor(PlotColumnY[y_ind], mapItemsY[y_ind][columnitem->text(PlotColumnField)].colour); + } else { + columnitem->setCheckState(PlotColumnY[y_ind], Qt::Unchecked); + } + } + + if(sItemX == columnitem->text(PlotColumnField)) + columnitem->setCheckState(PlotColumnX, Qt::Checked); + else + columnitem->setCheckState(PlotColumnX, Qt::Unchecked); + + ui->treePlotColumns->takeTopLevelItem(ui->treePlotColumns->indexOfTopLevelItem(columnitem)); + ui->treePlotColumns->insertTopLevelItem(0, columnitem); + } + } + + yAxes[0]->setLabel("Y1"); + yAxes[1]->setLabel("Y2"); + ui->plotWidget->xAxis->setLabel("X"); + ui->treePlotColumns->blockSignals(false); + } + + // search for the x axis select + QTreeWidgetItem* xitem = nullptr; + for(int i = 0; i < ui->treePlotColumns->topLevelItemCount(); ++i) + { + xitem = ui->treePlotColumns->topLevelItem(i); + if(xitem->checkState(PlotColumnX) == Qt::Checked) + break; + + xitem = nullptr; + } + + QList yAxisLabels = {QStringList(), QStringList()}; + + // Clear graphs and axis labels + ui->plotWidget->clearPlottables(); + ui->plotWidget->xAxis->setLabel(QString()); + yAxes[0]->setLabel(QString()); + yAxes[1]->setLabel(QString()); + + if(xitem) + { + // regain the model column index and the datatype + // right now datatype is only important for X axis (Y is always numeric) + int x = xitem->data(PlotColumnField, Qt::UserRole).toInt(); + int xtype = xitem->data(PlotColumnType, Qt::UserRole).toInt(); + + ui->plotWidget->xAxis->setTickLabelRotation(0); + + // check if we have a x axis with datetime data + switch (xtype) { + case QVariant::Date: { + QSharedPointer ticker(new QCPAxisTickerDateTime); + ticker->setDateTimeFormat("yyyy-MM-dd"); + ui->plotWidget->xAxis->setTicker(ticker); + break; + } + case QVariant::DateTime: { + QSharedPointer ticker(new QCPAxisTickerDateTime); + ticker->setDateTimeFormat("yyyy-MM-dd\nhh:mm:ss"); + ui->plotWidget->xAxis->setTicker(ticker); + break; + } + case QVariant::Time: { + QSharedPointer ticker(new QCPAxisTickerDateTime); + ticker->setDateTimeFormat("hh:mm:ss"); + ticker->setDateTimeSpec(Qt::UTC); + ui->plotWidget->xAxis->setTicker(ticker); + break; + } + case QVariant::String: { + // Ticker is set when we have got the labels + ui->plotWidget->xAxis->setTickLabelRotation(60); + break; + } + default: { + QSharedPointer ticker(new QCPAxisTickerFixed); + ticker->setTickStepStrategy(QCPAxisTicker::tssReadability); + ticker->setScaleStrategy(QCPAxisTickerFixed::ssMultiples); + ui->plotWidget->xAxis->setTicker(ticker); + } + } + + // Boolean to decide whether secondary y axis should be displayed + bool displayY2Axis = false; + + // add graph for each selected y axis + for(int i = 0; i < ui->treePlotColumns->topLevelItemCount(); ++i) + { + QTreeWidgetItem* item = ui->treePlotColumns->topLevelItem(i); + QList yItemBool = {false, false}; + + if(item->checkState((PlotColumnY[0])) == Qt::Checked || item->checkState((PlotColumnY[1])) == Qt::Checked) + { + for(int y_ind = 0; y_ind < 2; y_ind++) + if(item->checkState((PlotColumnY[y_ind])) == Qt::Checked) + yItemBool[y_ind] = true; + + if(yItemBool[1]) + displayY2Axis = true; + // regain the model column index + int column = item->data(PlotColumnField, Qt::UserRole).toInt(); + + bool isSorted = true; + + // prepare the data vectors for qcustomplot + // possible improvement might be a QVector subclass that directly + // access the model data, to save memory, we are copying here + + auto nrows = model->rowCount(); + + QList> ydata; + ydata = {QVector(nrows), QVector(nrows)}; + + QVector xdata(nrows), tdata(nrows); + QVector labels; + + for(int j = 0; j < nrows; ++j) + { + tdata[j] = j; + + // NULL values produce gaps in the graph. We use NaN values in + // that case as required by QCustomPlot. + if(x != RowNumId && model->data(model->index(j, x), Qt::EditRole).isNull()) + xdata[j] = qQNaN(); + else { + + // convert x type axis if it's datetime + switch (xtype) { + case QVariant::DateTime: + case QVariant::Date: { + QString s = model->data(model->index(j, x)).toString(); + QDateTime d = QDateTime::fromString(s, Qt::ISODate); + xdata[j] = static_cast(d.toMSecsSinceEpoch()) / 1000.0; + break; + } + case QVariant::Time: { + QString s = model->data(model->index(j, x)).toString(); + QTime t = QTime::fromString(s); + xdata[j] = t.msecsSinceStartOfDay() / 1000.0; + break; + } + case QVariant::String: { + xdata[j] = j+1; + labels << model->data(model->index(j, x)).toString(); + break; + } + default: { + // Get the x value for this point. If the selected column is -1, i.e. the row number, just use the current row number from the loop + // instead of retrieving some value from the model. + if(x == RowNumId) + xdata[j] = j+1; + else + xdata[j] = model->data(model->index(j, x)).toDouble(); + } + } + } + if (j != 0) + isSorted &= (xdata[j-1] <= xdata[j]); + + // Get the y value for this point. If the selected column is -1, i.e. the row number, just use the current row number from the loop + // instead of retrieving some value from the model. + QVariant pointdata; + if(column == RowNumId) + pointdata = j+1; + else + pointdata = model->data(model->index(j, column), Qt::EditRole); + + for(int y_ind = 0; y_ind < 2; y_ind++) + { + if(pointdata.isNull()){ + if(yItemBool[y_ind]) + ydata[y_ind][j] = qQNaN(); + } + else{ + if(yItemBool[y_ind]) + ydata[y_ind][j] = pointdata.toDouble(); + } + } + } + + // Line type and point shape are not supported by the String X type (Bars) + ui->comboLineType->setEnabled(xtype != QVariant::String); + ui->comboPointShape->setEnabled(xtype != QVariant::String); + + // WARN: ssDot is removed + int shapeIdx = ui->comboPointShape->currentIndex(); + if (shapeIdx > 0) shapeIdx += 1; + QCPScatterStyle scatterStyle = QCPScatterStyle(static_cast(shapeIdx), 5); + + QCPAbstractPlottable* plottable; + // When the X type is String, we draw a bar chart. + // When it is already sorted by x, we draw a graph. + // When it is not sorted by x, we draw a curve, so the order selected by the user in the table or in the query is + // respected. In this case the line will have loops and only None and Line is supported as line style. + // TODO: how to make the user aware of this without disturbing. + if (xtype == QVariant::String) { + + for(int y_ind = 0; y_ind < 2; y_ind++) + { + if(yItemBool[y_ind]) + { + QCPBars* bars = new QCPBars(ui->plotWidget->xAxis, yAxes[y_ind]); + plottable = bars; + bars->setData(xdata, ydata[y_ind]); + // Set ticker once + if (ui->plotWidget->plottableCount() == 1) { + QSharedPointer ticker(new QCPAxisTickerText); + ticker->addTicks(xdata, labels); + ui->plotWidget->xAxis->setTicker(ticker); + } + QColor color = item->backgroundColor(PlotColumnY[y_ind]); + bars->setBrush(color); + plottable->setPen(QPen(color.darker(150))); + } + } + } else { + if (isSorted) { + for(int y_ind = 0; y_ind < 2; y_ind++) + { + if(yItemBool[y_ind]) + { + QCPGraph* graph = ui->plotWidget->addGraph(ui->plotWidget->xAxis, yAxes[y_ind]); + plottable = graph; + graph->setData(xdata, ydata[y_ind], /*alreadySorted*/ true); + // set some graph styles not supported by the abstract plottable + graph->setLineStyle(static_cast(ui->comboLineType->currentIndex())); + graph->setScatterStyle(scatterStyle); + plottable->setPen(QPen(item->backgroundColor(PlotColumnY[y_ind]))); + } + } + } else { + for(int y_ind = 0; y_ind < 2; y_ind++) + { + if(yItemBool[y_ind]) + { + QCPCurve* curve = new QCPCurve(ui->plotWidget->xAxis, yAxes[y_ind]); + plottable = curve; + curve->setData(tdata, xdata, ydata[y_ind], /*alreadySorted*/ true); + // set some curve styles not supported by the abstract plottable + if (ui->comboLineType->currentIndex() == QCPCurve::lsNone) + curve->setLineStyle(QCPCurve::lsNone); + else + curve->setLineStyle(QCPCurve::lsLine); + curve->setScatterStyle(scatterStyle); + plottable->setPen(QPen(item->backgroundColor(PlotColumnY[y_ind]))); + } + } + } + } + + plottable->setSelectable(QCP::stDataRange); + plottable->setName(item->text(PlotColumnField)); + + for(int y_ind = 0; y_ind < 2; y_ind++) + { + if(yItemBool[y_ind]) + { + // gather Y label column names + if(column == RowNumId) + yAxisLabels[y_ind] << tr("Row #"); + else + yAxisLabels[y_ind] << model->headerData(column, Qt::Horizontal, Qt::EditRole).toString(); + } + } + } + } + + ui->plotWidget->rescaleAxes(true); + ui->plotWidget->legend->setVisible(m_showLegend); + // Legend with slightly transparent background brush: + ui->plotWidget->legend->setBrush(QColor(255, 255, 255, 150)); + + // set axis labels + if(x == RowNumId) + ui->plotWidget->xAxis->setLabel(tr("Row #")); + else + ui->plotWidget->xAxis->setLabel(model->headerData(x, Qt::Horizontal, Qt::EditRole).toString()); + for(int y_ind = 0; y_ind < 2; y_ind++) + yAxes[y_ind]->setLabel(yAxisLabels[y_ind].join("|")); + + if(displayY2Axis){ + yAxes[1]->setVisible(true); + yAxes[1]->setTickLabels(true); + }else{ + yAxes[1]->setVisible(false); + yAxes[1]->setTickLabels(false); + } + } + + adjustBars(); + ui->plotWidget->replot(); + + // Warn user if not all data has been fetched and hint about the button for loading all the data + if (model && (model->rowCountAvailable() != SqliteTableModel::RowCount::Complete || !model->isCacheComplete())) { + ui->buttonLoadAllData->setEnabled(true); + ui->buttonLoadAllData->setStyleSheet("QToolButton {color: white; background-color: rgb(255, 102, 102)}"); + ui->buttonLoadAllData->setToolTip(tr("Load all data and redraw plot.\n" + "Warning: not all data has been fetched from the table yet due to the partial fetch mechanism.")); + } else { + ui->buttonLoadAllData->setEnabled(false); + ui->buttonLoadAllData->setStyleSheet(""); + ui->buttonLoadAllData->setToolTip(tr("Load all data and redraw plot")); + } +} + +void PlotDock::resetPlot() +{ + updatePlot(nullptr); +} + +void PlotDock::on_treePlotColumns_itemChanged(QTreeWidgetItem* changeitem, int column) +{ + // disable change updates, or we get unwanted redrawing and weird behavior + ui->treePlotColumns->blockSignals(true); + + // make sure only 1 X axis is selected + if(column == PlotColumnX) + { + for(int i = 0; i < ui->treePlotColumns->topLevelItemCount(); ++i) + { + QTreeWidgetItem* item = ui->treePlotColumns->topLevelItem(i); + if(item->checkState(column) == Qt::Checked && item != changeitem) + { + item->setCheckState(column, Qt::Unchecked); + } + } + + // Save settings for this table + if(m_currentTableSettings) + { + if(changeitem->checkState(column) == Qt::Checked) + m_currentTableSettings->plotXAxis = changeitem->text(PlotColumnField); + else + m_currentTableSettings->plotXAxis = QString(); + } + } else if(column == PlotColumnY[0] || column == PlotColumnY[1]) { + // Save check state of this column + for(int y_ind = 0; y_ind < 2; y_ind++) + { + if(column == PlotColumnY[y_ind]) + { + if(m_currentTableSettings) + { + PlotSettings& plot_settings = m_currentTableSettings->plotYAxes[y_ind][changeitem->text(PlotColumnField)]; + plot_settings.active = (changeitem->checkState(column) == Qt::Checked); + } + + if(changeitem->checkState(column) == Qt::Checked) + { + // Generate a default colour if none isn't set yet + QColor colour = changeitem->backgroundColor(column); + if(!colour.isValid()) + colour = m_graphPalette.nextSerialColor(true); + + // Set colour + changeitem->setBackgroundColor(column, colour); + + // Save settings for this table + if(m_currentTableSettings) + { + PlotSettings& plot_settings = m_currentTableSettings->plotYAxes[y_ind][changeitem->text(PlotColumnField)]; + plot_settings.colour = colour; + plot_settings.lineStyle = ui->comboLineType->currentIndex(); + plot_settings.pointShape = (ui->comboPointShape->currentIndex() > 0 ? (ui->comboPointShape->currentIndex()+1) : ui->comboPointShape->currentIndex()); + } + } + } + } + + } + + ui->treePlotColumns->blockSignals(false); + + updatePlot(m_currentPlotModel, m_currentTableSettings, false); +} + +void PlotDock::on_treePlotColumns_itemDoubleClicked(QTreeWidgetItem* item, int column) +{ + // disable change updates, or we get unwanted redrawing and weird behavior + ui->treePlotColumns->blockSignals(true); + + int type = item->data(PlotColumnType, Qt::UserRole).toInt(); + + for(int y_ind = 0; y_ind < 2; y_ind++) + { + if(column == PlotColumnY[y_ind] && type == QVariant::Double) + { + // On double click open the colordialog + QColorDialog colordialog(this); + QColor curbkcolor = item->backgroundColor(column); + QColor precolor = !curbkcolor.isValid() ? static_cast(random_number(5, 13)) : curbkcolor; + QColor color = colordialog.getColor(precolor, this, tr("Choose an axis color")); + if(color.isValid()) + { + item->setCheckState(column, Qt::Checked); + item->setBackgroundColor(column, color); + + // Save settings for this table + if(m_currentTableSettings) + { + PlotSettings& plot_settings = m_currentTableSettings->plotYAxes[y_ind][item->text(PlotColumnField)]; + plot_settings.active = (item->checkState(column) == Qt::Checked); + plot_settings.colour = color; + plot_settings.lineStyle = ui->comboLineType->currentIndex(); + plot_settings.pointShape = (ui->comboPointShape->currentIndex() > 0 ? (ui->comboPointShape->currentIndex()+1) : ui->comboPointShape->currentIndex()); + } + } else { + item->setCheckState(column, Qt::Unchecked); + + // Save settings for this table + if(m_currentTableSettings) + m_currentTableSettings->plotYAxes[y_ind].remove(item->text(PlotColumnField)); + } + } + } + + ui->treePlotColumns->blockSignals(false); + + updatePlot(m_currentPlotModel, m_currentTableSettings, false); +} + +void PlotDock::on_butSavePlot_clicked() +{ + QString fileName = FileDialog::getSaveFileName( + CreateDataFile, + this, + tr("Choose a filename to save under"), + tr("PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*)")); + if(!fileName.isEmpty()) + { + if(fileName.endsWith(".png", Qt::CaseInsensitive)) + { + ui->plotWidget->savePng(fileName); + } + else if(fileName.endsWith(".jpg", Qt::CaseInsensitive)) + { + ui->plotWidget->saveJpg(fileName); + } + else if(fileName.endsWith(".pdf", Qt::CaseInsensitive)) + { + ui->plotWidget->savePdf(fileName); + } + else if(fileName.endsWith(".bmp", Qt::CaseInsensitive)) + { + ui->plotWidget->saveBmp(fileName); + } + else + { + fileName += ".png"; + ui->plotWidget->savePng(fileName); + } + } +} + +void PlotDock::on_comboLineType_currentIndexChanged(int index) +{ + Q_ASSERT(index >= QCPGraph::lsNone && + index <= QCPGraph::lsImpulse); + + bool hasCurves = (ui->plotWidget->plottableCount() > ui->plotWidget->graphCount()); + QCPGraph::LineStyle lineStyle = static_cast(index); + if (lineStyle > QCPGraph::lsLine && hasCurves) { + QMessageBox::warning(this, qApp->applicationName(), + tr("There are curves in this plot and the selected line style can only be applied to graphs sorted by X. " + "Either sort the table or query by X to remove curves or select one of the styles supported by curves: " + "None or Line.")); + return; + } + for (int i = 0, ie = ui->plotWidget->graphCount(); i < ie; ++i) + { + QCPGraph * graph = ui->plotWidget->graph(i); + if (graph) + graph->setLineStyle(lineStyle); + } + // We have changed the style only for graphs, but not for curves. + // If there are any in the plot, we have to update it completely in order to apply the new style + if (hasCurves) + updatePlot(m_currentPlotModel, m_currentTableSettings, false); + else + ui->plotWidget->replot(); + + // Save settings for this table + if(m_currentTableSettings) + { + for(int y_ind = 0; y_ind < 2; y_ind++) + { + QMap& graphs = m_currentTableSettings->plotYAxes[y_ind]; + auto it = graphs.begin(); + while(it != graphs.end()) + { + it.value().lineStyle = lineStyle; + ++it; + } + } + } +} + +void PlotDock::on_comboPointShape_currentIndexChanged(int index) +{ + // WARN: because ssDot point shape is removed + if (index > 0) index += 1; + Q_ASSERT(index >= QCPScatterStyle::ssNone && + index < QCPScatterStyle::ssPixmap); + + bool hasCurves = (ui->plotWidget->plottableCount() > ui->plotWidget->graphCount()); + QCPScatterStyle::ScatterShape shape = static_cast(index); + for (int i = 0, ie = ui->plotWidget->graphCount(); i < ie; ++i) + { + QCPGraph * graph = ui->plotWidget->graph(i); + if (graph) + graph->setScatterStyle(QCPScatterStyle(shape, 5)); + } + // We have changed the style only for graphs, but not for curves. + // If there are any in the plot, we have to update it completely in order to apply the new style + if (hasCurves) + updatePlot(m_currentPlotModel, m_currentTableSettings, false); + else + ui->plotWidget->replot(); + + // Save settings for this table + if(m_currentTableSettings) + { + for(int y_ind = 0; y_ind < 2; y_ind++) + { + QMap& graphs = m_currentTableSettings->plotYAxes[y_ind]; + auto it = graphs.begin(); + while(it != graphs.end()) + { + it.value().pointShape = shape; + ++it; + } + } + } +} + +QVariant::Type PlotDock::guessDataType(SqliteTableModel* model, int column) const +{ + QVariant::Type type = QVariant::Invalid; + for(int i = 0; i < std::min(10, model->rowCount()) && type != QVariant::String; ++i) + { + QVariant varData = model->data(model->index(i, column), Qt::EditRole); + if(varData.isNull() || varData.convert(QVariant::Double)) + { + type = QVariant::Double; + } else { + QString s = model->data(model->index(i, column)).toString(); + QDateTime dt = QDateTime::fromString(s, Qt::ISODate); + QTime t = QTime::fromString(s); + if (dt.isValid()) + // Since the way to discriminate dates with times and pure dates is that the time part is 0, we must take into account + // that some DateTimes could have "00:00:00" as time part and still the entire column has time information, so a single + // final Date should not set the type to Date if it has already been guessed as DateTime. + if (type != QVariant::DateTime && dt.time().msecsSinceStartOfDay() == 0) + type = QVariant::Date; + else + type = QVariant::DateTime; + else if (t.isValid()) + type = QVariant::Time; + else + type = QVariant::String; + } + } + + return type; +} + +void PlotDock::fetchAllData() +{ + if(m_currentPlotModel) + { +#ifdef LOAD_DATA_BENCHMARK + // If benchmark mode is enabled start measuring the performance now + QElapsedTimer timer; + timer.start(); +#endif + + // Make sure all data is loaded + m_currentPlotModel->completeCache(); + +#ifdef LOAD_DATA_BENCHMARK + QMessageBox::information(this, qApp->applicationName(), + tr("Loading all remaining data for this table took %1ms.") + .arg(timer.elapsed())); +#endif + + // Update plot + updatePlot(m_currentPlotModel, m_currentTableSettings); + } +} + +void PlotDock::selectionChanged() +{ + + for (const QCPAbstractPlottable* plottable : ui->plotWidget->selectedPlottables()) { + + for (const QCPDataRange& dataRange : plottable->selection().dataRanges()) { + + int index = dataRange.begin(); + if (dataRange.length() != 0) { + emit pointsSelected(index, dataRange.length()); + break; + } + + } + } + +} +void PlotDock::mousePress() +{ + // Allow user to reset the plot + ui->buttonLoadAllData->setEnabled(true); + + // if an axis (or axis labels) is selected, only allow the direction of that axis to be dragged + // if no axis (or axis labels) is selected, all three axes may be dragged + if (ui->plotWidget->xAxis->selectedParts().testFlag(QCPAxis::spAxis) || + ui->plotWidget->xAxis->selectedParts().testFlag(QCPAxis::spTickLabels) || + ui->plotWidget->xAxis->selectedParts().testFlag(QCPAxis::spAxisLabel)) + { + QList< QCPAxis *> axList = {ui->plotWidget->xAxis}; + ui->plotWidget->axisRect()->setRangeDragAxes(axList); + } + else if (yAxes[0]->selectedParts().testFlag(QCPAxis::spAxis) || + yAxes[0]->selectedParts().testFlag(QCPAxis::spTickLabels) || + yAxes[0]->selectedParts().testFlag(QCPAxis::spAxisLabel)) + { + QList< QCPAxis *> axList = {yAxes[0]}; + ui->plotWidget->axisRect()->setRangeDragAxes(axList); + } + else if (yAxes[1]->selectedParts().testFlag(QCPAxis::spAxis) || + yAxes[1]->selectedParts().testFlag(QCPAxis::spTickLabels) || + yAxes[1]->selectedParts().testFlag(QCPAxis::spAxisLabel)) + { + QList< QCPAxis *> axList = {yAxes[1]}; + ui->plotWidget->axisRect()->setRangeDragAxes(axList); + } + else{ + QList< QCPAxis *> axList = {ui->plotWidget->xAxis,yAxes[0], yAxes[1]}; + ui->plotWidget->axisRect()->setRangeDragAxes(axList); + } +} + +void PlotDock::mouseWheel() +{ + // Allow user to reset the plot + ui->buttonLoadAllData->setEnabled(true); + + // if an axis (or axis labels) is selected, only allow the direction of that axis to be zoomed + // if no axis (or axis labels) is selected, all three axes may be zoomed + if (ui->plotWidget->xAxis->selectedParts().testFlag(QCPAxis::spAxis) || + ui->plotWidget->xAxis->selectedParts().testFlag(QCPAxis::spTickLabels) || + ui->plotWidget->xAxis->selectedParts().testFlag(QCPAxis::spAxisLabel)) + { + QList< QCPAxis *> axList = {ui->plotWidget->xAxis}; + ui->plotWidget->axisRect()->setRangeZoomAxes(axList); + } + else if (yAxes[0]->selectedParts().testFlag(QCPAxis::spAxis) || + yAxes[0]->selectedParts().testFlag(QCPAxis::spTickLabels) || + yAxes[0]->selectedParts().testFlag(QCPAxis::spAxisLabel)) + { + QList< QCPAxis *> axList = {yAxes[0]}; + ui->plotWidget->axisRect()->setRangeZoomAxes(axList); + } + else if (yAxes[1]->selectedParts().testFlag(QCPAxis::spAxis) || + yAxes[1]->selectedParts().testFlag(QCPAxis::spTickLabels) || + yAxes[1]->selectedParts().testFlag(QCPAxis::spAxisLabel)) + { + QList< QCPAxis *> axList = {yAxes[1]}; + ui->plotWidget->axisRect()->setRangeZoomAxes(axList); + } + + else{ + QList< QCPAxis *> axList = {ui->plotWidget->xAxis,yAxes[0], yAxes[1]}; + ui->plotWidget->axisRect()->setRangeZoomAxes(axList); + } +} + +void PlotDock::copy() +{ + QApplication::clipboard()->setPixmap(ui->plotWidget->toPixmap()); +} + +void PlotDock::toggleLegendVisible(bool visible) +{ + m_showLegend = visible; + ui->plotWidget->legend->setVisible(m_showLegend); + ui->plotWidget->replot(); +} + +// Stack or group bars and set the appropiate bar width (since it is not automatically done by QCustomPlot). +void PlotDock::adjustBars() +{ + const double padding = 0.15; + int plottableCount = ui->plotWidget->plottableCount(); + + if (plottableCount == 0) + return; + + const double groupedWidth = 1.0 / plottableCount; + QCPBars* previousBar = nullptr; + QCPBarsGroup* barsGroup = m_stackedBars ? nullptr : new QCPBarsGroup(ui->plotWidget); + for (int i = 0, ie = plottableCount; i < ie; ++i) + { + QCPBars* bar = qobject_cast(ui->plotWidget->plottable(i)); + if (bar) { + if (m_stackedBars) { + // Ungroup if grouped + bar->setBarsGroup(nullptr); + if (previousBar) + bar->moveAbove(previousBar); + // Set width to ocuppy the full coordinate space, less padding + bar->setWidth(1.0 - padding); + } else { + // Unstack if stacked + bar->moveAbove(nullptr); + bar->setBarsGroup(barsGroup); + // Set width to a plot coordinate width, less padding + bar->setWidth(groupedWidth - padding); + } + previousBar = bar; + } + } +} + +void PlotDock::toggleStackedBars(bool stacked) +{ + m_stackedBars = stacked; + adjustBars(); + ui->plotWidget->replot(); +} + +void PlotDock::reject() +{ + // We override this, to ensure the Escape key doesn't make this dialog + // dock go away + return; +} + +void PlotDock::openPrintDialog() +{ + QPrinter printer; + QPrintPreviewDialog previewDialog(&printer, this); + connect(&previewDialog, &QPrintPreviewDialog::paintRequested, this, &PlotDock::renderPlot); + previewDialog.exec(); +} + +void PlotDock::renderPlot(QPrinter* printer) +{ + QCPPainter painter(printer); + QRectF pageRect = printer->pageRect(QPrinter::DevicePixel); + + int plotWidth = ui->plotWidget->viewport().width(); + int plotHeight = ui->plotWidget->viewport().height(); + double scale = pageRect.width()/static_cast(plotWidth); + + painter.setMode(QCPPainter::pmVectorized); + painter.setMode(QCPPainter::pmNoCaching); + + painter.scale(scale, scale); + ui->plotWidget->toPainter(&painter, plotWidth, plotHeight); +} diff --git a/src/SqliteDBProcess/src/PlotDock.h b/src/SqliteDBProcess/src/PlotDock.h new file mode 100644 index 0000000..f039998 --- /dev/null +++ b/src/SqliteDBProcess/src/PlotDock.h @@ -0,0 +1,126 @@ +#ifndef PLOTDOCK_H +#define PLOTDOCK_H +#include "WBFZExchangePluginAPI.h" +#include "Palette.h" + +#include +#include + +class QMenu; +class QPrinter; +class QTreeWidgetItem; +class QCPAxis; + +class SqliteTableModel; +struct BrowseDataTableSettings; + +namespace Ui { +class PlotDock; +} + +class PlotDock : public QDialog +{ + Q_OBJECT + +public: + explicit PlotDock(QWidget* parent = nullptr); + ~PlotDock() override; + + struct PlotSettings + { + int lineStyle; + int pointShape; + QColor colour; + bool active; + + PlotSettings() : + lineStyle(0), + pointShape(0), + active(false) + {} + + PlotSettings(int _lineStyle, int _pointShape, QColor _colour, bool _active) : + lineStyle(_lineStyle), + pointShape(_pointShape), + colour(_colour), + active(_active) + {} + + friend QDataStream& operator<<(QDataStream& stream, const PlotDock::PlotSettings& object) + { + stream << object.lineStyle; + stream << object.pointShape; + stream << object.colour; + stream << object.active; + + return stream; + } + friend QDataStream& operator>>(QDataStream& stream, PlotDock::PlotSettings& object) + { + stream >> object.lineStyle; + stream >> object.pointShape; + stream >> object.colour; + + if(!stream.atEnd()) + stream >> object.active; + + return stream; + } + }; + +public slots: + void updatePlot(SqliteTableModel* model, BrowseDataTableSettings* settings = nullptr, bool update = true, bool keepOrResetSelection = true); + void fetchAllData(); + void resetPlot(); + void reject() override; + +signals: + void pointsSelected(int firstIndex, int count); + +private: + enum PlotColumns + { + PlotColumnField = 0, + PlotColumnX = 1, + PlotColumnY1 = 2, + PlotColumnY2 = 3, + PlotColumnType = 4, + }; + + Ui::PlotDock* ui; + + SqliteTableModel* m_currentPlotModel; + BrowseDataTableSettings* m_currentTableSettings; + QMenu* m_contextMenu; + bool m_showLegend; + bool m_stackedBars; + Palette m_graphPalette; + QList yAxes; + QList PlotColumnY; + + /*! + * \brief guessdatatype try to parse the first 10 rows and decide the datatype + * \param model model to check the data + * \param column index of the column to check + * \return the guessed datatype + */ + QVariant::Type guessDataType(SqliteTableModel* model, int column) const; + void adjustBars(); + +private slots: + void on_treePlotColumns_itemChanged(QTreeWidgetItem* item, int column); + void on_treePlotColumns_itemDoubleClicked(QTreeWidgetItem* item, int column); + void on_butSavePlot_clicked(); + void on_comboLineType_currentIndexChanged(int index); + void on_comboPointShape_currentIndexChanged(int index); + void selectionChanged(); + void mousePress(); + void mouseWheel(); + void copy(); + void toggleLegendVisible(bool visible); + void toggleStackedBars(bool stacked); + void openPrintDialog(); + void renderPlot(QPrinter* printer); +}; + +#endif diff --git a/src/SqliteDBProcess/src/PlotDock.ui b/src/SqliteDBProcess/src/PlotDock.ui new file mode 100644 index 0000000..9a391bf --- /dev/null +++ b/src/SqliteDBProcess/src/PlotDock.ui @@ -0,0 +1,361 @@ + + + PlotDock + + + + 0 + 0 + 515 + 553 + + + + Plot + + + + + + Qt::Vertical + + + + + 0 + 2 + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + + + true + + + 5 + + + 100 + + + false + + + + Columns + + + + + X + + + + + Y1 + + + + + Y2 + + + + + Axis Type + + + + + + + 0 + 8 + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + + + + + + + + + + Line type: + + + comboLineType + + + + + + + + 0 + + + 0 + + + 0 + + + 0 + + + + + + 0 + 0 + + + + + 50 + 0 + + + + 1 + + + + None + + + + + Line + + + + + StepLeft + + + + + StepRight + + + + + StepCenter + + + + + Impulse + + + + + + + + Point shape: + + + comboPointShape + + + + + + + + 0 + 0 + + + + + 50 + 0 + + + + 0 + + + + None + + + + + Cross + + + + + Plus + + + + + Circle + + + + + Disc + + + + + Square + + + + + Diamond + + + + + Star + + + + + Triangle + + + + + TriangleInverted + + + + + CrossSquare + + + + + PlusSquare + + + + + CrossCircle + + + + + PlusCircle + + + + + Peace + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + + + Save current plot... + + + + + + + :/icons/image_save:/icons/image_save + + + false + + + false + + + false + + + false + + + + + + + Load all data and redraw plot + + + + :/icons/refresh:/icons/refresh + + + + + + + + + + + + + QCustomPlot + QWidget +
qcustomplot.h
+ 1 +
+
+ + + + + + buttonLoadAllData + clicked() + PlotDock + fetchAllData() + + + 463 + 526 + + + 477 + 495 + + + + + + fetchAllData() + +
diff --git a/src/SqliteDBProcess/src/PreferencesDialog.cpp b/src/SqliteDBProcess/src/PreferencesDialog.cpp new file mode 100644 index 0000000..b4fc4f4 --- /dev/null +++ b/src/SqliteDBProcess/src/PreferencesDialog.cpp @@ -0,0 +1,686 @@ +#include "PreferencesDialog.h" +#include "ui_PreferencesDialog.h" +#include "FileDialog.h" +#include "Settings.h" +#include "Application.h" +#include "SqliteDBMainWindow.h" +#include "RemoteNetwork.h" +#include "FileExtensionManager.h" +#include "ProxyDialog.h" + +#include +#include +#include +#include +#include +#include + +PreferencesDialog::PreferencesDialog(QWidget* parent, Tabs tab) + : QDialog(parent), + ui(new Ui::PreferencesDialog), + m_proxyDialog(new ProxyDialog(this)), + m_dbFileExtensions(Settings::getValue("General", "DBFileExtensions").toString().split(";;")) +{ + ui->setupUi(this); + ui->treeSyntaxHighlighting->setColumnHidden(0, true); + ui->tableClientCerts->setColumnHidden(0, true); + + ui->fr_bin_bg->installEventFilter(this); + ui->fr_bin_fg->installEventFilter(this); + ui->fr_reg_bg->installEventFilter(this); + ui->fr_reg_fg->installEventFilter(this); + ui->fr_null_bg->installEventFilter(this); + ui->fr_null_fg->installEventFilter(this); + + connect(ui->comboDataBrowserFont, static_cast(&QFontComboBox::currentIndexChanged), this, &PreferencesDialog::updatePreviewFont); + connect(ui->spinDataBrowserFontSize, static_cast(&QSpinBox::valueChanged), this, &PreferencesDialog::updatePreviewFont); + +#ifndef CHECKNEWVERSION + ui->labelUpdates->setVisible(false); + ui->checkUpdates->setVisible(false); +#endif + + loadSettings(); + + connect(ui->appStyleCombo, SIGNAL(currentIndexChanged(int)), this, SLOT(adjustColorsToStyle(int))); + + // Avoid different heights due to having check boxes or not + ui->treeSyntaxHighlighting->setUniformRowHeights(true); + + // Set current tab + ui->tabWidget->setCurrentIndex(tab); +} + +/* + * Destroys the object and frees any allocated resources + */ +PreferencesDialog::~PreferencesDialog() +{ + delete ui; +} + +void PreferencesDialog::chooseLocation() +{ + QString s = FileDialog::getExistingDirectory( + NoSpecificType, + this, + tr("Choose a directory"), + QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks); + + if(!s.isEmpty()) + ui->locationEdit->setText(s); +} + +void PreferencesDialog::loadSettings() +{ + ui->encodingComboBox->setCurrentIndex(ui->encodingComboBox->findText(Settings::getValue("db", "defaultencoding").toString(), Qt::MatchFixedString)); + ui->comboDefaultLocation->setCurrentIndex(Settings::getValue("db", "savedefaultlocation").toInt()); + ui->locationEdit->setText(QDir::toNativeSeparators(Settings::getValue("db", "defaultlocation").toString())); + ui->checkUpdates->setChecked(Settings::getValue("checkversion", "enabled").toBool()); + + ui->checkHideSchemaLinebreaks->setChecked(Settings::getValue("db", "hideschemalinebreaks").toBool()); + ui->foreignKeysCheckBox->setChecked(Settings::getValue("db", "foreignkeys").toBool()); + ui->spinPrefetchSize->setValue(Settings::getValue("db", "prefetchsize").toInt()); + ui->editDatabaseDefaultSqlText->setText(Settings::getValue("db", "defaultsqltext").toString()); + + ui->defaultFieldTypeComboBox->addItems(DBBrowserDB::Datatypes); + + int defaultFieldTypeIndex = Settings::getValue("db", "defaultfieldtype").toInt(); + if (defaultFieldTypeIndex < DBBrowserDB::Datatypes.count()) + { + ui->defaultFieldTypeComboBox->setCurrentIndex(defaultFieldTypeIndex); + } + + ui->spinStructureFontSize->setValue(Settings::getValue("db", "fontsize").toInt()); + + // Gracefully handle the preferred Data Browser font not being available + int matchingFont = ui->comboDataBrowserFont->findText(Settings::getValue("databrowser", "font").toString(), Qt::MatchExactly); + if (matchingFont == -1) + matchingFont = ui->comboDataBrowserFont->findText(Settings::getDefaultValue("databrowser", "font").toString()); + ui->comboDataBrowserFont->setCurrentIndex(matchingFont); + + ui->spinDataBrowserFontSize->setValue(Settings::getValue("databrowser", "fontsize").toInt()); + loadColorSetting(ui->fr_null_fg, "null_fg"); + loadColorSetting(ui->fr_null_bg, "null_bg"); + loadColorSetting(ui->fr_bin_fg, "bin_fg"); + loadColorSetting(ui->fr_bin_bg, "bin_bg"); + loadColorSetting(ui->fr_reg_fg, "reg_fg"); + loadColorSetting(ui->fr_reg_bg, "reg_bg"); + + ui->spinSymbolLimit->setValue(Settings::getValue("databrowser", "symbol_limit").toInt()); + ui->spinCompleteThreshold->setValue(Settings::getValue("databrowser", "complete_threshold").toInt()); + ui->checkShowImagesInline->setChecked(Settings::getValue("databrowser", "image_preview").toBool()); + ui->txtNull->setText(Settings::getValue("databrowser", "null_text").toString()); + ui->txtBlob->setText(Settings::getValue("databrowser", "blob_text").toString()); + ui->editFilterEscape->setText(Settings::getValue("databrowser", "filter_escape").toString()); + ui->spinFilterDelay->setValue(Settings::getValue("databrowser", "filter_delay").toInt()); + + for(int i=0; i < ui->treeSyntaxHighlighting->topLevelItemCount(); ++i) + { + std::string name = ui->treeSyntaxHighlighting->topLevelItem(i)->text(0).toStdString(); + QString colorname = Settings::getValue("syntaxhighlighter", name + "_colour").toString(); + QColor color = QColor(colorname); + ui->treeSyntaxHighlighting->topLevelItem(i)->setTextColor(2, color); + ui->treeSyntaxHighlighting->topLevelItem(i)->setBackgroundColor(2, color); + ui->treeSyntaxHighlighting->topLevelItem(i)->setText(2, colorname); + if (name != "null" && name != "currentline" && name != "background" && name != "foreground") { + ui->treeSyntaxHighlighting->topLevelItem(i)->setCheckState(3, Settings::getValue("syntaxhighlighter", name + "_bold").toBool() ? Qt::Checked : Qt::Unchecked); + ui->treeSyntaxHighlighting->topLevelItem(i)->setCheckState(4, Settings::getValue("syntaxhighlighter", name + "_italic").toBool() ? Qt::Checked : Qt::Unchecked); + ui->treeSyntaxHighlighting->topLevelItem(i)->setCheckState(5, Settings::getValue("syntaxhighlighter", name + "_underline").toBool() ? Qt::Checked : Qt::Unchecked); + } + } + + // Remote settings + ui->checkUseRemotes->setChecked(Settings::getValue("remote", "active").toBool()); + { + auto ca_certs = RemoteNetwork::get().caCertificates(); + ui->tableCaCerts->setRowCount(ca_certs.size()); + for(int i=0;isetFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + ui->tableCaCerts->setItem(i, 0, cert_cn); + + QTableWidgetItem* cert_o = new QTableWidgetItem(cert.subjectInfo(QSslCertificate::Organization).at(0)); + cert_o->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + ui->tableCaCerts->setItem(i, 1, cert_o); + + QTableWidgetItem* cert_from = new QTableWidgetItem(cert.effectiveDate().toString()); + cert_from->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + ui->tableCaCerts->setItem(i, 2, cert_from); + + QTableWidgetItem* cert_to = new QTableWidgetItem(cert.expiryDate().toString()); + cert_to->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + ui->tableCaCerts->setItem(i, 3, cert_to); + + QTableWidgetItem* cert_serialno = new QTableWidgetItem(QString(cert.serialNumber())); + cert_serialno->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + ui->tableCaCerts->setItem(i, 4, cert_serialno); + } + } + { + QStringList client_certs = Settings::getValue("remote", "client_certificates").toStringList(); + for(const QString& file : client_certs) + { + auto certs = QSslCertificate::fromPath(file); + for(const QSslCertificate& cert : certs) + addClientCertToTable(file, cert); + } + } + ui->editRemoteCloneDirectory->setText(QDir::toNativeSeparators(Settings::getValue("remote", "clonedirectory").toString())); + + // Gracefully handle the preferred Editor font not being available + matchingFont = ui->comboEditorFont->findText(Settings::getValue("editor", "font").toString(), Qt::MatchExactly); + if (matchingFont == -1) + matchingFont = ui->comboDataBrowserFont->findText(Settings::getDefaultValue("editor", "font").toString()); + ui->comboEditorFont->setCurrentIndex(matchingFont); + + ui->spinEditorFontSize->setValue(Settings::getValue("editor", "fontsize").toInt()); + ui->spinTabSize->setValue(Settings::getValue("editor", "tabsize").toInt()); + ui->spinLogFontSize->setValue(Settings::getValue("log", "fontsize").toInt()); + ui->wrapComboBox->setCurrentIndex(Settings::getValue("editor", "wrap_lines").toInt()); + ui->quoteComboBox->setCurrentIndex(Settings::getValue("editor", "identifier_quotes").toInt()); + ui->checkAutoCompletion->setChecked(Settings::getValue("editor", "auto_completion").toBool()); + ui->checkCompleteUpper->setEnabled(Settings::getValue("editor", "auto_completion").toBool()); + ui->checkCompleteUpper->setChecked(Settings::getValue("editor", "upper_keywords").toBool()); + ui->checkErrorIndicators->setChecked(Settings::getValue("editor", "error_indicators").toBool()); + ui->checkHorizontalTiling->setChecked(Settings::getValue("editor", "horizontal_tiling").toBool()); + ui->checkCloseButtonOnTabs->setChecked(Settings::getValue("editor", "close_button_on_tabs").toBool()); + + ui->listExtensions->addItems(Settings::getValue("extensions", "list").toStringList()); + ui->checkRegexDisabled->setChecked(Settings::getValue("extensions", "disableregex").toBool()); + ui->checkAllowLoadExtension->setChecked(Settings::getValue("extensions", "enable_load_extension").toBool()); + fillLanguageBox(); + ui->appStyleCombo->setCurrentIndex(Settings::getValue("General", "appStyle").toInt()); + ui->toolbarStyleComboMain->setCurrentIndex(Settings::getValue("General", "toolbarStyle").toInt()); + ui->toolbarStyleComboStructure->setCurrentIndex(Settings::getValue("General", "toolbarStyleStructure").toInt()); + ui->toolbarStyleComboBrowse->setCurrentIndex(Settings::getValue("General", "toolbarStyleBrowse").toInt()); + ui->toolbarStyleComboSql->setCurrentIndex(Settings::getValue("General", "toolbarStyleSql").toInt()); + ui->toolbarStyleComboEditCell->setCurrentIndex(Settings::getValue("General", "toolbarStyleEditCell").toInt()); + ui->spinGeneralFontSize->setValue(Settings::getValue("General", "fontsize").toInt()); +} + +void PreferencesDialog::saveSettings() +{ + QApplication::setOverrideCursor(Qt::WaitCursor); + + Settings::setValue("db", "defaultencoding", ui->encodingComboBox->currentText()); + Settings::setValue("db", "defaultlocation", ui->locationEdit->text()); + Settings::setValue("db", "savedefaultlocation", ui->comboDefaultLocation->currentIndex()); + Settings::setValue("db", "hideschemalinebreaks", ui->checkHideSchemaLinebreaks->isChecked()); + Settings::setValue("db", "foreignkeys", ui->foreignKeysCheckBox->isChecked()); + Settings::setValue("db", "prefetchsize", ui->spinPrefetchSize->value()); + Settings::setValue("db", "defaultsqltext", ui->editDatabaseDefaultSqlText->text()); + Settings::setValue("db", "defaultfieldtype", ui->defaultFieldTypeComboBox->currentIndex()); + Settings::setValue("db", "fontsize", ui->spinStructureFontSize->value()); + + Settings::setValue("checkversion", "enabled", ui->checkUpdates->isChecked()); + + Settings::setValue("databrowser", "font", ui->comboDataBrowserFont->currentText()); + Settings::setValue("databrowser", "fontsize", ui->spinDataBrowserFontSize->value()); + Settings::setValue("databrowser", "image_preview", ui->checkShowImagesInline->isChecked()); + saveColorSetting(ui->fr_null_fg, "null_fg"); + saveColorSetting(ui->fr_null_bg, "null_bg"); + saveColorSetting(ui->fr_reg_fg, "reg_fg"); + saveColorSetting(ui->fr_reg_bg, "reg_bg"); + saveColorSetting(ui->fr_bin_fg, "bin_fg"); + saveColorSetting(ui->fr_bin_bg, "bin_bg"); + Settings::setValue("databrowser", "symbol_limit", ui->spinSymbolLimit->value()); + Settings::setValue("databrowser", "complete_threshold", ui->spinCompleteThreshold->value()); + Settings::setValue("databrowser", "null_text", ui->txtNull->text()); + Settings::setValue("databrowser", "blob_text", ui->txtBlob->text()); + Settings::setValue("databrowser", "filter_escape", ui->editFilterEscape->text()); + Settings::setValue("databrowser", "filter_delay", ui->spinFilterDelay->value()); + + for(int i=0; i < ui->treeSyntaxHighlighting->topLevelItemCount(); ++i) + { + std::string name = ui->treeSyntaxHighlighting->topLevelItem(i)->text(0).toStdString(); + Settings::setValue("syntaxhighlighter", name + "_colour", ui->treeSyntaxHighlighting->topLevelItem(i)->text(2)); + Settings::setValue("syntaxhighlighter", name + "_bold", ui->treeSyntaxHighlighting->topLevelItem(i)->checkState(3) == Qt::Checked); + Settings::setValue("syntaxhighlighter", name + "_italic", ui->treeSyntaxHighlighting->topLevelItem(i)->checkState(4) == Qt::Checked); + Settings::setValue("syntaxhighlighter", name + "_underline", ui->treeSyntaxHighlighting->topLevelItem(i)->checkState(5) == Qt::Checked); + } + Settings::setValue("editor", "font", ui->comboEditorFont->currentText()); + Settings::setValue("editor", "fontsize", ui->spinEditorFontSize->value()); + Settings::setValue("editor", "tabsize", ui->spinTabSize->value()); + Settings::setValue("log", "fontsize", ui->spinLogFontSize->value()); + Settings::setValue("editor", "wrap_lines", ui->wrapComboBox->currentIndex()); + Settings::setValue("editor", "identifier_quotes", ui->quoteComboBox->currentIndex()); + Settings::setValue("editor", "auto_completion", ui->checkAutoCompletion->isChecked()); + Settings::setValue("editor", "upper_keywords", ui->checkCompleteUpper->isChecked()); + Settings::setValue("editor", "error_indicators", ui->checkErrorIndicators->isChecked()); + Settings::setValue("editor", "horizontal_tiling", ui->checkHorizontalTiling->isChecked()); + Settings::setValue("editor", "close_button_on_tabs", ui->checkCloseButtonOnTabs->isChecked()); + + QStringList extList; + for(int i=0;ilistExtensions->count();++i) + extList.append(ui->listExtensions->item(i)->text()); + Settings::setValue("extensions", "list", extList); + Settings::setValue("extensions", "disableregex", ui->checkRegexDisabled->isChecked()); + Settings::setValue("extensions", "enable_load_extension", ui->checkAllowLoadExtension->isChecked()); + + // Save remote settings + Settings::setValue("remote", "active", ui->checkUseRemotes->isChecked()); + QStringList old_client_certs = Settings::getValue("remote", "client_certificates").toStringList(); + QStringList new_client_certs; + for(int i=0;itableClientCerts->rowCount();i++) + { + // Loop through the new list of client certs + + // If this certificate was already imported, remove it from the list of old certificates. All remaining certificates on this + // list will be deleted later on. + QString path = ui->tableClientCerts->item(i, 0)->text(); + if(old_client_certs.contains(path)) + { + // This is a cert that is already imported + old_client_certs.removeAll(path); + new_client_certs.push_back(path); + } else { + // This is a new certificate. Copy file to a safe place. + + // Generate unique destination file name + QString copy_to = QStandardPaths::writableLocation( +#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0) + QStandardPaths::AppDataLocation +#else + QStandardPaths::GenericDataLocation +#endif + ).append("/").append(QFileInfo(path).fileName()); + int suffix = 0; + do + { + suffix++; + } while(QFile::exists(copy_to + QString::number(suffix))); + + // Copy file + copy_to.append(QString::number(suffix)); + QDir().mkpath(QStandardPaths::writableLocation( +#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0) + QStandardPaths::AppDataLocation +#else + QStandardPaths::GenericDataLocation +#endif + )); + QFile::copy(path, copy_to); + + new_client_certs.push_back(copy_to); + } + } + for(const QString& file : old_client_certs) + { + // Now only the deleted client certs are still in the old list. Delete the cert files associated with them. + QFile::remove(file); + } + Settings::setValue("remote", "client_certificates", new_client_certs); + Settings::setValue("remote", "clonedirectory", ui->editRemoteCloneDirectory->text()); + + // Warn about restarting to change language + QVariant newLanguage = ui->languageComboBox->itemData(ui->languageComboBox->currentIndex()); + if (newLanguage != Settings::getValue("General", "language")) + QMessageBox::information(this, QApplication::applicationName(), + tr("The language will change after you restart the application.")); + + Settings::setValue("General", "language", newLanguage); + Settings::setValue("General", "appStyle", ui->appStyleCombo->currentIndex()); + Settings::setValue("General", "toolbarStyle", ui->toolbarStyleComboMain->currentIndex()); + Settings::setValue("General", "toolbarStyleStructure", ui->toolbarStyleComboStructure->currentIndex()); + Settings::setValue("General", "toolbarStyleBrowse", ui->toolbarStyleComboBrowse->currentIndex()); + Settings::setValue("General", "toolbarStyleSql", ui->toolbarStyleComboSql->currentIndex()); + Settings::setValue("General", "toolbarStyleEditCell", ui->toolbarStyleComboEditCell->currentIndex()); + Settings::setValue("General", "DBFileExtensions", m_dbFileExtensions.join(";;") ); + Settings::setValue("General", "fontsize", ui->spinGeneralFontSize->value()); + + m_proxyDialog->saveSettings(); + + accept(); + + QApplication::restoreOverrideCursor(); +} + +void PreferencesDialog::showColourDialog(QTreeWidgetItem* item, int column) +{ + if(item->text(column).left(1) != "#") + return; + + QColor colour = QColorDialog::getColor(QColor(item->text(column)), this); + if(colour.isValid()) + { + item->setTextColor(column, colour); + item->setBackgroundColor(column, colour); + item->setText(column, colour.name()); + } +} + +bool PreferencesDialog::eventFilter(QObject *obj, QEvent *event) +{ + // Use mouse click and enter press on the frames to pop up a colour dialog + if (obj == ui->fr_bin_bg || obj == ui->fr_bin_fg || + obj == ui->fr_reg_bg || obj == ui->fr_reg_fg || + obj == ui->fr_null_bg || obj == ui->fr_null_fg) + { + if (event->type() == QEvent::KeyPress) + { + QKeyEvent *key = static_cast(event); + // Not interesting, so send to the parent (might be shortcuts) + if((key->key() != Qt::Key_Enter) && (key->key() != Qt::Key_Return)) + { + return QDialog::eventFilter(obj, event); + } + } + else if (event->type() != QEvent::MouseButtonPress) + { + // Not a key event neither a mouse event, send to the parent + return QDialog::eventFilter(obj, event); + } + + QFrame *frame = qobject_cast(obj); + QColor oldColour = frame->palette().color(frame->backgroundRole()); + QColor colour = QColorDialog::getColor(oldColour, frame); + + if (colour.isValid()) + { + setColorSetting(frame, colour); + } + // Consume + return true; + } + + // Send any other events to the parent + return QDialog::eventFilter(obj, event); +} + +void PreferencesDialog::addExtension() +{ + QString file = FileDialog::getOpenFileName( + OpenExtensionFile, + this, + tr("Select extension file"), + tr("Extensions(*.so *.dylib *.dll);;All files(*)")); + + if(QFile::exists(file)) + ui->listExtensions->addItem(file); +} + +void PreferencesDialog::removeExtension() +{ + if(ui->listExtensions->currentIndex().isValid()) + ui->listExtensions->takeItem(ui->listExtensions->currentIndex().row()); +} + +void PreferencesDialog::fillLanguageBox() +{ + QDir translationsDir(QCoreApplication::applicationDirPath() + "/translations", + "sqlb_*.qm"); + + QLocale systemLocale = QLocale::system(); + + // Add default language + if (systemLocale.name() == "en_US") + { + ui->languageComboBox->addItem(QIcon(":/flags/en_US"), + "English (United States) [System Language]", + "en_US"); + } + else + { + ui->languageComboBox->addItem(QIcon(":/flags/en_US"), + "English (United States) [Default Language]", + "en_US"); + } + + // Get available *.qm files from translation dir near executable as well as from resources + QFileInfoList file_infos = translationsDir.entryInfoList(); + file_infos += QDir(":/translations").entryInfoList(); + for(const QFileInfo& file : file_infos) + { + QLocale locale(file.baseName().remove("sqlb_")); + + // Skip invalid locales + if(locale.name() == "C") + continue; + + // Skip translations that were already loaded + if (ui->languageComboBox->findData(locale.name(), Qt::UserRole, Qt::MatchExactly) != -1) + continue; + + QString language = QLocale::languageToString(locale.language()) + " (" + + QLocale::countryToString(locale.country()) + ")"; + + if (locale == systemLocale) + language += " [System language]"; + + ui->languageComboBox->addItem(QIcon(":/flags/" + locale.name()), language, locale.name()); + } + + ui->languageComboBox->model()->sort(0); + + // Try to select the language for the stored locale + int index = ui->languageComboBox->findData(Settings::getValue("General", "language"), + Qt::UserRole, Qt::MatchExactly); + + // If there's no translation for the current locale, default to English + if(index < 0) + index = ui->languageComboBox->findData("en_US", Qt::UserRole, Qt::MatchExactly); + + QString chosenLanguage = ui->languageComboBox->itemText(index); + QVariant chosenLocale = ui->languageComboBox->itemData(index); + QIcon chosenIcon = ui->languageComboBox->itemIcon(index); + + // There's no "move" method, so we remove and add the chosen language again at the top + ui->languageComboBox->removeItem(index); + ui->languageComboBox->insertItem(0, chosenIcon, chosenLanguage, chosenLocale); + ui->languageComboBox->setCurrentIndex(0); + + // This is a workaround needed for QDarkStyleSheet. + // See https://github.com/ColinDuquesnoy/QDarkStyleSheet/issues/169 + QStyledItemDelegate* styledItemDelegate = new QStyledItemDelegate(ui->languageComboBox); + ui->languageComboBox->setItemDelegate(styledItemDelegate); + +} + +void PreferencesDialog::loadColorSetting(QFrame *frame, const std::string& settingName) +{ + QColor color = QColor(Settings::getValue("databrowser", settingName + "_colour").toString()); + setColorSetting(frame, color); +} + +void PreferencesDialog::setColorSetting(QFrame *frame, const QColor &color) +{ + QPalette::ColorRole role; + QLineEdit *line; + + if (frame == ui->fr_bin_bg) { + line = ui->txtBlob; + role = line->backgroundRole(); + } else if (frame == ui->fr_bin_fg) { + line = ui->txtBlob; + role = line->foregroundRole(); + } else if (frame == ui->fr_reg_bg) { + line = ui->txtRegular; + role = line->backgroundRole(); + } else if (frame == ui->fr_reg_fg) { + line = ui->txtRegular; + role = line->foregroundRole(); + } else if (frame == ui->fr_null_bg) { + line = ui->txtNull; + role = line->backgroundRole(); + } else if (frame == ui->fr_null_fg) { + line = ui->txtNull; + role = line->foregroundRole(); + } else + return; + + QPalette palette = frame->palette(); + palette.setColor(frame->backgroundRole(), color); + frame->setPalette(palette); + + frame->setStyleSheet(QString(".QFrame {background-color: %2}").arg(color.name())); + + palette = line->palette(); + palette.setColor(role, color); + line->setPalette(palette); + + line->setStyleSheet(QString(".QLineEdit {color: %1; background-color: %2}").arg(palette.color(line->foregroundRole()).name(), + palette.color(line->backgroundRole()).name())); +} + +void PreferencesDialog::saveColorSetting(QFrame* frame, const std::string& settingName) +{ + Settings::setValue("databrowser", settingName + "_colour", + frame->palette().color(frame->backgroundRole())); +} + +void PreferencesDialog::adjustColorsToStyle(int style) +{ + Settings::AppStyle appStyle = static_cast(style); + setColorSetting(ui->fr_null_fg, Settings::getDefaultColorValue("databrowser", "null_fg_colour", appStyle)); + setColorSetting(ui->fr_null_bg, Settings::getDefaultColorValue("databrowser", "null_bg_colour", appStyle)); + setColorSetting(ui->fr_bin_fg, Settings::getDefaultColorValue("databrowser", "bin_fg_colour", appStyle)); + setColorSetting(ui->fr_bin_bg, Settings::getDefaultColorValue("databrowser", "bin_bg_colour", appStyle)); + setColorSetting(ui->fr_reg_fg, Settings::getDefaultColorValue("databrowser", "reg_fg_colour", appStyle)); + setColorSetting(ui->fr_reg_bg, Settings::getDefaultColorValue("databrowser", "reg_bg_colour", appStyle)); + + for(int i=0; i < ui->treeSyntaxHighlighting->topLevelItemCount(); ++i) + { + std::string name = ui->treeSyntaxHighlighting->topLevelItem(i)->text(0).toStdString(); + QColor color = Settings::getDefaultColorValue("syntaxhighlighter", name + "_colour", appStyle); + ui->treeSyntaxHighlighting->topLevelItem(i)->setTextColor(2, color); + ui->treeSyntaxHighlighting->topLevelItem(i)->setBackgroundColor(2, color); + ui->treeSyntaxHighlighting->topLevelItem(i)->setText(2, color.name()); + } +} + +void PreferencesDialog::activateRemoteTab(bool active) +{ + ui->tabWidget->setTabEnabled(ui->tabWidget->indexOf(ui->tabRemote), active); +} + +void PreferencesDialog::addClientCertificate() +{ + // Get certificate file to import and abort here if no file gets selected + // NOTE: We assume here that this file contains both, certificate and private key! + QString path = FileDialog::getOpenFileName(OpenCertificateFile, this, tr("Import certificate file"), "*.pem"); + if(path.isEmpty()) + return; + + // Open file and check if any certificates were imported + auto certs = QSslCertificate::fromPath(path); + if(certs.size() == 0) + { + QMessageBox::warning(this, qApp->applicationName(), tr("No certificates found in this file.")); + return; + } + + // Add certificates to list + for(int i=0;itableClientCerts->currentRow(); + if(row == -1) + return; + + // Double check + if(QMessageBox::question(this, qApp->applicationName(), tr("Are you sure you want do remove this certificate? All certificate " + "data will be deleted from the application settings!"), + QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::Yes) + { + ui->tableClientCerts->removeRow(row); + } +} + +void PreferencesDialog::addClientCertToTable(const QString& path, const QSslCertificate& cert) +{ + // Do nothing if the file doesn't even exist + if(!QFile::exists(path)) + return; + + // Add new row + int row = ui->tableClientCerts->rowCount(); + ui->tableClientCerts->setRowCount(row + 1); + + // Fill row with data + QTableWidgetItem* cert_file = new QTableWidgetItem(path); + cert_file->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + ui->tableClientCerts->setItem(row, 0, cert_file); + + QTableWidgetItem* cert_subject_cn = new QTableWidgetItem(cert.subjectInfo(QSslCertificate::CommonName).at(0)); + cert_subject_cn->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + ui->tableClientCerts->setItem(row, 1, cert_subject_cn); + + QTableWidgetItem* cert_issuer_cn = new QTableWidgetItem(cert.issuerInfo(QSslCertificate::CommonName).at(0)); + cert_issuer_cn->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + ui->tableClientCerts->setItem(row, 2, cert_issuer_cn); + + QTableWidgetItem* cert_from = new QTableWidgetItem(cert.effectiveDate().toString()); + cert_from->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + ui->tableClientCerts->setItem(row, 3, cert_from); + + QTableWidgetItem* cert_to = new QTableWidgetItem(cert.expiryDate().toString()); + cert_to->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + ui->tableClientCerts->setItem(row, 4, cert_to); + + QTableWidgetItem* cert_serialno = new QTableWidgetItem(QString(cert.serialNumber())); + cert_serialno->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled); + ui->tableClientCerts->setItem(row, 5, cert_serialno); +} + +void PreferencesDialog::chooseRemoteCloneDirectory() +{ + QString s = FileDialog::getExistingDirectory( + NoSpecificType, + this, + tr("Choose a directory"), + QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks); + + if(!s.isEmpty() && QDir().mkpath(s)) + ui->editRemoteCloneDirectory->setText(s); +} + +void PreferencesDialog::updatePreviewFont() +{ + if (ui->spinDataBrowserFontSize->value() != 0) { + QFont textFont(ui->comboDataBrowserFont->currentText()); + textFont.setPointSize(ui->spinDataBrowserFontSize->value()); + ui->txtRegular->setFont(textFont); + textFont.setItalic(true); + ui->txtNull->setFont(textFont); + ui->txtBlob->setFont(textFont); + } +} + +void PreferencesDialog::on_buttonManageFileExtension_clicked() +{ + FileExtensionManager *manager = new FileExtensionManager(m_dbFileExtensions, this); + + if(manager->exec() == QDialog::Accepted) + { + m_dbFileExtensions = manager->getDBFileExtensions(); + } +} + +void PreferencesDialog::on_buttonBox_clicked(QAbstractButton* button) +{ + if (button == ui->buttonBox->button(QDialogButtonBox::Cancel)) + reject(); + else if (button == ui->buttonBox->button(QDialogButtonBox::Save)) + saveSettings(); + else if (button == ui->buttonBox->button(QDialogButtonBox::RestoreDefaults)) { + if (QMessageBox::warning(this, QApplication::applicationName(), tr("Are you sure you want to clear all the saved settings?\nAll your preferences will be lost and default values will be used."), + QMessageBox::RestoreDefaults | QMessageBox::Cancel, QMessageBox::Cancel) == QMessageBox::RestoreDefaults) + { + Settings::restoreDefaults(); + accept(); + } + } +} + +void PreferencesDialog::configureProxy() +{ + m_proxyDialog->show(); +} diff --git a/src/SqliteDBProcess/src/PreferencesDialog.h b/src/SqliteDBProcess/src/PreferencesDialog.h new file mode 100644 index 0000000..1c31e4d --- /dev/null +++ b/src/SqliteDBProcess/src/PreferencesDialog.h @@ -0,0 +1,71 @@ +#ifndef PREFERENCESDIALOG_H +#define PREFERENCESDIALOG_H +#include "WBFZExchangePluginAPI.h" +#include + +class QTreeWidgetItem; +class QFrame; +class QSslCertificate; +class QAbstractButton; + +class ProxyDialog; + +namespace Ui { +class PreferencesDialog; +} + +class PreferencesDialog : public QDialog +{ + Q_OBJECT + +public: + enum Tabs + { + TabGeneral, + TabDatabase, + TabDataBrowser, + TabSql, + TabExtensions, + TabRemote + }; + + explicit PreferencesDialog(QWidget* parent = nullptr, Tabs tab = TabGeneral); + ~PreferencesDialog() override; + +private slots: + void loadSettings(); + void saveSettings(); + + void chooseLocation(); + void showColourDialog(QTreeWidgetItem* item, int column); + void addExtension(); + void removeExtension(); + void activateRemoteTab(bool active); + void addClientCertificate(); + void removeClientCertificate(); + void chooseRemoteCloneDirectory(); + void updatePreviewFont(); + void adjustColorsToStyle(int style); + void configureProxy(); + + void on_buttonManageFileExtension_clicked(); + void on_buttonBox_clicked(QAbstractButton* button); + +private: + Ui::PreferencesDialog* ui; + + ProxyDialog* m_proxyDialog; + + QStringList m_dbFileExtensions; + + void fillLanguageBox(); + void loadColorSetting(QFrame *frame, const std::string& name); + void setColorSetting(QFrame* frame, const QColor &color); + void saveColorSetting(QFrame* frame, const std::string& name); + void addClientCertToTable(const QString& path, const QSslCertificate& cert); + +protected: + bool eventFilter(QObject *obj, QEvent *event) override; +}; + +#endif diff --git a/src/SqliteDBProcess/src/PreferencesDialog.ui b/src/SqliteDBProcess/src/PreferencesDialog.ui new file mode 100644 index 0000000..7c8b405 --- /dev/null +++ b/src/SqliteDBProcess/src/PreferencesDialog.ui @@ -0,0 +1,2172 @@ + + + PreferencesDialog + + + + 0 + 0 + 755 + 618 + + + + Preferences + + + true + + + + + + 0 + + + + &General + + + + + + Default &location + + + locationEdit + + + + + + + + + + Remember last location + + + + + Always use this location + + + + + Remember last location for session only + + + + + + + + + + false + + + + 0 + 0 + + + + + 316 + 0 + + + + + + + + ... + + + + + + + + + + + Lan&guage + + + languageComboBox + + + + + + + + 0 + 0 + + + + QComboBox::AdjustToContents + + + 35 + + + + 20 + 15 + + + + + + + + Toolbar style + + + toolbarStyleComboMain + + + + + + + + 0 + 0 + + + + 2 + + + QComboBox::AdjustToContents + + + 35 + + + + 20 + 15 + + + + + Only display the icon + + + + + Only display the text + + + + + The text appears beside the icon + + + + + The text appears under the icon + + + + + Follow the style + + + + + + + + + 0 + 0 + + + + 2 + + + QComboBox::AdjustToContents + + + 35 + + + + 20 + 15 + + + + + Only display the icon + + + + + Only display the text + + + + + The text appears beside the icon + + + + + The text appears under the icon + + + + + Follow the style + + + + + + + + + 0 + 0 + + + + 0 + + + QComboBox::AdjustToContents + + + 35 + + + + 20 + 15 + + + + + Only display the icon + + + + + Only display the text + + + + + The text appears beside the icon + + + + + The text appears under the icon + + + + + Follow the style + + + + + + + + + 0 + 0 + + + + 0 + + + QComboBox::AdjustToContents + + + 35 + + + + 20 + 15 + + + + + Only display the icon + + + + + Only display the text + + + + + The text appears beside the icon + + + + + The text appears under the icon + + + + + Follow the style + + + + + + + + Show remote options + + + checkUseRemotes + + + + + + + enabled + + + true + + + + + + + Automatic &updates + + + checkUpdates + + + + + + + enabled + + + + + + + DB file extensions + + + buttonManageFileExtension + + + + + + + Manage + + + + + + + Main Window + + + 20 + + + toolbarStyleComboMain + + + + + + + Database Structure + + + 20 + + + toolbarStyleComboStructure + + + + + + + Browse Data + + + 20 + + + toolbarStyleComboBrowse + + + + + + + Execute SQL + + + 20 + + + toolbarStyleComboSql + + + + + + + + 0 + 0 + + + + 0 + + + QComboBox::AdjustToContents + + + 35 + + + + 20 + 15 + + + + + Only display the icon + + + + + Only display the text + + + + + The text appears beside the icon + + + + + The text appears under the icon + + + + + Follow the style + + + + + + + + Edit Database Cell + + + 20 + + + toolbarStyleComboEditCell + + + + + + + + 0 + 0 + + + + When this value is changed, all the other color preferences are also set to matching colors. + + + 0 + + + QComboBox::AdjustToContents + + + 35 + + + + 20 + 15 + + + + + Follow the desktop style + + + + + Dark style + + + + + + + + Application style + + + toolbarStyleComboStructure + + + + + + + This sets the font size for all UI elements which do not have their own font size option. + + + Font size + + + spinGeneralFontSize + + + + + + + + + + + &Database + + + + + + QFormLayout::FieldsStayAtSizeHint + + + + + Database &encoding + + + encodingComboBox + + + + + + + Open databases with foreign keys enabled. + + + &Foreign keys + + + foreignKeysCheckBox + + + + + + + Remove line breaks in schema &view + + + checkHideSchemaLinebreaks + + + + + + + Prefetch block si&ze + + + spinPrefetchSize + + + + + + + Default field type + + + defaultFieldTypeComboBox + + + + + + + + + + 255 + + + 1000000 + + + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + + + enabled + + + + + + + enabled + + + + + + + + UTF-8 + + + + + UTF-16 + + + + + + + + Database structure font size + + + spinStructureFontSize + + + + + + + + + + + + + + SQ&L to execute after opening database + + + editDatabaseDefaultSqlText + + + + + + + + 20 + 0 + + + + + 16777215 + 16777215 + + + + + + + + + + + Data &Browser + + + + + + + + Font + + + + + + &Font + + + comboDataBrowserFont + + + + + + + + + + Font si&ze + + + spinDataBrowserFontSize + + + + + + + + + + + + + Content + + + + + + Symbol limit in cell + + + spinSymbolLimit + + + + + + + + 0 + 0 + + + + 1 + + + 20000 + + + + + + + + 0 + 0 + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + + + 0 + + + 100000000 + + + + + + + Threshold for completion and calculation on selection + + + spinCompleteThreshold + + + + + + + Show images in cell + + + checkShowImagesInline + + + + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + + + + + + + + + + Field display + + + + + + Displayed &text + + + Qt::AlignCenter + + + txtNull + + + + + + + Binary + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + NULL + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + Regular + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + Qt::StrongFocus + + + Click to set this color + + + true + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + Text color + + + Qt::AlignCenter + + + + + + + Qt::StrongFocus + + + Click to set this color + + + true + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + Background color + + + Qt::AlignCenter + + + + + + + Qt::StrongFocus + + + Click to set this color + + + true + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + Qt::StrongFocus + + + Click to set this color + + + true + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + Qt::StrongFocus + + + Click to set this color + + + true + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + Qt::StrongFocus + + + Click to set this color + + + true + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + 0 + 0 + + + + + true + + + + NULL + + + + + + + + 0 + 0 + + + + + false + + + + Preview only (N/A) + + + true + + + + + + + + 0 + 0 + + + + + true + + + + BLOB + + + false + + + + + + + + + + Filters + + + + + + 1 + + + + + + + Escape character + + + editFilterEscape + + + + + + + Delay time (&ms) + + + spinFilterDelay + + + + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + + + 5000 + + + + + + + + + + + + + &SQL + + + + + + false + + + false + + + + Settings name + + + + + Context + + + + + Colour + + + + + Bold + + + + + Italic + + + + + Underline + + + + + keyword + + + Keyword + + + + + + + + + + + + + + + + + function + + + Function + + + + + table + + + Table + + + + + + + + + + + + + + + + + comment + + + Comment + + + + + + + + + + + + + + + + + identifier + + + Identifier + + + + + + + + + + + + + + + + + string + + + String + + + + + + + + + + + + + + + + + currentline + + + Current line + + + + + background + + + Background + + + + + foreground + + + Foreground + + + + + + + + + + SQL editor &font + + + comboEditorFont + + + + + + + + + + + + SQL &editor font size + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + spinEditorFontSize + + + + + + + 1 + + + + + + + + + SQL &results font size + + + spinLogFontSize + + + + + + + 1 + + + + + + + Tab size + + + spinTabSize + + + + + + + 1 + + + 16 + + + 4 + + + + + + + &Wrap lines + + + wrapComboBox + + + + + + + + Never + + + + + At word boundaries + + + + + At character boundaries + + + + + At whitespace boundaries + + + + + + + + &Quotes for identifiers + + + quoteComboBox + + + + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + + + + + + + "Double quotes" - Standard SQL (recommended) + + + + + `Grave accents` - Traditional MySQL quotes + + + + + [Square brackets] - Traditional MS SQL Server quotes + + + + + + + + Code co&mpletion + + + checkAutoCompletion + + + + + + + enabled + + + + + + + Keywords in &UPPER CASE + + + checkCompleteUpper + + + + + + + When set, the SQL keywords are completed in UPPER CASE letters. + + + enabled + + + + + + + Error indicators + + + checkErrorIndicators + + + + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + + + enabled + + + + + + + Hori&zontal tiling + + + checkHorizontalTiling + + + + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + + + enabled + + + + + + + Close button on tabs + + + checkCloseButtonOnTabs + + + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + enabled + + + + + + + + + + &Extensions + + + + + + Select extensions to load for every database: + + + + + + + + + QAbstractItemView::NoEditTriggers + + + false + + + + + + + + + Add extension + + + + :/icons/load_extension:/icons/load_extension + + + + + + + Remove extension + + + + :/icons/remove_extension:/icons/remove_extension + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + + + Disable Regular Expression extension + + + + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + + + Allow loading extensions from SQL code + + + + + + + + Remote + + + + + + 0 + + + + Your certificates + + + + + + + 550 + 0 + + + + QAbstractItemView::ExtendedSelection + + + QAbstractItemView::SelectRows + + + QAbstractItemView::ScrollPerPixel + + + false + + + + File + + + + + Subject CN + + + Subject Common Name + + + + + Issuer CN + + + Issuer Common Name + + + + + Valid from + + + + + Valid to + + + + + Serial number + + + + + + + + + + + :/icons/trigger_create:/icons/trigger_create + + + + + + + ... + + + + :/icons/trigger_delete:/icons/trigger_delete + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + CA certificates + + + + + + + 550 + 0 + + + + QAbstractItemView::SingleSelection + + + QAbstractItemView::SelectRows + + + QAbstractItemView::ScrollPerPixel + + + false + + + + Subject CN + + + Common Name + + + + + Subject O + + + Organization + + + + + Valid from + + + + + Valid to + + + + + Serial number + + + + + + + + + + + + + + Clone databases into + + + + + + + + + false + + + + 0 + 0 + + + + + 316 + 0 + + + + + + + + ... + + + + + + + + + Proxy + + + + + + + Configure + + + + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::RestoreDefaults|QDialogButtonBox::Save + + + + + + + + SqlTextEdit + QTextEdit +
sqltextedit.h
+ 1 +
+
+ + tabWidget + comboDefaultLocation + locationEdit + setLocationButton + languageComboBox + appStyleCombo + spinGeneralFontSize + toolbarStyleComboMain + toolbarStyleComboStructure + toolbarStyleComboBrowse + toolbarStyleComboSql + toolbarStyleComboEditCell + checkUseRemotes + checkUpdates + buttonManageFileExtension + encodingComboBox + foreignKeysCheckBox + checkHideSchemaLinebreaks + spinPrefetchSize + defaultFieldTypeComboBox + spinStructureFontSize + comboDataBrowserFont + spinDataBrowserFontSize + spinSymbolLimit + spinCompleteThreshold + checkShowImagesInline + fr_null_fg + fr_null_bg + txtNull + fr_bin_fg + fr_bin_bg + txtBlob + fr_reg_fg + fr_reg_bg + txtRegular + spinFilterDelay + editFilterEscape + treeSyntaxHighlighting + comboEditorFont + spinEditorFontSize + spinLogFontSize + spinTabSize + wrapComboBox + quoteComboBox + checkAutoCompletion + checkCompleteUpper + checkErrorIndicators + checkHorizontalTiling + checkCloseButtonOnTabs + listExtensions + buttonAddExtension + buttonRemoveExtension + checkRegexDisabled + checkAllowLoadExtension + tabCertificates + tableClientCerts + buttonClientCertAdd + buttonClientCertRemove + buttonProxy + editRemoteCloneDirectory + buttonRemoteBrowseCloneDirectory + tableCaCerts + + + + + + + buttonAddExtension + clicked() + PreferencesDialog + addExtension() + + + 732 + 96 + + + 245 + 137 + + + + + buttonRemoveExtension + clicked() + PreferencesDialog + removeExtension() + + + 732 + 125 + + + 245 + 137 + + + + + treeSyntaxHighlighting + itemDoubleClicked(QTreeWidgetItem*,int) + PreferencesDialog + showColourDialog(QTreeWidgetItem*,int) + + + 103 + 48 + + + 395 + 0 + + + + + setLocationButton + clicked() + PreferencesDialog + chooseLocation() + + + 732 + 106 + + + 294 + 202 + + + + + checkUseRemotes + toggled(bool) + PreferencesDialog + activateRemoteTab(bool) + + + 301 + 503 + + + 382 + 572 + + + + + buttonClientCertAdd + clicked() + PreferencesDialog + addClientCertificate() + + + 722 + 110 + + + 596 + 243 + + + + + buttonClientCertRemove + clicked() + PreferencesDialog + removeClientCertificate() + + + 722 + 139 + + + 597 + 295 + + + + + buttonRemoteBrowseCloneDirectory + clicked() + PreferencesDialog + chooseRemoteCloneDirectory() + + + 732 + 538 + + + 595 + 41 + + + + + checkAutoCompletion + toggled(bool) + checkCompleteUpper + setEnabled(bool) + + + 733 + 444 + + + 733 + 474 + + + + + buttonBox + clicked(QAbstractButton*) + PreferencesDialog + on_buttonBox_clicked(QAbstractButton*) + + + 394 + 584 + + + 385 + 306 + + + + + buttonProxy + clicked() + PreferencesDialog + configureProxy() + + + 225 + 506 + + + 385 + 306 + + + + + + saveSettings() + chooseLocation() + showColourDialog(QTreeWidgetItem*,int) + addExtension() + removeExtension() + activateRemoteTab(bool) + addClientCertificate() + removeClientCertificate() + chooseRemoteCloneDirectory() + configureProxy() + +
diff --git a/src/SqliteDBProcess/src/ProxyDialog.cpp b/src/SqliteDBProcess/src/ProxyDialog.cpp new file mode 100644 index 0000000..c9e8b63 --- /dev/null +++ b/src/SqliteDBProcess/src/ProxyDialog.cpp @@ -0,0 +1,57 @@ +#include "ProxyDialog.h" +#include "ui_ProxyDialog.h" +#include "Settings.h" + +ProxyDialog::ProxyDialog(QWidget *parent) : + QDialog(parent), + ui(new Ui::ProxyDialog) +{ + ui->setupUi(this); + + // Add different proxy types. We use user data strings for addressing them later + ui->comboType->addItem(tr("None"), "none"); + ui->comboType->addItem(tr("System settings"), "system"); + ui->comboType->addItem(tr("HTTP"), "http"); + ui->comboType->addItem(tr("Socks v5"), "socks5"); + + // Load current settings + ui->comboType->setCurrentIndex(ui->comboType->findData(Settings::getValue("proxy", "type").toString())); + ui->editHost->setText(Settings::getValue("proxy", "host").toString()); + ui->spinPort->setValue(Settings::getValue("proxy", "port").toInt()); + ui->checkAuthentication->setChecked(Settings::getValue("proxy", "authentication").toBool()); + ui->editUser->setText(Settings::getValue("proxy", "user").toString()); + ui->editPassword->setText(Settings::getValue("proxy", "password").toString()); +} + +ProxyDialog::~ProxyDialog() +{ + delete ui; +} + +void ProxyDialog::proxyTypeChanged(int /*new_index*/) +{ + // When selecting the "None" or "System settings" proxy types, disable all the other input fields + bool proxy_configuration = (ui->comboType->currentData() != "none" && ui->comboType->currentData() != "system"); + + ui->editHost->setEnabled(proxy_configuration); + ui->spinPort->setEnabled(proxy_configuration); + ui->checkAuthentication->setEnabled(proxy_configuration); + ui->editUser->setEnabled(ui->checkAuthentication->isChecked() && proxy_configuration); // Enable user name and password only if the... + ui->editPassword->setEnabled(ui->checkAuthentication->isChecked() && proxy_configuration); // ... Authentication Required checkbox is checked +} + +void ProxyDialog::authenticationRequiredChanged(bool required) +{ + ui->editUser->setEnabled(required); + ui->editPassword->setEnabled(required); +} + +void ProxyDialog::saveSettings() const +{ + Settings::setValue("proxy", "type", ui->comboType->currentData()); + Settings::setValue("proxy", "host", ui->editHost->text()); + Settings::setValue("proxy", "port", ui->spinPort->value()); + Settings::setValue("proxy", "authentication", ui->checkAuthentication->isChecked()); + Settings::setValue("proxy", "user", ui->editUser->text()); + Settings::setValue("proxy", "password", ui->editPassword->text()); +} diff --git a/src/SqliteDBProcess/src/ProxyDialog.h b/src/SqliteDBProcess/src/ProxyDialog.h new file mode 100644 index 0000000..4a85fd7 --- /dev/null +++ b/src/SqliteDBProcess/src/ProxyDialog.h @@ -0,0 +1,28 @@ +#ifndef PROXYDIALOG_H +#define PROXYDIALOG_H +#include "WBFZExchangePluginAPI.h" +#include + +namespace Ui { +class ProxyDialog; +} + +class ProxyDialog : public QDialog +{ + Q_OBJECT + +public: + explicit ProxyDialog(QWidget* parent = nullptr); + ~ProxyDialog(); + + void saveSettings() const; + +private slots: + void proxyTypeChanged(int new_index); + void authenticationRequiredChanged(bool required); + +private: + Ui::ProxyDialog* ui; +}; + +#endif diff --git a/src/SqliteDBProcess/src/ProxyDialog.ui b/src/SqliteDBProcess/src/ProxyDialog.ui new file mode 100644 index 0000000..2437e60 --- /dev/null +++ b/src/SqliteDBProcess/src/ProxyDialog.ui @@ -0,0 +1,201 @@ + + + ProxyDialog + + + + 0 + 0 + 535 + 231 + + + + Proxy Configuration + + + + + + + + Pro&xy Type + + + comboType + + + + + + + + + + Host Na&me + + + editHost + + + + + + + + + + Port + + + spinPort + + + + + + + 1 + + + 65536 + + + + + + + Authentication Re&quired + + + checkAuthentication + + + + + + + + + + &User Name + + + editUser + + + + + + + + + + Password + + + editPassword + + + + + + + QLineEdit::Password + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + comboType + editHost + spinPort + checkAuthentication + editUser + editPassword + + + + + buttonBox + accepted() + ProxyDialog + accept() + + + 227 + 210 + + + 157 + 230 + + + + + buttonBox + rejected() + ProxyDialog + reject() + + + 295 + 216 + + + 286 + 230 + + + + + comboType + currentIndexChanged(int) + ProxyDialog + proxyTypeChanged(int) + + + 343 + 22 + + + 267 + 115 + + + + + checkAuthentication + toggled(bool) + ProxyDialog + authenticationRequiredChanged(bool) + + + 343 + 114 + + + 267 + 115 + + + + + + proxyTypeChanged(int) + authenticationRequiredChanged(bool) + + diff --git a/src/SqliteDBProcess/src/RemoteCommitsModel.cpp b/src/SqliteDBProcess/src/RemoteCommitsModel.cpp new file mode 100644 index 0000000..578daa6 --- /dev/null +++ b/src/SqliteDBProcess/src/RemoteCommitsModel.cpp @@ -0,0 +1,171 @@ +#include + +#include "Data.h" +#include "RemoteCommitsModel.h" +#include "Settings.h" + +using json = nlohmann::json; + +RemoteCommitsModel::RemoteCommitsModel(QObject* parent) : + QAbstractItemModel(parent) +{ + QStringList header; + header << tr("Commit ID") << tr("Message") << tr("Date") << tr("Author") << tr("Size"); + rootItem = new QTreeWidgetItem(header); +} + +RemoteCommitsModel::~RemoteCommitsModel() +{ + delete rootItem; +} + +void RemoteCommitsModel::clear() +{ + beginResetModel(); + + // Remove all data except for the root item + while(rootItem->childCount()) + delete rootItem->child(0); + + endResetModel(); +} + +void RemoteCommitsModel::refresh(const std::string& json_data, const std::string& last_commit_id, const std::string& current_commit_id) +{ + // Clear previous items + clear(); + beginResetModel(); + + // Read in all commits + json j = json::parse(json_data, nullptr, false); + std::unordered_map commit_to_iterator; + for(auto it=j.begin();it!=j.end();++it) + commit_to_iterator.insert({it.value()["id"], it}); + + // Starting from the last commit add follow the chain up to the first commit + std::string parent_id = last_commit_id; + while(true) + { + if(commit_to_iterator.find(parent_id) == commit_to_iterator.end()) + break; + + json commit = commit_to_iterator[parent_id].value(); + + QTreeWidgetItem* item = new QTreeWidgetItem(rootItem); + item->setText(ColumnCommitId, QString::fromStdString(commit["id"])); + item->setText(ColumnMessage, QString::fromStdString(commit["message"])); + item->setToolTip(ColumnMessage, QString::fromStdString(commit["message"])); + + item->setText(ColumnDate, isoDateTimeStringToLocalDateTimeString(QString::fromStdString(commit["timestamp"]))); + + QString authored_by = QString::fromStdString(commit["author_name"]) + " <" + QString::fromStdString(commit["author_email"]) + ">"; + QString committed_by = QString::fromStdString(commit["committer_name"]) + " <" + QString::fromStdString(commit["committer_email"]) + ">"; + item->setText(ColumnAuthor, authored_by); + if(committed_by == " <>" || authored_by == committed_by) // The first check effectively checks for no committer details + item->setToolTip(ColumnAuthor, tr("Authored and committed by %1").arg(authored_by)); + else + item->setToolTip(ColumnAuthor, tr("Authored by %1, committed by %2").arg(authored_by, committed_by)); + + for(const auto& e : commit["tree"]["entries"]) + { + if(e["entry_type"] == "db") + { + item->setText(ColumnSize, humanReadableSize(e["size"])); + break; + } + } + + // Make the currently checked out commit id bold + if(current_commit_id == commit["id"]) + { + QFont bold_font = item->font(ColumnCommitId); + bold_font.setBold(true); + item->setFont(0, bold_font); + } + + parent_id = QString::fromStdString(commit["parent"]).toStdString(); + } + + // Refresh the view + endResetModel(); +} + +QModelIndex RemoteCommitsModel::index(int row, int column, const QModelIndex& parent) const +{ + if(!hasIndex(row, column, parent)) + return QModelIndex(); + + QTreeWidgetItem *parentItem; + if(!parent.isValid()) + parentItem = rootItem; + else + parentItem = static_cast(parent.internalPointer()); + + QTreeWidgetItem* childItem = parentItem->child(row); + if(childItem) + return createIndex(row, column, childItem); + else + return QModelIndex(); +} + +QModelIndex RemoteCommitsModel::parent(const QModelIndex& index) const +{ + if(!index.isValid()) + return QModelIndex(); + + QTreeWidgetItem* childItem = static_cast(index.internalPointer()); + QTreeWidgetItem* parentItem = childItem->parent(); + + if(parentItem == rootItem) + return QModelIndex(); + else + return createIndex(0, 0, parentItem); +} + +QVariant RemoteCommitsModel::data(const QModelIndex& index, int role) const +{ + if(!index.isValid()) + return QVariant(); + + // Get the item the index points at + QTreeWidgetItem* item = static_cast(index.internalPointer()); + + // Return data depending on the role + switch(role) + { + case Qt::DisplayRole: + case Qt::EditRole: + return item->text(index.column()); + case Qt::ToolTipRole: + return item->toolTip(index.column()); + case Qt::FontRole: + return item->font(0); // Choose font for the entire row depending on the first column + default: + return QVariant(); + } +} + +QVariant RemoteCommitsModel::headerData(int section, Qt::Orientation orientation, int role) const +{ + // Get the header string from the root item + if(orientation == Qt::Horizontal && role == Qt::DisplayRole) + return rootItem->data(section, role); + + return QVariant(); +} + +int RemoteCommitsModel::rowCount(const QModelIndex& parent) const +{ + if(parent.column() > 0) + return 0; + + if(!parent.isValid()) + return rootItem->childCount(); + else + return static_cast(parent.internalPointer())->childCount(); +} + +int RemoteCommitsModel::columnCount(const QModelIndex& /*parent*/) const +{ + return rootItem->columnCount(); +} diff --git a/src/SqliteDBProcess/src/RemoteCommitsModel.h b/src/SqliteDBProcess/src/RemoteCommitsModel.h new file mode 100644 index 0000000..c70baaf --- /dev/null +++ b/src/SqliteDBProcess/src/RemoteCommitsModel.h @@ -0,0 +1,44 @@ +#ifndef REMOTECOMMITSMODEL_H +#define REMOTECOMMITSMODEL_H +#include "WBFZExchangePluginAPI.h" +#include + +#include + +class QTreeWidgetItem; + +class RemoteCommitsModel : public QAbstractItemModel +{ + Q_OBJECT + +public: + explicit RemoteCommitsModel(QObject* parent); + ~RemoteCommitsModel() override; + + void clear(); + void refresh(const std::string& json_data, const std::string& last_commit_id, const std::string& current_commit_id); + + QModelIndex index(int row, int column,const QModelIndex& parent = QModelIndex()) const override; + QModelIndex parent(const QModelIndex& index) const override; + + QVariant data(const QModelIndex& index, int role) const override; + QVariant headerData(int section, Qt::Orientation orientation, int role) const override; + + int rowCount(const QModelIndex& parent = QModelIndex()) const override; + int columnCount(const QModelIndex& parent = QModelIndex()) const override; + + enum Columns + { + ColumnCommitId, + ColumnMessage, + ColumnDate, + ColumnAuthor, + ColumnSize, + }; + +private: + // Pointer to the root item. This contains all the actual item data. + QTreeWidgetItem* rootItem; +}; + +#endif diff --git a/src/SqliteDBProcess/src/RemoteDatabase.cpp b/src/SqliteDBProcess/src/RemoteDatabase.cpp new file mode 100644 index 0000000..06d5647 --- /dev/null +++ b/src/SqliteDBProcess/src/RemoteDatabase.cpp @@ -0,0 +1,432 @@ +#include +#include +#include +#include +#include +#include +#include + +#include + +#include "FileDialog.h" +#include "RemoteDatabase.h" +#include "Settings.h" +#include "sqlite.h" +#include "version.h" + +RemoteDatabase::RemoteDatabase() : + m_dbLocal(nullptr) +{ +} + +RemoteDatabase::~RemoteDatabase() +{ + // Close local storage db - but only if it was created/opened in the meantime + if(m_dbLocal) + sqlite3_close(m_dbLocal); +} + +void RemoteDatabase::localAssureOpened() +{ + // This function should be called first in each RemoteDatabase::local* function. It assures the database for storing + // the local database information is opened and ready. If the database file doesn't exist yet it is created by this + // function. If the database file is already created and opened this function does nothing. The reason to open the + // database on first use instead of doing that in the constructor of this class is that this way no database file is + // going to be created and no database handle is held when it's not actually needed. For people not interested in + // the dbhub.io functionality this means no unnecessary files being created. + + // Check if database is already opened and return if it is + if(m_dbLocal) + return; + + // Make sure the directory exists + QString database_directory = QStandardPaths::writableLocation( +#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0) + QStandardPaths::AppDataLocation +#else + QStandardPaths::GenericDataLocation +#endif + ); + QDir().mkpath(database_directory); + + // Open file + QString database_file = database_directory + "/remotedbs.db"; + if(sqlite3_open_v2(database_file.toUtf8(), &m_dbLocal, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, nullptr) != SQLITE_OK) + { + QMessageBox::warning(nullptr, qApp->applicationName(), tr("Error opening local databases list.\n%1").arg(QString::fromUtf8(sqlite3_errmsg(m_dbLocal)))); + return; + } + + // Create local local table if it doesn't exists yet + char* errmsg; + QString statement = QString("CREATE TABLE IF NOT EXISTS \"local\"(" + "\"id\" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT," + "\"identity\" TEXT NOT NULL," + "\"name\" TEXT NOT NULL," + "\"url\" TEXT NOT NULL," + "\"commit_id\" TEXT NOT NULL," + "\"file\" TEXT NOT NULL UNIQUE," + "\"modified\" INTEGER DEFAULT 0," + "\"branch\" TEXT NOT NULL DEFAULT \"master\"" + ")"); + if(sqlite3_exec(m_dbLocal, statement.toUtf8(), nullptr, nullptr, &errmsg) != SQLITE_OK) + { + QMessageBox::warning(nullptr, qApp->applicationName(), tr("Error creating local databases list.\n%1").arg(QString::fromUtf8(errmsg))); + sqlite3_free(errmsg); + sqlite3_close(m_dbLocal); + m_dbLocal = nullptr; + return; + } +} + +QString RemoteDatabase::localAdd(QString filename, QString identity, const QUrl& url, const std::string& new_commit_id, const std::string& branch) +{ + localAssureOpened(); + + // Remove the path + QFileInfo f(identity); + identity = f.fileName(); + + // Check if this file has already been checked in + std::string last_commit_id = localLastCommitId(identity, url.toString(), branch); + if(last_commit_id.empty()) + { + // The file hasn't been checked in yet. So add a new record for it. + + // Generate a new file name to save the file under + filename = QString("%2_%1.remotedb").arg(QDateTime::currentMSecsSinceEpoch()).arg(filename); + + // Insert database into local database list + QString sql = QString("INSERT INTO local(identity, name, url, commit_id, file, branch) VALUES(?, ?, ?, ?, ?, ?)"); + sqlite3_stmt* stmt; + if(sqlite3_prepare_v2(m_dbLocal, sql.toUtf8(), -1, &stmt, nullptr) != SQLITE_OK) + return QString(); + + if(sqlite3_bind_text(stmt, 1, identity.toUtf8(), identity.toUtf8().length(), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return QString(); + } + + if(sqlite3_bind_text(stmt, 2, url.fileName().toUtf8(), url.fileName().toUtf8().length(), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return QString(); + } + + if(sqlite3_bind_text(stmt, 3, url.toString(QUrl::PrettyDecoded | QUrl::RemoveQuery).toUtf8(), + url.toString(QUrl::PrettyDecoded | QUrl::RemoveQuery).toUtf8().length(), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return QString(); + } + + if(sqlite3_bind_text(stmt, 4, new_commit_id.c_str(), static_cast(new_commit_id.size()), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return QString(); + } + + if(sqlite3_bind_text(stmt, 5, filename.toUtf8(), filename.size(), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return QString(); + } + + if(sqlite3_bind_text(stmt, 6, branch.c_str(), static_cast(branch.size()), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return QString(); + } + + if(sqlite3_step(stmt) != SQLITE_DONE) + { + sqlite3_finalize(stmt); + return QString(); + } + + sqlite3_finalize(stmt); + + // Return full path to the new file + return Settings::getValue("remote", "clonedirectory").toString() + "/" + filename; + } + + // If we get here, the file has been checked in before. Check next if it has been updated in the meantime. + if(last_commit_id != new_commit_id) + { + // The file has already been checked in and the commit ids are different. If they weren't we wouldn't need to update anything + + QString sql = QString("UPDATE local SET commit_id=? WHERE identity=? AND url=? AND branch=?"); + sqlite3_stmt* stmt; + if(sqlite3_prepare_v2(m_dbLocal, sql.toUtf8(), -1, &stmt, nullptr) != SQLITE_OK) + return QString(); + + if(sqlite3_bind_text(stmt, 1, new_commit_id.c_str(), static_cast(new_commit_id.size()), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return QString(); + } + + if(sqlite3_bind_text(stmt, 2, identity.toUtf8(), identity.toUtf8().length(), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return QString(); + } + + if(sqlite3_bind_text(stmt, 3, url.toString(QUrl::PrettyDecoded | QUrl::RemoveQuery).toUtf8(), + url.toString(QUrl::PrettyDecoded | QUrl::RemoveQuery).toUtf8().length(), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return QString(); + } + + if(sqlite3_bind_text(stmt, 4, branch.c_str(), static_cast(branch.size()), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return QString(); + } + + if(sqlite3_step(stmt) != SQLITE_DONE) + { + sqlite3_finalize(stmt); + return QString(); + } + + sqlite3_finalize(stmt); + } + + // If we got here, the file was already checked in (and was either updated or not (obviously)). This mean we can just return the file name as + // we know it. + return localExists(url, identity, branch); +} + +QString RemoteDatabase::localExists(const QUrl& url, QString identity, const std::string& branch) +{ + localAssureOpened(); + + // Extract commit id from url and remove query part afterwards + QString url_commit_id = QUrlQuery(url).queryItemValue("commit"); + + // Query commit id and filename for the given combination of url and identity + QString sql = QString("SELECT id, commit_id, file FROM local WHERE url=? AND identity=? AND branch=?"); + sqlite3_stmt* stmt; + if(sqlite3_prepare_v2(m_dbLocal, sql.toUtf8(), -1, &stmt, nullptr) != SQLITE_OK) + return QString(); + + if(sqlite3_bind_text(stmt, 1, url.toString(QUrl::PrettyDecoded | QUrl::RemoveQuery).toUtf8(), url.toString(QUrl::PrettyDecoded | QUrl::RemoveQuery).toUtf8().length(), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return QString(); + } + + QFileInfo f(identity); // Remove the path + identity = f.fileName(); + if(sqlite3_bind_text(stmt, 2, identity.toUtf8(), identity.toUtf8().length(), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return QString(); + } + + if(sqlite3_bind_text(stmt, 3, branch.c_str(), static_cast(branch.size()), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return QString(); + } + + if(sqlite3_step(stmt) != SQLITE_ROW) + { + // If there was either an error or no record was found for this combination of url and + // identity, stop here. + sqlite3_finalize(stmt); + return QString(); + } + + // Having come here we can assume that at least some local clone for the given combination of + // url, identity and branch exists. So extract all the information we have on it. + QString local_commit_id = QString::fromUtf8(reinterpret_cast(sqlite3_column_text(stmt, 1))); + QString local_file = QString::fromUtf8(reinterpret_cast(sqlite3_column_text(stmt, 2))); + sqlite3_finalize(stmt); + + // There are three possibilities now: either we didn't get any commit id in the URL in which case we just return the file we got, no matter what. + // Or the requested commit id is the same as the local commit id in which case we return the file we got as well. + // Or the requested commit id differ in which case we return no match. + if(url_commit_id.isNull() || local_commit_id == url_commit_id) + { + // Both commit ids are the same. That's the perfect match, so we can open the local file if it still exists + return localCheckFile(local_file); + } else { + // The commit ids differ. This means we have no match + return QString(); + } +} + +QString RemoteDatabase::localCheckFile(const QString& local_file) +{ + // This function takes the file name of a locally cloned database and checks if this file still exists. If it has been deleted in the meantime it returns + // an empty string and deletes the file from the clone database. If the file still exists, it returns the full path to the file. + + localAssureOpened(); + + // Build the full path to where the file should be + QString full_path = Settings::getValue("remote", "clonedirectory").toString() + "/" + local_file; + + // Check if the database still exists. If so return its path, if not return an empty string to redownload it + if(QFile::exists(full_path)) + { + return full_path; + } else { + // Remove the apparently invalid entry from the local clones database to avoid future lookups and confusions. The file column should + // be unique for the entire table because the files are all in the same directory and their names need to be unique because of this. + localDeleteFile(local_file); + + // Return empty string to indicate a redownload request + return QString(); + } +} + +std::string RemoteDatabase::localLastCommitId(QString identity, const QUrl& url, const std::string& branch) +{ + localAssureOpened(); + + // Query commit id for that file name + QString sql = QString("SELECT commit_id FROM local WHERE identity=? AND url=? AND branch=?"); + sqlite3_stmt* stmt; + if(sqlite3_prepare_v2(m_dbLocal, sql.toUtf8(), -1, &stmt, nullptr) != SQLITE_OK) + return std::string(); + + QFileInfo f(identity); // Remove the path + identity = f.fileName(); + if(sqlite3_bind_text(stmt, 1, identity.toUtf8(), identity.toUtf8().length(), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return std::string(); + } + + if(sqlite3_bind_text(stmt, 2, url.toString(QUrl::PrettyDecoded | QUrl::RemoveQuery).toUtf8(), + url.toString(QUrl::PrettyDecoded | QUrl::RemoveQuery).toUtf8().size(), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return std::string(); + } + + if(sqlite3_bind_text(stmt, 3, branch.c_str(), static_cast(branch.size()), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return std::string(); + } + + if(sqlite3_step(stmt) != SQLITE_ROW) + { + // If there was either an error or no record was found for this file name, stop here. + sqlite3_finalize(stmt); + return std::string(); + } + + // Having come here we can assume that at least some local clone with the given file name + std::string local_commit_id = reinterpret_cast(sqlite3_column_text(stmt, 0)); + sqlite3_finalize(stmt); + + return local_commit_id; +} + +std::vector RemoteDatabase::localGetLocalFiles(QString identity) +{ + localAssureOpened(); + + // Get all rows for this identity + QString sql = QString("SELECT name, url, commit_id, file, branch FROM local WHERE identity=? ORDER BY url"); + sqlite3_stmt* stmt; + if(sqlite3_prepare_v2(m_dbLocal, sql.toUtf8(), -1, &stmt, nullptr) != SQLITE_OK) + return {}; + + QFileInfo f(identity); + identity = f.fileName(); + if(sqlite3_bind_text(stmt, 1, identity.toUtf8(), identity.toUtf8().length(), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return {}; + } + + std::vector result; + while(sqlite3_step(stmt) == SQLITE_ROW) + { + result.emplace_back(reinterpret_cast(sqlite3_column_text(stmt, 0)), + reinterpret_cast(sqlite3_column_text(stmt, 1)), + reinterpret_cast(sqlite3_column_text(stmt, 2)), + reinterpret_cast(sqlite3_column_text(stmt, 3)), + reinterpret_cast(sqlite3_column_text(stmt, 4)), + identity.toStdString()); + } + + sqlite3_finalize(stmt); + return result; +} + +RemoteDatabase::LocalFileInfo RemoteDatabase::localGetLocalFileInfo(QString filename) +{ + localAssureOpened(); + + // Find this file in our database + QString sql = QString("SELECT name, url, commit_id, branch, identity FROM local WHERE file=?"); + sqlite3_stmt* stmt; + if(sqlite3_prepare_v2(m_dbLocal, sql.toUtf8(), -1, &stmt, nullptr) != SQLITE_OK) + return {}; + + // Remove the path for querying the file name + filename = QFileInfo(filename).fileName(); + if(sqlite3_bind_text(stmt, 1, filename.toUtf8(), filename.toUtf8().length(), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return {}; + } + + if(sqlite3_step(stmt) != SQLITE_ROW) + { + // If there was either an error or no record was found for this file name, stop here. + sqlite3_finalize(stmt); + return {}; + } + + // Retrieve and return all the information we have + RemoteDatabase::LocalFileInfo result(reinterpret_cast(sqlite3_column_text(stmt, 0)), + reinterpret_cast(sqlite3_column_text(stmt, 1)), + reinterpret_cast(sqlite3_column_text(stmt, 2)), + filename.toStdString(), + reinterpret_cast(sqlite3_column_text(stmt, 3)), + reinterpret_cast(sqlite3_column_text(stmt, 4))); + sqlite3_finalize(stmt); + return result; +} + +void RemoteDatabase::localDeleteFile(QString filename) +{ + localAssureOpened(); + + // Remove the file's entry in our database + QString sql = QString("DELETE FROM local WHERE file=?"); + sqlite3_stmt* stmt; + if(sqlite3_prepare_v2(m_dbLocal, sql.toUtf8(), -1, &stmt, nullptr) != SQLITE_OK) + return; + if(sqlite3_bind_text(stmt, 1, filename.toUtf8(), filename.toUtf8().length(), SQLITE_TRANSIENT)) + { + sqlite3_finalize(stmt); + return; + } + sqlite3_step(stmt); + sqlite3_finalize(stmt); + + // Delete the actual file on disk + QFile::remove(Settings::getValue("remote", "clonedirectory").toString() + "/" + filename); +} + +QString RemoteDatabase::LocalFileInfo::user_name() const +{ + // Figure out the user name from the URL + + QString path = QUrl(QString::fromStdString(url)).path(); + + if(path.count('/') < 2 || !path.startsWith('/')) + return QString(); + else + return path.mid(1, path.indexOf('/', 1) - 1); +} diff --git a/src/SqliteDBProcess/src/RemoteDatabase.h b/src/SqliteDBProcess/src/RemoteDatabase.h new file mode 100644 index 0000000..4ac1fbe --- /dev/null +++ b/src/SqliteDBProcess/src/RemoteDatabase.h @@ -0,0 +1,86 @@ +#ifndef REMOTEDATABASE_H +#define REMOTEDATABASE_H +#include "WBFZExchangePluginAPI.h" +#include +#include + +#include + +struct sqlite3; + +class RemoteDatabase : public QObject +{ + Q_OBJECT + +public: + RemoteDatabase(); + ~RemoteDatabase() override; + + // This class compiles all the information on a lcao database file + class LocalFileInfo + { + public: + LocalFileInfo() + {} + + LocalFileInfo(const std::string& _name, + const std::string& _url, + const std::string& _commit_id, + const std::string& _file, + const std::string& _branch, + const std::string& _identity) : + name(_name), + url(_url), + commit_id(_commit_id), + file(_file), + branch(_branch), + identity(_identity) + {} + + void clear() { name = url = commit_id = file = branch = identity = {}; } + QString user_name() const; + + std::string name; // Database name + std::string url; // URL for cloning + std::string commit_id; // Commit ID at the time of the cloning + std::string file; // Name of the local file on disk + std::string branch; // Cloned branch + std::string identity; // Identity used for cloning + }; + + // Return a list of all checked out databases for a given identity + std::vector localGetLocalFiles(QString identity); + + // Return information on a single file + LocalFileInfo localGetLocalFileInfo(QString filename); + + // Delete a local database clone + void localDeleteFile(QString filename); + + // This function checks if there already is a clone for the given combination of url and identity. It returns the filename + // of this clone if there is or a null string if there isn't a clone yet. The identity needs to be part of this check because + // with the url alone there could be corner cases where different versions or whatever may not be accessible for all users. + // If the URL contains a commit id (optional), this commit id is part of the check. + QString localExists(const QUrl& url, QString identity, const std::string& branch); + + // This function takes a file name and checks with which commit id we had checked out this file or last pushed it. + std::string localLastCommitId(QString clientCert, const QUrl& url, const std::string& branch); + + // This function adds a new local database clone to our internal list. It does so by adding a single + // new record to the remote dbs database. All the fields are extracted from the filename, the identity + // and (most importantly) the url parameters. Note that for the commit id field to be correctly filled we + // require the commit id to be part of the url parameter. Also note that this function doesn't care if the + // database has already been added to the list or not. If you need this information you need to check it before + // calling this function, ideally even before sending out a request to the network. The function returns the full + // path of the newly created/updated file. + QString localAdd(QString filename, QString identity, const QUrl& url, const std::string& new_commit_id, const std::string& branch); + +private: + // Helper functions for managing the list of locally available databases + void localAssureOpened(); + QString localCheckFile(const QString& local_file); + + sqlite3* m_dbLocal; +}; + +#endif diff --git a/src/SqliteDBProcess/src/RemoteDock.cpp b/src/SqliteDBProcess/src/RemoteDock.cpp new file mode 100644 index 0000000..288073c --- /dev/null +++ b/src/SqliteDBProcess/src/RemoteDock.cpp @@ -0,0 +1,675 @@ +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include "RemoteDock.h" +#include "ui_RemoteDock.h" +#include "Settings.h" +#include "RemoteCommitsModel.h" +#include "RemoteDatabase.h" +#include "RemoteLocalFilesModel.h" +#include "RemoteModel.h" +#include "SqliteDBMainWindow.h" +#include "RemotePushDialog.h" +#include "PreferencesDialog.h" + +using json = nlohmann::json; + +RemoteDock::RemoteDock(SqliteDBMainWindow* parent) + : QDialog(parent), + ui(new Ui::RemoteDock), + mainWindow(parent), + remoteModel(new RemoteModel(this)), + remoteLocalFilesModel(new RemoteLocalFilesModel(this, remoteDatabase)), + remoteCommitsModel(new RemoteCommitsModel(this)) +{ + ui->setupUi(this); + + // Set models + ui->treeRemote->setModel(remoteModel); + ui->treeLocal->setModel(remoteLocalFilesModel); + ui->treeDatabaseCommits->setModel(remoteCommitsModel); + + // Set initial column widths for tree views + ui->treeRemote->setColumnWidth(0, 300); // Make name column wider + ui->treeRemote->setColumnWidth(2, 80); // Make size column narrower + ui->treeLocal->setColumnWidth(RemoteLocalFilesModel::ColumnName, 300); // Make name column wider + ui->treeLocal->setColumnWidth(RemoteLocalFilesModel::ColumnSize, 80); // Make size column narrower + ui->treeLocal->setColumnHidden(RemoteLocalFilesModel::ColumnFile, true); // Hide local file name + + // Handle finished uploads and downloads of databases + connect(&RemoteNetwork::get(), &RemoteNetwork::fetchFinished, this, &RemoteDock::fetchFinished); + connect(&RemoteNetwork::get(), &RemoteNetwork::pushFinished, this, &RemoteDock::pushFinished); + + // Whenever a new directory listing has been parsed, check if it was a new root dir and, if so, open the user's directory + connect(remoteModel, &RemoteModel::directoryListingParsed, this, &RemoteDock::newDirectoryNode); + + // When the Preferences link is clicked in the no-certificates-label, open the preferences dialog. For other links than the ones we know, + // just open them in a web browser // ⲿִԶӣʱҪ + connect(ui->labelNoCert, &QLabel::linkActivated, [this](const QString& link) { + if (link == "#preferences") + { + PreferencesDialog dialog(mainWindow, PreferencesDialog::TabRemote); + if (dialog.exec()) + mainWindow->reloadSettings(); + } + else { + QDesktopServices::openUrl(QUrl(link)); + } + }); + + // When changing the current branch in the branches combo box, update the tree view accordingly + connect(ui->comboDatabaseBranch, static_cast(&QComboBox::currentIndexChanged), [this](int /*index*/) { + remoteCommitsModel->refresh(current_commit_json, ui->comboDatabaseBranch->currentData().toString().toStdString(), currently_opened_file_info.commit_id); + ui->treeDatabaseCommits->expandAll(); + }); + + // Fetch latest commit action + connect(ui->actionFetchLatestCommit, &QAction::triggered, [this]() { + // Fetch last commit of current branch + // The URL and the branch name is that of the currently opened database file. + // The latest commit id is stored in the data bits of the branch combo box. + QUrl url(QString::fromStdString(currently_opened_file_info.url)); + QUrlQuery query; + query.addQueryItem("branch", QString::fromStdString(currently_opened_file_info.branch)); + query.addQueryItem("commit", ui->comboDatabaseBranch->itemData( + ui->comboDatabaseBranch->findText(QString::fromStdString(currently_opened_file_info.branch))).toString()); + url.setQuery(query); + fetchDatabase(url.toString()); + }); + + // Prepare context menu for list of remote databases + connect(ui->treeRemote->selectionModel(), &QItemSelectionModel::currentChanged, [this](const QModelIndex& index, const QModelIndex&) { + // Only enable database actions when a database was selected + bool enable = index.isValid() && + remoteModel->modelIndexToItem(index)->value(RemoteModelColumnType).toString() == "database"; + ui->actionCloneDatabaseDoubleClick->setEnabled(enable); + }); + ui->treeRemote->selectionModel()->currentChanged(QModelIndex(), QModelIndex()); // Enable/disable all action initially + connect(ui->actionCloneDatabaseDoubleClick, &QAction::triggered, [this]() { + fetchDatabase(ui->treeRemote->currentIndex()); + }); + ui->treeRemote->addAction(ui->actionCloneDatabaseDoubleClick); + + // Prepare context menu for list of local clones + connect(ui->treeLocal->selectionModel(), &QItemSelectionModel::currentChanged, [this](const QModelIndex& index, const QModelIndex&) { + // Only enable database actions when a database was selected + bool enable = index.isValid() && + !index.sibling(index.row(), RemoteLocalFilesModel::ColumnFile).data().isNull(); + ui->actionOpenLocalDatabase->setEnabled(enable); + ui->actionPushLocalDatabase->setEnabled(enable); + ui->actionDeleteDatabase->setEnabled(enable); + }); + ui->treeLocal->selectionModel()->currentChanged(QModelIndex(), QModelIndex()); // Enable/disable all action initially + connect(ui->actionOpenLocalDatabase, &QAction::triggered, [this]() { + openLocalFile(ui->treeLocal->currentIndex()); + }); + connect(ui->actionDeleteDatabase, &QAction::triggered, [this]() { + deleteLocalDatabase(ui->treeLocal->currentIndex()); + }); + ui->treeLocal->addAction(ui->actionOpenLocalDatabase); + ui->treeLocal->addAction(ui->actionPushLocalDatabase); + ui->treeLocal->addAction(ui->actionDeleteDatabase); + + // Prepare context menu for list of commits + connect(ui->treeDatabaseCommits->selectionModel(), &QItemSelectionModel::currentChanged, [this](const QModelIndex& index, const QModelIndex&) { + // Only enable database actions when a commit was selected + bool enable = index.isValid(); + ui->actionFetchCommit->setEnabled(enable); + ui->actionDownloadCommit->setEnabled(enable); + }); + ui->treeDatabaseCommits->selectionModel()->currentChanged(QModelIndex(), QModelIndex()); // Enable/disable all action initially + connect(ui->actionFetchCommit, &QAction::triggered, [this]() { + fetchCommit(ui->treeDatabaseCommits->currentIndex()); + }); + connect(ui->actionDownloadCommit, &QAction::triggered, [this]() { + fetchCommit(ui->treeDatabaseCommits->currentIndex(), RemoteNetwork::RequestTypeDownload); + }); + ui->treeDatabaseCommits->addAction(ui->actionFetchCommit); + ui->treeDatabaseCommits->addAction(ui->actionDownloadCommit); + + // Initial setup + reloadSettings(); +} + +RemoteDock::~RemoteDock() +{ + delete ui; +} + +void RemoteDock::reloadSettings() +{ + // Clear list of client certificates and add a dummy entry which does nothing except serve as + // an explanation to the user. + ui->comboUser->clear(); + ui->comboUser->addItem(tr("Select an identity to connect"), "dummy"); + + // Load list of client certs + QStringList client_certs = Settings::getValue("remote", "client_certificates").toStringList(); + for (const QString& file : client_certs) + { + auto certs = QSslCertificate::fromPath(file); + for (const QSslCertificate& cert : certs) + ui->comboUser->addItem(cert.subjectInfo(QSslCertificate::CommonName).at(0), file); + } + + // Add public certificate for anonymous read-only access to dbhub.io + ui->comboUser->addItem(tr("Public"), ":/user_certs/public.cert.pem"); +} + +void RemoteDock::setNewIdentity(const QString& identity) +{ + // Do nothing if the dummy entry was selected + if (ui->comboUser->currentData() == "dummy") + return; + + // Check if the dummy item is still there and remove it if it is + if (ui->comboUser->itemData(0) == "dummy") + { + ui->comboUser->blockSignals(true); + ui->comboUser->removeItem(0); + ui->comboUser->blockSignals(false); + } + + // Get certificate file name + QString cert = ui->comboUser->itemData(ui->comboUser->findText(identity), Qt::UserRole).toString(); + if (cert.isEmpty()) + return; + + // Open root directory. Get host name from client cert + remoteModel->setNewRootDir(RemoteNetwork::get().getInfoFromClientCert(cert, RemoteNetwork::CertInfoServer), cert); + + // Reset list of local checkouts + remoteLocalFilesModel->setIdentity(cert); + refreshLocalFileList(); + + // Enable buttons if necessary + enableButtons(); +} + +void RemoteDock::fetchDatabase(const QModelIndex& idx) +{ + if (!idx.isValid()) + return; + + // Get item + const RemoteModelItem* item = remoteModel->modelIndexToItem(idx); + + // Only open database file + if (item->value(RemoteModelColumnType).toString() == "database") + fetchDatabase(item->value(RemoteModelColumnUrl).toString()); +} + +void RemoteDock::fetchDatabase(QString url_string, RemoteNetwork::RequestType request_type) +{ + // If no URL was provided ask the user. Default to the current clipboard contents + if (url_string.isEmpty()) + { + url_string = QInputDialog::getText(this, + qApp->applicationName(), + tr("This downloads a database from a remote server for local editing.\n" + "Please enter the URL to clone from. You can generate this URL by\n" + "clicking the 'Clone Database in DB4S' button on the web page\n" + "of the database."), + QLineEdit::Normal, + QApplication::clipboard()->text()); + } + + if (url_string.isEmpty()) + return; + + // Check the URL + QUrl url(url_string); + if (url.authority() != QUrl(RemoteNetwork::get().getInfoFromClientCert(remoteModel->currentClientCertificate(), RemoteNetwork::CertInfoServer)).authority()) + { + QMessageBox::warning(this, qApp->applicationName(), tr("Invalid URL: The host name does not match the host name of the current identity.")); + return; + } + if (!QUrlQuery(url).hasQueryItem("branch")) + { + QMessageBox::warning(this, qApp->applicationName(), tr("Invalid URL: No branch name specified.")); + return; + } + if (!QUrlQuery(url).hasQueryItem("commit")) + { + QMessageBox::warning(this, qApp->applicationName(), tr("Invalid URL: No commit ID specified.")); + return; + } + + // For the user name, take the path, remove the database name and the initial slash + QString username = url.path().remove("/" + url.fileName()).mid(1); + + // There is a chance that we've already cloned that database. So check for that first + QString exists = remoteDatabase.localExists(url, remoteModel->currentClientCertificate(), QUrlQuery(url).queryItemValue("branch").toStdString()); + if (!exists.isEmpty() && request_type == RemoteNetwork::RequestTypeDatabase) + { + // Check for modifications + bool modified = isLocalDatabaseModified(exists, username, url.fileName(), remoteModel->currentClientCertificate(), + QUrlQuery(url).queryItemValue("commit").toStdString()); + + // Database has already been cloned! So open the local file instead of fetching the one from the + // server again. If the local file has been modified don't open it but try to download the last known + // commit again. + if (!modified) + { + emit openFile(exists); + return; + } + } + + // Check if we already have a clone of this database branch and, if so, figure out its local file name. + // For this we do not care about the currently checked out commit id because we only have one file per + // database and branch on the disk. + QUrl url_without_commit_id(url); + QUrlQuery url_without_commit_id_query(url_without_commit_id); + url_without_commit_id_query.removeQueryItem("commit"); + url_without_commit_id.setQuery(url_without_commit_id_query); + QString local_file = remoteDatabase.localExists(url_without_commit_id, remoteModel->currentClientCertificate(), QUrlQuery(url).queryItemValue("branch").toStdString()); + if (request_type == RemoteNetwork::RequestTypeDatabase && !local_file.isEmpty()) + { + // If there is a local clone of this dtabase and branch, figure out if the local file has been modified + + // Get the last local commit id + std::string last_commit_id = remoteDatabase.localLastCommitId(remoteModel->currentClientCertificate(), url, QUrlQuery(url).queryItemValue("branch").toStdString()); + + // Check for modifications + bool modified = isLocalDatabaseModified(local_file, username, url.fileName(), remoteModel->currentClientCertificate(), last_commit_id); + + // Only if the local file has been modified show a warning that checking out this commit overrides local changes + if (modified) + { + if (QMessageBox::warning(nullptr, + QApplication::applicationName(), + tr("You have modified the local clone of the database. Fetching this commit overrides these local changes.\n" + "Are you sure you want to proceed?"), + QMessageBox::Yes | QMessageBox::Cancel, + QMessageBox::Cancel) == QMessageBox::Cancel) + { + return; + } + } + } + + // Clone the database + RemoteNetwork::get().fetch(url.toString(), request_type, remoteModel->currentClientCertificate()); +} + +void RemoteDock::fetchCommit(const QModelIndex& idx, RemoteNetwork::RequestType request_type) +{ + // Fetch selected commit + QUrl url(QString::fromStdString(currently_opened_file_info.url)); + QUrlQuery query; + query.addQueryItem("branch", ui->comboDatabaseBranch->currentText()); + query.addQueryItem("commit", idx.sibling(idx.row(), RemoteCommitsModel::ColumnCommitId).data().toString()); + url.setQuery(query); + fetchDatabase(url.toString(), request_type); +} + +void RemoteDock::enableButtons() +{ + bool db_opened = mainWindow->getDb().isOpen() && mainWindow->getDb().currentFile() != ":memory:"; + bool logged_in = !remoteModel->currentClientCertificate().isEmpty(); + + ui->buttonPushDatabase->setEnabled(db_opened && logged_in); + ui->actionRefresh->setEnabled(logged_in); + ui->actionCloneDatabaseLink->setEnabled(logged_in); + ui->actionDatabaseOpenBrowser->setEnabled(db_opened && logged_in); + ui->actionFetchLatestCommit->setEnabled(db_opened && logged_in); +} + +void RemoteDock::pushCurrentlyOpenedDatabase() +{ + // Show a warning when trying to push a database with unsaved changes + if (mainWindow->getDb().getDirty()) + { + if (QMessageBox::warning(this, + QApplication::applicationName(), + tr("The database has unsaved changes. Are you sure you want to push it before saving?"), + QMessageBox::Yes | QMessageBox::Cancel, + QMessageBox::Cancel) == QMessageBox::Cancel) + return; + } + + // Push currently opened file + pushDatabase(mainWindow->getDb().currentFile(), QString::fromStdString(currently_opened_file_info.branch)); +} + +void RemoteDock::pushSelectedLocalDatabase() +{ + // Return if no file is selected + if (!ui->treeLocal->currentIndex().isValid()) + return; + + const int row = ui->treeLocal->currentIndex().row(); + const QString filename = ui->treeLocal->currentIndex().sibling(row, RemoteLocalFilesModel::ColumnFile).data().toString(); + if (filename.isEmpty()) + return; + + // Push selected file + const QString branch = ui->treeLocal->currentIndex().sibling(row, RemoteLocalFilesModel::ColumnBranch).data().toString(); + pushDatabase(Settings::getValue("remote", "clonedirectory").toString() + "/" + filename, branch); +} + +void RemoteDock::pushDatabase(const QString& path, const QString& branch) +{ + // If the currently active identity is the read-only public access to dbhub.io, don't show the Push Database dialog because it won't work anyway. + // Instead switch to an explanation offering some advice to create and import a proper certificate. + if (remoteModel->currentClientCertificate() == ":/user_certs/public.cert.pem") + { + ui->stack->setCurrentIndex(1); + return; + } + + // The default suggestion for a database name is the local file name. If it is a remote file (like when it initially was fetched using DB4S), + // the extra bit of information at the end of the name gets removed first. + QString name = QFileInfo(path).fileName(); + name = name.remove(QRegExp("_[0-9]+.remotedb$")); + + // Show the user a dialog for setting all the commit details + QString host = RemoteNetwork::get().getInfoFromClientCert(remoteModel->currentClientCertificate(), RemoteNetwork::CertInfoServer); + RemotePushDialog pushDialog(this, host, remoteModel->currentClientCertificate(), name, branch); + if (pushDialog.exec() != QDialog::Accepted) + return; + + // Build push URL + QString url = host; + url.append(pushDialog.user()); + url.append("/"); + url.append(pushDialog.name()); + + // Check if we are pushing a cloned database. Only in this case we provide the last known commit id. + // For this check we use the branch name which was used for cloning this database rather than the + // branch name which was selected in the push dialog. This is because we want to figure out the + // current commit id of we are currently looking at rather than some other commit id or none at all + // when creating a new branch. + QString commit_id; + if (path.startsWith(Settings::getValue("remote", "clonedirectory").toString())) + commit_id = QString::fromStdString(remoteDatabase.localLastCommitId(remoteModel->currentClientCertificate(), url, branch.toStdString())); + + // Push database + RemoteNetwork::get().push(path, url, remoteModel->currentClientCertificate(), pushDialog.name(), + pushDialog.commitMessage(), pushDialog.licence(), pushDialog.isPublic(), pushDialog.branch(), + pushDialog.forcePush(), commit_id); +} + +void RemoteDock::newDirectoryNode(const QModelIndex& parent) +{ + // Was this a new root dir? + if (!parent.isValid()) + { + // Then check if there is a directory with the current user name + + // Get current user name + QString user = RemoteNetwork::get().getInfoFromClientCert(remoteModel->currentClientCertificate(), RemoteNetwork::CertInfoUser); + + for (int i = 0; i < remoteModel->rowCount(); i++) + { + QModelIndex child = remoteModel->index(i, RemoteModelColumnName); + if (child.data().toString() == user) + { + ui->treeRemote->expand(child); + break; + } + } + } +} + +void RemoteDock::reject() +{ + // We override this, to ensure the Escape key doesn't make this dialog + // dock go away + return; +} + +void RemoteDock::switchToMainView() +{ + ui->stack->setCurrentIndex(0); +} + +void RemoteDock::refreshLocalFileList() +{ + remoteLocalFilesModel->refresh(); + + // Expand node for current user + QString user = RemoteNetwork::get().getInfoFromClientCert(remoteModel->currentClientCertificate(), RemoteNetwork::CertInfoUser); + for (int i = 0; i < remoteLocalFilesModel->rowCount(); i++) + { + QModelIndex child = remoteLocalFilesModel->index(i, RemoteLocalFilesModel::ColumnName); + if (child.data().toString() == user) + { + ui->treeLocal->expand(child); + break; + } + } +} + +void RemoteDock::openLocalFile(const QModelIndex& idx) +{ + if (!idx.isValid()) + return; + + QString file = idx.sibling(idx.row(), RemoteLocalFilesModel::ColumnFile).data().toString(); + if (!file.isEmpty()) + emit openFile(Settings::getValue("remote", "clonedirectory").toString() + "/" + file); +} + +void RemoteDock::fileOpened(const QString& filename) +{ + // Clear data first + currently_opened_file_info.clear(); + remoteCommitsModel->clear(); + ui->comboDatabaseBranch->clear(); + ui->editDatabaseUser->clear(); + ui->editDatabaseFile->clear(); + ui->editDatabaseBranch->clear(); + + // Do nothing if the file name is empty (indicating a closed database) or this is an in-memory database + if (filename.isEmpty() || filename == ":memory:") + return; + + // Check if it is a tracked remote database file and retrieve the information we have on it + if (filename.startsWith(Settings::getValue("remote", "clonedirectory").toString())) + currently_opened_file_info = remoteDatabase.localGetLocalFileInfo(filename); + + // Is this actually a clone of a remote database? + if (!currently_opened_file_info.file.empty()) + { + // Copy information to view + ui->editDatabaseUser->setText(currently_opened_file_info.user_name()); + ui->editDatabaseFile->setText(QString::fromStdString(currently_opened_file_info.name)); + ui->editDatabaseBranch->setText(QString::fromStdString(currently_opened_file_info.branch)); + + // Make sure the current identity matches the identity used to clone this file in the first place. + // A mismatch is possible when the local database file has been opened using a recent files menu item or some similar technique. + if (QString::fromStdString(currently_opened_file_info.identity) != QFileInfo(remoteModel->currentClientCertificate()).fileName()) + ui->comboUser->setCurrentIndex(ui->comboUser->findData("/" + QString::fromStdString(currently_opened_file_info.identity), Qt::UserRole, Qt::MatchEndsWith)); + + // Query more information on database from server + refreshMetadata(currently_opened_file_info.user_name(), QString::fromStdString(currently_opened_file_info.name)); + + // Switch to "Current Database" tab + ui->tabs->setCurrentIndex(2); + } +} + +void RemoteDock::refreshMetadata(const QString& username, const QString& dbname) +{ + // Make request for meta data + QUrl url(RemoteNetwork::get().getInfoFromClientCert(remoteModel->currentClientCertificate(), RemoteNetwork::CertInfoServer) + "/metadata/get"); + QUrlQuery query; + query.addQueryItem("username", username); + query.addQueryItem("folder", "/"); + query.addQueryItem("dbname", dbname); + url.setQuery(query); + RemoteNetwork::get().fetch(url.toString(), RemoteNetwork::RequestTypeCustom, remoteModel->currentClientCertificate(), [this](const QByteArray& reply) { + // Read and check results + json obj = json::parse(reply, nullptr, false); + if (obj.is_discarded() || !obj.is_object()) + return; + + // Store all the commit information as-is + json obj_commits = obj["commits"]; + current_commit_json = obj_commits.dump(); + + // Store the link to the web page in the action for opening that link in a browser + ui->actionDatabaseOpenBrowser->setData(QString::fromStdString(obj["web_page"])); + + // Fill branches combo box + json obj_branches = obj["branches"]; + ui->comboDatabaseBranch->clear(); + for (auto it = obj_branches.cbegin(); it != obj_branches.cend(); ++it) + ui->comboDatabaseBranch->addItem(QString::fromStdString(it.key()), QString::fromStdString(it.value()["commit"])); + ui->comboDatabaseBranch->setCurrentIndex(ui->comboDatabaseBranch->findText(ui->editDatabaseBranch->text())); + }); +} + +void RemoteDock::deleteLocalDatabase(const QModelIndex& index) +{ + if (!index.isValid()) + return; + + QString filename = index.sibling(index.row(), RemoteLocalFilesModel::ColumnFile).data().toString(); + QString path = Settings::getValue("remote", "clonedirectory").toString() + "/" + filename; + + // Warn when trying to delete a currently opened database file + if (mainWindow->getDb().currentFile() == path) + { + QMessageBox::warning(this, QApplication::applicationName(), tr("The database you are trying to delete is currently opened. " + "Please close it before deleting.")); + return; + } + + // Let user confirm deleting the database + if (QMessageBox::warning(this, QApplication::applicationName(), tr("This deletes the local version of this database with all the " + "changes you have not committed yet. Are you sure you want to " + "delete this database?"), + QMessageBox::Yes | QMessageBox::Cancel, QMessageBox::Cancel) == QMessageBox::Cancel) + { + return; + } + + // Delete the file + remoteLocalFilesModel->removeRow(index.row(), index.parent()); +} + +void RemoteDock::openCurrentDatabaseInBrowser() const +{ + QDesktopServices::openUrl(ui->actionDatabaseOpenBrowser->data().toUrl()); +} + +void RemoteDock::refresh() +{ + // Refresh Remote tab + remoteModel->refresh(); + + // Refresh Local tab + refreshLocalFileList(); + + // Refresh Current Database tab + if (!currently_opened_file_info.file.empty()) + refreshMetadata(currently_opened_file_info.user_name(), QString::fromStdString(currently_opened_file_info.name)); +} + +void RemoteDock::pushFinished(const QString& filename, const QString& identity, const QUrl& url, const std::string& new_commit_id, + const std::string& branch, const QString& source_file) +{ + // Create or update the record in our local checkout database + QString saveFileAs = remoteDatabase.localAdd(filename, identity, url, new_commit_id, branch); + + // If the name of the source file and the name we're saving as differ, we're doing an initial push. In this case, copy the source file to + // the destination path to avoid redownloading it when it's first used. + if (saveFileAs != source_file) + QFile::copy(source_file, saveFileAs); + + // Update info on currently opened file + if (currently_opened_file_info.file == QFileInfo(saveFileAs).fileName().toStdString()) + currently_opened_file_info = remoteDatabase.localGetLocalFileInfo(saveFileAs); + + // Refresh view + refresh(); +} + +void RemoteDock::fetchFinished(const QString& filename, const QString& identity, const QUrl& url, const std::string& new_commit_id, + const std::string& branch, const QDateTime& last_modified, QIODevice* device) +{ + // Add cloned database to list of local databases + QString saveFileAs = remoteDatabase.localAdd(filename, identity, url, new_commit_id, branch); + + // Save the downloaded data under the generated file name + QFile file(saveFileAs); + file.open(QIODevice::WriteOnly); + file.write(device->readAll()); + + // Set last modified data of the new file to the one provided by the server + // Before version 5.10, Qt didn't offer any option to set this attribute, so we're not setting it at the moment +#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) + file.setFileTime(last_modified, QFileDevice::FileModificationTime); +#endif + + // Close file + file.close(); + + // Update info on currently opened file + currently_opened_file_info = remoteDatabase.localGetLocalFileInfo(saveFileAs); + + // Refresh data + refreshLocalFileList(); + + // Tell the application to open this file + emit openFile(saveFileAs); +} + +bool RemoteDock::isLocalDatabaseModified(const QString& local_file, const QString& username, const QString& dbname, const QString& identity, const std::string& commit_id) +{ + // Fetch metadata on database + QUrl url(RemoteNetwork::get().getInfoFromClientCert(identity, RemoteNetwork::CertInfoServer) + "/metadata/get"); + QUrlQuery query; + query.addQueryItem("username", username); + query.addQueryItem("folder", "/"); + query.addQueryItem("dbname", dbname); + url.setQuery(query); + + bool modified = true; // By default we assume the database has been modified + RemoteNetwork::get().fetch(url, RemoteNetwork::RequestTypeCustom, identity, [commit_id, dbname, local_file, &modified](const QByteArray& reply) { + // Read and check results + json obj = json::parse(reply, nullptr, false); + if (obj.is_discarded() || !obj.is_object()) + return; + + // Search tree entry for currently checked out commit + json tree = obj["commits"][commit_id]["tree"]["entries"]; + for (const auto& it : tree) + { + if (it["entry_type"] == "db" && it["name"] == dbname.toStdString()) + { + // When we have found it, check if the current file matches the remote file by first checking if the + // file size is equal and then comparing their SHA256 hashes + if (QFileInfo(local_file).size() == it["size"]) + { + QFile file(local_file); + if (!file.open(QFile::ReadOnly)) + return; + + QCryptographicHash hash(QCryptographicHash::Sha256); + hash.addData(&file); + if (hash.result().toHex().toStdString() == it["sha256"]) + { + modified = false; + return; + } + } + + break; + } + } + }, true); + + return modified; +} diff --git a/src/SqliteDBProcess/src/RemoteDock.h b/src/SqliteDBProcess/src/RemoteDock.h new file mode 100644 index 0000000..f22164c --- /dev/null +++ b/src/SqliteDBProcess/src/RemoteDock.h @@ -0,0 +1,80 @@ +#ifndef REMOTEDOCK_H +#define REMOTEDOCK_H +#include "WBFZExchangePluginAPI.h" +#include + +#include "RemoteDatabase.h" +#include "RemoteNetwork.h" + +class RemoteCommitsModel; +class RemoteLocalFilesModel; +class RemoteModel; +class SqliteDBMainWindow; + +namespace Ui { +class RemoteDock; +} + +class RemoteDock : public QDialog +{ + Q_OBJECT + +public: + explicit RemoteDock(SqliteDBMainWindow* parent); + ~RemoteDock() override; + + void reloadSettings(); + void enableButtons(); + + // This function should be called whenever a database file is opened. + // It checks whether the file is a checkout of a tracked remote database + // and updates some of the fields in the remote dock if it is. + // Call it with an empty file name if the database is closed. + void fileOpened(const QString& filename); + +public slots: + void reject() override; + +private slots: + void setNewIdentity(const QString& identity); + void fetchDatabase(const QModelIndex& idx); + void fetchDatabase(QString url = QString(), RemoteNetwork::RequestType request_type = RemoteNetwork::RequestTypeDatabase); + void fetchCommit(const QModelIndex& idx, RemoteNetwork::RequestType request_type = RemoteNetwork::RequestTypeDatabase); + void pushCurrentlyOpenedDatabase(); + void pushSelectedLocalDatabase(); + void newDirectoryNode(const QModelIndex& parent); + void switchToMainView(); + void openLocalFile(const QModelIndex& idx); + void deleteLocalDatabase(const QModelIndex& index); + void openCurrentDatabaseInBrowser() const; + void refresh(); + void pushFinished(const QString& filename, const QString& identity, const QUrl& url, const std::string& new_commit_id, + const std::string& branch, const QString& source_file); + void fetchFinished(const QString& filename, const QString& identity, const QUrl& url, const std::string& new_commit_id, + const std::string& branch, const QDateTime& last_modified, QIODevice* device); + +signals: + void openFile(QString file); + +private: + Ui::RemoteDock* ui; + + SqliteDBMainWindow* mainWindow; + + RemoteDatabase remoteDatabase; + RemoteModel* remoteModel; + RemoteLocalFilesModel* remoteLocalFilesModel; + RemoteCommitsModel* remoteCommitsModel; + + std::string current_commit_json; + RemoteDatabase::LocalFileInfo currently_opened_file_info; + + void refreshLocalFileList(); + void refreshMetadata(const QString& username, const QString& dbname); + + bool isLocalDatabaseModified(const QString& local_file, const QString& username, const QString& dbname, const QString& identity, const std::string& commit_id); + + void pushDatabase(const QString& path, const QString& branch); +}; + +#endif diff --git a/src/SqliteDBProcess/src/RemoteDock.ui b/src/SqliteDBProcess/src/RemoteDock.ui new file mode 100644 index 0000000..e0e03c5 --- /dev/null +++ b/src/SqliteDBProcess/src/RemoteDock.ui @@ -0,0 +1,684 @@ + + + RemoteDock + + + + 0 + 0 + 534 + 387 + + + + Remote + + + + + + 0 + + + + + + + + + Identity + + + comboUser + + + + + + + QComboBox::AdjustToContents + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Push currently opened database to server + + + + :/icons/push_database:/icons/push_database + + + + + + + + + 0 + + + + DBHub.io + + + + 2 + + + 0 + + + 2 + + + 0 + + + + + false + + + false + + + + + + + + + Qt::ActionsContextMenu + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + + + + Local + + + + 2 + + + 0 + + + 2 + + + 0 + + + + + Qt::ActionsContextMenu + + + + + + + + Current Database + + + + 2 + + + 0 + + + 2 + + + 0 + + + + + false + + + false + + + + + + + + + + Clone + + + + 0 + + + + + User + + + editDatabaseUser + + + + + + + true + + + + + + + Database + + + editDatabaseFile + + + + + + + true + + + + + + + Branch + + + editDatabaseBranch + + + + + + + true + + + + + + + + + + Commits + + + + 2 + + + 0 + + + 2 + + + 0 + + + + + + + Commits for + + + + + + + + + + + + Qt::ActionsContextMenu + + + + + + + + + + + + + + + + + + Qt::Vertical + + + + 20 + 85 + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + + + true + + + + + + + Back + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + Qt::Vertical + + + + 20 + 85 + + + + + + + + + + + + + :/icons/close:/icons/close + + + Delete Database + + + Delete the local clone of this database + + + + + + :/icons/browser_open:/icons/browser_open + + + Open in Web Browser + + + Open the web page for the current database in your browser + + + + + + :/icons/clone_database:/icons/clone_database + + + Clone from Link + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + + :/icons/refresh:/icons/refresh + + + Refresh + + + Reload all data and update the views + + + F5 + + + + + + :/icons/clone_database:/icons/clone_database + + + Clone Database + + + + 75 + true + + + + + + + :/icons/db_open:/icons/db_open + + + Open Database + + + Open the local copy of this database + + + + 75 + true + + + + + + Check out Commit + + + Download and open this specific commit + + + + 75 + true + + + + + + + :/icons/db_revert:/icons/db_revert + + + Check out Latest Commit + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + Saves the selected revision of the database to another file + + + + + + :/icons/push_database:/icons/push_database + + + Upload Database + + + Upload this database as a new commit + + + + + comboUser + buttonPushDatabase + tabs + treeRemote + treeLocal + comboDatabaseBranch + treeDatabaseCommits + buttonNoCertBack + + + + + + + comboUser + currentTextChanged(QString) + RemoteDock + setNewIdentity(QString) + + + 134 + 25 + + + 419 + 24 + + + + + treeRemote + doubleClicked(QModelIndex) + RemoteDock + fetchDatabase(QModelIndex) + + + 215 + 148 + + + 204 + 37 + + + + + buttonPushDatabase + clicked() + RemoteDock + pushCurrentlyOpenedDatabase() + + + 530 + 25 + + + 287 + 154 + + + + + buttonNoCertBack + clicked() + RemoteDock + switchToMainView() + + + 93 + 23 + + + 266 + 148 + + + + + treeLocal + doubleClicked(QModelIndex) + RemoteDock + openLocalFile(QModelIndex) + + + 266 + 179 + + + 266 + 148 + + + + + actionCloneDatabaseLink + triggered() + RemoteDock + fetchDatabase() + + + -1 + -1 + + + 266 + 178 + + + + + actionDatabaseOpenBrowser + triggered() + RemoteDock + openCurrentDatabaseInBrowser() + + + -1 + -1 + + + 266 + 189 + + + + + actionRefresh + triggered() + RemoteDock + refresh() + + + -1 + -1 + + + 266 + 193 + + + + + treeDatabaseCommits + doubleClicked(QModelIndex) + RemoteDock + fetchCommit(QModelIndex) + + + 266 + 337 + + + 266 + 193 + + + + + actionPushLocalDatabase + triggered() + RemoteDock + pushSelectedLocalDatabase() + + + -1 + -1 + + + 266 + 193 + + + + + + setNewIdentity(QString) + fetchDatabase(QModelIndex) + pushCurrentlyOpenedDatabase() + pushSelectedLocalDatabase() + switchToMainView() + openLocalFile(QModelIndex) + fetchDatabase() + openCurrentDatabaseInBrowser() + refresh() + fetchCommit(QModelIndex) + + diff --git a/src/SqliteDBProcess/src/RemoteLocalFilesModel.cpp b/src/SqliteDBProcess/src/RemoteLocalFilesModel.cpp new file mode 100644 index 0000000..0c7a342 --- /dev/null +++ b/src/SqliteDBProcess/src/RemoteLocalFilesModel.cpp @@ -0,0 +1,191 @@ +#include +#include +#include +#include +#include + +#include "Data.h" +#include "RemoteDatabase.h" +#include "RemoteLocalFilesModel.h" +#include "RemoteNetwork.h" +#include "Settings.h" + +using json = nlohmann::json; + +RemoteLocalFilesModel::RemoteLocalFilesModel(QObject* parent, RemoteDatabase& remote) : + QAbstractItemModel(parent), + remoteDatabase(remote) +{ + QStringList header; + header << tr("Name") << tr("Branch") << tr("Last modified") << tr("Size") << tr("Commit") << tr("File"); + rootItem = new QTreeWidgetItem(header); +} + +RemoteLocalFilesModel::~RemoteLocalFilesModel() +{ + delete rootItem; +} + +void RemoteLocalFilesModel::setIdentity(const QString& cert_filename) +{ + current_cert_filename = cert_filename; + current_user_name = RemoteNetwork::get().getInfoFromClientCert(cert_filename, RemoteNetwork::CertInfoUser); + refresh(); +} + +void RemoteLocalFilesModel::refresh() +{ + beginResetModel(); + + // Remove all data except for the root item + while(rootItem->childCount()) + delete rootItem->child(0); + + // Get list of locally checked out databases + auto files = remoteDatabase.localGetLocalFiles(current_cert_filename); + + // Loop through that list + for(const auto& file : files) + { + QString user_name = file.user_name(); + + // Check if there is already a node for this user + QTreeWidgetItem* user_node = nullptr; + for(int i=0;ichildCount();i++) + { + if(rootItem->child(i)->text(ColumnName) == user_name) + { + user_node = rootItem->child(i); + break; + } + } + + // If there is no node for this user yet create one + if(user_node == nullptr) + { + user_node = new QTreeWidgetItem(rootItem); + user_node->setText(ColumnName, user_name); + user_node->setIcon(ColumnName, QIcon(user_name == current_user_name ? ":/icons/folder_user" : ":/icons/folder")); + } + + // Get file information + QFile file_info(Settings::getValue("remote", "clonedirectory").toString() + "/" + QString::fromStdString(file.file)); + + // Add file to user node + QTreeWidgetItem* file_node = new QTreeWidgetItem(user_node); + file_node->setText(ColumnName, QString::fromStdString(file.name)); + file_node->setIcon(ColumnName, QIcon(":/icons/database")); + file_node->setText(ColumnBranch, QString::fromStdString(file.branch)); + file_node->setText(ColumnLastModified, QLocale::system().toString(QFileInfo(file_info).lastModified().toLocalTime(), QLocale::ShortFormat)); + file_node->setText(ColumnSize, humanReadableSize(static_cast(file_info.size()))); + file_node->setText(ColumnCommit, QString::fromStdString(file.commit_id)); + file_node->setText(ColumnFile, QString::fromStdString(file.file)); + } + + // Refresh the view + endResetModel(); +} + +QModelIndex RemoteLocalFilesModel::index(int row, int column, const QModelIndex& parent) const +{ + if(!hasIndex(row, column, parent)) + return QModelIndex(); + + QTreeWidgetItem *parentItem; + if(!parent.isValid()) + parentItem = rootItem; + else + parentItem = static_cast(parent.internalPointer()); + + QTreeWidgetItem* childItem = parentItem->child(row); + if(childItem) + return createIndex(row, column, childItem); + else + return QModelIndex(); +} + +QModelIndex RemoteLocalFilesModel::parent(const QModelIndex& index) const +{ + if(!index.isValid()) + return QModelIndex(); + + QTreeWidgetItem* childItem = static_cast(index.internalPointer()); + QTreeWidgetItem* parentItem = childItem->parent(); + + if(parentItem == rootItem) + return QModelIndex(); + else + return createIndex(0, 0, parentItem); +} + +QVariant RemoteLocalFilesModel::data(const QModelIndex& index, int role) const +{ + if(!index.isValid()) + return QVariant(); + + // Get the item the index points at + QTreeWidgetItem* item = static_cast(index.internalPointer()); + + // Return data depending on the role + switch(role) + { + case Qt::DisplayRole: + case Qt::EditRole: + return item->text(index.column()); + case Qt::DecorationRole: + return item->icon(index.column()); + default: + return QVariant(); + } +} + +QVariant RemoteLocalFilesModel::headerData(int section, Qt::Orientation orientation, int role) const +{ + // Get the header string from the root item + if(orientation == Qt::Horizontal && role == Qt::DisplayRole) + return rootItem->data(section, role); + + return QVariant(); +} + +int RemoteLocalFilesModel::rowCount(const QModelIndex& parent) const +{ + if(parent.column() > 0) + return 0; + + if(!parent.isValid()) + return rootItem->childCount(); + else + return static_cast(parent.internalPointer())->childCount(); +} + +int RemoteLocalFilesModel::columnCount(const QModelIndex& /*parent*/) const +{ + return rootItem->columnCount(); +} + +bool RemoteLocalFilesModel::removeRows(int row, int count, const QModelIndex& parent) +{ + for(int i=0;i=0;i--) + { + auto item = static_cast(index(row + i, 0, parent).internalPointer()); + item->parent()->removeChild(item); + } + endRemoveRows(); + + // If parent node is empty, remove that one too. Make sure to not remove the root node + if(parent.isValid() && !index(0, 0, parent).isValid()) + { + beginRemoveRows(parent.parent(), 0, 0); + auto item = static_cast(parent.internalPointer()); + item->parent()->removeChild(item); + endRemoveRows(); + } + + return true; +} diff --git a/src/SqliteDBProcess/src/RemoteLocalFilesModel.h b/src/SqliteDBProcess/src/RemoteLocalFilesModel.h new file mode 100644 index 0000000..4f60b22 --- /dev/null +++ b/src/SqliteDBProcess/src/RemoteLocalFilesModel.h @@ -0,0 +1,56 @@ +#ifndef REMOTELOCALFILESMODEL_H +#define REMOTELOCALFILESMODEL_H +#include "WBFZExchangePluginAPI.h" +#include + +#include + +class RemoteDatabase; + +class QTreeWidgetItem; + +class RemoteLocalFilesModel : public QAbstractItemModel +{ + Q_OBJECT + +public: + explicit RemoteLocalFilesModel(QObject* parent, RemoteDatabase& remote); + ~RemoteLocalFilesModel() override; + + void setIdentity(const QString& cert_filename); + void refresh(); + + QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const override; + QModelIndex parent(const QModelIndex& index) const override; + + QVariant data(const QModelIndex& index, int role) const override; + QVariant headerData(int section, Qt::Orientation orientation, int role) const override; + + int rowCount(const QModelIndex& parent = QModelIndex()) const override; + int columnCount(const QModelIndex& parent = QModelIndex()) const override; + + bool removeRows(int row, int count, const QModelIndex& parent = QModelIndex()) override; + + enum Columns + { + ColumnName, + ColumnBranch, + ColumnLastModified, + ColumnSize, + ColumnCommit, + ColumnFile, + }; + +private: + // Pointer to the root item. This contains all the actual item data. + QTreeWidgetItem* rootItem; + + // Reference to the remote database object which is stored somewhere in the main window. + RemoteDatabase& remoteDatabase; + + // This stores the currently used network identity for further requests + QString current_cert_filename; + QString current_user_name; +}; + +#endif diff --git a/src/SqliteDBProcess/src/RemoteModel.cpp b/src/SqliteDBProcess/src/RemoteModel.cpp new file mode 100644 index 0000000..1959776 --- /dev/null +++ b/src/SqliteDBProcess/src/RemoteModel.cpp @@ -0,0 +1,344 @@ +#include + +#include "Data.h" +#include "RemoteModel.h" +#include "RemoteNetwork.h" + +using json = nlohmann::json; + +RemoteModelItem::RemoteModelItem(RemoteModelItem* parent) : + m_parent(parent), + m_fetchedDirectoryList(false) +{ +} + +RemoteModelItem::~RemoteModelItem() +{ + qDeleteAll(m_children); +} + +QVariant RemoteModelItem::value(RemoteModelColumns column) const +{ + return m_values[column]; +} + +void RemoteModelItem::setValue(RemoteModelColumns column, QVariant value) +{ + m_values[column] = value; +} + +void RemoteModelItem::appendChild(RemoteModelItem *item) +{ + m_children.push_back(item); +} + +RemoteModelItem* RemoteModelItem::child(int row) const +{ + return m_children[static_cast(row)]; +} + +RemoteModelItem* RemoteModelItem::parent() const +{ + return m_parent; +} + +int RemoteModelItem::childCount() const +{ + return static_cast(m_children.size()); +} + +int RemoteModelItem::row() const +{ + if(m_parent) + { + auto f = std::find( m_parent->m_children.begin(), m_parent->m_children.end(), const_cast(this)); + if(f == m_parent->m_children.end()) + return -1; + else + return static_cast(std::distance(m_parent->m_children.begin(), f)); + } + + return 0; +} + +bool RemoteModelItem::fetchedDirectoryList() const +{ + return m_fetchedDirectoryList; +} + +void RemoteModelItem::setFetchedDirectoryList(bool fetched) +{ + m_fetchedDirectoryList = fetched; +} + +std::vector RemoteModelItem::loadArray(const json& array, RemoteModelItem* parent) +{ + std::vector items; + + // Loop through all directory items + for(const auto& elem : array) + { + // Create a new model item with the specified parent + RemoteModelItem* item = new RemoteModelItem(parent); + + // Save all relevant values. Some of the values are only available for databases. + item->setValue(RemoteModelColumnName, QString::fromStdString(elem["name"])); + item->setValue(RemoteModelColumnType, QString::fromStdString(elem["type"])); + item->setValue(RemoteModelColumnUrl, QString::fromStdString(elem["url"])); + item->setValue(RemoteModelColumnLastModified, isoDateTimeStringToLocalDateTimeString(QString::fromStdString(elem["last_modified"]))); + if(item->value(RemoteModelColumnType).toString() == "database") + { + item->setValue(RemoteModelColumnCommitId, QString::fromStdString(elem["commit_id"])); + item->setValue(RemoteModelColumnSize, QString::number(static_cast(elem["size"]))); + item->setValue(RemoteModelColumnDefaultBranch, QString::fromStdString(elem["default_branch"])); + item->setValue(RemoteModelColumnLicence, QString::fromStdString(elem["licence"])); + item->setValue(RemoteModelColumnOneLineDescription, QString::fromStdString(elem["one_line_description"])); + item->setValue(RemoteModelColumnPublic, static_cast(elem["public"])); + item->setValue(RemoteModelColumnSha256, QString::fromStdString(elem["sha256"])); + item->setValue(RemoteModelColumnRepoModified, isoDateTimeStringToLocalDateTimeString(QString::fromStdString(elem["repo_modified"]))); + } + + items.push_back(item); + } + + return items; +} + +RemoteModel::RemoteModel(QObject* parent) : + QAbstractItemModel(parent), + headerList({tr("Name"), tr("Last modified"), tr("Size"), tr("Commit")}), + rootItem(new RemoteModelItem()) +{ +} + +RemoteModel::~RemoteModel() +{ + delete rootItem; +} + +void RemoteModel::setNewRootDir(const QString& url, const QString& cert) +{ + // Get user name from client cert + currentUserName = RemoteNetwork::get().getInfoFromClientCert(cert, RemoteNetwork::CertInfoUser); + + // Save settings + currentRootDirectory = url; + currentClientCert = cert; + + // Fetch root directory + refresh(); +} + +void RemoteModel::refresh() +{ + // Fetch root directory and put the reply data under the root item + RemoteNetwork::get().fetch(currentRootDirectory, RemoteNetwork::RequestTypeCustom, currentClientCert, [this](const QByteArray& reply) { + parseDirectoryListing(reply, QModelIndex()); + }); +} + +void RemoteModel::parseDirectoryListing(const QString& text, QModelIndex parent) +{ + // Load new JSON root document assuming it's an array + json array = json::parse(text.toStdString(), nullptr, false); + if(array.is_discarded() || !array.is_array()) + return; + + // Get model index to store the new data under + RemoteModelItem* parentItem = const_cast(modelIndexToItem(parent)); + + // An invalid model index indicates that this is a new root item. This means the old one needs to be entirely deleted first. + if(!parent.isValid()) + { + // Clear root item + beginResetModel(); + delete rootItem; + rootItem = new RemoteModelItem(); + endResetModel(); + + // Set parent model index and parent item to the new values + parent = QModelIndex(); + parentItem = rootItem; + } + + // Insert data + std::vector items = RemoteModelItem::loadArray(array, parentItem); + beginInsertRows(parent, 0, static_cast(items.size() - 1)); + for(RemoteModelItem* item : items) + parentItem->appendChild(item); + endInsertRows(); + + // Emit directory listing parsed signal + emit directoryListingParsed(parent); +} + +QModelIndex RemoteModel::index(int row, int column, const QModelIndex& parent) const +{ + if(!hasIndex(row, column, parent)) + return QModelIndex(); + + const RemoteModelItem* parentItem = modelIndexToItem(parent); + RemoteModelItem* childItem = parentItem->child(row); + + if(childItem) + return createIndex(row, column, childItem); + else + return QModelIndex(); +} + +QModelIndex RemoteModel::parent(const QModelIndex& index) const +{ + if(!index.isValid()) + return QModelIndex(); + + const RemoteModelItem* childItem = modelIndexToItem(index); + RemoteModelItem* parentItem = childItem->parent(); + + if(parentItem == rootItem) + return QModelIndex(); + + return createIndex(parentItem->row(), 0, parentItem); +} + +QVariant RemoteModel::data(const QModelIndex& index, int role) const +{ + // Don't return data for invalid indices + if(!index.isValid()) + return QVariant(); + + // Type of item + const RemoteModelItem* item = modelIndexToItem(index); + QString type = item->value(RemoteModelColumnType).toString(); + + // Decoration role? Only for first column! + if(role == Qt::DecorationRole && index.column() == 0) + { + // Use different icons depending on item type + if(type == "folder" && index.parent() == QModelIndex() && item->value(RemoteModelColumnName) == currentUserName) + return QImage(":/icons/folder_user"); + else if(type == "folder") + return QImage(":/icons/folder"); + else if(type == "database") + return QImage(":/icons/database"); + } else if(role == Qt::ToolTipRole) { + if(type == "database") + { + // Use URL to generate user name and database name. This avoids using the name of the parent item which + // might not contain the user name when the server sends a different directory structure. + QString result = "" + item->value(RemoteModelColumnUrl).toUrl().path().mid(1) + ""; + if(!item->value(RemoteModelColumnOneLineDescription).toString().isEmpty()) + result += "
" + item->value(RemoteModelColumnOneLineDescription).toString(); + result += "
" + tr("Size: ") + humanReadableSize(item->value(RemoteModelColumnSize).toULongLong()); + result += "
" + tr("Last Modified: ") + item->value(RemoteModelColumnLastModified).toString(); + result += "
" + tr("Licence: ") + item->value(RemoteModelColumnLicence).toString(); + result += "
" + tr("Default Branch: ") + item->value(RemoteModelColumnDefaultBranch).toString(); + return result; + } + } else if(role == Qt::DisplayRole) { + // Display role? + + // Return different value depending on column + switch(index.column()) + { + case 0: + { + return item->value(RemoteModelColumnName); + } + case 1: + { + return item->value(RemoteModelColumnLastModified); + } + case 2: + { + // Folders don't have a size + if(type == "folder") + return QVariant(); + + // Convert size to human readable format + unsigned int size = item->value(RemoteModelColumnSize).toUInt(); + return humanReadableSize(size); + } + case 3: + { + if(type == "folder") + return QVariant(); + return item->value(RemoteModelColumnCommitId); + } + } + } + + return QVariant(); +} + +QVariant RemoteModel::headerData(int section, Qt::Orientation orientation, int role) const +{ + // Call default implementation for vertical headers and for non-display roles + if(role != Qt::DisplayRole || orientation != Qt::Horizontal) + return QAbstractItemModel::headerData(section, orientation, role); + + // Return header string depending on column + return headerList.at(static_cast(section)); +} + +int RemoteModel::rowCount(const QModelIndex& parent) const +{ + if(parent.column() > 0) + return 0; + + const RemoteModelItem* parentItem = modelIndexToItem(parent); + return parentItem->childCount(); +} + +int RemoteModel::columnCount(const QModelIndex& /*parent*/) const +{ + return static_cast(headerList.size()); +} + +bool RemoteModel::hasChildren(const QModelIndex& parent) const +{ + if(!parent.isValid()) + return true; + + // If the item actually has children or is of type "folder" (and may have no children yet), we say that it actually has children + const RemoteModelItem* item = modelIndexToItem(parent); + return item->childCount() || item->value(RemoteModelColumnType) == "folder"; +} + +bool RemoteModel::canFetchMore(const QModelIndex& parent) const +{ + if(!parent.isValid()) + return false; + + // If the item is of type "folder" and we haven't tried fetching a directory listing yet, we indicate that there might be more data to load + const RemoteModelItem* item = modelIndexToItem(parent); + return item->value(RemoteModelColumnType) == "folder" && !item->fetchedDirectoryList(); +} + +void RemoteModel::fetchMore(const QModelIndex& parent) +{ + // Can we even fetch more data? + if(!canFetchMore(parent)) + return; + + // Get parent item + RemoteModelItem* item = static_cast(parent.internalPointer()); + + // Fetch item URL + item->setFetchedDirectoryList(true); + RemoteNetwork::get().fetch(item->value(RemoteModelColumnUrl).toUrl(), RemoteNetwork::RequestTypeCustom, currentClientCert, [this, parent](const QByteArray& reply) { + parseDirectoryListing(reply, parent); + }); +} + +const QString& RemoteModel::currentClientCertificate() const +{ + return currentClientCert; +} + +const RemoteModelItem* RemoteModel::modelIndexToItem(const QModelIndex& idx) const +{ + if(!idx.isValid()) + return rootItem; + else + return static_cast(idx.internalPointer()); +} diff --git a/src/SqliteDBProcess/src/RemoteModel.h b/src/SqliteDBProcess/src/RemoteModel.h new file mode 100644 index 0000000..7bf82c0 --- /dev/null +++ b/src/SqliteDBProcess/src/RemoteModel.h @@ -0,0 +1,118 @@ +#ifndef REMOTEMODEL_H +#define REMOTEMODEL_H +#include "WBFZExchangePluginAPI.h" +#include +#include + +#include + +// List of fields stored in the JSON data +enum RemoteModelColumns +{ + RemoteModelColumnName, + RemoteModelColumnType, + RemoteModelColumnUrl, + RemoteModelColumnCommitId, + RemoteModelColumnSize, + RemoteModelColumnLastModified, + RemoteModelColumnDefaultBranch, + RemoteModelColumnLicence, + RemoteModelColumnOneLineDescription, + RemoteModelColumnPublic, + RemoteModelColumnRepoModified, + RemoteModelColumnSha256, + + RemoteModelColumnCount +}; + +class RemoteModelItem +{ +public: + explicit RemoteModelItem(RemoteModelItem* parent = nullptr); + ~RemoteModelItem(); + + QVariant value(RemoteModelColumns column) const; + void setValue(RemoteModelColumns column, QVariant value); + + bool fetchedDirectoryList() const; + void setFetchedDirectoryList(bool fetched); + + void appendChild(RemoteModelItem* item); + RemoteModelItem* child(int row) const; + RemoteModelItem* parent() const; + int childCount() const; + int row() const; + + // This function assumes the JSON value it's getting passed is an array ("[{...}, {...}, {...}, ...]"). It returns a list of model items, one + // per array entry and each with the specified parent set. + static std::vector loadArray(const nlohmann::json& array, RemoteModelItem* parent = nullptr); + +private: + // These are just the fields from the json objects returned by the dbhub.io server + QVariant m_values[RemoteModelColumnCount]; + + // Child items and parent item + std::vector m_children; + RemoteModelItem* m_parent; + + // Indicates whether we already tried fetching a directory listing for this item. This serves two purposes: + // 1) When having an empty directory this allows us to remove the expandable flag for this item. + // 2) Between sending a network request and getting the reply this flag is already set, avoiding a second or third request being sent in the meantime. + bool m_fetchedDirectoryList; +}; + +class RemoteModel : public QAbstractItemModel +{ + Q_OBJECT + +public: + explicit RemoteModel(QObject* parent); + ~RemoteModel() override; + + void setNewRootDir(const QString& url, const QString& cert); + void refresh(); + + QModelIndex index(int row, int column,const QModelIndex& parent = QModelIndex()) const override; + QModelIndex parent(const QModelIndex& index) const override; + + QVariant data(const QModelIndex& index, int role) const override; + QVariant headerData(int section, Qt::Orientation orientation, int role) const override; + + int rowCount(const QModelIndex& parent = QModelIndex()) const override; + int columnCount(const QModelIndex& parent = QModelIndex()) const override; + bool hasChildren(const QModelIndex& parent) const override; + + bool canFetchMore(const QModelIndex& parent) const override; + void fetchMore(const QModelIndex& parent) override; + + // This helper function takes a model index and returns the according model item. An invalid model index is used to indicate the + // root item, so if the index is invalid the root item is returned. This means that if you need to check for actual invalid indices + // this needs to be done prior to calling this function. + const RemoteModelItem* modelIndexToItem(const QModelIndex& idx) const; + + // Returns the current client certificate + const QString& currentClientCertificate() const; + +signals: + // This signal is emitted whenever a directory listing has been received and parsed + void directoryListingParsed(QModelIndex parent); + +private slots: + // This is called whenever a network reply containing a directory listing arrives + void parseDirectoryListing(const QString& text, QModelIndex parent); + +private: + // The header list is a list of column titles + const std::vector headerList; + + // Pointer to the root item. This contains all the actual item data. + RemoteModelItem* rootItem; + + // This stores the currently used network identity so it can be used for further requests, e.g. for + // lazy population. + QUrl currentRootDirectory; + QString currentClientCert; + QString currentUserName; +}; + +#endif diff --git a/src/SqliteDBProcess/src/RemoteNetwork.cpp b/src/SqliteDBProcess/src/RemoteNetwork.cpp new file mode 100644 index 0000000..40642b3 --- /dev/null +++ b/src/SqliteDBProcess/src/RemoteNetwork.cpp @@ -0,0 +1,571 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include "FileDialog.h" +#include "RemoteNetwork.h" +#include "Settings.h" +#include "sqlite.h" +#include "version.h" + +using json = nlohmann::json; + +RemoteNetwork::RemoteNetwork() : + m_manager(new QNetworkAccessManager), + m_configurationManager(new QNetworkConfigurationManager), + m_progress(nullptr) +{ + // Update network configurations + connect(m_configurationManager, &QNetworkConfigurationManager::updateCompleted, [this]() { + m_manager->setConfiguration(m_configurationManager->defaultConfiguration()); + + emit networkReady(); + }); + + // Set up SSL configuration + m_sslConfiguration = QSslConfiguration::defaultConfiguration(); + m_sslConfiguration.setPeerVerifyMode(QSslSocket::VerifyPeer); + + // Load CA certs from resource file + QDir dirCaCerts(":/certs"); + QStringList caCertsList = dirCaCerts.entryList(); + QList caCerts; + for(const QString& caCertName : caCertsList) + caCerts += QSslCertificate::fromPath(":/certs/" + caCertName); + m_sslConfiguration.setCaCertificates(caCerts); + + // Load settings and set up some more stuff while doing so + reloadSettings(); + + // Set up signals + connect(m_manager, &QNetworkAccessManager::encrypted, this, &RemoteNetwork::gotEncrypted); + connect(m_manager, &QNetworkAccessManager::sslErrors, this, &RemoteNetwork::gotError); +} + +RemoteNetwork::~RemoteNetwork() +{ + delete m_manager; + delete m_progress; +} + +void RemoteNetwork::reloadSettings() +{ + // Load all configured client certificates + m_clientCertFiles.clear(); + auto client_certs = Settings::getValue("remote", "client_certificates").toStringList(); + for(const QString& path : client_certs) + { + QFile file(path); + file.open(QFile::ReadOnly); + QSslCertificate cert(&file); + file.close(); + m_clientCertFiles.insert({path, cert}); + } + + // Always add the default certificate for anonymous access to dbhub.io + { + QFile file(":/user_certs/public.cert.pem"); + file.open(QFile::ReadOnly); + QSslCertificate cert(&file); + file.close(); + m_clientCertFiles.insert({":/user_certs/public.cert.pem", cert}); + } + + // Configure proxy to use + { + QString type = Settings::getValue("proxy", "type").toString(); + + QNetworkProxy proxy; + if(type == "system") + { + // For system settings we have to get the system-wide proxy and use that + + // Get list of proxies for accessing dbhub.io via HTTPS and use the first one + auto list = QNetworkProxyFactory::systemProxyForQuery(QNetworkProxyQuery(QUrl("https://db4s.dbhub.io/"))); + proxy = list.front(); + } else { + // For any other type we have to set up our own proxy configuration + + // Retrieve the required settings + QString host = Settings::getValue("proxy", "host").toString(); + unsigned short port = static_cast(Settings::getValue("proxy", "port").toUInt()); + bool authentication = Settings::getValue("proxy", "authentication").toBool(); + + if(type == "http") + proxy.setType(QNetworkProxy::HttpProxy); + else if(type == "socks5") + proxy.setType(QNetworkProxy::Socks5Proxy); + else + proxy.setType(QNetworkProxy::NoProxy); + + proxy.setHostName(host); + proxy.setPort(port); + + // Only set authentication details when authentication is required + if(authentication) + { + QString user = Settings::getValue("proxy", "user").toString(); + QString password = Settings::getValue("proxy", "password").toString(); + + proxy.setUser(user); + proxy.setPassword(password); + } + } + + // Start using the new proxy configuration + QNetworkProxy::setApplicationProxy(proxy); + } +} + +void RemoteNetwork::gotEncrypted(QNetworkReply* reply) +{ +#ifdef Q_OS_MAC + // Temporary workaround for now, as Qt 5.8 and below doesn't support + // verifying certificates on OSX: https://bugreports.qt.io/browse/QTBUG-56973 + // Hopefully this is fixed in Qt 5.9 + return; +#else + // Verify the server's certificate using our CA certs + auto verificationErrors = reply->sslConfiguration().peerCertificate().verify(m_sslConfiguration.caCertificates()); + bool good = false; + if(verificationErrors.size() == 0) + { + good = true; + } else if(verificationErrors.size() == 1) { + // Ignore any self signed certificate errors + if(verificationErrors.at(0).error() == QSslError::SelfSignedCertificate || verificationErrors.at(0).error() == QSslError::SelfSignedCertificateInChain) + good = true; + } + + // If the server certificate didn't turn out to be good, abort the reply here + if(!good) + reply->abort(); +#endif +} + +void RemoteNetwork::gotReply(QNetworkReply* reply) +{ + // What type of data is this? + RequestType type = static_cast(reply->property("type").toInt()); + + // Hide progress dialog before opening a file dialog to make sure the progress dialog doesn't interfer with the file dialog + if(type == RequestTypeDatabase || type == RequestTypePush) + m_progress->reset(); + + // Handle the reply data + switch(type) + { + case RequestTypeDatabase: + { + // It's a database file. + + // Get last modified date as provided by the server + QDateTime last_modified; + QString content_disposition = reply->rawHeader("Content-Disposition"); + QRegExp regex("^.*modification-date=\"(.+)\";.*$"); + regex.setMinimal(true); // Set to non-greedy matching + if(regex.indexIn(content_disposition) != -1) + last_modified = QDateTime::fromString(regex.cap(1), Qt::ISODate); + + // Extract all other information from reply and send it to slots + emit fetchFinished(reply->url().fileName(), + reply->property("certfile").toString(), + reply->url(), + QUrlQuery(reply->url()).queryItemValue("commit").toStdString(), + QUrlQuery(reply->url()).queryItemValue("branch").toStdString(), + last_modified, + reply); + } + break; + case RequestTypePush: + { + // Read and check results + json obj = json::parse(reply->readAll(), nullptr, false); + if(obj.is_discarded() || !obj.is_object()) + break; + + // Extract all information from reply and send it to slots + emit pushFinished(reply->url().fileName(), + reply->property("certfile").toString(), + QString::fromStdString(obj["url"]), + obj["commit_id"], + QUrlQuery(QUrl(QString::fromStdString(obj["url"]))).queryItemValue("branch").toStdString(), + reply->property("source_file").toString()); + break; + } + case RequestTypeDownload: + { + // It's a download + + // Where should we save it? + QString path = FileDialog::getSaveFileName(FileDialogTypes::CreateDatabaseFile, + nullptr, + tr("Choose a location to save the file"), + QString(), + reply->url().fileName() + "_" + QUrlQuery(reply->url()).queryItemValue("commit") + ".db"); + if(path.isEmpty()) + break; + + // Save the downloaded data in that file + QFile file(path); + file.open(QIODevice::WriteOnly); + file.write(reply->readAll()); + file.close(); + } + break; + } + + // Delete reply later, i.e. after returning from this slot function + reply->deleteLater(); +} + +void RemoteNetwork::gotError(QNetworkReply* reply, const QList& errors) +{ + // Are there any errors in here that aren't about self-signed certificates and non-matching hostnames? + bool serious_errors = std::any_of(errors.begin(), errors.end(), [](const QSslError& error) { return error.error() != QSslError::SelfSignedCertificate; }); + + // Just stop the error checking here and accept the reply if there were no 'serious' errors + if(!serious_errors) + { + reply->ignoreSslErrors(errors); + return; + } + + // Build an error message and short it to the user + QString message = tr("Error opening remote file at %1.\n%2").arg(reply->url().toString(), errors.at(0).errorString()); + QMessageBox::warning(nullptr, qApp->applicationName(), message); + + // Delete reply later, i.e. after returning from this slot function + if(m_progress) + m_progress->reset(); + reply->deleteLater(); +} + +void RemoteNetwork::updateProgress(qint64 bytesTransmitted, qint64 bytesTotal) +{ + // Find out to which pending reply this progress update belongs + QNetworkReply* reply = qobject_cast(QObject::sender()); + + // Update progress dialog + if(bytesTotal == -1) + { + // We don't know anything about the current progress, but it's still downloading + m_progress->setMinimum(0); + m_progress->setMaximum(0); + m_progress->setValue(0); + } else if(bytesTransmitted == bytesTotal) { + // The download has finished + m_progress->reset(); + } else { + // It's still downloading and we know the current progress + + // Were using a range 0 to 10000 here, the progress dialog will calculate 0% to 100% values from that. The reason we're not using + // the byte counts as-is is that they're 64bit wide while the progress dialog takes only 32bit values, so for large files the values + // would lose precision. The reason why we're not using a range 0 to 100 is that our range increases the precision a bit and this way + // we're prepared if the progress dialog will show decimal numbers one day on one platform. + m_progress->setMinimum(0); + m_progress->setMaximum(10000); + m_progress->setValue(static_cast((static_cast(bytesTransmitted) / static_cast(bytesTotal)) * 10000.0f)); + } + + // Check if the Cancel button has been pressed + if(reply && m_progress->wasCanceled()) + { + reply->abort(); + m_progress->reset(); + } +} + +const QList& RemoteNetwork::caCertificates() const +{ + static QList certs = m_sslConfiguration.caCertificates(); + return certs; +} + +QString RemoteNetwork::getInfoFromClientCert(const QString& cert, CertInfo info) const +{ + // Get the common name of the certificate and split it into user name and server address + QString cn = m_clientCertFiles.at(cert).subjectInfo(QSslCertificate::CommonName).at(0); + QStringList cn_parts = cn.split("@"); + if(cn_parts.size() < 2) + return QString(); + + // Return requested part of the CN + if(info == CertInfoUser) + { + return cn_parts.first(); + } else if(info == CertInfoServer) { + // Assemble the full URL from the host name. We use port 443 by default but for + // local development purposes we use 5550 instead. + QString host = cn_parts.last(); + host = QString("https://%1%2/").arg(host).arg(host.contains("docker-dev") ? ":5550" : ""); + return host; + } + + return QString(); +} + +bool RemoteNetwork::prepareSsl(QNetworkRequest* request, const QString& clientCert) +{ + // Check if client cert exists + const QSslCertificate& cert = m_clientCertFiles[clientCert]; + if(cert.isNull()) + { + QMessageBox::warning(nullptr, qApp->applicationName(), tr("Error: Invalid client certificate specified.")); + return false; + } + + // Load private key for the client certificate + QFile fileClientCert(clientCert); + fileClientCert.open(QFile::ReadOnly); + QSslKey clientKey(&fileClientCert, QSsl::Rsa, QSsl::Pem, QSsl::PrivateKey); + while(clientKey.isNull()) + { + // If the private key couldn't be read, we assume it's password protected. So ask the user for the correct password and try reading it + // again. If the user cancels the password dialog, abort the whole process. + QString password = QInputDialog::getText(nullptr, qApp->applicationName(), tr("Please enter the passphrase for this client certificate in order to authenticate.")); + if(password.isEmpty()) + return false; + clientKey = QSslKey(&fileClientCert, QSsl::Rsa, QSsl::Pem, QSsl::PrivateKey, password.toUtf8()); + } + fileClientCert.close(); + + // Set client certificate (from the cache) and private key (just loaded) + m_sslConfiguration.setLocalCertificate(cert); + m_sslConfiguration.setPrivateKey(clientKey); + + // Apply SSL configuration + request->setSslConfiguration(m_sslConfiguration); + + return true; +} + +void RemoteNetwork::prepareProgressDialog(QNetworkReply* reply, bool upload, const QUrl& url) +{ + // Instantiate progress dialog and apply some basic settings + if(!m_progress) + m_progress = new QProgressDialog(); + m_progress->reset(); + m_progress->setWindowModality(Qt::NonModal); + m_progress->setCancelButtonText(tr("Cancel")); + + // Set dialog text + QString url_for_display = url.toString(QUrl::PrettyDecoded | QUrl::RemoveQuery); + if(upload) + m_progress->setLabelText(tr("Uploading remote database to\n%1").arg(url_for_display)); + else + m_progress->setLabelText(tr("Downloading remote database from\n%1").arg(url_for_display)); + + // Show dialog + m_progress->show(); + + // Make sure the dialog is updated + if(upload) + connect(reply, &QNetworkReply::uploadProgress, this, &RemoteNetwork::updateProgress); + else + connect(reply, &QNetworkReply::downloadProgress, this, &RemoteNetwork::updateProgress); +} + +void RemoteNetwork::fetch(const QUrl& url, RequestType type, const QString& clientCert, + std::function when_finished, bool synchronous, bool ignore_errors) +{ + // Check if network is accessible. If not, abort right here + if(m_manager->networkAccessible() == QNetworkAccessManager::NotAccessible) + { + QMessageBox::warning(nullptr, qApp->applicationName(), tr("Error: The network is not accessible.")); + return; + } + + // Build network request + QNetworkRequest request; + request.setUrl(url); + request.setRawHeader("User-Agent", QString("%1 %2").arg(qApp->organizationName(), APP_VERSION).toUtf8()); +#if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) + request.setAttribute(QNetworkRequest::FollowRedirectsAttribute, true); +#endif + + // Set SSL configuration when trying to access a file via the HTTPS protocol. + // Skip this step when no client certificate was specified. In this case the default HTTPS configuration is used. + bool https = url.scheme().compare("https", Qt::CaseInsensitive) == 0; + if(https && !clientCert.isNull()) + { + // If configuring the SSL connection fails, abort the request here + if(!prepareSsl(&request, clientCert)) + return; + } + + // Clear access cache if necessary + clearAccessCache(clientCert); + + // Fetch database and prepare pending reply for future processing + QNetworkReply* reply = m_manager->get(request); + reply->setProperty("type", type); + reply->setProperty("certfile", clientCert); + reply->setProperty("ignore_errors", ignore_errors); + + // Hook up custom handler when there is one and global handler otherwise + if(when_finished) + { + connect(reply, &QNetworkReply::finished, reply, [this, when_finished, reply]() { + if(handleReply(reply)) + when_finished(reply->readAll()); + }); + } else { + connect(reply, &QNetworkReply::finished, this, [this, reply]() { + if(handleReply(reply)) + gotReply(reply); + }); + } + + // When the synchrounous flag is set we wait for the request to finish before continuing + if(synchronous) + { + QEventLoop loop; + connect(reply, &QNetworkReply::finished, &loop, &QEventLoop::quit); + loop.exec(); + } + + // Initialise the progress dialog for this request, but only if this is a database file or a download. + // Directory listing and similar are small enough to be loaded without progress dialog. + if(type == RequestTypeDatabase || type == RequestTypeDownload) + prepareProgressDialog(reply, false, url); +} + +void RemoteNetwork::push(const QString& filename, const QUrl& url, const QString& clientCert, const QString& remotename, + const QString& commitMessage, const QString& licence, bool isPublic, const QString& branch, + bool forcePush, const QString& last_commit) +{ + // Check if network is accessible. If not, abort right here + if(m_manager->networkAccessible() == QNetworkAccessManager::NotAccessible) + { + QMessageBox::warning(nullptr, qApp->applicationName(), tr("Error: The network is not accessible.")); + return; + } + + // Open the file to send and check if it exists + QFile* file = new QFile(filename); + if(!file->open(QFile::ReadOnly)) + { + delete file; + QMessageBox::warning(nullptr, qApp->applicationName(), tr("Error: Cannot open the file for sending.")); + return; + } + + // Build network request + QNetworkRequest request; + request.setUrl(url); + request.setRawHeader("User-Agent", QString("%1 %2").arg(qApp->organizationName(), APP_VERSION).toUtf8()); + + // Get the last modified date of the file and prepare it for conversion into the ISO date format + QDateTime last_modified = QFileInfo(filename).lastModified().toOffsetFromUtc(0); + + // Prepare HTTP multi part data containing all the information about the commit we're about to push + QHttpMultiPart* multipart = new QHttpMultiPart(QHttpMultiPart::FormDataType); + addPart(multipart, "file", file, remotename); + addPart(multipart, "commitmsg", commitMessage); + addPart(multipart, "licence", licence); + addPart(multipart, "public", isPublic ? "true" : "false"); + addPart(multipart, "branch", branch); + addPart(multipart, "force", forcePush ? "true" : "false"); + addPart(multipart, "lastmodified", last_modified.toString("yyyy-MM-dd'T'HH:mm:ss'Z'")); + + // Only add commit id if one was provided + if(!last_commit.isEmpty()) + addPart(multipart, "commit", last_commit); + + // Set SSL configuration when trying to access a file via the HTTPS protocol + bool https = url.scheme().compare("https", Qt::CaseInsensitive) == 0; + if(https) + { + // If configuring the SSL connection fails, abort the request here + if(!prepareSsl(&request, clientCert)) + { + delete file; + return; + } + } + + // Clear access cache if necessary + clearAccessCache(clientCert); + + // Put database to remote server and save pending reply for future processing + QNetworkReply* reply = m_manager->post(request, multipart); + reply->setProperty("type", RequestTypePush); + reply->setProperty("certfile", clientCert); + reply->setProperty("source_file", filename); + multipart->setParent(reply); // Delete the multi-part object along with the reply + + // Connect reply handler + connect(reply, &QNetworkReply::finished, this, [this, reply]() { + if(handleReply(reply)) + gotReply(reply); + }); + + // Initialise the progress dialog for this request + prepareProgressDialog(reply, true, url); +} + +void RemoteNetwork::addPart(QHttpMultiPart* multipart, const QString& name, const QString& value) const +{ + QHttpPart part; + part.setHeader(QNetworkRequest::ContentDispositionHeader, QString("form-data; name=\"%1\"").arg(name)); + part.setBody(value.toUtf8()); + + multipart->append(part); +} + +void RemoteNetwork::addPart(QHttpMultiPart* multipart, const QString& name, QFile* file, const QString& filename) const +{ + QHttpPart part; + part.setHeader(QNetworkRequest::ContentDispositionHeader, QString("form-data; name=\"%1\"; filename=\"%2\"").arg(name, filename)); + part.setBodyDevice(file); + file->setParent(multipart); // Close the file and delete the file object as soon as the multi-part object is destroyed + + multipart->append(part); +} + +void RemoteNetwork::clearAccessCache(const QString& clientCert) +{ + // When the client certificate is different from the one before, clear the access and authentication cache. + // Otherwise Qt might use the old certificate again. + static QString lastClientCert; + if(lastClientCert != clientCert) + { + lastClientCert = clientCert; + m_manager->clearAccessCache(); + } +} + +bool RemoteNetwork::handleReply(QNetworkReply* reply) +{ + // Check if request was successful + if(reply->error() != QNetworkReply::NoError) + { + // Do not show error message when operation was cancelled on purpose + if(reply->error() != QNetworkReply::OperationCanceledError && !reply->property("ignore_errors").toBool()) + { + QMessageBox::warning(nullptr, qApp->applicationName(), + reply->errorString() + "\n" + reply->readAll()); + } + + reply->deleteLater(); + return false; + } + + return true; +} diff --git a/src/SqliteDBProcess/src/RemoteNetwork.h b/src/SqliteDBProcess/src/RemoteNetwork.h new file mode 100644 index 0000000..1d3871c --- /dev/null +++ b/src/SqliteDBProcess/src/RemoteNetwork.h @@ -0,0 +1,97 @@ +#ifndef REMOTENETWORK_H +#define REMOTENETWORK_H +#include "WBFZExchangePluginAPI.h" +#include +#include + +#include +#include + +class QNetworkAccessManager; +class QNetworkConfigurationManager; +class QNetworkReply; +class QProgressDialog; +class QNetworkRequest; +class QHttpMultiPart; +class QFile; + +class RemoteNetwork : public QObject +{ + Q_OBJECT + +public: + static RemoteNetwork& get() + { + static RemoteNetwork instance; + return instance; + } + + void reloadSettings(); + + enum CertInfo + { + CertInfoUser, + CertInfoServer, + }; + + const QList& caCertificates() const; + const std::map& clientCertificates() const { return m_clientCertFiles; } + QString getInfoFromClientCert(const QString& cert, CertInfo info) const; + + enum RequestType + { + RequestTypeCustom, + RequestTypeDatabase, + RequestTypePush, + RequestTypeDownload, + }; + + void fetch(const QUrl& url, RequestType type, const QString& clientCert = QString(), + std::function when_finished = {}, bool synchronous = false, bool ignore_errors = false); + void push(const QString& filename, const QUrl& url, const QString& clientCert, const QString& remotename, + const QString& commitMessage = QString(), const QString& licence = QString(), bool isPublic = false, + const QString& branch = QString("master"), bool forcePush = false, const QString& last_commit = QString()); + +signals: + // As soon as you can safely open a network connection, this signal is emitted. This can be used to delay early network requests + // which might otherwise fail. + void networkReady(); + + // The fetchFinished() signal is emitted when a fetch() call for a database is finished + void fetchFinished(QString filename, QString identity, const QUrl& url, std::string new_commit_id, std::string branch, + QDateTime last_modified, QIODevice* device); + + // The pushFinished() signal is emitted when a push() call is finished, i.e. a database upload has completed. + void pushFinished(QString filename, QString identity, const QUrl& url, std::string new_commit_id, std::string branch, QString source_file); + +private: + RemoteNetwork(); + ~RemoteNetwork() override; + + void gotEncrypted(QNetworkReply* reply); + void gotReply(QNetworkReply* reply); + void gotError(QNetworkReply* reply, const QList& errors); + void updateProgress(qint64 bytesTransmitted, qint64 bytesTotal); + bool prepareSsl(QNetworkRequest* request, const QString& clientCert); + void prepareProgressDialog(QNetworkReply* reply, bool upload, const QUrl& url); + + // Helper functions for building multi-part HTTP requests + void addPart(QHttpMultiPart* multipart, const QString& name, const QString& value) const; + void addPart(QHttpMultiPart* multipart, const QString& name, QFile* file, const QString& filename) const; + + // Before using a new client certificate we need to clear the access and authentication cache of the network manager + // object. Otherwise Qt might reuse the old certificate if the requested URL has been used before. + void clearAccessCache(const QString& clientCert); + + // This function is called for all network replies we get whether they are handled globally or individually. + // It mainly does some error checking and returns true if the actual handler should be called. + bool handleReply(QNetworkReply* reply); + + QNetworkAccessManager* m_manager; + QNetworkConfigurationManager* m_configurationManager; + QProgressDialog* m_progress; + QSslConfiguration m_sslConfiguration; + std::map m_clientCertFiles; +}; + +#endif diff --git a/src/SqliteDBProcess/src/RemotePushDialog.cpp b/src/SqliteDBProcess/src/RemotePushDialog.cpp new file mode 100644 index 0000000..e99db1d --- /dev/null +++ b/src/SqliteDBProcess/src/RemotePushDialog.cpp @@ -0,0 +1,174 @@ +#include +#include +#include + +#include + +#include "RemotePushDialog.h" +#include "ui_RemotePushDialog.h" +#include "RemoteNetwork.h" + +using json = nlohmann::json; + +RemotePushDialog::RemotePushDialog(QWidget* parent, const QString& host, const QString& clientCert, + const QString& name, const QString& branch, const QString& user) : + QDialog(parent), + ui(new Ui::RemotePushDialog), + m_host(host), + m_clientCert(clientCert), + m_nameValidator(new QRegExpValidator(QRegExp("^[a-z,A-Z,0-9,\\.,\\-,\\_,\\(,\\),\\+,\\ ]+$"), this)), + m_branchValidator(new QRegExpValidator(QRegExp("^[a-z,A-Z,0-9,\\^,\\.,\\-,\\_,\\/,\\(,\\),\\:,\\&,\\ )]+$"), this)) +{ + // Create UI + ui->setupUi(this); + ui->editName->setValidator(m_nameValidator); + ui->comboBranch->setValidator(m_branchValidator); + ui->comboUser->setValidator(m_nameValidator); + + // Set start values + ui->editName->setText(name); + + // Fill in usernames + ui->comboUser->addItem(RemoteNetwork::get().getInfoFromClientCert(m_clientCert, RemoteNetwork::CertInfoUser)); + if(!user.isEmpty()) + ui->comboUser->addItem(user); + + // Enable/disable accept button + checkInput(); + + // Fetch list of available licences + RemoteNetwork::get().fetch(host + "licence/list", RemoteNetwork::RequestTypeCustom, clientCert, [this](const QByteArray& reply) { + // Clear licence list + ui->comboLicence->clear(); + + // Read and check results + json obj = json::parse(reply, nullptr, false); + if(obj.is_discarded() || !obj.is_object()) + return; + + // Parse data and build ordered licence map: order -> (short name, long name) + std::map> licences; + for(auto it=obj.cbegin();it!=obj.cend();++it) + licences.insert({it.value()["order"], {it.key(), it.value()["full_name"]}}); + + // Parse licence list and fill combo box. Show the full name to the user and use the short name as user data. + for(auto it=licences.begin();it!=licences.end();++it) + ui->comboLicence->addItem(QString::fromStdString(it->second.second), QString::fromStdString(it->second.first)); + }); + + // Fetch list of exsisting branches + reloadBranchList(branch); +} + +RemotePushDialog::~RemotePushDialog() +{ + delete ui; +} + +void RemotePushDialog::checkInput() +{ + // Update public/private check box text + if(ui->checkPublic->isChecked()) + ui->checkPublic->setText(tr("Database will be public. Everyone has read access to it.")); + else + ui->checkPublic->setText(tr("Database will be private. Only you have access to it.")); + + // Update the foce push check box text + if(ui->checkForce->isChecked()) + ui->checkForce->setText(tr("Use with care. This can cause remote commits to be deleted.")); + else + ui->checkForce->setText(" "); // The space character here is required to avoid annoying resizes when toggling the checkbox + + // Check input + bool valid = true; + + if(ui->editName->text().trimmed().isEmpty()) + valid = false; + + if(ui->editCommitMessage->toPlainText().size() > 1024) + valid = false; + + if(ui->comboBranch->currentText().size() < 1 || ui->comboBranch->currentText().size() > 32) + valid = false; + + if(ui->comboUser->currentText().trimmed().isEmpty()) + valid = false; + + ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(valid); +} + +void RemotePushDialog::accept() +{ + QDialog::accept(); +} + +QString RemotePushDialog::name() const +{ + return ui->editName->text().trimmed(); +} + +QString RemotePushDialog::commitMessage() const +{ + return ui->editCommitMessage->toPlainText().trimmed(); +} + +QString RemotePushDialog::licence() const +{ + return ui->comboLicence->currentData(Qt::UserRole).toString(); +} + +bool RemotePushDialog::isPublic() const +{ + return ui->checkPublic->isChecked(); +} + +QString RemotePushDialog::branch() const +{ + return ui->comboBranch->currentText(); +} + +QString RemotePushDialog::user() const +{ + return ui->comboUser->currentText(); +} + +bool RemotePushDialog::forcePush() const +{ + return ui->checkForce->isChecked(); +} + +void RemotePushDialog::reloadBranchList(const QString& select_branch) +{ + QUrl url(m_host + "branch/list"); + QUrlQuery query; + query.addQueryItem("username", ui->comboUser->currentText()); + query.addQueryItem("folder", "/"); + query.addQueryItem("dbname", ui->editName->text()); + url.setQuery(query); + RemoteNetwork::get().fetch(url.toString(), RemoteNetwork::RequestTypeCustom, m_clientCert, [this, select_branch](const QByteArray& reply) { + // Read and check results + json obj = json::parse(reply, nullptr, false); + if(obj.is_discarded() || !obj.is_object()) + return; + json obj_branches = obj["branches"]; + + // Get default branch + std::string default_branch = (obj.contains("default_branch") && !obj["default_branch"].empty()) ? obj["default_branch"] : "master"; + + // Clear branch list and add the default branch + ui->comboBranch->clear(); + ui->comboBranch->addItem(QString::fromStdString(default_branch)); + + // Parse data and assemble branch list + std::vector branches; + for(auto it=obj_branches.cbegin();it!=obj_branches.cend();++it) + { + if(it.key() != default_branch) + ui->comboBranch->addItem(QString::fromStdString(it.key())); + } + + // If a branch was suggested, select it now + if(!select_branch.isEmpty()) + ui->comboBranch->setCurrentIndex(ui->comboBranch->findText(select_branch)); + }, false, true); +} diff --git a/src/SqliteDBProcess/src/RemotePushDialog.h b/src/SqliteDBProcess/src/RemotePushDialog.h new file mode 100644 index 0000000..d12d4d8 --- /dev/null +++ b/src/SqliteDBProcess/src/RemotePushDialog.h @@ -0,0 +1,46 @@ +#ifndef REMOTEPUSHDIALOG_H +#define REMOTEPUSHDIALOG_H +#include "WBFZExchangePluginAPI.h" +#include + +class QRegExpValidator; + +namespace Ui { +class RemotePushDialog; +} + +class RemotePushDialog : public QDialog +{ + Q_OBJECT + +public: + explicit RemotePushDialog(QWidget* parent, const QString& host, const QString& clientCert, + const QString& name = QString(), const QString& branch = QString(), const QString& user = QString()); + ~RemotePushDialog() override; + + QString name() const; + QString commitMessage() const; + QString licence() const; + bool isPublic() const; + QString branch() const; + QString user() const; + bool forcePush() const; + +private: + Ui::RemotePushDialog* ui; + + // Connection details + QString m_host; + QString m_clientCert; + + // Validators + QRegExpValidator* m_nameValidator; + QRegExpValidator* m_branchValidator; + +protected slots: + void checkInput(); + void reloadBranchList(const QString& select_branch = QString()); + void accept() override; +}; + +#endif diff --git a/src/SqliteDBProcess/src/RemotePushDialog.ui b/src/SqliteDBProcess/src/RemotePushDialog.ui new file mode 100644 index 0000000..49dab0c --- /dev/null +++ b/src/SqliteDBProcess/src/RemotePushDialog.ui @@ -0,0 +1,333 @@ + + + RemotePushDialog + + + + 0 + 0 + 583 + 315 + + + + Push database + + + + + + + + Database na&me to push to + + + editName + + + + + + + 256 + + + + + + + Commit message + + + editCommitMessage + + + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> + + + false + + + + + + + Database licence + + + comboLicence + + + + + + + + 0 + 0 + + + + + + + + Public + + + checkPublic + + + + + + + + + + Branch + + + comboBranch + + + + + + + true + + + true + + + + + + + Force push + + + checkForce + + + + + + + + + + Username + + + comboUser + + + + + + + true + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + editName + editCommitMessage + comboBranch + checkPublic + comboLicence + comboUser + checkForce + + + + + buttonBox + accepted() + RemotePushDialog + accept() + + + 257 + 305 + + + 157 + 274 + + + + + buttonBox + rejected() + RemotePushDialog + reject() + + + 325 + 305 + + + 286 + 274 + + + + + editName + textChanged(QString) + RemotePushDialog + checkInput() + + + 201 + 25 + + + 217 + 3 + + + + + checkPublic + toggled(bool) + RemotePushDialog + checkInput() + + + 345 + 181 + + + 210 + 175 + + + + + editCommitMessage + textChanged() + RemotePushDialog + checkInput() + + + 175 + 113 + + + 91 + 111 + + + + + editName + textChanged(QString) + RemotePushDialog + reloadBranchList() + + + 176 + 25 + + + 77 + 3 + + + + + comboBranch + currentTextChanged(QString) + RemotePushDialog + checkInput() + + + 346 + 160 + + + 33 + 151 + + + + + checkForce + toggled(bool) + RemotePushDialog + checkInput() + + + 342 + 269 + + + 62 + 229 + + + + + comboUser + currentTextChanged(QString) + RemotePushDialog + reloadBranchList() + + + 373 + 235 + + + 291 + 157 + + + + + comboUser + currentTextChanged(QString) + RemotePushDialog + checkInput() + + + 373 + 235 + + + 291 + 157 + + + + + + checkInput() + reloadBranchList() + + diff --git a/src/SqliteDBProcess/src/RowCache.h b/src/SqliteDBProcess/src/RowCache.h new file mode 100644 index 0000000..182c986 --- /dev/null +++ b/src/SqliteDBProcess/src/RowCache.h @@ -0,0 +1,264 @@ +#ifndef ROW_CACHE_H +#define ROW_CACHE_H + +#include +#include +#include +#include + +/** + + cache structure adapted to the existing access patterns in + SqliteTableModel. handles many large segments with gaps in between + well. + + logical structure resembling a std::vector>, but + implementation avoids actually allocating space for the non-empty + optionals, and supports (hopefully) more efficient insertion / + deletion. + + actually, this is not even a "cache" - once set, elements are never + thrown away to make space for new elements. + + TODO introduce maximum segment size? + +**/ +template +class RowCache +{ +public: + using value_type = T; + + /// constructs an empty cache + explicit RowCache (); + + /// \returns number of cached rows + size_t numSet () const; + + /// \returns number of segments + size_t numSegments () const; + + /// \returns 1 if specified row is loaded, 0 otherwise + size_t count (size_t pos) const; + + /// \returns specified row. \throws if not available + const T & at (size_t pos) const; + T & at (size_t pos); + + /// assigns value to specified row; may increase numSet() by one + void set (size_t pos, T && value); + + /// insert new element; increases numSet() by one + void insert (size_t pos, T && value); + + /// delete element; decreases numSet() by one + void erase (size_t pos); + + /// reset to state after construction + void clear (); + + /// given a range of rows (end is exclusive), narrow it in order + /// to remove already-loaded rows from both ends. + void smallestNonAvailableRange (size_t & row_begin, size_t & row_end) const; + +private: + /// a single segment containing contiguous entries + struct Segment + { + size_t pos_begin; + std::vector entries; + + /// returns past-the-end position of this segment + size_t pos_end () const { return pos_begin + entries.size(); } + }; + + /// collection of non-overlapping segments, in order of increasing + /// position + using Segments = std::vector; + Segments segments; + + // ------------------------------------------------------------------------------ + + /// \returns first segment that definitely cannot contain 'pos', + /// because it starts at some later position. + typename Segments::const_iterator getSegmentBeyond (size_t pos) const { + // first segment whose pos_begin > pos (so can't contain pos itself): + return std::upper_bound(segments.begin(), segments.end(), pos, pred); + } + + typename Segments::iterator getSegmentBeyond (size_t pos) { + return std::upper_bound(segments.begin(), segments.end(), pos, pred); + } + + static bool pred (size_t pos, const Segment & s) { return pos < s.pos_begin; } + + // ------------------------------------------------------------------------------ + + /// \returns segment containing 'pos' + typename Segments::const_iterator getSegmentContaining (size_t pos) const + { + auto it = getSegmentBeyond(pos); + + if(it != segments.begin()) { + auto prev_it = it - 1; + if(pos < prev_it->pos_end()) + return prev_it; + } + + return segments.end(); + } + +}; + +template +RowCache::RowCache () +{ +} + +template +size_t RowCache::numSet () const +{ + return std::accumulate(segments.begin(), segments.end(), size_t(0), + [](size_t r, const Segment & s) { return r + s.entries.size(); }); +} + +template +size_t RowCache::numSegments () const +{ + return segments.size(); +} + +template +size_t RowCache::count (size_t pos) const +{ + return getSegmentContaining(pos) != segments.end(); +} + +template +const T & RowCache::at (size_t pos) const +{ + auto it = getSegmentContaining(pos); + + if(it != segments.end()) + return it->entries[pos - it->pos_begin]; + + throw std::out_of_range("no matching segment found"); +} + +template +T & RowCache::at (size_t pos) +{ + return const_cast(static_cast(*this).at(pos)); +} + +template +void RowCache::set (size_t pos, T && value) +{ + auto it = getSegmentBeyond(pos); + + if(it != segments.begin()) + { + auto prev_it = it - 1; + auto d = pos - prev_it->pos_begin; // distance from segment start (>=0) + + if(d < prev_it->entries.size()) + { + // replace value + prev_it->entries[d] = std::move(value); + return; + } + + if(d == prev_it->entries.size()) + { + // extend existing segment + prev_it->entries.insert(prev_it->entries.end(), std::move(value)); + return; + } + } + + // make new segment + segments.insert(it, { pos, { std::move(value) } }); +} + +template +void RowCache::insert (size_t pos, T && value) +{ + auto it = getSegmentBeyond(pos); + + if(it != segments.begin()) + { + auto prev_it = it - 1; + auto d = pos - prev_it->pos_begin; // distance from segment start (>=0) + + if(d <= prev_it->entries.size()) + { + // can extend existing segment + prev_it->entries.insert(prev_it->entries.begin() + d, std::move(value)); + goto push; + } + } + + // make new segment + it = segments.insert(it, { pos, { std::move(value) } }) + 1; + +push: + // push back all later segments + std::for_each(it, segments.end(), [](Segment &s){ s.pos_begin++; }); +} + +template +void RowCache::erase (size_t pos) +{ + auto it = getSegmentBeyond(pos); + + // if previous segment actually contains pos, shorten it + if(it != segments.begin()) + { + auto prev_it = it - 1; + auto d = pos - prev_it->pos_begin; // distance from segment start (>=0) + + if(d < prev_it->entries.size()) + { + prev_it->entries.erase(prev_it->entries.begin() + d); + if(prev_it->entries.empty()) + { + it = segments.erase(prev_it); + } + } + } + + // pull forward all later segments + std::for_each(it, segments.end(), [](Segment &s){ s.pos_begin--; }); +} + +template +void RowCache::clear () +{ + segments.clear(); +} + +template +void RowCache::smallestNonAvailableRange (size_t & row_begin, size_t & row_end) const +{ + if(row_end < row_begin) + throw std::invalid_argument("end must be >= begin"); + + while(row_begin < row_end) { + auto it = getSegmentContaining(row_begin); + if(it == segments.end()) + break; + row_begin = it->pos_end(); + } + + while(row_end > row_begin) { + auto it = getSegmentContaining(row_end - 1); + if(it == segments.end()) + break; + row_end = it->pos_begin; + } + + if(row_end < row_begin) + row_end = row_begin; +} + +#endif // SEGMENTING_CACHE_H diff --git a/src/SqliteDBProcess/src/RowLoader.cpp b/src/SqliteDBProcess/src/RowLoader.cpp new file mode 100644 index 0000000..e7d4b2c --- /dev/null +++ b/src/SqliteDBProcess/src/RowLoader.cpp @@ -0,0 +1,256 @@ +#include + +#include "RowLoader.h" +#include "sqlite.h" + +namespace { + + QString rtrimChar(const QString& s, QChar c) + { + QString r = s.trimmed(); + while(r.endsWith(c)) + r.chop(1); + return r; + } + +} // anon ns + + +RowLoader::RowLoader ( + std::function(void)> db_getter_, + std::function statement_logger_, + std::vector & headers_, + std::mutex & cache_mutex_, + Cache & cache_data_ + ) + : db_getter(db_getter_), statement_logger(statement_logger_), headers(headers_) + , cache_mutex(cache_mutex_), cache_data(cache_data_) + , query() + , countQuery() + , num_tasks(0) + , pDb(nullptr) + , stop_requested(false) + , current_task(nullptr) + , next_task(nullptr) +{ +} + +void RowLoader::setQuery (const QString& new_query, const QString& newCountQuery) +{ + std::lock_guard lk(m); + query = new_query; + if (newCountQuery.isEmpty()) + // If it is a normal query - hopefully starting with SELECT - just do a COUNT on it and return the results + countQuery = QString("SELECT COUNT(*) FROM (%1);").arg(rtrimChar(query, ';')); + else + countQuery = newCountQuery; +} + +void RowLoader::triggerRowCountDetermination(int token) +{ + std::unique_lock lk(m); + + num_tasks++; + nosync_ensureDbAccess(); + + // do a count query to get the full row count in a fast manner + row_counter = std::async(std::launch::async, [this, token]() { + auto nrows = countRows(); + if(nrows >= 0) + emit rowCountComplete(token, nrows); + + std::lock_guard lk2(m); + nosync_taskDone(); + }); +} + +void RowLoader::nosync_ensureDbAccess () +{ + if(!pDb) + pDb = db_getter(); +} + +std::shared_ptr RowLoader::getDb () const +{ + std::lock_guard lk(m); + return pDb; +} + +int RowLoader::countRows() const +{ + int retval = -1; + + // Use a different approach of determining the row count when a EXPLAIN or a PRAGMA statement is used because a COUNT fails on these queries + if(query.startsWith("EXPLAIN", Qt::CaseInsensitive) || query.startsWith("PRAGMA", Qt::CaseInsensitive)) + { + // So just execute the statement as it is and fetch all results counting the rows + sqlite3_stmt* stmt; + QByteArray utf8Query = query.toUtf8(); + if(sqlite3_prepare_v2(pDb.get(), utf8Query, utf8Query.size(), &stmt, nullptr) == SQLITE_OK) + { + retval = 0; + while(sqlite3_step(stmt) == SQLITE_ROW) + retval++; + sqlite3_finalize(stmt); + return retval; + } + } else { + statement_logger(countQuery); + QByteArray utf8Query = countQuery.toUtf8(); + + sqlite3_stmt* stmt; + if(sqlite3_prepare_v2(pDb.get(), utf8Query, utf8Query.size(), &stmt, nullptr) == SQLITE_OK) + { + if(sqlite3_step(stmt) == SQLITE_ROW) + retval = sqlite3_column_int(stmt, 0); + sqlite3_finalize(stmt); + } else { + qWarning() << "Count query failed: " << countQuery; + } + } + + return retval; +} + +void RowLoader::triggerFetch (int token, size_t row_begin, size_t row_end) +{ + std::unique_lock lk(m); + + if(pDb) { + if(!row_counter.valid() || row_counter.wait_for(std::chrono::seconds(0)) == std::future_status::ready) { + // only if row count is complete, we can safely interrupt SQLite to speed up cancellation + sqlite3_interrupt(pDb.get()); + } + } + + if(current_task) + current_task->cancel = true; + + nosync_ensureDbAccess(); + + // (forget a possibly already existing "next task") + next_task.reset(new Task{ *this, token, row_begin, row_end }); + + lk.unlock(); + cv.notify_all(); +} + +void RowLoader::nosync_taskDone() +{ + if(--num_tasks == 0) { + pDb = nullptr; + } +} + +void RowLoader::cancel () +{ + std::unique_lock lk(m); + + if(pDb) + sqlite3_interrupt(pDb.get()); + + if(current_task) + current_task->cancel = true; + + next_task = nullptr; + cv.notify_all(); +} + +void RowLoader::stop () +{ + cancel(); + std::unique_lock lk(m); + stop_requested = true; + cv.notify_all(); +} + +bool RowLoader::readingData () const +{ + std::unique_lock lk(m); + return pDb != nullptr; +} + +void RowLoader::waitUntilIdle () const +{ + if(row_counter.valid()) + row_counter.wait(); + std::unique_lock lk(m); + cv.wait(lk, [this](){ return stop_requested || (!current_task && !next_task); }); +} + +void RowLoader::run () +{ + for(;;) + { + std::unique_lock lk(m); + current_task = nullptr; + cv.notify_all(); + + cv.wait(lk, [this](){ return stop_requested || next_task; }); + + if(stop_requested) + return; + + current_task = std::move(next_task); + lk.unlock(); + + process(*current_task); + } +} + +void RowLoader::process (Task & t) +{ + QString sLimitQuery; + if(query.startsWith("PRAGMA", Qt::CaseInsensitive) || query.startsWith("EXPLAIN", Qt::CaseInsensitive)) + { + sLimitQuery = query; + } else { + // Remove trailing trailing semicolon + QString queryTemp = rtrimChar(query, ';'); + + // If the query ends with a LIMIT statement or contains a compound operator take it as it is, + // if not append our own LIMIT part for lazy population. The compound operator test is a very + // weak check and does not detect whether the keyword is in a string or similar. This means + // that lazy population is disabled for more queries than necessary. We should fix this once + // we have a parser for SELECT statements but until then it is better to disable lazy population + // for more statements than required instead of failing to run some statements entirely. + if(queryTemp.contains(QRegExp("LIMIT\\s+.+\\s*((,|\\b(OFFSET)\\b)\\s*.+\\s*)?$", Qt::CaseInsensitive)) || + queryTemp.contains(QRegExp("\\s(UNION)|(INTERSECT)|(EXCEPT)\\s", Qt::CaseInsensitive))) + sLimitQuery = queryTemp; + else + sLimitQuery = queryTemp + QString(" LIMIT %1, %2;").arg(t.row_begin).arg(t.row_end-t.row_begin); + } + statement_logger(sLimitQuery); + + QByteArray utf8Query = sLimitQuery.toUtf8(); + sqlite3_stmt *stmt; + auto row = t.row_begin; + if(sqlite3_prepare_v2(pDb.get(), utf8Query, utf8Query.size(), &stmt, nullptr) == SQLITE_OK) + { + const size_t num_columns = headers.size(); + + while(!t.cancel && sqlite3_step(stmt) == SQLITE_ROW) + { + // Construct a new row object with the right number of columns + Cache::value_type rowdata(num_columns); + for(size_t i=0;i(i)) != SQLITE_NULL) + { + int bytes = sqlite3_column_bytes(stmt, static_cast(i)); + if(bytes) + rowdata[i] = QByteArray(static_cast(sqlite3_column_blob(stmt, static_cast(i))), bytes); + else + rowdata[i] = ""; + } + } + std::lock_guard lk(cache_mutex); + cache_data.set(row++, std::move(rowdata)); + } + + sqlite3_finalize(stmt); + } + + emit fetched(t.token, t.row_begin, row); +} diff --git a/src/SqliteDBProcess/src/RowLoader.h b/src/SqliteDBProcess/src/RowLoader.h new file mode 100644 index 0000000..d7298f7 --- /dev/null +++ b/src/SqliteDBProcess/src/RowLoader.h @@ -0,0 +1,122 @@ +#ifndef ROW_LOADER_H +#define ROW_LOADER_H +#include "WBFZExchangePluginAPI.h" +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +#include "RowCache.h" + +struct sqlite3; + +class RowLoader : public QThread +{ + Q_OBJECT + + void run() override; + +public: + using Cache = RowCache>; + + /// set up worker thread to handle row loading + explicit RowLoader ( + std::function(void)> db_getter, + std::function statement_logger, + std::vector & headers, + std::mutex & cache_mutex, + Cache & cache_data + ); + + void setQuery (const QString& new_query, const QString& newCountQuery = QString()); + + void triggerRowCountDetermination (int token); + + /// trigger asynchronous reading of specified row range, + /// cancelling previous tasks; 'row_end' is exclusive; \param + /// token is eventually returned through the 'fetched' + /// signal. depending on how and when tasks are cancelled, not + /// every triggerFetch() will result in a 'fetched' signal, or the + /// 'fetched' signal may be for a narrower row range. + void triggerFetch (int token, size_t row_begin, size_t row_end); + + /// cancel everything + void cancel (); + + /// cancel everything and terminate worker thread + void stop (); + + /// currently reading any data, or anything in "queue"? + bool readingData () const; + + /// wait until not reading any data + void waitUntilIdle () const; + + /// get current database - note that the worker thread might be + /// working on it, too... \returns current db, or nullptr. + std::shared_ptr getDb () const; + +signals: + void fetched(int token, size_t row_begin, size_t row_end); + void rowCountComplete(int token, int num_rows); + +private: + const std::function()> db_getter; + const std::function statement_logger; + std::vector & headers; + std::mutex & cache_mutex; + Cache & cache_data; + + mutable std::mutex m; + mutable std::condition_variable cv; + + QString query; + QString countQuery; + + mutable std::future row_counter; + + size_t num_tasks; + std::shared_ptr pDb; //< exclusive access while held... + + bool stop_requested; + + struct Task + { + RowLoader & row_loader; + int token; + size_t row_begin; + size_t row_end; //< exclusive + std::atomic cancel; + + Task(RowLoader & row_loader_, int t, size_t a, size_t b) + : row_loader(row_loader_), token(t), row_begin(a), row_end(b), cancel(false) + { + row_loader.num_tasks++; + } + + ~Task() + { + // (... mutex being held ...) + row_loader.nosync_taskDone(); + } + }; + + std::unique_ptr current_task; + std::unique_ptr next_task; + + int countRows () const; + + void process (Task &); + + void nosync_ensureDbAccess (); + void nosync_taskDone (); + +}; + +#endif // ROW_LOADER_H diff --git a/src/SqliteDBProcess/src/RunSql.cpp b/src/SqliteDBProcess/src/RunSql.cpp new file mode 100644 index 0000000..b610b77 --- /dev/null +++ b/src/SqliteDBProcess/src/RunSql.cpp @@ -0,0 +1,303 @@ +#include "RunSql.h" +#include "sqlite.h" +#include "sqlitedb.h" +#include "sqlitetablemodel.h" + +#include +#include +#include + +RunSql::RunSql(DBBrowserDB& _db, QString query, int execute_from_position, int _execute_to_position, bool _interrupt_after_statements) : + db(_db), + may_continue_with_execution(true), + interrupt_after_statements(_interrupt_after_statements), + execute_current_position(execute_from_position), + execute_to_position(_execute_to_position), + structure_updated(false), + savepoint_created(false), + was_dirty(db.getDirty()), + modified(false) +{ + // Get lock to set up everything + std::unique_lock lk(m); + + // Cancel if there is nothing to execute + if(query.trimmed().isEmpty() || query.trimmed() == ";" || execute_from_position == execute_to_position || + query.mid(execute_from_position, execute_to_position-execute_from_position).trimmed().isEmpty() || + query.mid(execute_from_position, execute_to_position-execute_from_position).trimmed() == ";") + return; + + // All replacements in the query should be made by the same amount of characters, so the positions in the file + // for error indicators and line and column logs are not displaced. + // Whitespace and comments are discarded by SQLite, so it is better to just let it ignore them. + query = query.replace(QRegExp("^(\\s*)BEGIN TRANSACTION;", Qt::CaseInsensitive), "\\1 "); + query = query.replace(QRegExp("COMMIT;(\\s*)$", Qt::CaseInsensitive), " \\1"); + + // Convert query to byte array which we will use from now on, starting from the determined start position and + // until the end of the SQL code. By doing so we go further than the determined end position because in Line + // mode the last statement might go beyond that point. + queries_left_to_execute = query.toUtf8().mid(execute_from_position); +} + +void RunSql::run() +{ + // Execute statement by statement + for(;;) + { + if(!executeNextStatement()) + break; + } + + // Execution finished + + // If the DB structure was changed by some command in this SQL script, send a signal + if(structure_updated) + emit structureUpdated(); +} + +void RunSql::startNextStatement() +{ + std::unique_lock lk(m); + may_continue_with_execution = true; + cv.notify_one(); +} + +void RunSql::stop() +{ + std::unique_lock lk(m); + + stopExecution(); + if(pDb) + sqlite3_interrupt(pDb.get()); + may_continue_with_execution = true; + cv.notify_all(); +} + +bool RunSql::executeNextStatement() +{ + std::unique_lock lk(m); + + // Is there anything left to do? + if(queries_left_to_execute.isEmpty()) + return false; + + // What type of query is this? + QString qtail = QString(queries_left_to_execute).trimmed(); + // Remove trailing comments so we don't get fooled by some trailing text at the end of the stream. + // Otherwise we'll pass them to SQLite and its execution will trigger a savepoint that wouldn't be + // reverted. + SqliteTableModel::removeCommentsFromQuery(qtail); + if (qtail.isEmpty()) + return false; + + StatementType query_type = getQueryType(qtail); + + // Check whether the DB structure is changed by this statement + if(!structure_updated && (query_type == AlterStatement || + query_type == CreateStatement || + query_type == DropStatement || + query_type == RollbackStatement)) + structure_updated = true; + + // Check whether this is trying to set a pragma or to vacuum the database + // TODO This is wrong. The '=' or the 'defer_foreign_keys' might be in a completely different statement of the queries string. + if((query_type == PragmaStatement && qtail.contains('=') && !qtail.contains("defer_foreign_keys", Qt::CaseInsensitive)) || query_type == VacuumStatement) + { + // We're trying to set a pragma. If the database has been modified it needs to be committed first. We'll need to ask the + // user about that + if(db.getDirty()) + { + lk.unlock(); + // Ask user, then check if we should abort execution or continue with it. We depend on a BlockingQueueConnection here which makes sure to + // block this worker thread until the slot function in the main thread is completed and could tell us about its decision. + emit confirmSaveBeforePragmaOrVacuum(); + if(!queries_left_to_execute.isEmpty()) + { + // Commit all changes + db.releaseAllSavepoints(); + } else { + // Abort + emit statementErrored(tr("Execution aborted by user"), execute_current_position, execute_current_position + (query_type == PragmaStatement ? 5 : 6)); + return false; + } + lk.lock(); + } + } else { + // We're not trying to set a pragma or to vacuum the database. In this case make sure a savepoint has been created in order to avoid committing + // all changes to the database immediately. Don't set more than one savepoint. + + if(!savepoint_created && !db.readOnly()) + { + // We have to start a transaction before we create the prepared statement otherwise every executed + // statement will get committed after the prepared statement gets finalized + db.setSavepoint(); + savepoint_created = true; + } + } + + // Start execution timer. We do that after opening any message boxes and after creating savepoints because both are not part of the actual + // query execution. + auto time_start = std::chrono::high_resolution_clock::now(); + + // Execute next statement + const char* tail = queries_left_to_execute.data(); + int tail_length = queries_left_to_execute.length(); + lk.unlock(); + const char* qbegin = tail; + acquireDbAccess(); + sqlite3_stmt* vm; + int sql3status = sqlite3_prepare_v2(pDb.get(), tail, tail_length, &vm, &tail); + QString queryPart = QString::fromUtf8(qbegin, static_cast(tail - qbegin)); + int tail_length_before = tail_length; + tail_length -= static_cast(tail - qbegin); + int end_of_current_statement_position = execute_current_position + tail_length_before - tail_length; + + // Save remaining statements + lk.lock(); + queries_left_to_execute = QByteArray(tail); + lk.unlock(); + + QString error; + if (sql3status == SQLITE_OK) + { + sql3status = sqlite3_step(vm); + sqlite3_finalize(vm); + + // Get type + StatementType query_part_type = getQueryType(queryPart.trimmed()); + + // SQLite returns SQLITE_DONE when a valid SELECT statement was executed but returned no results. To run into the branch that updates + // the status message and the table view anyway manipulate the status value here. This is also done for PRAGMA statements as they (sometimes) + // return rows just like SELECT statements, too. + if((query_part_type == SelectStatement || query_part_type == PragmaStatement) && sql3status == SQLITE_DONE) + sql3status = SQLITE_ROW; + + switch(sql3status) + { + case SQLITE_ROW: + { + // If we get here, the SQL statement returns some sort of data. So hand it over to the model for display. Don't set the modified flag + // because statements that display data don't change data as well. + + releaseDbAccess(); + + lk.lock(); + may_continue_with_execution = false; + + auto time_end = std::chrono::high_resolution_clock::now(); + auto time_in_ms = std::chrono::duration_cast(time_end - time_start); + emit statementReturnsRows(queryPart, execute_current_position, end_of_current_statement_position, time_in_ms.count()); + + // Make sure the next statement isn't executed until we're told to do so + if(interrupt_after_statements) + cv.wait(lk, [this](){ return may_continue_with_execution; }); + lk.unlock(); + break; + } + case SQLITE_DONE: + case SQLITE_OK: + { + // If we get here, the SQL statement doesn't return data and just executes. Don't run it again because it has already been executed. + // But do set the modified flag because statements that don't return data, often modify the database. + + QString stmtHasChangedDatabase; + if(query_part_type == InsertStatement || query_part_type == UpdateStatement || query_part_type == DeleteStatement) + stmtHasChangedDatabase = tr(", %1 rows affected").arg(sqlite3_changes(pDb.get())); + + releaseDbAccess(); + + lk.lock(); + + // Attach/Detach statements don't modify the original database + if(query_part_type != StatementType::AttachStatement && query_part_type != StatementType::DetachStatement) + modified = true; + + may_continue_with_execution = false; + + auto time_end = std::chrono::high_resolution_clock::now(); + auto time_in_ms = std::chrono::duration_cast(time_end - time_start); + emit statementExecuted(tr("query executed successfully. Took %1ms%2").arg(time_in_ms.count()).arg(stmtHasChangedDatabase), + execute_current_position, end_of_current_statement_position); + + // Make sure the next statement isn't executed until we're told to do so + if(interrupt_after_statements) + cv.wait(lk, [this](){ return may_continue_with_execution; }); + lk.unlock(); + break; + } + case SQLITE_MISUSE: + break; + default: + error = QString::fromUtf8(sqlite3_errmsg(pDb.get())); + } + } else { + error = QString::fromUtf8(sqlite3_errmsg(pDb.get())); + } + + // Release the database + lk.lock(); + releaseDbAccess(); + + // Revert to save point now if it wasn't needed. We need to do this here because there are some rare cases where the next statement might + // be affected by what is only a temporary and unnecessary savepoint. For example in this case: + // ATTACH 'xxx' AS 'db2' + // SELECT * FROM db2.xy; -- Savepoint created here + // DETACH db2; -- Savepoint makes this statement fail + if(!modified && !was_dirty && savepoint_created) + { + db.revertToSavepoint(); + savepoint_created = false; + } + + if(!error.isEmpty()) + { + emit statementErrored(error, execute_current_position, end_of_current_statement_position); + stopExecution(); + return false; + } + // Update the start position for the next statement and check if we are at + // the end of the part we want to execute. If so, stop the execution now. + execute_current_position = end_of_current_statement_position; + if(execute_current_position >= execute_to_position) + { + stopExecution(); + return false; + } + + return true; +} + +void RunSql::stopExecution() +{ + queries_left_to_execute.clear(); +} + +RunSql::StatementType RunSql::getQueryType(const QString& query) +{ + // Helper function for getting the type of a given query + + if(query.startsWith("SELECT", Qt::CaseInsensitive)) return SelectStatement; + if(query.startsWith("ALTER", Qt::CaseInsensitive)) return AlterStatement; + if(query.startsWith("DROP", Qt::CaseInsensitive)) return DropStatement; + if(query.startsWith("ROLLBACK", Qt::CaseInsensitive)) return RollbackStatement; + if(query.startsWith("PRAGMA", Qt::CaseInsensitive)) return PragmaStatement; + if(query.startsWith("VACUUM", Qt::CaseInsensitive)) return VacuumStatement; + if(query.startsWith("INSERT", Qt::CaseInsensitive)) return InsertStatement; + if(query.startsWith("UPDATE", Qt::CaseInsensitive)) return UpdateStatement; + if(query.startsWith("DELETE", Qt::CaseInsensitive)) return DeleteStatement; + if(query.startsWith("CREATE", Qt::CaseInsensitive)) return CreateStatement; + if(query.startsWith("ATTACH", Qt::CaseInsensitive)) return AttachStatement; + if(query.startsWith("DETACH", Qt::CaseInsensitive)) return DetachStatement; + + return OtherStatement; +} + +void RunSql::acquireDbAccess() +{ + pDb = db.get(tr("executing query"), true); +} + +void RunSql::releaseDbAccess() +{ + pDb = nullptr; +} diff --git a/src/SqliteDBProcess/src/RunSql.h b/src/SqliteDBProcess/src/RunSql.h new file mode 100644 index 0000000..4b1570f --- /dev/null +++ b/src/SqliteDBProcess/src/RunSql.h @@ -0,0 +1,89 @@ +#ifndef RUNSQL_H +#define RUNSQL_H +#include "WBFZExchangePluginAPI.h" +#include +#include +#include +#include + +class DBBrowserDB; +struct sqlite3; + +class RunSql : public QThread +{ + Q_OBJECT + + void run() override; + +public: + /** + * @param db Reference to the database connection to execute the statements with + * @param query The query to execute + * @param execute_from_position The index of the first character to execute in the query parameter + * @param execute_to_position The index of the last character to execute in the query parameter (see exact_execute_to_position) + * @param interrupt_after_statements Set to true to stop execution after each statement until startNextStatement() is called. Set to false to execute all statements + * in one go. + */ + RunSql(DBBrowserDB& db, QString query, int execute_from_position, int execute_to_position, bool interrupt_after_statements = false); + ~RunSql() override = default; + + enum StatementType + { + SelectStatement, + AlterStatement, + DropStatement, + RollbackStatement, + PragmaStatement, + VacuumStatement, + InsertStatement, + UpdateStatement, + DeleteStatement, + CreateStatement, + AttachStatement, + DetachStatement, + OtherStatement, + }; + + static StatementType getQueryType(const QString& query); + + void startNextStatement(); + + void stop(); + +signals: + void statementErrored(QString message, int from_position, int to_position); + void statementExecuted(QString message, int from_position, int to_position); + void statementReturnsRows(QString query, int from_position, int to_position, qint64 time_in_ms); + void structureUpdated(); + + /** + * This signal must be connected with a Qt::BlockingQueuedConnection in order to work as expected! + */ + void confirmSaveBeforePragmaOrVacuum(); + +private: + DBBrowserDB& db; + std::shared_ptr pDb; + + mutable std::mutex m; + mutable std::condition_variable cv; + bool may_continue_with_execution; + + bool interrupt_after_statements; + + QByteArray queries_left_to_execute; + int execute_current_position; + int execute_to_position; + bool structure_updated; + bool savepoint_created; + bool was_dirty; + bool modified; + + void stopExecution(); + bool executeNextStatement(); + + void acquireDbAccess(); + void releaseDbAccess(); +}; + +#endif diff --git a/src/SqliteDBProcess/src/SelectItemsPopup.cpp b/src/SqliteDBProcess/src/SelectItemsPopup.cpp new file mode 100644 index 0000000..6d054f1 --- /dev/null +++ b/src/SqliteDBProcess/src/SelectItemsPopup.cpp @@ -0,0 +1,136 @@ +#include "SelectItemsPopup.h" +#include "ui_SelectItemsPopup.h" + +#include + +SelectItemsPopup::SelectItemsPopup(const std::vector& available, const std::vector& selected, QWidget* parent) : + QDialog(parent), + ui(new Ui::SelectItemsPopup) +{ + ui->setupUi(this); + setWindowFlags(Qt::Popup); + + // Load initial items + for(const auto& s : available) + { + if(std::find(selected.begin(), selected.end(), s) == selected.end()) + new QListWidgetItem(QString::fromStdString(s), ui->listAvailable); + } + for(const auto& s : selected) + new QListWidgetItem(QString::fromStdString(s), ui->listSelected); +} + +SelectItemsPopup::~SelectItemsPopup() +{ + delete ui; +} + +std::vector SelectItemsPopup::selectedItems() const +{ + std::vector result; + for(int i=0;ilistSelected->count();i++) + result.push_back(ui->listSelected->item(i)->text().toStdString()); + return result; +} + +void SelectItemsPopup::selectItem(const QModelIndex& idx) +{ + // Get currently selected iitem if none was provided + QListWidgetItem* item; + if(idx.isValid()) + item = ui->listAvailable->item(idx.row()); + else + item = ui->listAvailable->currentItem(); + + if(!item) + return; + + // Add it to the selected items list + new QListWidgetItem(item->text(), ui->listSelected); + + // Remove it from available items list + delete item; +} + +void SelectItemsPopup::unselectItem(const QModelIndex& idx) +{ + // Get currently selected iitem if none was provided + QListWidgetItem* item; + if(idx.isValid()) + item = ui->listSelected->item(idx.row()); + else + item = ui->listSelected->currentItem(); + + if(!item) + return; + + // Add it to the available items list + new QListWidgetItem(item->text(), ui->listAvailable); + + // Remove it from selected items list + delete item; +} + +void SelectItemsPopup::resizeEvent(QResizeEvent*) +{ + // We modify the shape of the dialog to add an arrow shaped edge. See the ascii art image below for details. The edges + // are numbered, their order is the same as in the polygon definition. + + /* + /3\ + / \ + 1---2 4--------5 + | | + | | + 7------------------6 + */ + + const int arrow_height = ui->spacer->geometry().height(); + const int arrow_width = arrow_height * 3; + const int arrow_position_div = 5; + + QPolygon poly; + poly << QPoint(rect().x(), rect().y() + arrow_height) + << QPoint(rect().x() + rect().width() / arrow_position_div - arrow_width / 2, rect().y() + arrow_height) + << QPoint(rect().x() + rect().width() / arrow_position_div, rect().y()) + << QPoint(rect().x() + rect().width() / arrow_position_div + arrow_width / 2, rect().y() + arrow_height) + << QPoint(rect().x() + rect().width(), rect().y() + arrow_height) + << QPoint(rect().x() + rect().width(), rect().y() + rect().height()) + << QPoint(rect().x(), rect().y() + rect().height()); + setMask(QRegion(poly)); +} + +void SelectItemsPopup::buttonBoxClicked(QAbstractButton* button) +{ + if(button == ui->buttonBox->button(QDialogButtonBox::Apply)) + accept(); +} + +void SelectItemsPopup::moveItemUp() +{ + moveCurrentItem(false); +} + +void SelectItemsPopup::moveItemDown() +{ + moveCurrentItem(true); +} + +void SelectItemsPopup::moveCurrentItem(bool down) +{ + // Get current row number and calculate row number after the movement. Check the values + int currentRow = ui->listSelected->currentRow(); + if(currentRow == -1) + return; + int newRow = currentRow + (down ? 1 : -1); + if(newRow < 0) + return; + if(newRow >= ui->listSelected->count()) + return; + + // Swap items + ui->listSelected->insertItem(newRow, ui->listSelected->takeItem(currentRow)); + + // Select old item at new position + ui->listSelected->setCurrentRow(newRow); +} diff --git a/src/SqliteDBProcess/src/SelectItemsPopup.h b/src/SqliteDBProcess/src/SelectItemsPopup.h new file mode 100644 index 0000000..6b39056 --- /dev/null +++ b/src/SqliteDBProcess/src/SelectItemsPopup.h @@ -0,0 +1,44 @@ +#ifndef SELECTITEMS_H +#define SELECTITEMS_H +#include "WBFZExchangePluginAPI.h" +#include +#include + +#include +#include + +class QAbstractButton; + +namespace Ui { +class SelectItemsPopup; +} + +class SelectItemsPopup : public QDialog +{ + Q_OBJECT + +public: + explicit SelectItemsPopup(const std::vector& available, const std::vector& selected = {}, QWidget* parent = nullptr); + ~SelectItemsPopup(); + + std::vector selectedItems() const; + +private slots: + void buttonBoxClicked(QAbstractButton* button); + + void selectItem(const QModelIndex& idx = QModelIndex()); + void unselectItem(const QModelIndex& idx = QModelIndex()); + + void moveItemUp(); + void moveItemDown(); + +protected: + void resizeEvent(QResizeEvent* ev); + +private: + Ui::SelectItemsPopup* ui; + + void moveCurrentItem(bool down); +}; + +#endif diff --git a/src/SqliteDBProcess/src/SelectItemsPopup.ui b/src/SqliteDBProcess/src/SelectItemsPopup.ui new file mode 100644 index 0000000..89b0d4e --- /dev/null +++ b/src/SqliteDBProcess/src/SelectItemsPopup.ui @@ -0,0 +1,331 @@ + + + SelectItemsPopup + + + + 0 + 0 + 537 + 290 + + + + + + + Qt::Vertical + + + + 0 + 15 + + + + + + + + + + + + A&vailable + + + listAvailable + + + + + + + QAbstractItemView::NoEditTriggers + + + false + + + true + + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + Qt::RightArrow + + + + + + + Qt::LeftArrow + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + Sele&cted + + + listSelected + + + + + + + QAbstractItemView::NoEditTriggers + + + false + + + QAbstractItemView::InternalMove + + + true + + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + Qt::UpArrow + + + + + + + Qt::DownArrow + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + QDialogButtonBox::Apply|QDialogButtonBox::Cancel + + + + + + + listAvailable + listSelected + buttonSelect + buttonUnselect + + + + + buttonSelect + clicked() + SelectItemsPopup + selectItem() + + + 263 + 115 + + + 2 + 203 + + + + + buttonUnselect + clicked() + SelectItemsPopup + unselectItem() + + + 257 + 159 + + + 515 + 186 + + + + + listAvailable + doubleClicked(QModelIndex) + SelectItemsPopup + selectItem(QModelIndex) + + + 124 + 45 + + + 115 + 0 + + + + + listSelected + doubleClicked(QModelIndex) + SelectItemsPopup + unselectItem(QModelIndex) + + + 377 + 96 + + + 383 + 4 + + + + + buttonBox + rejected() + SelectItemsPopup + reject() + + + 262 + 258 + + + 262 + 140 + + + + + buttonBox + clicked(QAbstractButton*) + SelectItemsPopup + buttonBoxClicked(QAbstractButton*) + + + 262 + 258 + + + 262 + 140 + + + + + buttonDown + clicked() + SelectItemsPopup + moveItemDown() + + + 513 + 153 + + + 268 + 144 + + + + + buttonUp + clicked() + SelectItemsPopup + moveItemUp() + + + 513 + 124 + + + 268 + 144 + + + + + + selectItem(QModelIndex) + unselectItem(QModelIndex) + selectItem() + unselectItem() + buttonBoxClicked(QAbstractButton*) + moveItemUp() + moveItemDown() + + diff --git a/src/SqliteDBProcess/src/Settings.cpp b/src/SqliteDBProcess/src/Settings.cpp new file mode 100644 index 0000000..964d16a --- /dev/null +++ b/src/SqliteDBProcess/src/Settings.cpp @@ -0,0 +1,488 @@ +#include "Settings.h" + +#include +#include +#include +#include +#include +#include +#include +#include + +std::unordered_map Settings::m_hCache; +int Settings::m_defaultFontSize; + +static bool ends_with(const std::string& str, const std::string& with) +{ + return str.rfind(with) == str.size() - with.size(); +} + +QVariant Settings::getValue(const std::string& group, const std::string& name) +{ + // Have a look in the cache first + auto cacheIndex = m_hCache.find(group + name); + if(cacheIndex != m_hCache.end()) + { + return cacheIndex->second; + } else { + // Nothing found in the cache, so get the value from the settings file or get the default value if there is no value set yet + QSettings settings(QApplication::organizationName(), QApplication::organizationName()); + QVariant value = settings.value(QString::fromStdString(group + "/" + name), getDefaultValue(group, name)); + + // Store this value in the cache for further usage and return it afterwards + m_hCache.insert({group + name, value}); + return value; + } +} + +void Settings::setValue(const std::string& group, const std::string& name, const QVariant& value, bool dont_save_to_disk) +{ + // Sometime the value has to be saved for the current session only but get discarded when the application exits. + // In order to achieve this this flag can be set which disables the save to disk mechanism and only leaves the save to cache part active. + if(dont_save_to_disk == false) + { + // Set the group and save the given value + QSettings settings(QApplication::organizationName(), QApplication::organizationName()); + settings.beginGroup(QString::fromStdString(group)); + settings.setValue(QString::fromStdString(name), value); + settings.endGroup(); + } + + // Also change it in the cache + m_hCache[group + name] = value; +} + +QVariant Settings::getDefaultValue(const std::string& group, const std::string& name) +{ + // db/defaultencoding? + if(group == "db" && name == "defaultencoding") + return "UTF-8"; + + // db/savedefaultlocation? + if(group == "db" && name == "savedefaultlocation") + return 2; + + // db/defaultlocation? + if(group == "db" && name == "defaultlocation") + return QDir::homePath(); + + // db/lastlocation? + if(group == "db" && name == "lastlocation") + return getValue("db", "defaultlocation"); + + // db/hideschemalinebreaks? + if(group == "db" && name == "hideschemalinebreaks") + return true; + + // db/foreignkeys? + if(group == "db" && name == "foreignkeys") + return true; + + // db/prefetchsize? + if(group == "db" && name == "prefetchsize") + return 50000U; + + // db/defaultsqltext? + if(group == "db" && name == "defaultsqltext") + return QString(); + + // db/fontsize? + if(group == "db" && name == "fontsize") + return 10; + + // exportcsv/firstrowheader? + if(group == "exportcsv" && name == "firstrowheader") + return true; + + // exportcsv/separator? + if(group == "exportcsv" && name == "separator") + return ','; + + // exportcsv/quotecharacter? + if(group == "exportcsv" && name == "quotecharacter") + return '"'; + + // importcsv group? + if(group == "importcsv") + { + if(name == "firstrowheader") + return false; + if(name == "trimfields") + return true; + if(name == "separatetables") + return false; + if(name == "separator") + return ','; + if(name == "quotecharacter") + return '"'; + if(name == "encoding") + return "UTF-8"; + } + + // exportsql group? + if(group == "exportsql") + { + if(name == "insertcolnames" || name == "insertmultiple") + return false; + if(name == "oldschema") + return 0; + } + + // newline character + if (group == "exportcsv" && name == "newlinecharacters") +#ifdef Q_OS_WIN + return "\r\n"; +#else + return "\n"; +#endif + + // exportjson/prettyprint? + if(group == "exportjson" && name == "prettyprint") + return true; + + // MainWindow/geometry? + if(group == "MainWindow" && name == "geometry") + return QString(); + + // MainWindow/windowState? + if(group == "MainWindow" && name == "windowState") + return QString(); + + // MainWindow/openTabs? + if(group == "MainWindow" && name == "openTabs") + return QString(); + + // SQLLogDock/Log? + if(group == "SQLLogDock" && name == "Log") + return "Application"; + + // General/recentFileList? + if(group == "General" && name == "recentFileList") + return QStringList(); + + // General/language? + if(group == "General" && name == "language") + return QLocale::system().name(); + + // General/appStyle + if(group == "General" && name == "appStyle") + return static_cast(FollowDesktopStyle); + + // General/toolbarStyle + if(group == "General" && name == "toolbarStyle") + return static_cast(Qt::ToolButtonTextBesideIcon); + + // General/toolbarStyleStructure + if(group == "General" && name == "toolbarStyleStructure") + return static_cast(Qt::ToolButtonTextBesideIcon); + + // General/toolbarStyleBrowse + if(group == "General" && name == "toolbarStyleBrowse") + return static_cast(Qt::ToolButtonIconOnly); + + // General/toolbarStyleSql + if(group == "General" && name == "toolbarStyleSql") + return static_cast(Qt::ToolButtonIconOnly); + + // General/toolbarStyleEditCell + if(group == "General" && name == "toolbarStyleEditCell") + return static_cast(Qt::ToolButtonIconOnly); + + if(group == "General" && name == "DBFileExtensions") + return QObject::tr("SQLite database files (*.db *.sqlite *.sqlite3 *.db3)"); + + // General/fontsize + if(group == "General" && name == "fontsize") + return m_defaultFontSize; + + // checkversion group? + if(group == "checkversion") + { + if(name == "enabled") + return true; + if(name == "ignmajor") + return 999; + if(name == "ignminor" || name == "ignpatch") + return 0; + } + + // Data Browser/NULL Fields + if(group == "databrowser") + { + if(name == "font") + return QFont().defaultFamily(); + if(name == "fontsize") + return 10; + if(name == "symbol_limit") + return 5000; + if(name == "complete_threshold") + return 1000; + if(name == "image_preview") + return false; + if(name == "indent_compact") + return false; + if(name == "auto_switch_mode") + return true; + if(name == "editor_word_wrap") + return true; + if(name == "null_text") + return "NULL"; + if(name == "blob_text") + return "BLOB"; + if(name == "filter_escape") + return "\\"; + if(name == "filter_delay") + return 200; + if(ends_with(name, "colour")) + return getDefaultColorValue(group, name, FollowDesktopStyle); + } + + // syntaxhighlighter? + if(group == "syntaxhighlighter") + { + // Bold? Only tables, functions and keywords are bold by default + if(ends_with(name, "bold")) + return name == "keyword_bold" || name == "table_bold" || name == "function_bold"; + + // Italic? Nothing by default + if(ends_with(name, "italic")) + return false; + + // Underline? Nothing by default + if(ends_with(name, "underline")) + return false; + + // Colour? + if(ends_with(name, "colour")) + return getDefaultColorValue(group, name, FollowDesktopStyle); + } + + // editor/font? + if(group == "editor" && name == "font") + { + QFont font("Monospace"); + font.setStyleHint(QFont::TypeWriter); + return QFontInfo(font).family(); + } + + // editor/fontsize or log/fontsize? + if((group == "editor" || group == "log") && name == "fontsize") +#ifdef Q_OS_MAC + // Use 12 pt size as the default on OSX + return 12; +#else + return 9; +#endif + + if(group == "editor") + { + if(name == "tabsize") + { + return 4; + } + } + + // editor/wrap_lines + if(group == "editor" && name == "wrap_lines") + return 0; // QsciScintilla::WrapNone + + // editor/identifier_quotes + if(group == "editor" && name == "identifier_quotes") + return 0; // sqlb::DoubleQuotes + + // editor/auto_completion? + if(group == "editor" && name == "auto_completion") + return true; + + // editor/upper_keywords? + if(group == "editor" && name == "upper_keywords") + return true; + + // editor/error_indicators? + if(group == "editor" && name == "error_indicators") + return true; + + // editor/horizontal_tiling? + if(group == "editor" && name == "horizontal_tiling") + return false; + + // editor/splitter1_sizes? + if(group == "editor" && name == "splitter1_sizes") + return QVariant(); + + // editor/splitter2_sizes? + if(group == "editor" && name == "splitter2_sizes") + return QVariant(); + + // editor/close_button_on_tabs? + if(group == "editor" && name == "close_button_on_tabs") + return true; + + // extensions/list? + if(group == "extensions" && name == "list") + return QStringList(); + + // extensions/disableregex? + if(group == "extension" && name == "disableregex") + return false; + + // extensions/enable_load_extension? + if(group == "extension" && name == "enable_load_extension") + return false; + + // PlotDock/lineType or pointShape? + if(group == "PlotDock") + { + // QCPGraph::lsLine + if(name == "lineType") + return 1; + + // QCPScatterStyle::ssDisk + if(name == "pointShape") + return 4; + } + + + // SchemaDock Drag & drop settings + if(group == "SchemaDock") + { + if(name == "dropQualifiedNames") + return false; + + if(name == "dropEnquotedNames") + return true; + } + + // Remote settings? + if(group == "remote") + { + // Enable the File → Remote menu by default + if(name == "active") + return true; + + // Clone directory + if(name == "clonedirectory") +#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0) + return QStandardPaths::writableLocation(QStandardPaths::AppDataLocation); +#else + return QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation); +#endif + } + + // Proxy settings + if(group == "proxy") + { + // Use system settings by default + if(name == "type") + return "system"; + } + + // Unknown combination of group and name? Return an invalid QVariant! + return QVariant(); +} + +QColor Settings::getDefaultColorValue(const std::string& group, const std::string& name, AppStyle style) +{ + // Data Browser/NULL & Binary Fields + if(group == "databrowser") + { + switch (style) { + case FollowDesktopStyle : + if(name == "null_fg_colour") + return QColor(Qt::lightGray).name(); + if(name == "null_bg_colour") + return QPalette().color(QPalette::Active, QPalette::Base).name(); + if(name == "reg_fg_colour") + return QPalette().color(QPalette::Active, QPalette::Text).name(); + if(name == "reg_bg_colour") + return QPalette().color(QPalette::Active, QPalette::Base).name(); + if(name == "bin_fg_colour") + return QColor(Qt::lightGray).name(); + if(name == "bin_bg_colour") + return QPalette().color(QPalette::Active, QPalette::Base).name(); + break; + case DarkStyle : + if(name == "null_fg_colour") + return QColor("#787878"); + if(name == "null_bg_colour") + return QColor("#19232D"); + if(name == "reg_fg_colour") + return QColor("#F0F0F0"); + if(name == "reg_bg_colour") + return QColor("#19232D"); + if(name == "bin_fg_colour") + return QColor("#787878"); + if(name == "bin_bg_colour") + return QColor("#19232D"); + break; + } + } + + // syntaxhighlighter? + if(group == "syntaxhighlighter") + { + // Colour? + if(ends_with(name, "colour")) + { + QColor backgroundColour; + QColor foregroundColour; + switch (style) { + case FollowDesktopStyle : + backgroundColour = QPalette().color(QPalette::Active, QPalette::Base); + foregroundColour = QPalette().color(QPalette::Active, QPalette::Text); + break; + case DarkStyle : + foregroundColour = QColor("#F0F0F0"); + backgroundColour = QColor("#19232D"); + break; + } + if(name == "foreground_colour") + return foregroundColour; + else if(name == "background_colour") + return backgroundColour; + + // Detect and provide sensible defaults for dark themes + if (backgroundColour.value() < foregroundColour.value()) { + if(name == "keyword_colour") + return QColor(82, 148, 226); + else if(name == "function_colour") + return QColor(Qt::yellow); + else if(name == "table_colour") + return QColor(Qt::cyan); + else if(name == "comment_colour") + return QColor(Qt::green); + else if(name == "identifier_colour") + return QColor(Qt::magenta); + else if(name == "string_colour") + return QColor(Qt::lightGray); + else if(name == "currentline_colour") + return backgroundColour.lighter(150); + } else { + if(name == "keyword_colour") + return QColor(Qt::darkBlue); + else if(name == "function_colour") + return QColor(Qt::blue); + else if(name == "table_colour") + return QColor(Qt::darkCyan); + else if(name == "comment_colour") + return QColor(Qt::darkGreen); + else if(name == "identifier_colour") + return QColor(Qt::darkMagenta); + else if(name == "string_colour") + return QColor(Qt::red); + else if(name == "currentline_colour") + return QColor(236, 236, 245); + } + } + } + + // Unknown combination of group and name? Return an invalid QColor! + return QColor(); +} + +void Settings::restoreDefaults () +{ + QSettings settings(QApplication::organizationName(), QApplication::organizationName()); + settings.clear(); + m_hCache.clear(); +} diff --git a/src/SqliteDBProcess/src/Settings.h b/src/SqliteDBProcess/src/Settings.h new file mode 100644 index 0000000..94f414b --- /dev/null +++ b/src/SqliteDBProcess/src/Settings.h @@ -0,0 +1,40 @@ +#ifndef SETTINGS_H +#define SETTINGS_H + +#include +#include + +class Settings +{ + friend class PreferencesDialog; + +public: + + enum AppStyle { + FollowDesktopStyle, + DarkStyle + }; + static QVariant getValue(const std::string& group, const std::string& name); + static void setValue(const std::string& group, const std::string& name, const QVariant& value, bool dont_save_to_disk = false); + static void restoreDefaults(); + + static void rememberDefaultFontSize(int size) { m_defaultFontSize = size; } + +private: + Settings() = delete; // class is fully static + + // This works similar to getValue but returns the default value instead of the value set by the user + static QVariant getDefaultValue(const std::string& group, const std::string& name); + + // This works similar to getDefaultValue but returns the default color value based on the passed application style + // instead of the current palette. + static QColor getDefaultColorValue(const std::string& group, const std::string& name, AppStyle style); + + // Cache for storing the settings to avoid repeatedly reading the settings file all the time + static std::unordered_map m_hCache; + + // Default UI font size + static int m_defaultFontSize; +}; + +#endif diff --git a/src/SqliteDBProcess/src/SqlExecutionArea.cpp b/src/SqliteDBProcess/src/SqlExecutionArea.cpp new file mode 100644 index 0000000..f5e3d83 --- /dev/null +++ b/src/SqliteDBProcess/src/SqlExecutionArea.cpp @@ -0,0 +1,319 @@ +#include "SqlExecutionArea.h" +#include "ui_SqlExecutionArea.h" +#include "sqltextedit.h" +#include "sqlitetablemodel.h" +#include "sqlitedb.h" +#include "Settings.h" +#include "ExportDataDialog.h" +#include "FilterTableHeader.h" + +#include +#include +#include +#include + +SqlExecutionArea::SqlExecutionArea(DBBrowserDB& _db, QWidget* parent) : + QWidget(parent), + db(_db), + ui(new Ui::SqlExecutionArea), + m_columnsResized(false), + error_state(false) +{ + // Create UI + ui->setupUi(this); + + // Create model + model = new SqliteTableModel(db, this); + ui->tableResult->setModel(model); + connect(model, &SqliteTableModel::finishedFetch, this, &SqlExecutionArea::fetchedData); + connect(ui->tableResult->filterHeader(), &FilterTableHeader::sectionPressed, ui->tableResult, &QTableView::selectColumn); + + ui->findFrame->hide(); + + QShortcut* shortcutHideFind = new QShortcut(QKeySequence("ESC"), ui->findLineEdit); + connect(shortcutHideFind, &QShortcut::activated, this, &SqlExecutionArea::hideFindFrame); + + connect(ui->findLineEdit, &QLineEdit::textChanged, this, &SqlExecutionArea::findLineEdit_textChanged); + connect(ui->previousToolButton, &QToolButton::clicked, this, &SqlExecutionArea::findPrevious); + connect(ui->nextToolButton, &QToolButton::clicked, this, &SqlExecutionArea::findNext); + connect(ui->findLineEdit, &QLineEdit::returnPressed, this, &SqlExecutionArea::findNext); + connect(ui->hideFindButton, &QToolButton::clicked, this, &SqlExecutionArea::hideFindFrame); + + connect(&fileSystemWatch, &QFileSystemWatcher::fileChanged, this, &SqlExecutionArea::fileChanged); + + // Save to settings when sppliter is moved, but only to memory. + connect(ui->splitter, &QSplitter::splitterMoved, this, [this]() { + Settings::setValue("editor", "splitter1_sizes", ui->splitter->saveState(), /* dont_save_to_disk */ true); + }); + connect(ui->splitter_2, &QSplitter::splitterMoved, this, [this]() { + Settings::setValue("editor", "splitter2_sizes", ui->splitter_2->saveState(), /* dont_save_to_disk */ true); + }); + + // Set collapsible the editErrors panel + ui->splitter_2->setCollapsible(1, true); + + // Load settings + reloadSettings(); +} + +SqlExecutionArea::~SqlExecutionArea() +{ + delete ui; +} + +QString SqlExecutionArea::getSql() const +{ + return ui->editEditor->text(); +} + +QString SqlExecutionArea::getSelectedSql() const +{ + return ui->editEditor->selectedText().trimmed().replace(QChar(0x2029), '\n'); +} + +void SqlExecutionArea::setSql(const QString& sql) +{ + ui->editEditor->setText(sql); +} + +void SqlExecutionArea::finishExecution(const QString& result, const bool ok) +{ + error_state = !ok; + m_columnsResized = false; + ui->editErrors->setPlainText(result); + // Set reddish background when not ok + if (showErrorIndicators) + { + if (ok) + ui->editErrors->setStyleSheet(""); + else + ui->editErrors->setStyleSheet("QTextEdit {color: white; background-color: rgb(255, 102, 102)}"); + } + +} + +void SqlExecutionArea::fetchedData() +{ + // Don't resize the columns more than once to fit their contents. This is necessary because the finishedFetch signal of the model + // is emitted for each loaded prefetch block and we want to avoid resizes while scrolling down. + if(m_columnsResized) + return; + m_columnsResized = true; + + // Set column widths according to their contents but make sure they don't exceed a certain size + ui->tableResult->resizeColumnsToContents(); + for(int i = 0; i < model->columnCount(); i++) + { + if(ui->tableResult->columnWidth(i) > 300) + ui->tableResult->setColumnWidth(i, 300); + } +} + +SqlTextEdit *SqlExecutionArea::getEditor() +{ + return ui->editEditor; +} + +ExtendedTableWidget *SqlExecutionArea::getTableResult() +{ + return ui->tableResult; +} + +QTextEdit* SqlExecutionArea::getStatusEdit() +{ + return ui->editErrors; +} + +void SqlExecutionArea::saveAsCsv() +{ + ExportDataDialog dialog(db, ExportDataDialog::ExportFormatCsv, this, model->query()); + dialog.exec(); +} + +void SqlExecutionArea::reloadSettings() +{ + // Reload editor and table settings + ui->editEditor->reloadSettings(); + ui->tableResult->reloadSettings(); + + // Set font + QFont logfont(Settings::getValue("editor", "font").toString()); + logfont.setStyleHint(QFont::TypeWriter); + logfont.setPointSize(Settings::getValue("log", "fontsize").toInt()); + ui->editErrors->setFont(logfont); + + // Apply horizontal/vertical tiling option + if(Settings::getValue("editor", "horizontal_tiling").toBool()) + ui->splitter->setOrientation(Qt::Horizontal); + else + ui->splitter->setOrientation(Qt::Vertical); + + ui->splitter->restoreState(Settings::getValue("editor", "splitter1_sizes").toByteArray()); + ui->splitter_2->restoreState(Settings::getValue("editor", "splitter2_sizes").toByteArray()); + + // Reload model settings + model->reloadSettings(); + + // Check if error indicators are enabled for the not-ok background clue + showErrorIndicators = Settings::getValue("editor", "error_indicators").toBool(); + if (!showErrorIndicators) + ui->editErrors->setStyleSheet(""); + +} + +void SqlExecutionArea::find(QString expr, bool forward) +{ + + bool found = ui->editEditor->findText + (expr, + ui->regexpCheckBox->isChecked(), + ui->caseCheckBox->isChecked(), + ui->wholeWordsCheckBox->isChecked(), + /* wrap */ true, + forward); + + // Set reddish background when not found + if (found || expr.isEmpty()) + ui->findLineEdit->setStyleSheet(""); + else + ui->findLineEdit->setStyleSheet("QLineEdit {color: white; background-color: rgb(255, 102, 102)}"); + +} + +void SqlExecutionArea::findPrevious() +{ + find(ui->findLineEdit->text(), false); +} + +void SqlExecutionArea::findNext() +{ + find(ui->findLineEdit->text(), true); +} + +void SqlExecutionArea::findLineEdit_textChanged(const QString &) +{ + // When the text changes, perform an incremental search from cursor + // position, or from begin of the selection position. + + // For incremental search while typing we need to start from the + // begining of the current selection, otherwise we'd jump to the + // next occurrence + if (ui->editEditor->hasSelectedText()) { + int lineFrom; + int indexFrom; + int lineTo; + int indexTo; + ui->editEditor->getSelection(&lineFrom, &indexFrom, &lineTo, &indexTo); + ui->editEditor->setCursorPosition(lineFrom, indexFrom); + } + + find(ui->findLineEdit->text(), true); +} + +void SqlExecutionArea::hideFindFrame() +{ + ui->editEditor->setFocus(); + ui->findFrame->hide(); + emit findFrameVisibilityChanged(false); +} + +void SqlExecutionArea::setFindFrameVisibility(bool show) +{ + if (show) { + ui->findFrame->show(); + ui->findLineEdit->setFocus(); + ui->findLineEdit->selectAll(); + emit findFrameVisibilityChanged(true); + } else { + hideFindFrame(); + } +} + +void SqlExecutionArea::openFile(const QString& filename) +{ + // Open file for reading + QFile f(filename); + f.open(QIODevice::ReadOnly); + if(!f.isOpen()) + { + QMessageBox::warning(this, qApp->applicationName(), tr("Couldn't read file: %1.").arg(f.errorString())); + return; + } + + // Read in the entire file + ui->editEditor->setText(f.readAll()); + + // No modifications yet + ui->editEditor->setModified(false); + + // Remember file name + sqlFileName = filename; + + // Start watching this file for changes and unwatch the previously watched file, if any + if(!fileSystemWatch.files().empty()) + fileSystemWatch.removePaths(fileSystemWatch.files()); + fileSystemWatch.addPath(filename); +} + +void SqlExecutionArea::saveFile(const QString& filename) +{ + // Unwatch all files now. By unwathing them before the actual saving, we are not notified of our own changes + if(!fileSystemWatch.files().empty()) + fileSystemWatch.removePaths(fileSystemWatch.files()); + + // Open file for writing + QFile f(filename); + f.open(QIODevice::WriteOnly); + if(!f.isOpen()) + { + QMessageBox::warning(this, qApp->applicationName(), tr("Couldn't save file: %1.").arg(f.errorString())); + return; + } + + // Write to the file + if(f.write(getSql().toUtf8()) != -1) + { + // Close file now. If we let the destructor close it, we can get change notifications. + f.close(); + // Set modified to false so we can get control of unsaved changes when closing. + ui->editEditor->setModified(false); + + // Remember file name + sqlFileName = filename; + + // Start watching this file + fileSystemWatch.addPath(filename); + } else { + QMessageBox::warning(this, qApp->applicationName(), tr("Couldn't save file: %1.").arg(f.errorString())); + return; + } +} + +void SqlExecutionArea::fileChanged(const QString& filename) +{ + // Check if there are unsaved changes in the file + QString changes; + if(ui->editEditor->isModified()) + changes = QString(" ") + tr("Your changes will be lost when reloading it!"); + + // Ask user whether to realod the modified file + if(QMessageBox::question( + this, + qApp->applicationName(), + tr("The file \"%1\" was modified by another program. Do you want to reload it?%2").arg(filename, changes), + QMessageBox::Yes | QMessageBox::Ignore) == QMessageBox::Yes) + { + // Read in the file + openFile(filename); + } else { + // The file does not match the file on the disk anymore. So set the modified flag + ui->editEditor->setModified(true); + } +} + +void SqlExecutionArea::saveState() { + + // Save to disk last stored splitter sizes + Settings::setValue("editor", "splitter1_sizes", Settings::getValue("editor", "splitter1_sizes")); + Settings::setValue("editor", "splitter2_sizes", Settings::getValue("editor", "splitter2_sizes")); +} diff --git a/src/SqliteDBProcess/src/SqlExecutionArea.h b/src/SqliteDBProcess/src/SqlExecutionArea.h new file mode 100644 index 0000000..0907cbc --- /dev/null +++ b/src/SqliteDBProcess/src/SqlExecutionArea.h @@ -0,0 +1,76 @@ +#ifndef SQLEXECUTIONAREA_H +#define SQLEXECUTIONAREA_H +#include "WBFZExchangePluginAPI.h" +#include +#include + +class SqlTextEdit; +class SqliteTableModel; +class DBBrowserDB; +class ExtendedTableWidget; + +class QTextEdit; + +namespace Ui { +class SqlExecutionArea; +} + +class SqlExecutionArea : public QWidget +{ + Q_OBJECT + +public: + explicit SqlExecutionArea(DBBrowserDB& _db, QWidget* parent = nullptr); + ~SqlExecutionArea() override; + + QString getSql() const; + QString getSelectedSql() const; + void setSql(const QString& sql); + + void openFile(const QString& filename); + void saveFile(const QString& filename); + + QString fileName() const { return sqlFileName; } + void setFileName(const QString& filename) { sqlFileName = filename; } + + SqliteTableModel* getModel() { return model; } + SqlTextEdit* getEditor(); + ExtendedTableWidget *getTableResult(); + QTextEdit* getStatusEdit(); + + bool inErrorState() const { return error_state; } + + // Save window state to settings + static void saveState(); + +public slots: + void finishExecution(const QString& result, const bool ok); + void saveAsCsv(); + void reloadSettings(); + void fetchedData(); + void setFindFrameVisibility(bool show); + +private slots: + void findPrevious(); + void findNext(); + void findLineEdit_textChanged(const QString& text); + void hideFindFrame(); + + void fileChanged(const QString& filename); + +signals: + void findFrameVisibilityChanged(bool visible); + +private: + void find(QString expr, bool forward); + DBBrowserDB& db; + SqliteTableModel* model; + QString sqlFileName; + QFileSystemWatcher fileSystemWatch; + Ui::SqlExecutionArea* ui; + bool m_columnsResized; // This is set to true if the columns of the table view were already adjusted to fit their contents + bool showErrorIndicators; + bool error_state; +}; + +#endif diff --git a/src/SqliteDBProcess/src/SqlExecutionArea.ui b/src/SqliteDBProcess/src/SqlExecutionArea.ui new file mode 100644 index 0000000..1a187da --- /dev/null +++ b/src/SqliteDBProcess/src/SqlExecutionArea.ui @@ -0,0 +1,296 @@ + + + SqlExecutionArea + + + + 0 + 0 + 579 + 482 + + + + Form + + + + 3 + + + 3 + + + 3 + + + 3 + + + 3 + + + + + Qt::Vertical + + + false + + + + + 0 + + + + + + + + + 16777215 + 31 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + 1 + + + 1 + + + 1 + + + 1 + + + 3 + + + + + Find previous match [Shift+F3] + + + Find previous match with wrapping + + + + :/icons/up:/icons/up + + + Shift+F3 + + + + + + + Qt::Horizontal + + + + + + + The found pattern must be a whole word + + + Whole Words + + + + + + + Qt::DefaultContextMenu + + + Text pattern to find considering the checks in this frame + + + Find in editor + + + true + + + + + + + The found pattern must match in letter case + + + Case Sensitive + + + + + + + Find next match [Enter, F3] + + + Find next match with wrapping + + + + :/icons/down:/icons/down + + + F3 + + + + + + + Interpret search pattern as a regular expression + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + Regular Expression + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Close Find Bar + + + Close Find Bar + + + + :/icons/close:/icons/close + + + true + + + + + + + + + + + Qt::Vertical + + + false + + + + QAbstractItemView::NoEditTriggers + + + + + + 0 + 120 + + + + + Monospace + 8 + + + + false + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + + + This field shows the results and status codes of the last executed statements. + + + QFrame::StyledPanel + + + QFrame::Sunken + + + true + + + false + + + true + + + Results of the last executed statements + + + + + + + + + + SqlTextEdit + QTextEdit +
sqltextedit.h
+ 1 +
+ + ExtendedTableWidget + QTableWidget +
ExtendedTableWidget.h
+ + foreignKeyClicked(QString,QString,QByteArray) + foreignKeyClicked(sqlb::ObjectIdentifier,QString,QByteArray) + +
+
+ + editEditor + findLineEdit + tableResult + editErrors + previousToolButton + nextToolButton + caseCheckBox + wholeWordsCheckBox + + + + + + + saveAsCsv() + saveAsView() + +
diff --git a/src/SqliteDBProcess/src/SqlUiLexer.cpp b/src/SqliteDBProcess/src/SqlUiLexer.cpp new file mode 100644 index 0000000..5475047 --- /dev/null +++ b/src/SqliteDBProcess/src/SqlUiLexer.cpp @@ -0,0 +1,224 @@ +#include + +#include "SqlUiLexer.h" +#include "Qsci/qsciapis.h" +#include "Settings.h" +#include "sqlitedb.h" + +SqlUiLexer::SqlUiLexer(QObject* parent) : + QsciLexerSQL(parent) +{ + // Setup auto completion + autocompleteApi = new QsciAPIs(this); + setupAutoCompletion(); + autocompleteApi->prepare(); + + // Setup folding + setFoldComments(true); + setFoldCompact(false); +} + +void SqlUiLexer::setupAutoCompletion() +{ + // Set keywords + keywordPatterns + // Keywords + << "ABORT" << "ACTION" << "ADD" << "AFTER" << "ALL" + << "ALTER" << "ALWAYS" << "ANALYZE" << "AND" << "AS" << "ASC" + << "ATTACH" << "AUTOINCREMENT" << "BEFORE" << "BEGIN" << "BETWEEN" + << "BY" << "CASCADE" << "CASE" << "CAST" << "CHECK" + << "COLLATE" << "COLUMN" << "COMMIT" << "CONFLICT" << "CONSTRAINT" + << "CREATE" << "CROSS" << "CURRENT" << "CURRENT_DATE" << "CURRENT_TIME" << "CURRENT_TIMESTAMP" + << "DATABASE" << "DEFAULT" << "DEFERRABLE" << "DEFERRED" << "DELETE" + << "DESC" << "DETACH" << "DISTINCT" << "DO" << "DROP" << "EACH" + << "ELSE" << "END" << "ESCAPE" << "EXCEPT" << "EXCLUSIVE" + << "EXISTS" << "EXPLAIN" << "FAIL" << "FILTER" << "FOLLOWING" << "FOR" << "FOREIGN" + << "FROM" << "FULL" << "GENERATED" << "GLOB" << "GROUP" << "HAVING" + << "IF" << "IGNORE" << "IMMEDIATE" << "IN" << "INDEX" + << "INDEXED" << "INITIALLY" << "INNER" << "INSERT" << "INSTEAD" + << "INTERSECT" << "INTO" << "IS" << "ISNULL" << "JOIN" + << "KEY" << "LEFT" << "LIKE" << "LIMIT" << "MATCH" + << "NATURAL" << "NO" << "NOT" << "NOTHING" << "NOTNULL" << "NULL" + << "OF" << "OFFSET" << "ON" << "OR" << "ORDER" + << "OUTER" << "OVER" << "PARTITION" << "PLAN" << "PRAGMA" << "PRECEDING" << "PRIMARY" << "QUERY" + << "RAISE" << "RANGE" << "RECURSIVE" << "REFERENCES" << "REGEXP" << "REINDEX" << "RELEASE" + << "RENAME" << "REPLACE" << "RESTRICT" << "RIGHT" << "ROLLBACK" + << "ROWID" << "ROW" << "ROWS" << "SAVEPOINT" << "SELECT" << "SET" << "STORED" << "TABLE" + << "TEMP" << "TEMPORARY" << "THEN" << "TO" << "TRANSACTION" + << "TRIGGER" << "UNBOUNDED" << "UNION" << "UNIQUE" << "UPDATE" << "USING" + << "VACUUM" << "VALUES" << "VIEW" << "VIRTUAL" << "WHEN" + << "WHERE" << "WINDOW" << "WITH" << "WITHOUT" + // Data types + << "INT" << "INTEGER" << "REAL" << "TEXT" << "BLOB" << "NUMERIC" << "CHAR"; + bool upperKeywords = Settings::getValue("editor", "upper_keywords").toBool(); + for(const QString& keyword : keywordPatterns) + { + if (upperKeywords) + autocompleteApi->add(keyword + "?" + QString::number(ApiCompleterIconIdKeyword)); + else + autocompleteApi->add(keyword.toLower() + "?" + QString::number(ApiCompleterIconIdKeyword)); + } + + // Functions + QStringList functionPatterns; + functionPatterns + // Core functions + << "abs" + tr("(X) The abs(X) function returns the absolute value of the numeric argument X.") + << "changes" + tr("() The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement.") + << "char" + tr("(X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. ") + << "coalesce" + tr("(X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL") + << "glob" + tr("(X,Y) The glob(X,Y) function is equivalent to the expression \"Y GLOB X\".") + << "ifnull" + tr("(X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL.") + << "instr" + tr("(X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X.") + << "hex" + tr("(X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob.") + << "last_insert_rowid" + tr("() The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function.") + << "length" + tr("(X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character.") + << "like" + tr("(X,Y) The like() function is used to implement the \"Y LIKE X\" expression.") + << "like" + tr("(X,Y,Z) The like() function is used to implement the \"Y LIKE X ESCAPE Z\" expression.") + << "load_extension" + tr("(X) The load_extension(X) function loads SQLite extensions out of the shared library file named X.\nUse of this function must be authorized from Preferences.") + << "load_extension" + tr("(X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y.\nUse of this function must be authorized from Preferences.") + << "lower" + tr("(X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case.") + << "ltrim" + tr("(X) ltrim(X) removes spaces from the left side of X.") + << "ltrim" + tr("(X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X.") + << "max" + tr("(X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL.") + << "min" + tr("(X,Y,...) The multi-argument min() function returns the argument with the minimum value.") + << "nullif" + tr("(X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same.") + << "printf" + tr("(FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library.") + << "quote" + tr("(X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement.") + << "random" + tr("() The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807.") + << "randomblob" + tr("(N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes.") + << "replace" + tr("(X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X.") + << "round" + tr("(X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point.") + << "round" + tr("(X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point.") + << "rtrim" + tr("(X) rtrim(X) removes spaces from the right side of X.") + << "rtrim" + tr("(X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X.") + << "soundex" + tr("(X) The soundex(X) function returns a string that is the soundex encoding of the string X.") + << "substr" + tr("(X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th.") + << "substr" + tr("(X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long.") + << "total_changes" + tr("() The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened.") + << "trim" + tr("(X) trim(X) removes spaces from both ends of X.") + << "trim" + tr("(X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X.") + << "typeof" + tr("(X) The typeof(X) function returns a string that indicates the datatype of the expression X.") + << "unicode" + tr("(X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X.") + << "upper" + tr("(X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent.") + << "zeroblob" + tr("(N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00.") + // Date and time functions + << "date" + tr("(timestring,modifier,modifier,...)") + << "time" + tr("(timestring,modifier,modifier,...)") + << "datetime" + tr("(timestring,modifier,modifier,...)") + << "julianday" + tr("(timestring,modifier,modifier,...)") + << "strftime" + tr("(format,timestring,modifier,modifier,...)") + // Aggregate functions + << "avg" + tr("(X) The avg() function returns the average value of all non-NULL X within a group.") + << "count" + tr("(X) The count(X) function returns a count of the number of times that X is not NULL in a group.") + << "group_concat" + tr("(X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X.") + << "group_concat" + tr("(X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X.") + << "max" + tr("(X) The max() aggregate function returns the maximum value of all values in the group.") + << "min" + tr("(X) The min() aggregate function returns the minimum non-NULL value of all values in the group.") + << "sum" + tr("(X) The sum() and total() aggregate functions return sum of all non-NULL values in the group.") + << "total" + tr("(X) The sum() and total() aggregate functions return sum of all non-NULL values in the group.") + // Window functions + << "row_number" + tr("() The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise.") + << "rank" + tr("() The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1.") + << "dense_rank" + tr("() The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. ") + << "percent_rank" + tr("() Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. ") + << "cume_dist" + tr("() The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition.") + << "ntile" + tr("(N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of.") + << "lag" + tr("(expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL.") + << "lag" + tr("(expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned.") + << "lag" + tr("(expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist.") + << "lead" + tr("(expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL.") + << "lead" + tr("(expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned.") + << "lead" + tr("(expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist.") + << "first_value" + tr("(expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row.") + << "last_value" + tr("(expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row.") + << "nth_value" + tr("(expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned.") + ; + + listFunctions.clear(); + for(const QString& keyword : functionPatterns) + { + QString fn = keyword.left(keyword.indexOf('(')); + QString descr = keyword.mid(keyword.indexOf('(')); + + autocompleteApi->add(fn + "?" + QString::number(ApiCompleterIconIdFunction) + descr); + autocompleteApi->add(fn.toUpper() + "?" + QString::number(ApiCompleterIconIdFunction) + descr); + + // Store all function names in order to highlight them in a different colour + listFunctions.append(fn); + } +} + +void SqlUiLexer::setTableNames(const QualifiedTablesMap& tables) +{ + // Update list for auto completion + autocompleteApi->clear(); + listTables.clear(); + setupAutoCompletion(); + for(const auto& itSchemas : tables) + { + for(const auto& itTables : itSchemas.second) + { + // Completion for schema.table + autocompleteApi->add(itSchemas.first + "?" + QString::number(SqlUiLexer::ApiCompleterIconIdSchema) + "." + + itTables.first + "?" + QString::number(SqlUiLexer::ApiCompleterIconIdTable)); + + for(const QString& field : itTables.second) { + // Completion for table.field + autocompleteApi->add(itTables.first + "?" + QString::number(SqlUiLexer::ApiCompleterIconIdTable) + "." + + field + "?" + QString::number(SqlUiLexer::ApiCompleterIconIdColumn)); + + // Completion for isolated field + autocompleteApi->add(field + "?" + QString::number(SqlUiLexer::ApiCompleterIconIdColumn)); + } + // Store the table name list in order to highlight them in a different colour + listTables.append(itTables.first); + } + } + autocompleteApi->prepare(); +} + +const char* SqlUiLexer::keywords(int set) const +{ + // Function and table names are generated automatically but need to be returned to the calling functions. + // In order to not have them deleted after this function ends they are stored as static variables. Because + // the keywords and functions lists don't change after the first call it's initialised here whereas the tables + // list, which can change, is updated for each call + static std::string sqliteKeywords = keywordPatterns.join(" ").toLower().toUtf8().constData(); + static std::string functions = listFunctions.join(" ").toUtf8().constData(); + static std::string tables; + + if(set == 1) { // This corresponds to the QsciLexerSQL::Keyword style in SqlTextEdit + return sqliteKeywords.c_str(); + } else if(set == 6) // This corresponds to the QsciLexerSQL::KeywordSet6 style in SqlTextEdit + { + tables = listTables.join(" ").toLower().toUtf8().constData(); + return tables.c_str(); + } else if(set == 7) { // This corresponds to the QsciLexerSQL::KeywordSet7 style in SqlTextEdit + return functions.c_str(); + } else { + // For all other keyword sets simply call the parent implementation + return QsciLexerSQL::keywords(set); + } +} + +QStringList SqlUiLexer::autoCompletionWordSeparators() const +{ + // The only word separator for auto completion in SQL is "." as in "tablename.columnname". + // Because this isn't implemented in the default QScintilla SQL lexer for some reason we add it here. + // We also need to consider quoted identifiers as in "tablename"."columnname" with whatever quote character + // is configured. + QStringList wl; + + QString escapeSeparator = sqlb::escapeIdentifier(QString(".")); + // Case for non symetric quotes, e.g. "[.]" to "].[" + std::reverse(escapeSeparator.begin(), escapeSeparator.end()); + + wl << "." << escapeSeparator; + return wl; +} + +bool SqlUiLexer::caseSensitive() const +{ + return false; +} diff --git a/src/SqliteDBProcess/src/SqlUiLexer.h b/src/SqliteDBProcess/src/SqlUiLexer.h new file mode 100644 index 0000000..0ca7ef7 --- /dev/null +++ b/src/SqliteDBProcess/src/SqlUiLexer.h @@ -0,0 +1,47 @@ +#ifndef SQLUILEXER_H +#define SQLUILEXER_H +#include "WBFZExchangePluginAPI.h" +#include "Qsci/qscilexersql.h" + +#include + +class QsciAPIs; + +class SqlUiLexer : public QsciLexerSQL +{ + Q_OBJECT + +public: + explicit SqlUiLexer(QObject *parent = nullptr); + + enum ApiCompleterIconId + { + ApiCompleterIconIdKeyword = 1, + ApiCompleterIconIdFunction, + ApiCompleterIconIdTable, + ApiCompleterIconIdColumn, + ApiCompleterIconIdSchema, + }; + + using TablesAndColumnsMap = std::map>; + using QualifiedTablesMap = std::map; + + void setTableNames(const QualifiedTablesMap& tables); + + const char* keywords(int set) const override; + + QStringList autoCompletionWordSeparators() const override; + + bool caseSensitive() const override; + +private: + QsciAPIs* autocompleteApi; + + void setupAutoCompletion(); + + QStringList listTables; + QStringList listFunctions; + QStringList keywordPatterns; +}; + +#endif diff --git a/src/SqliteDBProcess/src/SqliteDBMainWindow.cpp b/src/SqliteDBProcess/src/SqliteDBMainWindow.cpp new file mode 100644 index 0000000..abad297 --- /dev/null +++ b/src/SqliteDBProcess/src/SqliteDBMainWindow.cpp @@ -0,0 +1,3473 @@ +#include "SqliteDBMainWindow.h" +#include "ui_SqliteDBMainWindow.h" + +#include "Application.h" +#include "EditIndexDialog.h" +#include "AboutDialog.h" +#include "EditTableDialog.h" +#include "ImportCsvDialog.h" +#include "ExportDataDialog.h" +#include "Settings.h" +#include "PreferencesDialog.h" +#include "EditDialog.h" +#include "sqlitetablemodel.h" +#include "SqlExecutionArea.h" +#include "VacuumDialog.h" +#include "DbStructureModel.h" +#include "version.h" +#include "sqlite.h" +#include "CipherDialog.h" +#include "ExportSqlDialog.h" +#include "SqlUiLexer.h" +#include "FileDialog.h" +#include "FilterTableHeader.h" +//#include "remoteDock.h" +#include "FindReplaceDialog.h" +#include "RunSql.h" +#include "ExtendedTableWidget.h" +#include "Data.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include // This include seems to only be necessary for the Windows build +#include +#include +#include + +#ifdef Q_OS_MACX //Needed only on macOS + #include +#endif + +#include + +const int SqliteDBMainWindow::MaxRecentFiles; + +// These are needed for reading and writing object files +QDataStream& operator>>(QDataStream& ds, sqlb::ObjectIdentifier& objid) +{ + // Read in the item + QVariant v; + ds >> v; + + // If it is a string list, we can treat it as an object identifier. If it isn't, we assume it's just a + // single string and use interpret it as the table name in the main schema. This is done for backwards + // compatability with old project file formats. + QStringList str = v.toStringList(); + if(str.isEmpty()) + { + objid = sqlb::ObjectIdentifier("main", v.toString().toStdString()); + } else { + objid.setSchema(str.first().toStdString()); + if(str.size() >= 2) + objid.setName(str.last().toStdString()); + } + return ds; +} + +// This is a temporary helper function. Delete it once we clean up the project file loading. +static std::vector toSortOrderVector(int index, Qt::SortOrder mode) +{ + std::vector vector; + vector.emplace_back(index, mode == Qt::AscendingOrder ? sqlb::Ascending : sqlb::Descending); + return vector; +} + +SqliteDBMainWindow::SqliteDBMainWindow(QWidget* parent) + : QMainWindow(parent), + ui(new Ui::SqliteDBMainWindow), + db(), + editDock(new EditDialog(this)), + plotDock(new PlotDock(this)), + ////remoteDock(new remoteDock(this)), // üĹֻñأԶݿӹ + findReplaceDialog(new FindReplaceDialog(this)), + execute_sql_worker(nullptr), + isProjectModified(false) +{ + ui->setupUi(this); + init(); + ui->dockRemote->close(); + activateFields(false); + updateRecentFileActions(); +} + +SqliteDBMainWindow::~SqliteDBMainWindow() +{ + delete ui; +} + +void SqliteDBMainWindow::init() +{ + // Load window settings + tabifyDockWidget(ui->dockLog, ui->dockPlot); + tabifyDockWidget(ui->dockLog, ui->dockSchema); + tabifyDockWidget(ui->dockLog, ui->dockRemote); + +#ifdef Q_OS_MACX + // Add OpenGL Context for macOS + QOpenGLWidget *ogl = new QOpenGLWidget(this); + ui->verticalLayout->addWidget(ogl); + ogl->setHidden(true); +#endif + + // Automatic update check +#ifdef CHECKNEWVERSION + connect(&RemoteNetwork::get(), &RemoteNetwork::networkReady, [this]() { + // Check for a new version if automatic update check aren't disabled in the settings dialog + if(Settings::getValue("checkversion", "enabled").toBool()) + { + RemoteNetwork::get().fetch(QUrl("https://download.sqlitebrowser.org/currentrelease"), RemoteNetwork::RequestTypeCustom, + QString(), [this](const QByteArray& reply) { + QList info = reply.split('\n'); + if(info.size() >= 2) + { + QString version = info.at(0).trimmed(); + QString url = info.at(1).trimmed(); + checkNewVersion(version, url); + } + }); + } + }); +#endif + + // Connect SQL logging and database state setting to main window + connect(&db, &DBBrowserDB::dbChanged, this, &SqliteDBMainWindow::dbState, Qt::QueuedConnection); + connect(&db, &DBBrowserDB::sqlExecuted, this, &SqliteDBMainWindow::logSql, Qt::QueuedConnection); + connect(&db, &DBBrowserDB::requestCollation, this, &SqliteDBMainWindow::requestCollation); + + // Initialise table browser first + ui->tableBrowser->init(&db); + + // Set project modified flag when the settings in the table browser were changed + connect(ui->tableBrowser, &TableBrowser::projectModified, this, [this]() { + isProjectModified = true; + }); + + connect(ui->tableBrowser->model(), &SqliteTableModel::dataChanged, this, &SqliteDBMainWindow::dataTableSelectionChanged); + connect(ui->tableBrowser, &TableBrowser::selectionChanged, this, &SqliteDBMainWindow::dataTableSelectionChanged); + connect(ui->tableBrowser, &TableBrowser::selectionChangedByDoubleClick, this, &SqliteDBMainWindow::doubleClickTable); + connect(ui->tableBrowser, &TableBrowser::updatePlot, this, &SqliteDBMainWindow::attachPlot); + connect(ui->tableBrowser, &TableBrowser::createView, this, &SqliteDBMainWindow::saveAsView); + connect(ui->tableBrowser, &TableBrowser::requestFileOpen, this, [this](const QString& file) { + fileOpen(file); + }); + connect(ui->tableBrowser, &TableBrowser::statusMessageRequested, ui->statusbar, [this](const QString& message) { + ui->statusbar->showMessage(message); + }); + + m_currentTabTableModel = ui->tableBrowser->model(); + + // Set up DB structure tab + dbStructureModel = new DbStructureModel(db, this); + connect(&db, &DBBrowserDB::structureUpdated, this, [this]() { + sqlb::ObjectIdentifier old_table = ui->tableBrowser->currentlyBrowsedTableName(); + dbStructureModel->reloadData(); + populateStructure(old_table); + }); + ui->dbTreeWidget->setModel(dbStructureModel); + ui->dbTreeWidget->setColumnWidth(DbStructureModel::ColumnName, 300); + ui->dbTreeWidget->setColumnHidden(DbStructureModel::ColumnObjectType, true); + ui->dbTreeWidget->setColumnHidden(DbStructureModel::ColumnSchema, true); + + // Set up DB schema dock + ui->treeSchemaDock->setModel(dbStructureModel); + ui->treeSchemaDock->setColumnHidden(DbStructureModel::ColumnObjectType, true); + ui->treeSchemaDock->setColumnHidden(DbStructureModel::ColumnSchema, true); + + // Set up the table combo box in the Browse Data tab + ui->tableBrowser->setStructure(dbStructureModel); + + // Create docks + ui->dockEdit->setWidget(editDock); + ui->dockPlot->setWidget(plotDock); + //ui->dockRemote->setWidget(//remoteDock); + + // Set up edit dock + editDock->setReadOnly(true); + + // Restore window geometry + restoreGeometry(Settings::getValue("SqliteDBMainWindow", "geometry").toByteArray()); + + // Save default and restore window state + defaultWindowState = saveState(); + restoreState(Settings::getValue("SqliteDBMainWindow", "windowState").toByteArray()); + + // Save default and restore open tab order if the openTabs setting is saved. + defaultOpenTabs = saveOpenTabs(); + restoreOpenTabs(Settings::getValue("SqliteDBMainWindow", "openTabs").toString()); + + // Restore dock state settings + ui->comboLogSubmittedBy->setCurrentIndex(ui->comboLogSubmittedBy->findText(Settings::getValue("SQLLogDock", "Log").toString())); + + // Add keyboard shortcuts + QShortcut* shortcutBrowseRefreshF5 = new QShortcut(QKeySequence("F5"), this); + connect(shortcutBrowseRefreshF5, &QShortcut::activated, this, &SqliteDBMainWindow::refresh); + QShortcut* shortcutBrowseRefreshCtrlR = new QShortcut(QKeySequence("Ctrl+R"), this); + connect(shortcutBrowseRefreshCtrlR, &QShortcut::activated, this, &SqliteDBMainWindow::refresh); + + // Add print shortcut for the DB Structure tab (dbTreeWidget) with context to the widget, so other print shortcuts aren't eclipsed. + QShortcut* shortcutPrint = new QShortcut(QKeySequence(QKeySequence::Print), ui->dbTreeWidget, nullptr, nullptr, Qt::WidgetShortcut); + connect(shortcutPrint, &QShortcut::activated, this, &SqliteDBMainWindow::printDbStructure); + + QShortcut* closeTabShortcut = new QShortcut(tr("Ctrl+W"), ui->tabSqlAreas, nullptr, nullptr, Qt::WidgetWithChildrenShortcut); + connect(closeTabShortcut, &QShortcut::activated, this, [this]() { + if(ui->tabSqlAreas->currentIndex() >= 0) + closeSqlTab(ui->tabSqlAreas->currentIndex()); + }); + + // Create the actions for the recently opened dbs list + for(int i = 0; i < MaxRecentFiles; ++i) { + recentFileActs[i] = new QAction(this); + recentFileActs[i]->setVisible(false); + connect(recentFileActs[i], &QAction::triggered, this, &SqliteDBMainWindow::openRecentFile); + } + for(int i = 0; i < MaxRecentFiles; ++i) + ui->fileMenu->insertAction(ui->fileExitAction, recentFileActs[i]); + recentSeparatorAct = ui->fileMenu->insertSeparator(ui->fileExitAction); + + // Create popup menus + popupTableMenu = new QMenu(this); + popupTableMenu->addAction(ui->actionEditBrowseTable); + popupTableMenu->addAction(ui->editModifyObjectAction); + popupTableMenu->addAction(ui->editDeleteObjectAction); + popupTableMenu->addSeparator(); + popupTableMenu->addAction(ui->actionEditCopyCreateStatement); + popupTableMenu->addAction(ui->actionExportCsvPopup); + + popupSchemaDockMenu = new QMenu(this); + popupSchemaDockMenu->addAction(ui->actionPopupSchemaDockBrowseTable); + popupSchemaDockMenu->addSeparator(); + popupSchemaDockMenu->addAction(ui->actionDropQualifiedCheck); + popupSchemaDockMenu->addAction(ui->actionEnquoteNamesCheck); + + popupOpenDbMenu = new QMenu(this); + popupOpenDbMenu->addAction(ui->fileOpenAction); + popupOpenDbMenu->addAction(ui->fileOpenReadOnlyAction); + ui->fileOpenActionPopup->setMenu(popupOpenDbMenu); + + popupSaveSqlFileMenu = new QMenu(this); + popupSaveSqlFileMenu->addAction(ui->actionSqlSaveFile); + popupSaveSqlFileMenu->addAction(ui->actionSqlSaveFileAs); + ui->actionSqlSaveFilePopup->setMenu(popupSaveSqlFileMenu); + + popupSaveSqlResultsMenu = new QMenu(this); + popupSaveSqlResultsMenu->addAction(ui->actionSqlResultsExportCsv); + popupSaveSqlResultsMenu->addAction(ui->actionSqlResultsSaveAsView); + ui->actionSqlResultsSave->setMenu(popupSaveSqlResultsMenu); + qobject_cast(ui->toolbarSql->widgetForAction(ui->actionSqlResultsSave))->setPopupMode(QToolButton::InstantPopup); + + // Add menu item for log dock + ui->viewMenu->insertAction(ui->viewDBToolbarAction, ui->dockLog->toggleViewAction()); + ui->viewMenu->actions().at(0)->setShortcut(QKeySequence(tr("Ctrl+L"))); + ui->viewMenu->actions().at(0)->setIcon(QIcon(":/icons/log_dock")); + + // Add menu item for plot dock + ui->viewMenu->insertAction(ui->viewDBToolbarAction, ui->dockPlot->toggleViewAction()); + ui->viewMenu->actions().at(1)->setShortcut(QKeySequence(tr("Ctrl+D"))); + ui->viewMenu->actions().at(1)->setIcon(QIcon(":/icons/log_dock")); + + // Add menu item for schema dock + ui->viewMenu->insertAction(ui->viewDBToolbarAction, ui->dockSchema->toggleViewAction()); + ui->viewMenu->actions().at(2)->setShortcut(QKeySequence(tr("Ctrl+I"))); + ui->viewMenu->actions().at(2)->setIcon(QIcon(":/icons/log_dock")); + + // Add menu item for edit dock + ui->viewMenu->insertAction(ui->viewDBToolbarAction, ui->dockEdit->toggleViewAction()); + ui->viewMenu->actions().at(3)->setShortcut(QKeySequence(tr("Ctrl+E"))); + ui->viewMenu->actions().at(3)->setIcon(QIcon(":/icons/log_dock")); + + // Add menu item for plot dock + ui->viewMenu->insertAction(ui->viewDBToolbarAction, ui->dockRemote->toggleViewAction()); + ui->viewMenu->actions().at(4)->setIcon(QIcon(":/icons/log_dock")); + + // Set checked state if toolbar is visible + ui->viewDBToolbarAction->setChecked(!ui->toolbarDB->isHidden()); + ui->viewExtraDBToolbarAction->setChecked(!ui->toolbarExtraDB->isHidden()); + ui->viewProjectToolbarAction->setChecked(!ui->toolbarProject->isHidden()); + + // Add separator between docks and toolbars + ui->viewMenu->insertSeparator(ui->viewDBToolbarAction); + + // Connect the tabCloseRequested to the actual closeTab function. + // This must be done before the connections for checking the actions in the View menu so + // they are updated accordingly. + connect(ui->mainTab, &QTabWidget::tabCloseRequested, this, &SqliteDBMainWindow::closeTab); + + // Add entries for toggling the visibility of main tabs + for (QWidget* widget : {ui->structure, ui->browser, ui->pragmas, ui->query}) { + QAction* action = ui->viewMenu->addAction(QIcon(":/icons/open_sql"), widget->accessibleName()); + action->setObjectName(widget->accessibleName()); + action->setCheckable(true); + action->setChecked(ui->mainTab->indexOf(widget) != -1); + connect(action, &QAction::toggled, [=](bool show) { toggleTabVisible(widget, show); }); + // Connect tabCloseRequested for setting checked the appropiate menu entry. + // Note these are called after the actual tab is closed only because they are connected + // after connecting closeTab. + connect(ui->mainTab, &QTabWidget::tabCloseRequested, [=](int /*index*/) { + action->setChecked(ui->mainTab->indexOf(widget) != -1); + }); + } + + ui->viewMenu->addSeparator(); + + QMenu* layoutMenu = new QMenu(tr("Window Layout"), this); + ui->viewMenu->addMenu(layoutMenu); + + QAction* resetLayoutAction = layoutMenu->addAction(tr("Reset Window Layout")); + resetLayoutAction->setShortcut(QKeySequence(tr("Alt+0"))); + connect(resetLayoutAction, &QAction::triggered, [=]() { + restoreState(defaultWindowState); + restoreOpenTabs(defaultOpenTabs); + ui->viewDBToolbarAction->setChecked(!ui->toolbarDB->isHidden()); + ui->viewExtraDBToolbarAction->setChecked(!ui->toolbarExtraDB->isHidden()); + ui->viewProjectToolbarAction->setChecked(!ui->toolbarProject->isHidden()); + }); + QAction* simplifyLayoutAction = layoutMenu->addAction(tr("Simplify Window Layout")); + simplifyLayoutAction->setShortcut(QKeySequence(tr("Shift+Alt+0"))); + connect(simplifyLayoutAction, &QAction::triggered, [=]() { + ui->viewMenu->findChild(ui->pragmas->accessibleName())->activate(QAction::Trigger); + ui->dockLog->hide(); + ui->dockPlot->hide(); + ui->dockSchema->hide(); + ui->dockEdit->hide(); + ui->dockRemote->hide(); + }); + QAction* atBottomLayoutAction = layoutMenu->addAction(tr("Dock Windows at Bottom")); + connect(atBottomLayoutAction, &QAction::triggered, [=]() { + moveDocksTo(Qt::BottomDockWidgetArea); + }); + QAction* atLeftLayoutAction = layoutMenu->addAction(tr("Dock Windows at Left Side")); + connect(atLeftLayoutAction, &QAction::triggered, [=]() { + moveDocksTo(Qt::LeftDockWidgetArea); + }); + QAction* atTopLayoutAction = layoutMenu->addAction(tr("Dock Windows at Top")); + connect(atTopLayoutAction, &QAction::triggered, [=]() { + moveDocksTo(Qt::TopDockWidgetArea); + }); + + // Set Alt+[1-4] shortcuts for opening the corresponding tab in that position. + // Note that it is safe to call setCurrentIndex with a tab that is currently closed, + // since setCurrentIndex does nothing in that case. + QShortcut* setTab1Shortcut = new QShortcut(QKeySequence("Alt+1"), this); + connect(setTab1Shortcut, &QShortcut::activated, [this]() { ui->mainTab->setCurrentIndex(0); }); + QShortcut* setTab2Shortcut = new QShortcut(QKeySequence("Alt+2"), this); + connect(setTab2Shortcut, &QShortcut::activated, [this]() { ui->mainTab->setCurrentIndex(1); }); + QShortcut* setTab3Shortcut = new QShortcut(QKeySequence("Alt+3"), this); + connect(setTab3Shortcut, &QShortcut::activated, [this]() { ui->mainTab->setCurrentIndex(2); }); + QShortcut* setTab4Shortcut = new QShortcut(QKeySequence("Alt+4"), this); + connect(setTab4Shortcut, &QShortcut::activated, [this]() { ui->mainTab->setCurrentIndex(3); }); + + // If we're not compiling in SQLCipher, hide its FAQ link in the help menu +#ifndef ENABLE_SQLCIPHER + ui->actionSqlCipherFaq->setVisible(false); +#endif + + // Set statusbar fields + statusBusyLabel = new QLabel(ui->statusbar); + statusBusyLabel->setEnabled(false); + statusBusyLabel->setVisible(false); + statusBusyLabel->setToolTip(tr("The database is currenctly busy.")); + ui->statusbar->addPermanentWidget(statusBusyLabel); + + statusStopButton = new QToolButton(ui->statusbar); + statusStopButton->setVisible(false); + statusStopButton->setIcon(QIcon(":icons/cancel")); + statusStopButton->setToolTip(tr("Click here to interrupt the currently running query.")); + statusStopButton->setMaximumSize(ui->statusbar->geometry().height() - 6, ui->statusbar->geometry().height() - 6); + statusStopButton->setAutoRaise(true); + ui->statusbar->addPermanentWidget(statusStopButton); + + statusEncryptionLabel = new QLabel(ui->statusbar); + statusEncryptionLabel->setEnabled(false); + statusEncryptionLabel->setVisible(false); + statusEncryptionLabel->setText(tr("Encrypted")); + statusEncryptionLabel->setToolTip(tr("Database is encrypted using SQLCipher")); + ui->statusbar->addPermanentWidget(statusEncryptionLabel); + + statusReadOnlyLabel = new QLabel(ui->statusbar); + statusReadOnlyLabel->setEnabled(false); + statusReadOnlyLabel->setVisible(false); + statusReadOnlyLabel->setText(tr("Read only")); + statusReadOnlyLabel->setToolTip(tr("Database file is read only. Editing the database is disabled.")); + ui->statusbar->addPermanentWidget(statusReadOnlyLabel); + + statusEncodingLabel = new QLabel(ui->statusbar); + statusEncodingLabel->setEnabled(false); + statusEncodingLabel->setText("UTF-8"); + statusEncodingLabel->setToolTip(tr("Database encoding")); + ui->statusbar->addPermanentWidget(statusEncodingLabel); + + // When changing the text of the toolbar actions, also automatically change their icon text and their tooltip text + connect(ui->editModifyObjectAction, &QAction::changed, [=]() { + ui->editModifyObjectAction->setIconText(ui->editModifyObjectAction->text()); + ui->editModifyObjectAction->setToolTip(ui->editModifyObjectAction->text()); + }); + connect(ui->editDeleteObjectAction, &QAction::changed, [=]() { + ui->editDeleteObjectAction->setIconText(ui->editDeleteObjectAction->text()); + ui->editDeleteObjectAction->setToolTip(ui->editDeleteObjectAction->text()); + }); + + // When clicking the interrupt query button in the status bar, ask SQLite to interrupt the current query + connect(statusStopButton, &QToolButton::clicked, [this]() { + db.interruptQuery(); + }); + + // Connect some more signals and slots + connect(editDock, &EditDialog::recordTextUpdated, this, &SqliteDBMainWindow::updateRecordText); + connect(editDock, &EditDialog::requestUrlOrFileOpen, this, &SqliteDBMainWindow::openUrlOrFile); + connect(ui->dbTreeWidget->selectionModel(), &QItemSelectionModel::currentChanged, this, &SqliteDBMainWindow::changeTreeSelection); + connect(ui->dockEdit, &QDockWidget::visibilityChanged, this, &SqliteDBMainWindow::toggleEditDock); + //connect(//remoteDock, SIGNAL(openFile(QString)), this, SLOT(fileOpen(QString))); + connect(ui->actionDropQualifiedCheck, &QAction::toggled, dbStructureModel, &DbStructureModel::setDropQualifiedNames); + connect(ui->actionEnquoteNamesCheck, &QAction::toggled, dbStructureModel, &DbStructureModel::setDropEnquotedNames); + connect(&db, &DBBrowserDB::databaseInUseChanged, this, &SqliteDBMainWindow::updateDatabaseBusyStatus); + + ui->actionDropQualifiedCheck->setChecked(Settings::getValue("SchemaDock", "dropQualifiedNames").toBool()); + ui->actionEnquoteNamesCheck->setChecked(Settings::getValue("SchemaDock", "dropEnquotedNames").toBool()); + + connect(ui->tableBrowser->model(), &SqliteTableModel::finishedFetch, [this](){ + auto& settings = ui->tableBrowser->settings(ui->tableBrowser->currentlyBrowsedTableName()); + plotDock->updatePlot(ui->tableBrowser->model(), &settings, true, false); + }); + + connect(ui->actionSqlStop, &QAction::triggered, [this]() { + if(execute_sql_worker && execute_sql_worker->isRunning()) + execute_sql_worker->stop(); + }); + + // Connect tool pragmas + connect(ui->actionIntegrityCheck, &QAction::triggered, [this]() { + runSqlNewTab("PRAGMA integrity_check;", ui->actionIntegrityCheck->text(), "https://www.sqlite.org/pragma.html#pragma_integrity_check"); + }); + connect(ui->actionQuickCheck, &QAction::triggered, [this]() { + runSqlNewTab("PRAGMA quick_check;", ui->actionQuickCheck->text(), "https://www.sqlite.org/pragma.html#pragma_quick_check"); + }); + connect(ui->actionForeignKeyCheck, &QAction::triggered, [this]() { + runSqlNewTab("PRAGMA foreign_key_check;", ui->actionForeignKeyCheck->text(), "https://www.sqlite.org/pragma.html#pragma_foreign_key_check"); + }); + connect(ui->actionOptimize, &QAction::triggered, [this]() { + runSqlNewTab("PRAGMA optimize;", ui->actionOptimize->text(), "https://www.sqlite.org/pragma.html#pragma_optimize"); + }); + + // Action for switching the table via the Database Structure tab + connect(ui->actionPopupSchemaDockBrowseTable, &QAction::triggered, [this]() { + sqlb::ObjectIdentifier obj(ui->treeSchemaDock->model()->data(ui->treeSchemaDock->currentIndex().sibling(ui->treeSchemaDock->currentIndex().row(), DbStructureModel::ColumnSchema), Qt::EditRole).toString().toStdString(), + ui->treeSchemaDock->model()->data(ui->treeSchemaDock->currentIndex().sibling(ui->treeSchemaDock->currentIndex().row(), DbStructureModel::ColumnName), Qt::EditRole).toString().toStdString()); + switchToBrowseDataTab(obj); + refresh(); // Required in case the Browse Data tab already was the active main tab + }); + + // Set other window settings + setAcceptDrops(true); + setWindowTitle(QApplication::applicationName()); + + // Add the documentation of shortcuts, which aren't otherwise visible in the user interface, to some buttons. + addShortcutsTooltip(ui->actionDbPrint); + addShortcutsTooltip(ui->actionSqlOpenTab); + addShortcutsTooltip(ui->actionSqlPrint); + addShortcutsTooltip(ui->actionExecuteSql, {shortcutBrowseRefreshF5->key(), shortcutBrowseRefreshCtrlR->key()}); + addShortcutsTooltip(ui->actionSqlExecuteLine); + addShortcutsTooltip(ui->actionSqlFind); + addShortcutsTooltip(ui->actionSqlFindReplace); + addShortcutsTooltip(ui->actionSqlToggleComment); + + // Load all settings + reloadSettings(); + +#ifndef ENABLE_SQLCIPHER + // Only show encryption menu action when SQLCipher support is enabled + ui->actionEncryption->setVisible(false); +#endif + + /* Remove all the '&' signs from the dock titles. On at least Windows and + * OSX, Qt doesn't seem to support them properly, so they end up being + * visible instead of creating a keyboard shortcut + */ + ui->dockEdit->setWindowTitle(ui->dockEdit->windowTitle().remove('&')); + ui->dockLog->setWindowTitle(ui->dockLog->windowTitle().remove('&')); + ui->dockPlot->setWindowTitle(ui->dockPlot->windowTitle().remove('&')); + ui->dockSchema->setWindowTitle(ui->dockSchema->windowTitle().remove('&')); + ui->dockRemote->setWindowTitle(ui->dockRemote->windowTitle().remove('&')); +} + +bool SqliteDBMainWindow::fileOpen(const QString& fileName, bool openFromProject, bool readOnly) +{ + bool retval = false; + + QString wFile = fileName; + // QFile::exist will produce error message if passed empty string. + // Test string length before usage w/ QFile to silence warning + if (wFile.isEmpty() || !QFile::exists(wFile)) + { + wFile = FileDialog::getOpenFileName( + OpenDatabaseFile, + this, + tr("Choose a database file") +#ifndef Q_OS_MAC // Filters on OS X are buggy + , FileDialog::getSqlDatabaseFileFilter() +#endif + ); + } + // catch situation where user has canceled file selection from dialog + if(!wFile.isEmpty() && QFile::exists(wFile) ) + { + // Close the database. If the user didn't want to close it, though, stop here + if (db.isOpen()) + if(!fileClose()) + return false; + + // Try opening it as a project file first + if(loadProject(wFile, readOnly)) + { + retval = true; + } else { + // No project file; so it should be a database file + if(db.open(wFile, readOnly)) + { + // Close all open but empty SQL tabs + for(int i=ui->tabSqlAreas->count()-1;i>=0;i--) + { + if(qobject_cast(ui->tabSqlAreas->widget(i))->getSql().trimmed().isEmpty()) + closeSqlTab(i, true); + } + + statusEncodingLabel->setText(db.getPragma("encoding")); + statusEncryptionLabel->setVisible(db.encrypted()); + statusReadOnlyLabel->setVisible(db.readOnly()); + setCurrentFile(wFile); + if(!openFromProject) { + addToRecentFilesMenu(wFile, readOnly); + // When a new DB file has been open while a project is open, set the project modified. + if(!currentProjectFilename.isEmpty()) + isProjectModified = true; + } + if(ui->tabSqlAreas->count() == 0) + openSqlTab(true); + if(ui->mainTab->currentWidget() == ui->browser) + populateTable(); + else if(ui->mainTab->currentWidget() == ui->pragmas) + loadPragmas(); + + // Update remote dock + //remoteDock->fileOpened(wFile); + + retval = true; + } else { + QMessageBox::warning(this, qApp->applicationName(), tr("Could not open database file.\nReason: %1").arg(db.lastError())); + return false; + } + } + } + + return retval; +} + +void SqliteDBMainWindow::fileNew() +{ + QString fileName = FileDialog::getSaveFileName( + CreateDatabaseFile, + this, + tr("Choose a filename to save under"), + FileDialog::getSqlDatabaseFileFilter()); + if(!fileName.isEmpty()) + { + if(QFile::exists(fileName)) + QFile::remove(fileName); + db.create(fileName); + setCurrentFile(fileName); + addToRecentFilesMenu(fileName); + statusEncodingLabel->setText(db.getPragma("encoding")); + statusEncryptionLabel->setVisible(false); + statusReadOnlyLabel->setVisible(false); + populateTable(); + if(ui->tabSqlAreas->count() == 0) + openSqlTab(true); + createTable(); + } +} + +void SqliteDBMainWindow::fileNewInMemoryDatabase() +{ + db.create(":memory:"); + setCurrentFile(tr("In-Memory database")); + statusEncodingLabel->setText(db.getPragma("encoding")); + statusEncryptionLabel->setVisible(false); + statusReadOnlyLabel->setVisible(false); + ////remoteDock->fileOpened(":memory:"); + populateTable(); + if(ui->tabSqlAreas->count() == 0) + openSqlTab(true); + createTable(); +} + +void SqliteDBMainWindow::populateStructure(const sqlb::ObjectIdentifier& old_table) +{ + // Refresh the structure tab + ui->dbTreeWidget->setRootIndex(dbStructureModel->index(1, 0)); // Show the 'All' part of the db structure + ui->dbTreeWidget->expandToDepth(0); + ui->treeSchemaDock->setRootIndex(dbStructureModel->index(1, 0)); // Show the 'All' part of the db structure + ui->treeSchemaDock->expandToDepth(0); + + // Refresh the browse data tab + ui->tableBrowser->setStructure(dbStructureModel, old_table); + + // Cancel here if no database is opened + if(!db.isOpen()) + return; + + // Update table and column names for syntax highlighting + SqlUiLexer::QualifiedTablesMap qualifiedTablesMap; + for(const auto& it : db.schemata) + { + SqlUiLexer::TablesAndColumnsMap tablesToColumnsMap; + + for(const auto& jt : it.second) + { + if(jt.second->type() == sqlb::Object::Types::Table || jt.second->type() == sqlb::Object::Types::View) + { + QString objectname = QString::fromStdString(jt.second->name()); + + sqlb::FieldInfoList fi = jt.second->fieldInformation(); + for(const sqlb::FieldInfo& f : fi) + tablesToColumnsMap[objectname].push_back(QString::fromStdString(f.name)); + } + } + + qualifiedTablesMap[QString::fromStdString(it.first)] = tablesToColumnsMap; + } + SqlTextEdit::sqlLexer->setTableNames(qualifiedTablesMap); + ui->editLogApplication->reloadKeywords(); + ui->editLogUser->reloadKeywords(); + for(int i=0;itabSqlAreas->count();i++) + qobject_cast(ui->tabSqlAreas->widget(i))->getEditor()->reloadKeywords(); + + // Resize SQL column to fit contents + ui->dbTreeWidget->resizeColumnToContents(DbStructureModel::ColumnSQL); + ui->treeSchemaDock->resizeColumnToContents(DbStructureModel::ColumnSQL); + // Resize also the Name column in the Dock since it has usually + // short content and there is little space there. + ui->treeSchemaDock->resizeColumnToContents(DbStructureModel::ColumnName); + + +} + +void SqliteDBMainWindow::populateTable() +{ + // Early exit if the Browse Data tab isn't visible as there is no need to update it in this case + if(ui->mainTab->currentWidget() != ui->browser) + return; + + QApplication::setOverrideCursor(Qt::WaitCursor); + ui->tableBrowser->updateTable(); + QApplication::restoreOverrideCursor(); +} + +bool SqliteDBMainWindow::fileClose() +{ + // Stop any running SQL statements before closing the database + if(execute_sql_worker && execute_sql_worker->isRunning()) + { + if(QMessageBox::warning(this, qApp->applicationName(), + tr("You are still executing SQL statements. Closing the database now will stop their execution, possibly " + "leaving the database in an inconsistent state. Are you sure you want to close the database?"), + QMessageBox::Yes, QMessageBox::Cancel | QMessageBox::Default | QMessageBox::Escape) == QMessageBox::Cancel) + return false; + + execute_sql_worker->stop(); + execute_sql_worker->wait(); + } + + // Close the database but stop the closing process here if the user pressed the cancel button in there + if(!db.close()) + return false; + + setCurrentFile(QString()); + loadPragmas(); + statusEncryptionLabel->setVisible(false); + statusReadOnlyLabel->setVisible(false); + + // Reset the table browser of the Browse Data tab + ui->tableBrowser->reset(); + + // Clear edit dock + editDock->setCurrentIndex(QModelIndex()); + + // Clear the SQL Log + ui->editLogApplication->clear(); + ui->editLogUser->clear(); + ui->editLogErrorLog->clear(); + + // Remove completion and highlighting for identifiers + SqlTextEdit::sqlLexer->setTableNames(SqlUiLexer::QualifiedTablesMap()); + for(int i=0; i < ui->tabSqlAreas->count(); i++) + qobject_cast(ui->tabSqlAreas->widget(i))->getEditor()->reloadKeywords(); + + // Clear remote dock + //remoteDock->fileOpened(QString()); + + return true; +} + +void SqliteDBMainWindow::closeEvent( QCloseEvent* event ) +{ + if(closeFiles()) + { + Settings::setValue("SqliteDBMainWindow", "geometry", saveGeometry()); + Settings::setValue("SqliteDBMainWindow", "windowState", saveState()); + Settings::setValue("SqliteDBMainWindow", "openTabs", saveOpenTabs()); + + Settings::setValue("SQLLogDock", "Log", ui->comboLogSubmittedBy->currentText()); + Settings::setValue("SchemaDock", "dropQualifiedNames", ui->actionDropQualifiedCheck->isChecked()); + Settings::setValue("SchemaDock", "dropEnquotedNames", ui->actionEnquoteNamesCheck->isChecked()); + + SqlExecutionArea::saveState(); + + QMainWindow::closeEvent(event); + } else { + event->ignore(); + } +} + +bool SqliteDBMainWindow::closeFiles() +{ + bool ignoreUnattachedBuffers = false; + // Ask for saving all modified open SQL files in their files and all the unattached tabs in a project file. + for(int i=0; itabSqlAreas->count(); i++) + // Ask for saving and comply with cancel answer. + if(!askSaveSqlTab(i, ignoreUnattachedBuffers)) + return false; + return closeProject(); +} + +bool SqliteDBMainWindow::closeProject() +{ + if(!currentProjectFilename.isEmpty() && isProjectModified) { + QMessageBox::StandardButton reply = QMessageBox::question + (nullptr, + QApplication::applicationName(), + tr("Do you want to save the changes made to the project file '%1'?"). + arg(QFileInfo(currentProjectFilename).fileName()), + QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel); + switch(reply) { + case QMessageBox::Save: + saveProject(); + break; + case QMessageBox::Cancel: + return false; + default: + break; + } + } + currentProjectFilename.clear(); + return db.close(); +} + +void SqliteDBMainWindow::attachPlot(ExtendedTableWidget* tableWidget, SqliteTableModel* model, BrowseDataTableSettings* settings, bool keepOrResetSelection) +{ + plotDock->updatePlot(model, settings, true, keepOrResetSelection); + // Disconnect previous connection + disconnect(plotDock, SIGNAL(pointsSelected(int,int)), nullptr, nullptr); + if(tableWidget) { + // Connect plot selection to the current table results widget. + connect(plotDock, SIGNAL(pointsSelected(int,int)), tableWidget, SLOT(selectTableLines(int, int))); + connect(tableWidget, &ExtendedTableWidget::destroyed, plotDock, &PlotDock::resetPlot); + // Disconnect requestUrlOrFileOpen in order to make sure that there is only one connection. Otherwise we can open it several times. + disconnect(tableWidget, &ExtendedTableWidget::requestUrlOrFileOpen, this, &SqliteDBMainWindow::openUrlOrFile); + connect(tableWidget, &ExtendedTableWidget::requestUrlOrFileOpen, this, &SqliteDBMainWindow::openUrlOrFile); + } +} + +void SqliteDBMainWindow::refresh() +{ + // What the Refresh function does depends on the currently active tab. This way the keyboard shortcuts (F5 and Ctrl+R) + // always perform some meaningful task; they just happen to be context dependent in the function they trigger. + QWidget* currentTab = ui->mainTab->currentWidget(); + if (currentTab == ui->structure) { + // Refresh the schema + db.updateSchema(); + } else if (currentTab == ui->browser) { + // Refresh the schema and reload the current table + populateTable(); + } else if (currentTab == ui->pragmas) { + // Reload pragma values + loadPragmas(); + } else if (currentTab == ui->query) { + // (Re-)Run the current SQL query + executeQuery(); + } +} + +void SqliteDBMainWindow::createTable() +{ + EditTableDialog dialog(db, sqlb::ObjectIdentifier(), true, this); + if(dialog.exec()) + { + populateTable(); + } +} + +void SqliteDBMainWindow::createIndex() +{ + EditIndexDialog dialog(db, sqlb::ObjectIdentifier(), true, this); + if(dialog.exec()) + populateTable(); +} + +void SqliteDBMainWindow::compact() +{ + VacuumDialog dialog(&db, this); + dialog.exec(); +} + +void SqliteDBMainWindow::deleteObject() +{ + // Get name and type of object to delete + sqlb::ObjectIdentifier name(ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), DbStructureModel::ColumnSchema), Qt::EditRole).toString().toStdString(), + ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), DbStructureModel::ColumnName), Qt::EditRole).toString().toStdString()); + QString type = ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), DbStructureModel::ColumnObjectType), Qt::EditRole).toString(); + + // Due to different grammar in languages (e.g. gender or declension), each message must be given separately to translation. + QString message; + if (type == "table") + message = tr("Are you sure you want to delete the table '%1'?\nAll data associated with the table will be lost."); + else if (type == "view") + message = tr("Are you sure you want to delete the view '%1'?"); + else if (type == "trigger") + message = tr("Are you sure you want to delete the trigger '%1'?"); + else if (type == "index") + message = tr("Are you sure you want to delete the index '%1'?"); + + // Ask user if he really wants to delete that table + if(QMessageBox::warning(this, QApplication::applicationName(), message.arg(QString::fromStdString(name.name())), + QMessageBox::Yes | QMessageBox::No, QMessageBox::No) == QMessageBox::Yes) + { + // Delete the table + QString statement = QString("DROP %1 %2;").arg(type.toUpper(), QString::fromStdString(name.toString())); + if(!db.executeSQL(statement.toStdString())) + { + if (type == "table") + message = tr("Error: could not delete the table."); + else if (type == "view") + message = tr("Error: could not delete the view."); + else if (type == "trigger") + message = tr("Error: could not delete the trigger."); + else if (type == "index") + message = tr("Error: could not delete the index."); + + QString error = tr("Message from database engine:\n%1").arg(db.lastError()); + QMessageBox::warning(this, QApplication::applicationName(), message + " " + error); + } else { + populateTable(); + changeTreeSelection(); + } + } +} + +void SqliteDBMainWindow::editObject() +{ + if(!ui->dbTreeWidget->selectionModel()->hasSelection()) + return; + + // Get name and type of the object to edit + sqlb::ObjectIdentifier name(ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), DbStructureModel::ColumnSchema), Qt::EditRole).toString().toStdString(), + ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), DbStructureModel::ColumnName), Qt::EditRole).toString().toStdString()); + QString type = ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), DbStructureModel::ColumnObjectType), Qt::EditRole).toString(); + + if(type == "table") + { + // For a safe and possibly complex table modification we must follow the steps documented in + // https://www.sqlite.org/lang_altertable.html + // Paragraph (first procedure): Making Other Kinds Of Table Schema Changes + + QString foreign_keys = db.getPragma("foreign_keys"); + if (foreign_keys == "1") { + if(db.getDirty() && QMessageBox::question(this, + QApplication::applicationName(), + tr("Editing the table requires to save all pending changes now.\nAre you sure you want to save the database?"), + QMessageBox::Save | QMessageBox::Default, + QMessageBox::Cancel | QMessageBox::Escape) != QMessageBox::Save) + return; + // Commit all changes so the foreign_keys can be effective. + fileSave(); + db.setPragma("foreign_keys", "0"); + } + + EditTableDialog dialog(db, name, false, this); + bool ok = dialog.exec(); + + // If foreign_keys were enabled, we must commit or rollback the transaction so the foreign_keys pragma can be restored. + if (foreign_keys == "1") { + if (!db.querySingleValueFromDb("PRAGMA " + sqlb::escapeIdentifier(name.schema()) + ".foreign_key_check").isNull()) { + // Raise warning for accepted modification. When rejected, warn user also since we know now that the table has problems, + // but it wasn't our fault. + if (ok) + QMessageBox::warning(this, QApplication::applicationName(), + tr("Error checking foreign keys after table modification. The changes will be reverted.")); + else + QMessageBox::warning(this, QApplication::applicationName(), + tr("This table did not pass a foreign-key check.
" + "You should run 'Tools | Foreign-Key Check' and fix the reported issues.")); + db.revertAll(); + } else { + // Commit all changes so the foreign_keys can be effective. + fileSave(); + } + db.setPragma("foreign_keys", foreign_keys); + } + if(ok) { + ui->tableBrowser->clearFilters(); + populateTable(); + } + } else if(type == "index") { + EditIndexDialog dialog(db, name, false, this); + if(dialog.exec()) + populateTable(); + } else if(type == "view") { + sqlb::ViewPtr view = db.getObjectByName(name); + runSqlNewTab(QString("DROP VIEW %1;\n%2").arg(QString::fromStdString(name.toString())).arg(QString::fromStdString(view->sql())), + tr("Edit View %1").arg(QString::fromStdString(name.toDisplayString())), + "https://www.sqlite.org/lang_createview.html", + /* autoRun */ false); + } else if(type == "trigger") { + sqlb::TriggerPtr trigger = db.getObjectByName(name); + runSqlNewTab(QString("DROP TRIGGER %1;\n%2").arg(QString::fromStdString(name.toString())).arg(QString::fromStdString(trigger->sql())), + tr("Edit Trigger %1").arg(QString::fromStdString(name.toDisplayString())), + "https://www.sqlite.org/lang_createtrigger.html", + /* autoRun */ false); + } +} + +void SqliteDBMainWindow::helpWhatsThis() +{ + QWhatsThis::enterWhatsThisMode (); +} + +void SqliteDBMainWindow::helpAbout() +{ + AboutDialog dialog(this); + dialog.exec(); +} + +void SqliteDBMainWindow::updateRecordText(const QPersistentModelIndex& idx, const QByteArray& text, bool isBlob) +{ + m_currentTabTableModel->setTypedData(idx, isBlob, text); +} + +void SqliteDBMainWindow::toggleEditDock(bool visible) +{ + if (!visible) { + // Update main window + ui->tableBrowser->setFocus(); + } else { + // fill edit dock with actual data, when the current index has changed while the dock was invisible. + // (note that this signal is also emitted when the widget is docked or undocked, so we have to avoid + // reloading data when the user is editing and (un)docks the editor). + if (editDock->currentIndex() != ui->tableBrowser->currentIndex()) + editDock->setCurrentIndex(ui->tableBrowser->currentIndex()); + } +} + +void SqliteDBMainWindow::doubleClickTable(const QModelIndex& index) +{ + // Cancel on invalid index + if (!index.isValid()) { + return; + } + + // * Don't allow editing of other objects than tables and editable views + bool isEditingAllowed = !db.readOnly() && m_currentTabTableModel == ui->tableBrowser->model() && + ui->tableBrowser->model()->isEditable(index); + + // Enable or disable the Apply, Null, & Import buttons in the Edit Cell + // dock depending on the value of the "isEditingAllowed" bool above + editDock->setReadOnly(!isEditingAllowed); + + editDock->setCurrentIndex(index); + + // Show the edit dock + ui->dockEdit->setVisible(true); + + // Set focus on the edit dock + editDock->setFocus(); +} + +void SqliteDBMainWindow::dataTableSelectionChanged(const QModelIndex& index) +{ + // Cancel on invalid index + if(!index.isValid()) { + editDock->setCurrentIndex(QModelIndex()); + return; + } + + bool editingAllowed = !db.readOnly() && (m_currentTabTableModel == ui->tableBrowser->model()) && + ui->tableBrowser->model()->isEditable(index); + + // Don't allow editing of other objects than tables and editable views + editDock->setReadOnly(!editingAllowed); + + // If the Edit Cell dock is visible, load the new value into it + if (editDock->isVisible()) { + editDock->setCurrentIndex(index); + } +} + +/* + * I'm still not happy how the results are represented to the user + * right now you only see the result of the last executed statement. + * A better experience would be tabs on the bottom with query results + * for all the executed statements. + */ +void SqliteDBMainWindow::executeQuery() +{ + // Make sure a database is opened. This is necessary because we allow opened SQL editor tabs even if no database is loaded. Hitting F5 or similar + // then might call this function. + if(!db.isOpen()) + return; + + // Check if other task is still running and stop it if necessary + if(execute_sql_worker && execute_sql_worker->isRunning()) + { + // Ask the user and do nothing if he/she doesn't want to interrupt the running query + if(QMessageBox::warning(this, qApp->applicationName(), + tr("You are already executing SQL statements. Do you want to stop them in order to execute the current " + "statements instead? Note that this might leave the database in an inconsistent state."), + QMessageBox::Yes, QMessageBox::Cancel | QMessageBox::Default | QMessageBox::Escape) == QMessageBox::Cancel) + return; + + // Stop the running query + execute_sql_worker->stop(); + execute_sql_worker->wait(); + } + + // Get current SQL tab and editor + SqlExecutionArea* sqlWidget = qobject_cast(ui->tabSqlAreas->currentWidget()); + SqlTextEdit* editor = sqlWidget->getEditor(); + auto* current_tab = ui->tabSqlAreas->currentWidget(); + const QString tabName = ui->tabSqlAreas->tabText(ui->tabSqlAreas->currentIndex()).remove('&'); + + // Remove any error indicators + editor->clearErrorIndicators(); + + // Determine execution mode: execute all, execute selection or execute current line + enum executionMode + { + All, + Selection, + Line + } mode; + if(sender() && sender()->objectName() == "actionSqlExecuteLine") + mode = Line; + else if(!sqlWidget->getSelectedSql().isEmpty()) + mode = Selection; + else + mode = All; + + // Get SQL code to execute. This depends on the execution mode. + int execute_from_position = 0; // Where we want to start the execution in the query string + int execute_to_position = 0; // Where we roughly want to end the execution in the query string + + switch(mode) + { + case Selection: + { + // Start and end positions are start and end positions from the selection + int execute_from_line, execute_from_index, execute_to_line, execute_to_index; + editor->getSelection(&execute_from_line, &execute_from_index, &execute_to_line, &execute_to_index); + execute_from_position = editor->positionFromLineIndex(execute_from_line, execute_from_index); + execute_to_position = editor->positionFromLineIndex(execute_to_line, execute_to_index); + + db.logSQL(tr("-- EXECUTING SELECTION IN '%1'\n--").arg(tabName), kLogMsg_User); + } break; + case Line: + { + // Start position is the first character of the current line, except for those cases where we're in the middle of a + // statement which started on one the previous line. In that case the start position is actually a bit earlier. For + // the end position we set the last character of the current line. If the statement(s) continue(s) into the next line, + // SQLite will execute it/them anyway and we'll stop afterwards. + int execute_from_line, dummy; + editor->getCursorPosition(&execute_from_line, &dummy); + execute_from_position = editor->positionFromLineIndex(execute_from_line, 0); + + // Need to set the end position here before adjusting the start line + int execute_to_line = execute_from_line; + int execute_to_index = editor->text(execute_to_line).remove('\n').remove('\r').length(); // This chops the line break at the end of the line + execute_to_position = editor->positionFromLineIndex(execute_to_line, execute_to_index); + + QByteArray firstPartEntireSQL = sqlWidget->getSql().toUtf8().left(execute_from_position); + if(firstPartEntireSQL.lastIndexOf(';') != -1) + execute_from_position -= firstPartEntireSQL.length() - firstPartEntireSQL.lastIndexOf(';') - 1; + + db.logSQL(tr("-- EXECUTING LINE IN '%1'\n--").arg(tabName), kLogMsg_User); + } break; + case All: + { + // Start position is the first byte, end position the last. + // Note that we use byte positions that might differ from character positions. + execute_to_position = editor->length(); + + db.logSQL(tr("-- EXECUTING ALL IN '%1'\n--").arg(tabName), kLogMsg_User); + } break; + } + + // Prepare a lambda function for logging the results of a query + auto query_logger = [this, sqlWidget, editor](bool ok, const QString& status_message, int from_position, int to_position) { + int execute_from_line, execute_from_index; + editor->lineIndexFromPosition(from_position, &execute_from_line, &execute_from_index); + + // Special case: if the start position is at the end of a line, then move to the beginning of next line. + // Otherwise for the typical case, the line reference is one less than expected. + // Note that execute_from_index uses character positions and not byte positions, so at() can be used. + QChar char_at_index = editor->text(execute_from_line).at(execute_from_index); + if (char_at_index == '\r' || char_at_index == '\n') { + execute_from_line++; + // The next lines could be empty, so skip all of them too. + while(editor->text(execute_from_line).trimmed().isEmpty()) + execute_from_line++; + execute_from_index = 0; + } + + // If there was an error highlight the erroneous SQL statement + if(!ok) + { + int end_of_current_statement_line, end_of_current_statement_index; + editor->lineIndexFromPosition(to_position, &end_of_current_statement_line, &end_of_current_statement_index); + editor->setErrorIndicator(execute_from_line, execute_from_index, end_of_current_statement_line, end_of_current_statement_index); + + editor->setCursorPosition(execute_from_line, execute_from_index); + } + + // Log the query and the result message. + // The query takes the last placeholder as it may itself contain the sequence '%' + number. + QString query = editor->text(from_position, to_position); + QString log_message = "-- " + tr("At line %1:").arg(execute_from_line+1) + "\n" + query.trimmed() + "\n-- " + tr("Result: %1").arg(status_message); + db.logSQL(log_message, kLogMsg_User); + + log_message = tr("Result: %2").arg(status_message) + "\n" + tr("At line %1:").arg(execute_from_line+1) + "\n" + query.trimmed(); + // Update the execution area + sqlWidget->finishExecution(log_message, ok); + }; + + // Get the statement(s) to execute. When in selection mode crop the query string at exactly the end of the selection to make sure SQLite has + // no chance to execute any further. + QString sql = sqlWidget->getSql(); + if(mode == Selection) + sql = sql.toUtf8().left(execute_to_position); // We have to convert to a QByteArray here because QScintilla gives us the position in bytes, not in characters. + + // Prepare the SQL worker to run the query. We set the context of each signal-slot connection to the current SQL execution area. + // This means that if the tab is closed all these signals are automatically disconnected so the lambdas won't be called for a not + // existing execution area. + execute_sql_worker.reset(new RunSql(db, sql, execute_from_position, execute_to_position, true)); + + connect(execute_sql_worker.get(), &RunSql::structureUpdated, sqlWidget, [this]() { + db.updateSchema(); + }, Qt::QueuedConnection); + connect(execute_sql_worker.get(), &RunSql::statementErrored, sqlWidget, [query_logger, this, sqlWidget](const QString& status_message, int from_position, int to_position) { + sqlWidget->getModel()->reset(); + ui->actionSqlResultsSave->setEnabled(false); + ui->actionSqlResultsSaveAsView->setEnabled(false); + attachPlot(sqlWidget->getTableResult(), sqlWidget->getModel()); + + query_logger(false, status_message, from_position, to_position); + }, Qt::QueuedConnection); + connect(execute_sql_worker.get(), &RunSql::statementExecuted, sqlWidget, [query_logger, this, sqlWidget](const QString& status_message, int from_position, int to_position) { + sqlWidget->getModel()->reset(); + ui->actionSqlResultsSave->setEnabled(false); + ui->actionSqlResultsSaveAsView->setEnabled(false); + attachPlot(sqlWidget->getTableResult(), sqlWidget->getModel()); + + query_logger(true, status_message, from_position, to_position); + execute_sql_worker->startNextStatement(); + }, Qt::QueuedConnection); + connect(execute_sql_worker.get(), &RunSql::statementReturnsRows, sqlWidget, [query_logger, this, sqlWidget](const QString& query, int from_position, int to_position, qint64 time_in_ms_so_far) { + auto time_start = std::chrono::high_resolution_clock::now(); + + ui->actionSqlResultsSave->setEnabled(true); + ui->actionSqlResultsSaveAsView->setEnabled(!db.readOnly()); + + auto * model = sqlWidget->getModel(); + model->setQuery(query); + + // Wait until the initial loading of data (= first chunk and row count) has been performed + auto conn = std::make_shared(); + *conn = connect(model, &SqliteTableModel::finishedFetch, [=](int fetched_row_begin, int fetched_row_end) { + // Avoid attaching the plot when the signal is notifying the row count, since the + // data wouldn't be available yet. + if(fetched_row_begin != fetched_row_end && fetched_row_begin != model->rowCount()) { + // Disconnect this connection right now. This avoids calling this slot multiple times + disconnect(*conn); + + attachPlot(sqlWidget->getTableResult(), sqlWidget->getModel()); + } else { + connect(sqlWidget->getTableResult()->selectionModel(), &QItemSelectionModel::currentChanged, this, &SqliteDBMainWindow::dataTableSelectionChanged); + connect(sqlWidget->getTableResult(), &QTableView::doubleClicked, this, &SqliteDBMainWindow::doubleClickTable); + + auto time_end = std::chrono::high_resolution_clock::now(); + auto time_in_ms = std::chrono::duration_cast(time_end-time_start); + query_logger(true, tr("%1 rows returned in %2ms").arg(model->rowCount()).arg(time_in_ms.count()+time_in_ms_so_far), from_position, to_position); + execute_sql_worker->startNextStatement(); + } + }); + }, Qt::QueuedConnection); + connect(execute_sql_worker.get(), &RunSql::confirmSaveBeforePragmaOrVacuum, sqlWidget, [this]() { + if(QMessageBox::question(nullptr, QApplication::applicationName(), + tr("Setting PRAGMA values or vacuuming will commit your current transaction.\nAre you sure?"), + QMessageBox::Yes | QMessageBox::Default, + QMessageBox::No | QMessageBox::Escape) == QMessageBox::No) + execute_sql_worker->stop(); + + }, Qt::BlockingQueuedConnection); + connect(execute_sql_worker.get(), &RunSql::finished, sqlWidget, [this, current_tab, sqlWidget]() { + // We work with a pointer to the current tab here instead of its index because the user might reorder the tabs in the meantime. + // We set different icons for general tabs, which are either new or loaded from the project file, and for tabs loaded from a file. + if(sqlWidget->fileName().isEmpty()) + ui->tabSqlAreas->setTabIcon(ui->tabSqlAreas->indexOf(current_tab), QIcon(":/icons/open_sql")); + else + ui->tabSqlAreas->setTabIcon(ui->tabSqlAreas->indexOf(current_tab), QIcon(":/icons/document_open")); + + // Set no-running-query state + ui->tabSqlAreas->tabBar()->setTabData(ui->tabSqlAreas->indexOf(current_tab), QVariant(false)); + + // We don't need to check for the current SQL tab here because two concurrently running queries are not allowed + ui->actionSqlExecuteLine->setEnabled(true); + ui->actionExecuteSql->setEnabled(true); + ui->actionSqlStop->setEnabled(false); + sqlWidget->getEditor()->setReadOnly(false); + + // Show Done message + if(sqlWidget->inErrorState()) + sqlWidget->getStatusEdit()->setPlainText(tr("Execution finished with errors.") + "\n" + sqlWidget->getStatusEdit()->toPlainText()); + else + sqlWidget->getStatusEdit()->setPlainText(tr("Execution finished without errors.") + "\n" + sqlWidget->getStatusEdit()->toPlainText()); + }); + + // Add an hourglass icon to the current tab to indicate that there's a running execution in there. + ui->tabSqlAreas->setTabIcon(ui->tabSqlAreas->currentIndex(), QIcon(":icons/hourglass")); + // We use the tab data to check whether a specific SQL tab is currently running a query or not. + ui->tabSqlAreas->tabBar()->setTabData(ui->tabSqlAreas->currentIndex(), QVariant(true)); + + // Deactivate the buttons to start a query and activate the button to stop the query + ui->actionSqlExecuteLine->setEnabled(false); + ui->actionExecuteSql->setEnabled(false); + ui->actionSqlStop->setEnabled(true); + + // Make the SQL editor widget read-only. We do this because the error indicators would be misplaced if the user changed the SQL text during execution + sqlWidget->getEditor()->setReadOnly(true); + + // Start the execution + execute_sql_worker->start(); +} + +void SqliteDBMainWindow::mainTabSelected(int /*tabindex*/) +{ + editDock->setReadOnly(true); + + if(ui->mainTab->currentWidget() == ui->browser) + { + m_currentTabTableModel = ui->tableBrowser->model(); + populateTable(); + } else if(ui->mainTab->currentWidget() == ui->pragmas) { + loadPragmas(); + } else if(ui->mainTab->currentWidget() == ui->query) { + SqlExecutionArea* sqlWidget = qobject_cast(ui->tabSqlAreas->currentWidget()); + + if (sqlWidget) { + m_currentTabTableModel = sqlWidget->getModel(); + + dataTableSelectionChanged(sqlWidget->getTableResult()->currentIndex()); + } + } +} + +void SqliteDBMainWindow::importTableFromCSV() +{ + QStringList file_filter; + file_filter << FILE_FILTER_CSV + << FILE_FILTER_TSV + << FILE_FILTER_DSV + << FILE_FILTER_TXT + << FILE_FILTER_DAT + << FILE_FILTER_ALL; + + QStringList wFiles = FileDialog::getOpenFileNames( + OpenCSVFile, + this, + tr("Choose text files"), + file_filter.join(";;")); + + std::vector validFiles; + for(const auto& file : wFiles) { + if (QFile::exists(file)) + validFiles.push_back(file); + } + + if (!validFiles.empty()) + { + ImportCsvDialog dialog(validFiles, &db, this); + if (dialog.exec()) + populateTable(); + } +} + +void SqliteDBMainWindow::exportTableToCSV() +{ + // Get the current table name if we are in the Browse Data tab + sqlb::ObjectIdentifier current_table; + if(ui->mainTab->currentWidget() == ui->structure) + { + QString type = ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), DbStructureModel::ColumnObjectType)).toString(); + if(type == "table" || type == "view") + { + QString schema = ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), DbStructureModel::ColumnSchema)).toString(); + QString name = ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), DbStructureModel::ColumnName)).toString(); + current_table = sqlb::ObjectIdentifier(schema.toStdString(), name.toStdString()); + } + } else if(ui->mainTab->currentWidget() == ui->browser) { + current_table = ui->tableBrowser->currentlyBrowsedTableName(); + } + + // Open dialog + ExportDataDialog dialog(db, ExportDataDialog::ExportFormatCsv, this, "", current_table); + dialog.exec(); +} + +void SqliteDBMainWindow::exportTableToJson() +{ + // Get the current table name if we are in the Browse Data tab + sqlb::ObjectIdentifier current_table; + if(ui->mainTab->currentWidget() == ui->structure) + { + QString type = ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), DbStructureModel::ColumnObjectType)).toString(); + if(type == "table" || type == "view") + { + QString schema = ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), DbStructureModel::ColumnSchema)).toString(); + QString name = ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), DbStructureModel::ColumnName)).toString(); + current_table = sqlb::ObjectIdentifier(schema.toStdString(), name.toStdString()); + } + } else if(ui->mainTab->currentWidget() == ui->browser) { + current_table = ui->tableBrowser->currentlyBrowsedTableName(); + } + + // Open dialog + ExportDataDialog dialog(db, ExportDataDialog::ExportFormatJson, this, "", current_table); + dialog.exec(); +} + +void SqliteDBMainWindow::dbState(bool dirty) +{ + ui->fileSaveAction->setEnabled(dirty); + ui->fileRevertAction->setEnabled(dirty); + ui->fileAttachAction->setEnabled(db.isOpen() && !dirty); +} + +void SqliteDBMainWindow::fileSave() +{ + if(db.isOpen()) + { + if(!db.releaseAllSavepoints()) + { + QMessageBox::warning(this, QApplication::applicationName(), tr("Error while saving the database file. This means that not all changes to the database were " + "saved. You need to resolve the following error first.\n\n%1").arg(db.lastError())); + } + } +} + +void SqliteDBMainWindow::fileRevert() +{ + if (db.isOpen()){ + QString msg = tr("Are you sure you want to undo all changes made to the database file '%1' since the last save?").arg(db.currentFile()); + if(QMessageBox::question(this, QApplication::applicationName(), msg, QMessageBox::Yes | QMessageBox::Default, QMessageBox::No | QMessageBox::Escape) == QMessageBox::Yes) + { + db.revertAll(); + populateTable(); + } + } +} + +void SqliteDBMainWindow::exportDatabaseToSQL() +{ + QString current_table; + if(ui->mainTab->currentWidget() == ui->browser) + current_table = QString::fromStdString(ui->tableBrowser->currentlyBrowsedTableName().name()); + + ExportSqlDialog dialog(&db, this, current_table); + dialog.exec(); +} + +void SqliteDBMainWindow::importDatabaseFromSQL() +{ + QStringList file_filter; + file_filter << FILE_FILTER_SQL + << FILE_FILTER_TXT + << FILE_FILTER_ALL; + + // Get file name to import + QString fileName = FileDialog::getOpenFileName( + OpenSQLFile, + this, + tr("Choose a file to import"), + file_filter.join(";;")); + + // Cancel when file doesn't exist + if(!QFile::exists(fileName)) + return; + + // If there is already a database file opened ask the user whether to import into + // this one or a new one. If no DB is opened just ask for a DB name directly + QString newDbFile; + if((db.isOpen() && QMessageBox::question(this, + QApplication::applicationName(), + tr("Do you want to create a new database file to hold the imported data?\n" + "If you answer no we will attempt to import the data in the SQL file to the current database."), + QMessageBox::Yes, QMessageBox::No) == QMessageBox::Yes) || !db.isOpen()) + { + newDbFile = FileDialog::getSaveFileName( + CreateDatabaseFile, + this, + tr("Choose a filename to save under"), + FileDialog::getSqlDatabaseFileFilter()); + if(QFile::exists(newDbFile)) + { + QMessageBox::information(this, QApplication::applicationName(), tr("File %1 already exists. Please choose a different name.").arg(newDbFile)); + return; + } else if(newDbFile.size() == 0) { + return; + } + + // Create the new file and open it in the browser + db.create(newDbFile); + db.close(); + fileOpen(newDbFile); + } + + // Defer foreign keys. Just deferring them instead of disabling them should work fine because in the import we only expect CREATE and INSERT + // statements which unlike in the Edit Table dialog shouldn't trigger any problems. + QString foreignKeysOldSettings = db.getPragma("defer_foreign_keys"); + db.setPragma("defer_foreign_keys", "1"); + + // Open, read, execute and close file + QApplication::setOverrideCursor(Qt::WaitCursor); + QFile f(fileName); + f.open(QIODevice::ReadOnly); + QByteArray data = f.readAll(); + removeBom(data); + bool ok = db.executeMultiSQL(data, newDbFile.size() == 0); + // Restore cursor before asking the user to accept the message + QApplication::restoreOverrideCursor(); + if(!ok) + QMessageBox::warning(this, QApplication::applicationName(), tr("Error importing data: %1").arg(db.lastError())); + else if(db.getPragma("foreign_keys") == "1" && !db.querySingleValueFromDb("PRAGMA foreign_key_check").isNull()) + QMessageBox::warning(this, QApplication::applicationName(), tr("Import completed. Some foreign key constraints are violated. Please fix them before saving.")); + else + QMessageBox::information(this, QApplication::applicationName(), tr("Import completed.")); + f.close(); + + // Restore the former foreign key settings + db.setPragma("defer_foreign_keys", foreignKeysOldSettings); + + // Refresh views + db.updateSchema(); + populateTable(); +} + +void SqliteDBMainWindow::openPreferences() +{ + PreferencesDialog dialog(this); + if(dialog.exec()) + reloadSettings(); +} + +//** Db Tree Context Menu +void SqliteDBMainWindow::createTreeContextMenu(const QPoint &qPoint) +{ + if(!ui->dbTreeWidget->selectionModel()->hasSelection()) + return; + + QString type = ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), 1)).toString(); + + if(type == "table" || type == "view" || type == "trigger" || type == "index") + popupTableMenu->exec(ui->dbTreeWidget->mapToGlobal(qPoint)); +} + +//** DB Schema Dock Context Menu +void SqliteDBMainWindow::createSchemaDockContextMenu(const QPoint &qPoint) +{ + bool enable_browse_table = false; + if(ui->treeSchemaDock->selectionModel()->hasSelection()) + { + QString type = ui->treeSchemaDock->model()->data(ui->treeSchemaDock->currentIndex().sibling(ui->treeSchemaDock->currentIndex().row(), DbStructureModel::ColumnObjectType), Qt::EditRole).toString(); + if(type == "table" || type == "view") + enable_browse_table = true; + } + ui->actionPopupSchemaDockBrowseTable->setEnabled(enable_browse_table); + + popupSchemaDockMenu->exec(ui->treeSchemaDock->mapToGlobal(qPoint)); +} + +void SqliteDBMainWindow::changeTreeSelection() +{ + // Just assume first that something's selected that can not be edited at all + ui->editDeleteObjectAction->setEnabled(false); + ui->editModifyObjectAction->setEnabled(false); + ui->actionEditBrowseTable->setEnabled(false); + + if(!ui->dbTreeWidget->currentIndex().isValid()) + return; + + // Change the text and tooltips of the actions + QString type = ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), 1)).toString(); + + if (type.isEmpty()) + { + ui->editDeleteObjectAction->setIcon(QIcon(":icons/table_delete")); + ui->editModifyObjectAction->setIcon(QIcon(":icons/table_modify")); + } else { + ui->editDeleteObjectAction->setIcon(QIcon(QString(":icons/%1_delete").arg(type))); + ui->editModifyObjectAction->setIcon(QIcon(QString(":icons/%1_modify").arg(type))); + } + + if (type == "view") { + ui->editDeleteObjectAction->setText(tr("Delete View")); + ui->editModifyObjectAction->setText(tr("Modify View")); + } else if(type == "trigger") { + ui->editDeleteObjectAction->setText(tr("Delete Trigger")); + ui->editModifyObjectAction->setText(tr("Modify Trigger")); + } else if(type == "index") { + ui->editDeleteObjectAction->setText(tr("Delete Index")); + ui->editModifyObjectAction->setText(tr("Modify Index")); + } else if(type == "table") { + ui->editDeleteObjectAction->setText(tr("Delete Table")); + ui->editModifyObjectAction->setText(tr("Modify Table")); + } else { + // Nothing to do for other types. Set the buttons not visible and return. + ui->editDeleteObjectAction->setVisible(false); + ui->editModifyObjectAction->setVisible(false); + return; + } + + ui->editDeleteObjectAction->setVisible(true); + ui->editModifyObjectAction->setVisible(true); + + // Activate actions + ui->editDeleteObjectAction->setEnabled(!db.readOnly()); + ui->editModifyObjectAction->setEnabled(!db.readOnly()); + + if(type == "table" || type == "view") + { + ui->actionEditBrowseTable->setEnabled(true); + ui->actionExportCsvPopup->setEnabled(true); + } +} + +void SqliteDBMainWindow::openRecentFile() +{ + QAction *action = qobject_cast(sender()); + if (action) + { + QString file = action->data().toString(); + bool read_only = false; + if(file.startsWith("[ro]")) // Check if file is in read-only + { + file = file.mid(4); + read_only = true; + } + + if(fileOpen(file, false, read_only)) + if(read_only) + ui->statusbar->showMessage(tr("Opened '%1' in read-only mode from recent file list").arg(file)); + else + ui->statusbar->showMessage(tr("Opened '%1' from recent file list").arg(file)); + } +} + +void SqliteDBMainWindow::updateRecentFileActions() +{ + // Get recent files list from settings + QStringList files = Settings::getValue("General", "recentFileList").toStringList(); + + // Check if files still exist and remove any non-existent file + for(int i=0;isetText(text); + recentFileActs[i]->setData(files[i]); + recentFileActs[i]->setVisible(true); + + // Add shortcut for opening the file using the keyboard. However, if the application is configured to store + // more than nine recently opened files don't set shortcuts for the later ones which wouldn't be single digit anymore. + if(i < 9) + recentFileActs[i]->setShortcut(QKeySequence(static_cast(Qt::CTRL + (Qt::Key_1+static_cast(i))))); + } + for (int j = numRecentFiles; j < MaxRecentFiles; ++j) + recentFileActs[j]->setVisible(false); + + recentSeparatorAct->setVisible(numRecentFiles > 0); +} + +void SqliteDBMainWindow::setCurrentFile(const QString &fileName) +{ + setWindowFilePath(fileName); + if(currentProjectFilename.isEmpty() && fileName.isEmpty()) + setWindowTitle(QApplication::applicationName()); + else if(currentProjectFilename.isEmpty()) + setWindowTitle(QApplication::applicationName() + " - " + QDir::toNativeSeparators(fileName)); + else { + QFileInfo projectFileInfo(currentProjectFilename); + QFileInfo dbFileInfo(fileName); + QString dbFileName; + if(dbFileInfo.path() == projectFileInfo.path()) + dbFileName = dbFileInfo.fileName(); + else + dbFileName = QDir::toNativeSeparators(fileName); + setWindowTitle(QApplication::applicationName() + " - " + QDir::toNativeSeparators(currentProjectFilename) + " [" + dbFileName + "]"); + } + activateFields(!fileName.isEmpty()); + if(!fileName.isEmpty()) + dbState(db.getDirty()); +} + +void SqliteDBMainWindow::addToRecentFilesMenu(const QString& filename, bool read_only) +{ + QFileInfo info(filename); + QString path = info.absoluteFilePath(); + if(read_only) + path = "[ro]" + path; + + QStringList files = Settings::getValue("General", "recentFileList").toStringList(); + + files.removeAll(path); + files.prepend(path); + while (files.size() > MaxRecentFiles) + files.removeLast(); + + Settings::setValue("General", "recentFileList", files); + + for(QWidget* widget : QApplication::topLevelWidgets()) { + SqliteDBMainWindow *mainWin = qobject_cast(widget); + if (mainWin) + mainWin->updateRecentFileActions(); + } +} + +void SqliteDBMainWindow::dragEnterEvent(QDragEnterEvent *event) +{ + if( event->mimeData()->hasFormat("text/uri-list") ) + event->acceptProposedAction(); +} + +void SqliteDBMainWindow::dropEvent(QDropEvent *event) +{ + QList urls = event->mimeData()->urls(); + + if( urls.isEmpty() ) + return; + + QString fileName = urls.first().toLocalFile(); + + if(!fileName.isEmpty()) { + + // If there is no open database, the only possible option is to open the file. + if (!db.isOpen()) { + fileOpen(fileName); + return; + } + bool ok; + const QString open = tr("Open Database or Project"); + const QString attach = tr("Attach Database..."); + const QString import = tr("Import CSV file(s)..."); + QString action = QInputDialog::getItem(this, + qApp->applicationName(), + tr("Select the action to apply to the dropped file(s).
" + "Note: only 'Import' will process more than one file.", "", urls.count()), + {open, attach, import}, + 0, + false, + &ok); + if(ok) { + if (action == open) { + fileOpen(fileName); + } else if (action == attach) { + fileAttach(fileName); + } else if (action == import) { + + std::vector validFiles; + for(const auto& url : urls) { + if (QFile::exists(url.toLocalFile())) + validFiles.push_back(url.toLocalFile()); + } + ImportCsvDialog dialog(validFiles, &db, this); + if (dialog.exec()) + populateTable(); + } + } + } +} + +void SqliteDBMainWindow::activateFields(bool enable) +{ + bool write = !db.readOnly(); + bool tempDb = db.currentFile() == ":memory:"; + + ui->tableBrowser->setEnabled(enable); + ui->fileCloseAction->setEnabled(enable); + ui->fileAttachAction->setEnabled(enable); + ui->fileCompactAction->setEnabled(enable && write); + ui->fileExportJsonAction->setEnabled(enable); + ui->fileExportCSVAction->setEnabled(enable); + ui->fileExportSQLAction->setEnabled(enable); + ui->fileImportCSVAction->setEnabled(enable && write); + ui->editCreateTableAction->setEnabled(enable && write); + ui->editCreateIndexAction->setEnabled(enable && write); + ui->actionDbPrint->setEnabled(enable); + ui->scrollAreaWidgetContents->setEnabled(enable); + ui->buttonBoxPragmas->setEnabled(enable && write); + ui->actionExecuteSql->setEnabled(enable); + ui->actionLoadExtension->setEnabled(enable); + ui->actionSqlExecuteLine->setEnabled(enable); + ui->actionSaveProject->setEnabled(enable && !tempDb); + ui->actionSaveProjectAs->setEnabled(enable && !tempDb); + ui->actionSaveAll->setEnabled(enable && !tempDb); + ui->actionEncryption->setEnabled(enable && write && !tempDb); + ui->actionIntegrityCheck->setEnabled(enable); + ui->actionQuickCheck->setEnabled(enable); + ui->actionForeignKeyCheck->setEnabled(enable); + ui->actionOptimize->setEnabled(enable); + ui->dockEdit->setEnabled(enable); + ui->dockPlot->setEnabled(enable); + + if(!enable) + ui->actionSqlResultsSave->setEnabled(false); + + //remoteDock->enableButtons(); +} + +void SqliteDBMainWindow::resizeEvent(QResizeEvent*) +{ + ui->tableBrowser->updateRecordsetLabel(); +} + +void SqliteDBMainWindow::loadPragmas() +{ + pragmaValues.autovacuum = db.getPragma("auto_vacuum").toInt(); + pragmaValues.automatic_index = db.getPragma("automatic_index").toInt(); + pragmaValues.checkpoint_fullsync = db.getPragma("checkpoint_fullfsync").toInt(); + pragmaValues.foreign_keys = db.getPragma("foreign_keys").toInt(); + pragmaValues.fullfsync = db.getPragma("fullfsync").toInt(); + pragmaValues.ignore_check_constraints = db.getPragma("ignore_check_constraints").toInt(); + pragmaValues.journal_mode = db.getPragma("journal_mode").toUpper(); + pragmaValues.journal_size_limit = db.getPragma("journal_size_limit").toInt(); + pragmaValues.locking_mode = db.getPragma("locking_mode").toUpper(); + pragmaValues.max_page_count = db.getPragma("max_page_count").toInt(); + pragmaValues.page_size = db.getPragma("page_size").toInt(); + pragmaValues.recursive_triggers = db.getPragma("recursive_triggers").toInt(); + pragmaValues.secure_delete = db.getPragma("secure_delete").toInt(); + pragmaValues.synchronous = db.getPragma("synchronous").toInt(); + pragmaValues.temp_store = db.getPragma("temp_store").toInt(); + pragmaValues.user_version = db.getPragma("user_version").toInt(); + pragmaValues.wal_autocheckpoint = db.getPragma("wal_autocheckpoint").toInt(); + pragmaValues.case_sensitive_like = db.getPragma("case_sensitive_like").toInt(); + + updatePragmaUi(); +} + +void SqliteDBMainWindow::updatePragmaUi() +{ + ui->comboboxPragmaAutoVacuum->setCurrentIndex(pragmaValues.autovacuum); + ui->checkboxPragmaAutomaticIndex->setChecked(pragmaValues.automatic_index); + ui->checkboxPragmaCheckpointFullFsync->setChecked(pragmaValues.checkpoint_fullsync); + ui->checkboxPragmaForeignKeys->setChecked(pragmaValues.foreign_keys); + ui->checkboxPragmaFullFsync->setChecked(pragmaValues.fullfsync); + ui->checkboxPragmaIgnoreCheckConstraints->setChecked(pragmaValues.ignore_check_constraints); + ui->comboboxPragmaJournalMode->setCurrentIndex(ui->comboboxPragmaJournalMode->findText(pragmaValues.journal_mode, Qt::MatchFixedString)); + ui->spinPragmaJournalSizeLimit->setValue(pragmaValues.journal_size_limit); + ui->comboboxPragmaLockingMode->setCurrentIndex(ui->comboboxPragmaLockingMode->findText(pragmaValues.locking_mode, Qt::MatchFixedString)); + ui->spinPragmaMaxPageCount->setValue(pragmaValues.max_page_count); + ui->comboPragmaPageSize->setCurrentIndex(ui->comboPragmaPageSize->findText(QString::number(pragmaValues.page_size), Qt::MatchFixedString)); + ui->checkboxPragmaRecursiveTriggers->setChecked(pragmaValues.recursive_triggers); + ui->checkboxPragmaSecureDelete->setChecked(pragmaValues.secure_delete); + ui->comboboxPragmaSynchronous->setCurrentIndex(pragmaValues.synchronous); + ui->comboboxPragmaTempStore->setCurrentIndex(pragmaValues.temp_store); + ui->spinPragmaUserVersion->setValue(pragmaValues.user_version); + ui->spinPragmaWalAutoCheckpoint->setValue(pragmaValues.wal_autocheckpoint); + ui->checkboxPragmaCaseSensitiveLike->setChecked(pragmaValues.case_sensitive_like); +} + +void SqliteDBMainWindow::savePragmas() +{ + if( db.getDirty() ) + { + QString msg = tr("Setting PRAGMA values will commit your current transaction.\nAre you sure?"); + if(QMessageBox::question(this, QApplication::applicationName(), msg, QMessageBox::Yes | QMessageBox::Default, QMessageBox::No | QMessageBox::Escape) == QMessageBox::No) + { + return; // abort + } + } + db.setPragma("auto_vacuum", ui->comboboxPragmaAutoVacuum->currentIndex(), pragmaValues.autovacuum); + db.setPragma("automatic_index", ui->checkboxPragmaAutomaticIndex->isChecked(), pragmaValues.automatic_index); + db.setPragma("checkpoint_fullfsync", ui->checkboxPragmaCheckpointFullFsync->isChecked(), pragmaValues.checkpoint_fullsync); + db.setPragma("foreign_keys", ui->checkboxPragmaForeignKeys->isChecked(), pragmaValues.foreign_keys); + db.setPragma("fullfsync", ui->checkboxPragmaFullFsync->isChecked(), pragmaValues.fullfsync); + db.setPragma("ignore_check_constraints", ui->checkboxPragmaIgnoreCheckConstraints->isChecked(), pragmaValues.ignore_check_constraints); + db.setPragma("journal_mode", ui->comboboxPragmaJournalMode->currentText().toUpper(), pragmaValues.journal_mode); + db.setPragma("journal_size_limit", ui->spinPragmaJournalSizeLimit->value(), pragmaValues.journal_size_limit); + db.setPragma("locking_mode", ui->comboboxPragmaLockingMode->currentText().toUpper(), pragmaValues.locking_mode); + db.setPragma("max_page_count", ui->spinPragmaMaxPageCount->value(), pragmaValues.max_page_count); + db.setPragma("page_size", ui->comboPragmaPageSize->currentText().toInt(), pragmaValues.page_size); + db.setPragma("recursive_triggers", ui->checkboxPragmaRecursiveTriggers->isChecked(), pragmaValues.recursive_triggers); + db.setPragma("secure_delete", ui->checkboxPragmaSecureDelete->isChecked(), pragmaValues.secure_delete); + db.setPragma("synchronous", ui->comboboxPragmaSynchronous->currentIndex(), pragmaValues.synchronous); + db.setPragma("temp_store", ui->comboboxPragmaTempStore->currentIndex(), pragmaValues.temp_store); + db.setPragma("user_version", ui->spinPragmaUserVersion->value(), pragmaValues.user_version); + db.setPragma("wal_autocheckpoint", ui->spinPragmaWalAutoCheckpoint->value(), pragmaValues.wal_autocheckpoint); + db.setPragma("case_sensitive_like", ui->checkboxPragmaCaseSensitiveLike->isChecked(), pragmaValues.case_sensitive_like); + isProjectModified = true; + + updatePragmaUi(); +} + +void SqliteDBMainWindow::logSql(const QString& sql, int msgtype) +{ + if(msgtype == kLogMsg_User) + { + ui->editLogUser->append(sql + "\n"); + ui->editLogUser->verticalScrollBar()->setValue(ui->editLogUser->verticalScrollBar()->maximum()); + } else if(msgtype == kLogMsg_App) { + ui->editLogApplication->append(sql + "\n"); + ui->editLogApplication->verticalScrollBar()->setValue(ui->editLogApplication->verticalScrollBar()->maximum()); + } else if(msgtype == kLogMsg_ErrorLog) { + ui->editLogErrorLog->append(sql + "\n"); + ui->editLogErrorLog->verticalScrollBar()->setValue(ui->editLogErrorLog->verticalScrollBar()->maximum()); + } +} + +// Ask user to save the buffer in the specified tab index. +// ignoreUnattachedBuffers is used to store answer about buffers not linked to files, so user is only asked once about them. +// Return true unless user wants to cancel the invoking action. +bool SqliteDBMainWindow::askSaveSqlTab(int index, bool& ignoreUnattachedBuffers) +{ + SqlExecutionArea* sqlExecArea = qobject_cast(ui->tabSqlAreas->widget(index)); + + if(sqlExecArea->getEditor()->isModified()) { + if(sqlExecArea->fileName().isEmpty() && !ignoreUnattachedBuffers) { + // Once the project is saved, remaining SQL tabs will not be modified, so this is only expected to be asked once. + QString message = currentProjectFilename.isEmpty() ? + tr("Do you want to save the changes made to SQL tabs in a new project file?") : + tr("Do you want to save the changes made to SQL tabs in the project file '%1'?"). + arg(QFileInfo(currentProjectFilename).fileName()); + QMessageBox::StandardButton reply = QMessageBox::question(nullptr, + QApplication::applicationName(), + message, + QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel); + switch(reply) { + case QMessageBox::Save: + saveProject(); + break; + case QMessageBox::Cancel: + return false; + default: + ignoreUnattachedBuffers = true; + break; + } + } else if(!sqlExecArea->fileName().isEmpty()) { + QMessageBox::StandardButton reply = + QMessageBox::question(nullptr, + QApplication::applicationName(), + tr("Do you want to save the changes made to the SQL file %1?"). + arg(QFileInfo(sqlExecArea->fileName()).fileName()), + QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel); + switch(reply) { + case QMessageBox::Save: + saveSqlFile(index); + break; + case QMessageBox::Cancel: + return false; + default: + break; + } + } + } + return true; +} + +void SqliteDBMainWindow::closeSqlTab(int index, bool force) +{ + // Check if we're still executing statements from this tab and stop them before proceeding + if(ui->tabSqlAreas->tabBar()->tabData(index).toBool()) + { + if(QMessageBox::warning(this, qApp->applicationName(), tr("The statements in this tab are still executing. Closing the tab will stop the " + "execution. This might leave the database in an inconsistent state. Are you sure " + "you want to close the tab?"), + QMessageBox::Yes, + QMessageBox::Cancel | QMessageBox::Default | QMessageBox::Escape) == QMessageBox::Cancel) + return; + + execute_sql_worker->stop(); + execute_sql_worker->wait(); + } + // Ask for saving and comply with cancel answer. + bool ignoreUnattachedBuffers = false; + if (!askSaveSqlTab(index, ignoreUnattachedBuffers)) + return; + // Remove the tab and delete the widget + QWidget* w = ui->tabSqlAreas->widget(index); + ui->tabSqlAreas->removeTab(index); + delete w; + + // Don't let an empty tab widget + if(ui->tabSqlAreas->count() == 0 && !force) + openSqlTab(true); + + // Set focus to the currently selected editor tab. + SqlExecutionArea* sqlarea = qobject_cast(ui->tabSqlAreas->currentWidget()); + if(sqlarea) + sqlarea->getEditor()->setFocus(); +} + +int SqliteDBMainWindow::openSqlTab(bool resetCounter) +{ + static int tabNumber = 0; + + if(resetCounter) + tabNumber = 0; + + // Create new tab, add it to the tab widget and select it + SqlExecutionArea* w = new SqlExecutionArea(db, this); + int index = ui->tabSqlAreas->addTab(w, QString("SQL %1").arg(++tabNumber)); + ui->tabSqlAreas->setCurrentIndex(index); + w->setFindFrameVisibility(ui->actionSqlFind->isChecked()); + // Disable the find dialog in the SQL tabs, since the shortcut + // would interfere with the search bar and it'd be anyway redundant. + w->getEditor()->setEnabledFindDialog(false); + w->getEditor()->setFocus(); + connect(w, &SqlExecutionArea::findFrameVisibilityChanged, ui->actionSqlFind, &QAction::setChecked); + + // Connect now the find shortcut to the editor with widget context, so it isn't ambiguous with other Scintilla Widgets. + QShortcut* shortcutFind = new QShortcut(ui->actionSqlFind->shortcut(), w->getEditor(), nullptr, nullptr, Qt::WidgetShortcut); + connect(shortcutFind, &QShortcut::activated, ui->actionSqlFind, &QAction::toggle); + ui->tabSqlAreas->setTabIcon(index, QIcon(":icons/open_sql")); + // The new tab is not currently running a query + ui->tabSqlAreas->tabBar()->setTabData(index, false); + + return index; +} + +void SqliteDBMainWindow::changeSqlTab(int index) +{ + // Instead of figuring out if there are some execution results in the new tab and which statement was used to generate them, + // we just disable the export buttons in the toolbar. + ui->actionSqlResultsSave->setEnabled(false); + + // Check if the new tab is currently running a query or not + if(!ui->tabSqlAreas->tabBar()->tabData(index).toBool()) + { + // Not running a query + + ui->actionSqlExecuteLine->setEnabled(db.isOpen()); + ui->actionExecuteSql->setEnabled(db.isOpen()); + ui->actionSqlStop->setEnabled(false); + } else { + // Running a query + + ui->actionSqlExecuteLine->setEnabled(false); + ui->actionExecuteSql->setEnabled(false); + ui->actionSqlStop->setEnabled(true); + } +} + +void SqliteDBMainWindow::openSqlFile() +{ + QStringList wfiles = FileDialog::getOpenFileNames( + OpenSQLFile, + this, + tr("Select SQL file to open"), + tr("Text files(*.sql *.txt);;All files(*)")); + + for(QString file: wfiles) + { + if(QFile::exists(file)) + { + // Decide whether to open a new tab or take the current one + int index; + SqlExecutionArea* current_tab = qobject_cast(ui->tabSqlAreas->currentWidget()); + if(current_tab && current_tab->getSql().isEmpty() && current_tab->getModel()->rowCount() == 0) + index = ui->tabSqlAreas->currentIndex(); + else + index = openSqlTab(); + + SqlExecutionArea* sqlarea = qobject_cast(ui->tabSqlAreas->widget(index)); + sqlarea->openFile(file); + + QFileInfo fileinfo(file); + ui->tabSqlAreas->setTabText(index, fileinfo.fileName()); + ui->tabSqlAreas->setTabIcon(index, QIcon(":/icons/document_open")); + } + } +} + +void SqliteDBMainWindow::saveSqlFile(int tabIndex) +{ + SqlExecutionArea* sqlarea = qobject_cast(ui->tabSqlAreas->widget(tabIndex)); + if(!sqlarea) + return; + + // If this SQL file hasn't been saved before open the Save As dialog. Otherwise just use the old file name for saving + if(sqlarea->fileName().isEmpty()) + { + saveSqlFileAs(); + } else { + sqlarea->saveFile(sqlarea->fileName()); + } +} + +void SqliteDBMainWindow::saveSqlFile() +{ + saveSqlFile(ui->tabSqlAreas->currentIndex()); +} + +void SqliteDBMainWindow::saveSqlFileAs() +{ + SqlExecutionArea* sqlarea = qobject_cast(ui->tabSqlAreas->currentWidget()); + if(!sqlarea) + return; + + QStringList file_filter; + file_filter << FILE_FILTER_SQL + << FILE_FILTER_TXT + << FILE_FILTER_ALL; + QString file = FileDialog::getSaveFileName( + CreateSQLFile, + this, + tr("Select file name"), + file_filter.join(";;")); + + if(!file.isEmpty()) + { + sqlarea->saveFile(file); + + QFileInfo fileinfo(file); + ui->tabSqlAreas->setTabText(ui->tabSqlAreas->currentIndex(), fileinfo.fileName()); + ui->tabSqlAreas->setTabIcon(ui->tabSqlAreas->currentIndex(), QIcon(":/icons/document_open")); + } +} + +void SqliteDBMainWindow::saveSqlResultsAsCsv() +{ + qobject_cast(ui->tabSqlAreas->currentWidget())->saveAsCsv(); +} + +void SqliteDBMainWindow::saveSqlResultsAsView() +{ + saveAsView(qobject_cast(ui->tabSqlAreas->currentWidget())->getModel()->query()); +} + +void SqliteDBMainWindow::loadExtension() +{ + QStringList file_filter; + file_filter << FILE_FILTER_DYN + << FILE_FILTER_ALL; + + QString file = FileDialog::getOpenFileName( + OpenExtensionFile, + this, + tr("Select extension file"), + file_filter.join(";;")); + + if(file.isEmpty()) + return; + + if(db.loadExtension(file)) + QMessageBox::information(this, QApplication::applicationName(), tr("Extension successfully loaded.")); + else + QMessageBox::warning(this, QApplication::applicationName(), tr("Error loading extension: %1").arg(db.lastError())); +} + +void SqliteDBMainWindow::reloadSettings() +{ + // Set default application font size + qobject_cast(qApp)->reloadSettings(); + + // Set data browser font + ui->tableBrowser->reloadSettings(); + + switch (static_cast(Settings::getValue("General", "appStyle").toInt())) { + case Settings::FollowDesktopStyle : + qApp->setStyleSheet(""); + + break; + case Settings::DarkStyle : + QFile f(":qdarkstyle/style.qss"); + if (!f.exists()) { + QMessageBox::warning(this, qApp->applicationName(), + tr("Could not find resource file: %1").arg(f.fileName())); + } else { + f.open(QFile::ReadOnly | QFile::Text); + QTextStream ts(&f); + qApp->setStyleSheet(ts.readAll()); + } + break; + } + + setToolButtonStyle(static_cast(Settings::getValue("General", "toolbarStyle").toInt())); + ui->dbToolbar->setToolButtonStyle(static_cast(Settings::getValue("General", "toolbarStyleStructure").toInt())); + ui->toolbarSql->setToolButtonStyle(static_cast(Settings::getValue("General", "toolbarStyleSql").toInt())); + + // Set prefetch sizes for lazy population of table models + for(int i=0;itabSqlAreas->count();++i) + qobject_cast(ui->tabSqlAreas->widget(i))->reloadSettings(); + + // Prepare log font + QFont logfont("Monospace"); + logfont.setStyleHint(QFont::TypeWriter); + logfont.setPointSize(Settings::getValue("log", "fontsize").toInt()); + + // Set font for SQL logs and edit dialog + ui->editLogApplication->reloadSettings(); + ui->editLogUser->reloadSettings(); + ui->editLogErrorLog->reloadSettings(); + ui->editLogApplication->setFont(logfont); + ui->editLogUser->setFont(logfont); + ui->editLogErrorLog->setFont(logfont); + editDock->reloadSettings(); + + // Set font for database structure views + QFont structure_font = ui->dbTreeWidget->font(); + structure_font.setPointSize(Settings::getValue("db", "fontsize").toInt()); + ui->dbTreeWidget->setFont(structure_font); + ui->treeSchemaDock->setFont(structure_font); + + // Load extensions + db.loadExtensionsFromSettings(); + + // Refresh view + dbStructureModel->reloadData(); + populateStructure(); + populateTable(); + + // Hide or show the remote dock as needed + bool showRemoteActions = Settings::getValue("remote", "active").toBool(); + ui->viewMenu->actions().at(4)->setVisible(showRemoteActions); + if(!showRemoteActions) + ui->dockRemote->setHidden(true); + + // Reload remote dock settings + //remoteDock->reloadSettings(); + + sqlb::setIdentifierQuoting(static_cast(Settings::getValue("editor", "identifier_quotes").toInt())); + + ui->tabSqlAreas->setTabsClosable(Settings::getValue("editor", "close_button_on_tabs").toBool()); +} + +void SqliteDBMainWindow::checkNewVersion(const QString& versionstring, const QString& url) +{ + // versionstring contains a major.minor.patch version string + QStringList versiontokens = versionstring.split("."); + if(versiontokens.size() < 3) + return; + + int major = versiontokens[0].toInt(); + int minor = versiontokens[1].toInt(); + int patch = versiontokens[2].toInt(); + + bool newversion = false; + if(major > MAJOR_VERSION) + newversion = true; + else if(major == MAJOR_VERSION) + { + if(minor > MINOR_VERSION) + newversion = true; + else if(minor == MINOR_VERSION) + { + if(patch > PATCH_VERSION) + newversion = true; + } + } + + if(newversion) + { + int ignmajor = Settings::getValue("checkversion", "ignmajor").toInt(); + int ignminor = Settings::getValue("checkversion", "ignminor").toInt(); + int ignpatch = Settings::getValue("checkversion", "ignpatch").toInt(); + + // check if the user doesn't care about the current update + if(!(ignmajor == major && ignminor == minor && ignpatch == patch)) + { + QMessageBox msgBox; + QPushButton *idontcarebutton = msgBox.addButton(tr("Don't show again"), QMessageBox::ActionRole); + msgBox.addButton(QMessageBox::Ok); + msgBox.setTextFormat(Qt::RichText); + msgBox.setWindowTitle(tr("New version available.")); + msgBox.setText(tr("A new DB Browser for SQLite version is available (%1.%2.%3).

" + "Please download at %4.").arg(major).arg(minor).arg(patch). + arg(url)); + msgBox.exec(); + + if(msgBox.clickedButton() == idontcarebutton) + { + // save that the user don't want to get bothered about this update + Settings::setValue("checkversion", "ignmajor", major); + Settings::setValue("checkversion", "ignminor", minor); + Settings::setValue("checkversion", "ignpatch", patch); + } + } + } +} + +void SqliteDBMainWindow::on_actionWiki_triggered() const +{ + QDesktopServices::openUrl(QUrl("https://github.com/sqlitebrowser/sqlitebrowser/wiki")); +} + +// 'Help | Bug Report...' link will set an appropiate body, add the system information and set the label 'bug' automatically to the issue +void SqliteDBMainWindow::on_actionBug_report_triggered() const +{ + const QString version = Application::versionString(); + const QString os = QSysInfo::prettyProductName(); + const QString kernelType = QSysInfo::kernelType(); + const QString kernelVersion = QSysInfo::kernelVersion(); + const QString arch = QSysInfo::currentCpuArchitecture(); + const QString built_for = QSysInfo::buildAbi(); + + QString sqlite_version, sqlcipher_version; + DBBrowserDB::getSqliteVersion(sqlite_version, sqlcipher_version); + if(sqlcipher_version.isNull()) + sqlite_version = QString("SQLite Version ") + sqlite_version; + else + sqlite_version = QString("SQLCipher Version ") + sqlcipher_version + QString(" (based on SQLite %1)").arg(sqlite_version); + + const QString body = + QString("Details for the issue\n" + "--------------------\n\n" + "#### What did you do?\n\n\n" + "#### What did you expect to see?\n\n\n" + "#### What did you see instead?\n\n\n" + "Useful extra information\n" + "-------------------------\n" + "> DB4S v%1 [built for %2] on %3 (%4/%5) [%6]\n" + "> using %7\n" + "> and Qt %8") + .arg(version, built_for, os, kernelType, kernelVersion, arch, sqlite_version, QT_VERSION_STR); + + QUrlQuery query; + query.addQueryItem("labels", "bug"); + query.addQueryItem("body", body); + + QUrl url("https://github.com/sqlitebrowser/sqlitebrowser/issues/new"); + url.setQuery(query); + QDesktopServices::openUrl(url); +} + +// 'Help | Feature Request...' link will set an appropiate body and add the label 'enhancement' automatically to the issue +void SqliteDBMainWindow::on_actionFeature_Request_triggered() const +{ + QUrlQuery query; + + // Add the label enhancement and use the Feature request template that + // we have in GitHub. + query.addQueryItem("labels", "enhancement"); + query.addQueryItem("template", "Feature_request.md"); + + QUrl url("https://github.com/sqlitebrowser/sqlitebrowser/issues/new"); + url.setQuery(query); + QDesktopServices::openUrl(url); +} + +void SqliteDBMainWindow::on_actionSqlCipherFaq_triggered() const +{ + QDesktopServices::openUrl(QUrl("https://discuss.zetetic.net/c/sqlcipher/sqlcipher-faq")); +} + +void SqliteDBMainWindow::on_actionWebsite_triggered() const +{ + QDesktopServices::openUrl(QUrl("https://sqlitebrowser.org")); +} + +void SqliteDBMainWindow::on_actionDonatePatreon_triggered() const +{ + QDesktopServices::openUrl(QUrl("https://www.patreon.com/bePatron?u=11578749")); +} + +static void loadCondFormatMap(BrowseDataTableSettings::CondFormatMap& condFormats, QXmlStreamReader& xml, const QString& encoding) +{ + const QStringRef name = xml.name(); + + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != name) { + if (xml.name() == "column") { + size_t index = xml.attributes().value("index").toUInt(); + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "column") { + if(xml.name() == "format") { + QFont font; + if (xml.attributes().hasAttribute("font")) + font.fromString(xml.attributes().value("font").toString()); + else + Settings::getValue("databrowser", "font").toString(); + + CondFormat::Alignment align; + if (xml.attributes().hasAttribute("align")) + align = static_cast(xml.attributes().value("align").toInt()); + else + align = CondFormat::AlignLeft; + + condFormats[index].emplace_back(xml.attributes().value("condition").toString(), + QColor(xml.attributes().value("foreground").toString()), + QColor(xml.attributes().value("background").toString()), + font, align, encoding); + xml.skipCurrentElement(); + } + } + } + } +} + +static void loadBrowseDataTableSettings(BrowseDataTableSettings& settings, QXmlStreamReader& xml) +{ + // TODO Remove this in the near future. This file format was only created temporarily by the nightlies from the late 3.11 development period. + if(xml.attributes().hasAttribute("sort_order_index")) + { + int sortOrderIndex = xml.attributes().value("sort_order_index").toInt(); + Qt::SortOrder sortOrderMode = static_cast(xml.attributes().value("sort_order_mode").toInt()); + settings.query.setOrderBy(toSortOrderVector(sortOrderIndex, sortOrderMode)); + } + + settings.showRowid = xml.attributes().value("show_row_id").toInt(); + settings.encoding = xml.attributes().value("encoding").toString(); + settings.plotXAxis = xml.attributes().value("plot_x_axis").toString(); + settings.unlockViewPk = xml.attributes().value("unlock_view_pk").toString(); + + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "table") { + if(xml.name() == "sort") + { + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "sort") + { + if(xml.name() == "column") + { + int index = xml.attributes().value("index").toInt(); + int mode = xml.attributes().value("mode").toInt(); + settings.query.orderBy().emplace_back(index, mode == Qt::AscendingOrder ? sqlb::Ascending : sqlb::Descending); + xml.skipCurrentElement(); + } + } + } else if(xml.name() == "column_widths") { + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "column_widths") { + if (xml.name() == "column") { + int index = xml.attributes().value("index").toInt(); + settings.columnWidths[index] = xml.attributes().value("value").toInt(); + xml.skipCurrentElement(); + } + } + } else if(xml.name() == "filter_values") { + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "filter_values") { + if (xml.name() == "column") { + int index = xml.attributes().value("index").toInt(); + QString value = xml.attributes().value("value").toString(); + if(!value.isEmpty()) + settings.filterValues[index] = value; + + xml.skipCurrentElement(); + } + } + } else if(xml.name() == "conditional_formats") { + loadCondFormatMap(settings.condFormats, xml, settings.encoding); + } else if(xml.name() == "row_id_formats") { + loadCondFormatMap(settings.rowIdFormats, xml, settings.encoding); + } else if(xml.name() == "display_formats") { + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "display_formats") { + if (xml.name() == "column") { + int index = xml.attributes().value("index").toInt(); + settings.displayFormats[index] = xml.attributes().value("value").toString(); + xml.skipCurrentElement(); + } + } + } else if(xml.name() == "hidden_columns") { + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "hidden_columns") { + if (xml.name() == "column") { + int index = xml.attributes().value("index").toInt(); + settings.hiddenColumns[index] = xml.attributes().value("value").toInt(); + xml.skipCurrentElement(); + } + } + } else if(xml.name() == "plot_y_axes") { + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "plot_y_axes") { + QString y1AxisName; + QString y2AxisName; + PlotDock::PlotSettings y1AxisSettings; + PlotDock::PlotSettings y2AxisSettings; + if (xml.name() == "y_axis") { + y1AxisName = xml.attributes().value("name").toString(); + y1AxisSettings.lineStyle = xml.attributes().value("line_style").toInt(); + y1AxisSettings.pointShape = xml.attributes().value("point_shape").toInt(); + y1AxisSettings.colour = QColor (xml.attributes().value("colour").toString()); + y1AxisSettings.active = xml.attributes().value("active").toInt(); + xml.skipCurrentElement(); + } + settings.plotYAxes[0][y1AxisName] = y1AxisSettings; + if (xml.name() == "y2_axis") { + y2AxisName = xml.attributes().value("name").toString(); + y2AxisSettings.lineStyle = xml.attributes().value("line_style").toInt(); + y2AxisSettings.pointShape = xml.attributes().value("point_shape").toInt(); + y2AxisSettings.colour = QColor (xml.attributes().value("colour").toString()); + y2AxisSettings.active = xml.attributes().value("active").toInt(); + xml.skipCurrentElement(); + } + settings.plotYAxes[1][y2AxisName] = y2AxisSettings; + } + } else if(xml.name() == "global_filter") { + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "global_filter") + { + if(xml.name() == "filter") + { + QString value = xml.attributes().value("value").toString(); + settings.globalFilters.push_back(value); + xml.skipCurrentElement(); + } + } + } + } +} +bool SqliteDBMainWindow::loadProject(QString filename, bool readOnly) +{ + // Show the open file dialog when no filename was passed as parameter + if(filename.isEmpty()) + { + filename = FileDialog::getOpenFileName( + OpenProjectFile, + this, + tr("Choose a project file to open"), + tr("DB Browser for SQLite project file (*.sqbpro)")); + } + + if(!filename.isEmpty()) + { + QFile file(filename); + file.open(QFile::ReadOnly | QFile::Text); + + QXmlStreamReader xml(&file); + xml.readNext(); // token == QXmlStreamReader::StartDocument + xml.readNext(); // name == sqlb_project + if(xml.name() != "sqlb_project") + return false; + + // We are going to open a new project, so close the possible current one before opening another. + // Stop the opening process here if the user pressed the cancel button in there. + if(!closeProject()) + return false; + + addToRecentFilesMenu(filename, readOnly); + currentProjectFilename = filename; + + QString currentTable; + while(!xml.atEnd() && !xml.hasError()) + { + // Read next token + QXmlStreamReader::TokenType token = xml.readNext(); + + // Handle element start + if(token == QXmlStreamReader::StartElement) + { + if(xml.name() == "db") + { + // Read only? + if(xml.attributes().hasAttribute("readonly") && xml.attributes().value("readonly").toInt()) + readOnly = true; + + // DB file + QString dbfilename = xml.attributes().value("path").toString(); + if(!QFile::exists(dbfilename)) { + dbfilename = QFileInfo(filename).absolutePath() + QDir::separator() + dbfilename; + // New DB filename is pending to be saved + isProjectModified = true; + } + fileOpen(dbfilename, true, readOnly); + ui->dbTreeWidget->collapseAll(); + + // PRAGMAs + if(xml.attributes().hasAttribute("foreign_keys")) + db.setPragma("foreign_keys", xml.attributes().value("foreign_keys").toString()); + if(xml.attributes().hasAttribute("case_sensitive_like")) + db.setPragma("case_sensitive_like", xml.attributes().value("case_sensitive_like").toString()); + if(xml.attributes().hasAttribute("temp_store")) + db.setPragma("temp_store", xml.attributes().value("temp_store").toString()); + if(xml.attributes().hasAttribute("wal_autocheckpoint")) + db.setPragma("wal_autocheckpoint", xml.attributes().value("wal_autocheckpoint").toString()); + if(xml.attributes().hasAttribute("synchronous")) + db.setPragma("synchronous", xml.attributes().value("synchronous").toString()); + loadPragmas(); + } else if(xml.name() == "attached") { + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "attached") + { + if(xml.name() == "db") + { + db.attach(xml.attributes().value("path").toString(), xml.attributes().value("schema").toString()); + xml.skipCurrentElement(); + } + } + } else if(xml.name() == "window") { + // Window settings + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "window") + { + if(xml.name() == "main_tabs") { + // Currently open tabs + restoreOpenTabs(xml.attributes().value("open").toString()); + // Currently selected open tab + ui->mainTab->setCurrentIndex(xml.attributes().value("current").toString().toInt()); + xml.skipCurrentElement(); + } else if(xml.name() == "current_tab") { + // Currently selected tab (3.11 or older format, first restore default open tabs) + restoreOpenTabs(defaultOpenTabs); + ui->mainTab->setCurrentIndex(xml.attributes().value("id").toString().toInt()); + xml.skipCurrentElement(); + } + } + } else if(xml.name() == "tab_structure") { + // Database Structure tab settings + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "tab_structure") + { + if(xml.name() == "column_width") + { + // Tree view column widths + ui->dbTreeWidget->setColumnWidth(xml.attributes().value("id").toString().toInt(), + xml.attributes().value("width").toString().toInt()); + xml.skipCurrentElement(); + } else if(xml.name() == "expanded_item") { + // Tree view expanded items + int parent = xml.attributes().value("parent").toString().toInt(); + QModelIndex idx; + if(parent == -1) + idx = ui->dbTreeWidget->model()->index(xml.attributes().value("id").toString().toInt(), 0); + else + idx = ui->dbTreeWidget->model()->index(xml.attributes().value("id").toString().toInt(), 0, ui->dbTreeWidget->model()->index(parent, 0)); + ui->dbTreeWidget->expand(idx); + xml.skipCurrentElement(); + } + } + } else if(xml.name() == "tab_browse") { + // Browse Data tab settings + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "tab_browse") + { + if(xml.name() == "current_table") + { + // Currently selected table + currentTable = xml.attributes().value("name").toString(); + xml.skipCurrentElement(); + } else if(xml.name() == "default_encoding") { + // Default text encoding + ui->tableBrowser->setDefaultEncoding(xml.attributes().value("codec").toString()); + xml.skipCurrentElement(); + } else if(xml.name() == "browsetable_info") { + // This tag is only found in old project files. In newer versions (>= 3.11) it is replaced by a new implementation. + // We still support loading it though we might decide to drop that support later. But for now we show a warning to the + // user when loading an old file. + if(!Settings::getValue("idontcare", "projectBrowseTable").toBool()) + { + QMessageBox msgBox; + QPushButton* idontcarebutton = msgBox.addButton(tr("Don't show again"), QMessageBox::ActionRole); + msgBox.addButton(QMessageBox::Ok); + msgBox.setTextFormat(Qt::RichText); + msgBox.setWindowTitle(qApp->applicationName()); + msgBox.setText(tr("This project file is using an old file format because it was created using DB Browser for SQLite " + "version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert " + "all your project files to the new file format because support for older formats might be dropped " + "at some point in the future. You can convert your files by simply opening and re-saving them.")); + msgBox.exec(); + if(msgBox.clickedButton() == idontcarebutton) + Settings::setValue("idontcare", "projectBrowseTable", true); + } + + QString attrData = xml.attributes().value("data").toString(); + QByteArray temp = QByteArray::fromBase64(attrData.toUtf8()); + QDataStream stream(temp); + QMap settings; + stream >> settings; + for(auto it=settings.begin();it!=settings.end();++it) + ui->tableBrowser->setSettings(it.key(), it.value()); + + xml.skipCurrentElement(); + } else if(xml.name() == "browse_table_settings") { + + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "browse_table_settings") { + if (xml.name() == "table") { + + sqlb::ObjectIdentifier tableIdentifier = + sqlb::ObjectIdentifier (xml.attributes().value("schema").toString().toStdString(), + xml.attributes().value("name").toString().toStdString()); + BrowseDataTableSettings settings; + loadBrowseDataTableSettings(settings, xml); + ui->tableBrowser->setSettings(tableIdentifier, settings); + } + } + } + + } + } else if(xml.name() == "tab_sql") { + // Close all open tabs first + for(int i=ui->tabSqlAreas->count()-1;i>=0;i--) + closeSqlTab(i, true); + + // Execute SQL tab data + while(xml.readNext() != QXmlStreamReader::EndElement && xml.name() != "tab_sql") + { + if(xml.name() == "sql") + { + // SQL editor tab + int index = openSqlTab(); + ui->tabSqlAreas->setTabText(index, xml.attributes().value("name").toString()); + SqlTextEdit* sqlEditor = qobject_cast(ui->tabSqlAreas->widget(index))->getEditor(); + sqlEditor->setText(xml.readElementText()); + sqlEditor->setModified(false); + } else if(xml.name() == "current_tab") { + // Currently selected tab + ui->tabSqlAreas->setCurrentIndex(xml.attributes().value("id").toString().toInt()); + xml.skipCurrentElement(); + } + } + } + } + } + + file.close(); + + if(ui->mainTab->currentWidget() == ui->browser) { + if (!currentTable.isEmpty()) + { + sqlb::ObjectIdentifier obj; + if(!obj.fromSerialised(currentTable.toStdString())) + { + // This is an old project file format which doesn't yet contain serialised table identifiers. This means + // we have to try our best to unserialise this one manually. The only problem is when the name of an + // attached database or of a table contains a dot character. In that case the name becomes ambigious and + // we just try to split it at the first dot. I don't think it affects many (if any) project files. But if + // it turn out to be wrong, we can always add a loop here which checks for any possible combination of schema + // and table name whether an object with that combination exists. + // TODO: Delete this code in the future when we don't expect there to be any project files in the old format anymore. + if(currentTable.contains('.')) + { + obj.setSchema(currentTable.left(currentTable.indexOf('.')).toStdString()); + obj.setName(currentTable.mid(currentTable.indexOf('.')+1).toStdString()); + } else { + obj.setName(currentTable.toStdString()); + } + } + switchToBrowseDataTab(obj); + } + populateTable(); // Refresh view + } + + isProjectModified = false; + + return !xml.hasError(); + } else { + // No project was opened + return false; + } +} + +static void saveDbTreeState(const QTreeView* tree, QXmlStreamWriter& xml, QModelIndex index = QModelIndex(), int parent_row = -1) +{ + for(int i=0;imodel()->rowCount(index);i++) + { + if(tree->isExpanded(tree->model()->index(i, 0, index))) + { + xml.writeStartElement("expanded_item"); + xml.writeAttribute("id", QString::number(i)); + xml.writeAttribute("parent", QString::number(parent_row)); + xml.writeEndElement(); + } + + saveDbTreeState(tree, xml, tree->model()->index(i, 0, index), i); + } +} + +static void saveCondFormatMap(const QString& elementName, const BrowseDataTableSettings::CondFormatMap& condFormats, QXmlStreamWriter& xml) +{ + xml.writeStartElement(elementName); + for(auto iter=condFormats.constBegin(); iter!=condFormats.constEnd(); ++iter) { + xml.writeStartElement("column"); + xml.writeAttribute("index", QString::number(iter.key())); + for(auto format : iter.value()) { + xml.writeStartElement("format"); + xml.writeAttribute("condition", format.filter()); + xml.writeAttribute("background", format.backgroundColor().name()); + xml.writeAttribute("foreground", format.foregroundColor().name()); + xml.writeAttribute("font", format.font().toString()); + xml.writeAttribute("align", QString().setNum(format.alignment())); + xml.writeEndElement(); + } + xml.writeEndElement(); + } + xml.writeEndElement(); +} + +static void saveBrowseDataTableSettings(const BrowseDataTableSettings& object, QXmlStreamWriter& xml) +{ + xml.writeAttribute("show_row_id", QString::number(object.showRowid)); + xml.writeAttribute("encoding", object.encoding); + xml.writeAttribute("plot_x_axis", object.plotXAxis); + xml.writeAttribute("unlock_view_pk", object.unlockViewPk); + + xml.writeStartElement("sort"); + for(const auto& column : object.query.orderBy()) + { + xml.writeStartElement("column"); + xml.writeAttribute("index", QString::number(column.column)); + xml.writeAttribute("mode", QString::number(column.direction)); + xml.writeEndElement(); + } + xml.writeEndElement(); + + xml.writeStartElement("column_widths"); + for(auto iter=object.columnWidths.constBegin(); iter!=object.columnWidths.constEnd(); ++iter) { + xml.writeStartElement("column"); + xml.writeAttribute("index", QString::number(iter.key())); + xml.writeAttribute("value", QString::number(iter.value())); + xml.writeEndElement(); + } + xml.writeEndElement(); + xml.writeStartElement("filter_values"); + for(auto iter=object.filterValues.constBegin(); iter!=object.filterValues.constEnd(); ++iter) { + xml.writeStartElement("column"); + xml.writeAttribute("index", QString::number(iter.key())); + xml.writeAttribute("value", iter.value()); + xml.writeEndElement(); + } + xml.writeEndElement(); + saveCondFormatMap("conditional_formats", object.condFormats, xml); + saveCondFormatMap("row_id_formats", object.rowIdFormats, xml); + xml.writeStartElement("display_formats"); + for(auto iter=object.displayFormats.constBegin(); iter!=object.displayFormats.constEnd(); ++iter) { + xml.writeStartElement("column"); + xml.writeAttribute("index", QString::number(iter.key())); + xml.writeAttribute("value", iter.value()); + xml.writeEndElement(); + } + xml.writeEndElement(); + xml.writeStartElement("hidden_columns"); + for(auto iter=object.hiddenColumns.constBegin(); iter!=object.hiddenColumns.constEnd(); ++iter) { + xml.writeStartElement("column"); + xml.writeAttribute("index", QString::number(iter.key())); + xml.writeAttribute("value", QString::number(iter.value())); + xml.writeEndElement(); + } + xml.writeEndElement(); + xml.writeStartElement("plot_y_axes"); + for(auto iter=object.plotYAxes[0].constBegin(); iter!=object.plotYAxes[0].constEnd(); ++iter) { + PlotDock::PlotSettings plotSettings = iter.value(); + xml.writeStartElement("y_axis"); + xml.writeAttribute("name", iter.key()); + xml.writeAttribute("line_style", QString::number(plotSettings.lineStyle)); + xml.writeAttribute("point_shape", QString::number(plotSettings.pointShape)); + xml.writeAttribute("colour", plotSettings.colour.name()); + xml.writeAttribute("active", QString::number(plotSettings.active)); + xml.writeEndElement(); + } + for(auto iter=object.plotYAxes[1].constBegin(); iter!=object.plotYAxes[1].constEnd(); ++iter) { + PlotDock::PlotSettings plotSettings = iter.value(); + xml.writeStartElement("y2_axis"); + xml.writeAttribute("name", iter.key()); + xml.writeAttribute("line_style", QString::number(plotSettings.lineStyle)); + xml.writeAttribute("point_shape", QString::number(plotSettings.pointShape)); + xml.writeAttribute("colour", plotSettings.colour.name()); + xml.writeAttribute("active", QString::number(plotSettings.active)); + xml.writeEndElement(); + } + xml.writeEndElement(); + xml.writeStartElement("global_filter"); + for(const auto& v : object.globalFilters) + { + xml.writeStartElement("filter"); + xml.writeAttribute("value", v); + xml.writeEndElement(); + } + xml.writeEndElement(); +} + +void SqliteDBMainWindow::saveProject(const QString& currentFilename) +{ + QString filename; + if(currentFilename.isEmpty()) { + QString basePathName = db.currentFile(); + // Remove database suffix + basePathName.chop(QFileInfo(basePathName).suffix().size()+1); + filename = FileDialog::getSaveFileName( + CreateProjectFile, + this, + tr("Choose a filename to save under"), + FILE_FILTER_SQLPRJ, + basePathName); + } else + filename = currentFilename; + + if(!filename.isEmpty()) + { + // Make sure the file has got a .sqbpro ending + if(!filename.endsWith(FILE_EXT_SQLPRJ_DEFAULT, Qt::CaseInsensitive)) + filename.append(FILE_EXT_SQLPRJ_DEFAULT); + + QFile file(filename); + bool opened = file.open(QFile::WriteOnly | QFile::Text); + if(!opened) { + QMessageBox::warning(this, qApp->applicationName(), + tr("Could not open project file for writing.\nReason: %1").arg(file.errorString())); + currentProjectFilename.clear(); + return; + } + currentProjectFilename = filename; + QApplication::setOverrideCursor(Qt::WaitCursor); + + QXmlStreamWriter xml(&file); + xml.writeStartDocument(); + xml.writeStartElement("sqlb_project"); + + // Database file name + xml.writeStartElement("db"); + xml.writeAttribute("path", db.currentFile()); + xml.writeAttribute("readonly", QString::number(db.readOnly())); + xml.writeAttribute("foreign_keys", db.getPragma("foreign_keys")); + xml.writeAttribute("case_sensitive_like", db.getPragma("case_sensitive_like")); + xml.writeAttribute("temp_store", db.getPragma("temp_store")); + xml.writeAttribute("wal_autocheckpoint", db.getPragma("wal_autocheckpoint")); + xml.writeAttribute("synchronous", db.getPragma("synchronous")); + xml.writeEndElement(); + + // Attached databases + xml.writeStartElement("attached"); + db.executeSQL("PRAGMA database_list;", false, true, [&xml](int, std::vector values, std::vector) -> bool { + auto schema = values.at(1); + if(schema != "main" && schema != "temp") + { + auto path = values.at(2); + xml.writeStartElement("db"); + xml.writeAttribute("schema", schema); + xml.writeAttribute("path", path); + xml.writeEndElement(); + } + return false; + }); + xml.writeEndElement(); + + // Window settings + xml.writeStartElement("window"); + xml.writeStartElement("main_tabs"); // Currently open tabs + xml.writeAttribute("open", saveOpenTabs()); + xml.writeAttribute("current", QString::number(ui->mainTab->currentIndex())); + xml.writeEndElement(); + xml.writeEndElement(); + + // Database Structure tab settings + xml.writeStartElement("tab_structure"); + for(int i=0;idbTreeWidget->model()->columnCount();i++) // Widths of tree view columns + { + xml.writeStartElement("column_width"); + xml.writeAttribute("id", QString::number(i)); + xml.writeAttribute("width", QString::number(ui->dbTreeWidget->columnWidth(i))); + xml.writeEndElement(); + } + saveDbTreeState(ui->dbTreeWidget, xml); // Expanded tree items + xml.writeEndElement(); + + // Browse Data tab settings + xml.writeStartElement("tab_browse"); + xml.writeStartElement("current_table"); // Currently selected table + xml.writeAttribute("name", QString::fromStdString(ui->tableBrowser->currentlyBrowsedTableName().toSerialised())); + xml.writeEndElement(); + xml.writeStartElement("default_encoding"); // Default encoding for text stored in tables + xml.writeAttribute("codec", ui->tableBrowser->defaultEncoding()); + xml.writeEndElement(); + + xml.writeStartElement("browse_table_settings"); + const auto settings = ui->tableBrowser->allSettings(); + for(auto tableIt=settings.constBegin(); tableIt!=settings.constEnd(); ++tableIt) { + + xml.writeStartElement("table"); + xml.writeAttribute("schema", QString::fromStdString(tableIt.key().schema())); + xml.writeAttribute("name", QString::fromStdString(tableIt.key().name())); + saveBrowseDataTableSettings(tableIt.value(), xml); + xml.writeEndElement(); + } + // + xml.writeEndElement(); + // + xml.writeEndElement(); + + // Execute SQL tab data + xml.writeStartElement("tab_sql"); + for(int i=0;itabSqlAreas->count();i++) // All SQL tabs content + { + SqlExecutionArea* sqlArea = qobject_cast(ui->tabSqlAreas->widget(i)); + xml.writeStartElement("sql"); + xml.writeAttribute("name", ui->tabSqlAreas->tabText(i)); + xml.writeCharacters(sqlArea->getSql()); + sqlArea->getEditor()->setModified(false); + xml.writeEndElement(); + } + xml.writeStartElement("current_tab"); // Currently selected tab + xml.writeAttribute("id", QString::number(ui->tabSqlAreas->currentIndex())); + xml.writeEndElement(); + xml.writeEndElement(); + + xml.writeEndElement(); + xml.writeEndDocument(); + file.close(); + + addToRecentFilesMenu(filename); + setCurrentFile(db.currentFile()); + isProjectModified = false; + showStatusMessage5s(tr("Project saved to file '%1'").arg(currentProjectFilename)); + QApplication::restoreOverrideCursor(); + } +} + +void SqliteDBMainWindow::saveProject() +{ + saveProject(currentProjectFilename); +} + +void SqliteDBMainWindow::saveProjectAs() +{ + saveProject(QString()); +} + +void SqliteDBMainWindow::fileAttach(const QString& fileName) +{ + QString file; + if (fileName.isEmpty()) { + + // Get file name of database to attach + file = FileDialog::getOpenFileName( + OpenDatabaseFile, + this, + tr("Choose a database file"), + FileDialog::getSqlDatabaseFileFilter()); + } else + file = fileName; + + if(!QFile::exists(file)) + return; + + // Attach it + db.attach(file); + isProjectModified = true; +} + +void SqliteDBMainWindow::editEncryption() +{ +#ifdef ENABLE_SQLCIPHER + CipherDialog cipherDialog(this, true); + if(cipherDialog.exec()) + { + // Show progress dialog even though we can't provide any detailed progress information but this + // process might take some time. + QProgressDialog progress(this); + progress.setCancelButton(nullptr); + progress.setWindowModality(Qt::ApplicationModal); + progress.show(); + qApp->processEvents(); + + // Apply all unsaved changes + bool ok = db.releaseAllSavepoints(); + qApp->processEvents(); + + // Create the new file first or it won't work + if(ok) + { + QFile file(db.currentFile() + ".enctemp"); + file.open(QFile::WriteOnly); + file.close(); + } + + CipherSettings cipherSettings = cipherDialog.getCipherSettings(); + + // Attach a new database using the new settings + qApp->processEvents(); + if(ok) + ok = db.executeSQL("ATTACH DATABASE '" + db.currentFile().toStdString() + ".enctemp' AS sqlitebrowser_edit_encryption KEY " + cipherSettings.getPassword() + ";", + false, false); + qApp->processEvents(); + if(ok) + ok = db.executeSQL("PRAGMA sqlitebrowser_edit_encryption.cipher_page_size = " + std::to_string(cipherSettings.getPageSize()), false, false); + if(ok) + ok = db.executeSQL("PRAGMA sqlitebrowser_edit_encryption.cipher_hmac_algorithm = " + cipherSettings.getHmacAlgorithm(), false, false); + if(ok) + ok = db.executeSQL("PRAGMA sqlitebrowser_edit_encryption.cipher_kdf_algorithm = " + cipherSettings.getKdfAlgorithm(), false, false); + if(ok) + ok = db.executeSQL("PRAGMA sqlitebrowser_edit_encryption.kdf_iter = " + std::to_string(cipherSettings.getKdfIterations()), false, false); + if (ok) + ok = db.executeSQL("PRAGMA sqlitebrowser_edit_encryption.cipher_plaintext_header_size = " + std::to_string(cipherSettings.getPlaintextHeaderSize()), false, false); + + // Export the current database to the new one + qApp->processEvents(); + if(ok) + ok = db.executeSQL("SELECT sqlcipher_export('sqlitebrowser_edit_encryption');", false, false); + + // Set user version of the new database + qApp->processEvents(); + if (ok) + ok = db.executeSQL("PRAGMA sqlitebrowser_edit_encryption.user_version = " + std::to_string(db.getPragma("user_version").toInt()) + ";", false, false); + + // We need to detach the database before proceeding + qApp->processEvents(); + if (ok) + ok = db.executeSQL("DETACH sqlitebrowser_edit_encryption;", false, false); + + // Check for errors + qApp->processEvents(); + if(ok) + { + // No errors: Then close the current database, switch names, open the new one and if that succeeded delete the old one + + fileClose(); + QFile::rename(db.currentFile(), db.currentFile() + ".enctempold"); + QFile::rename(db.currentFile() + ".enctemp", db.currentFile()); + if(fileOpen(db.currentFile())) + QFile::remove(db.currentFile() + ".enctempold"); + } else { + QMessageBox::warning(this, qApp->applicationName(), db.lastError()); + } + } +#endif +} + +void SqliteDBMainWindow::switchToBrowseDataTab(sqlb::ObjectIdentifier tableToBrowse) +{ + // If no table name was provided get the currently selected table fromt he structure tab + if(tableToBrowse.isEmpty()) + { + // Cancel here if there is no selection + if(!ui->dbTreeWidget->selectionModel()->hasSelection()) + return; + + tableToBrowse.setSchema(ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), DbStructureModel::ColumnSchema), Qt::EditRole).toString().toStdString()); + tableToBrowse.setName(ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), DbStructureModel::ColumnName), Qt::EditRole).toString().toStdString()); + } + + ui->tableBrowser->setCurrentTable(tableToBrowse); + if (ui->mainTab->indexOf(ui->browser) == -1) + ui->mainTab->addTab(ui->browser, ui->browser->accessibleName()); + ui->mainTab->setCurrentWidget(ui->browser); +} + +void SqliteDBMainWindow::copyCurrentCreateStatement() +{ + // Cancel if no field is currently selected + if(!ui->dbTreeWidget->selectionModel()->hasSelection()) + return; + + // Get the CREATE statement from the Schema column + QString stmt = ui->dbTreeWidget->model()->data(ui->dbTreeWidget->currentIndex().sibling(ui->dbTreeWidget->currentIndex().row(), 3), Qt::EditRole).toString(); + + // Copy the statement to the global application clipboard + QApplication::clipboard()->setText(stmt); +} + +void SqliteDBMainWindow::fileOpenReadOnly() +{ + // Redirect to 'standard' fileOpen(), with the read only flag set + fileOpen(QString(), false, true); +} + +void SqliteDBMainWindow::requestCollation(const QString& name, int eTextRep) +{ + QMessageBox::StandardButton reply = QMessageBox::question( + this, + tr("Collation needed! Proceed?"), + tr("A table in this database requires a special collation function '%1' " + "that this application can't provide without further knowledge.\n" + "If you choose to proceed, be aware bad things can happen to your database.\n" + "Create a backup!").arg(name), QMessageBox::Yes | QMessageBox::No); + if(reply == QMessageBox::Yes) { + auto pDb = db.get(tr("creating collation")); + sqlite3_create_collation(pDb.get(), name.toUtf8(), eTextRep, nullptr, collCompare); + } +} + +void SqliteDBMainWindow::renameSqlTab(int index) +{ + QString new_name = QInputDialog::getText(this, + qApp->applicationName(), + tr("Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut."), + QLineEdit::EchoMode::Normal, + ui->tabSqlAreas->tabText(index)); + + if(!new_name.isNull()) // Don't do anything if the Cancel button was clicked + ui->tabSqlAreas->setTabText(index, new_name); +} + +void SqliteDBMainWindow::setFindFrameVisibility(bool show) +{ + // Set the find frame visibility for all tabs, but leave the + // current as the last, to retain there the focus. + for(int i=0;itabSqlAreas->count();i++) + if (i != ui->tabSqlAreas->currentIndex()) + qobject_cast(ui->tabSqlAreas->widget(i))->setFindFrameVisibility(show); + if (ui->tabSqlAreas->count()>0) + qobject_cast(ui->tabSqlAreas->currentWidget())->setFindFrameVisibility(show); +} + +void SqliteDBMainWindow::openFindReplaceDialog() +{ + // The slot for the shortcut must discover which sqltexedit widget has the focus and then open its dialog. + SqlExecutionArea* sqlWidget = qobject_cast(ui->tabSqlAreas->currentWidget()); + + if (sqlWidget) + sqlWidget->getEditor()->openFindReplaceDialog(); +} + +void SqliteDBMainWindow::toggleSqlBlockComment() +{ + // The slot for the shortcut must discover which sqltexedit widget has the focus + SqlExecutionArea* sqlWidget = qobject_cast(ui->tabSqlAreas->currentWidget()); + + if (sqlWidget) + sqlWidget->getEditor()->toggleBlockComment(); +} + +void SqliteDBMainWindow::openSqlPrintDialog() +{ + // The slot for the shortcut must discover which sqltexedit widget has the focus and then open its dialog. + SqlExecutionArea* sqlWidget = qobject_cast(ui->tabSqlAreas->currentWidget()); + + if (sqlWidget) + sqlWidget->getEditor()->openPrintDialog(); +} + +void SqliteDBMainWindow::saveAsView(const std::string& query) +{ + // Let the user select a name for the new view and make sure it doesn't already exist + QString name; + while(true) + { + name = QInputDialog::getText(this, qApp->applicationName(), tr("Please specify the view name")).trimmed(); + if(name.isNull()) + return; + if(db.getObjectByName(sqlb::ObjectIdentifier("main", name.toStdString())) != nullptr) + QMessageBox::warning(this, qApp->applicationName(), tr("There is already an object with that name. Please choose a different name.")); + else + break; + } + + // Create the view + if(db.executeSQL("CREATE VIEW " + sqlb::escapeIdentifier(name.toStdString()) + " AS " + query + ";")) + QMessageBox::information(this, qApp->applicationName(), tr("View successfully created.")); + else + QMessageBox::warning(this, qApp->applicationName(), tr("Error creating view: %1").arg(db.lastError())); +} + +void SqliteDBMainWindow::runSqlNewTab(const QString& query, const QString& title, const QString& helpUrl, const bool autoRun) +{ + QString message; + + if(autoRun) + message = tr("This action will open a new SQL tab for running:"); + else + message = tr("This action will open a new SQL tab with the following statements for you to edit and run:"); + + message += QString("
%1
").arg(query) + + tr("Press Help for opening the corresponding SQLite reference page."); + + QString windowTitle = title; + windowTitle.remove('&'); + + switch (QMessageBox::information(this, windowTitle, message, QMessageBox::Ok | QMessageBox::Default, QMessageBox::Cancel | QMessageBox::Escape, QMessageBox::Help)) + { + case QMessageBox::Ok: { + if (ui->mainTab->indexOf(ui->query) == -1) + ui->mainTab->addTab(ui->query, ui->query->accessibleName()); + ui->mainTab->setCurrentWidget(ui->query); + int index = openSqlTab(); + ui->tabSqlAreas->setTabText(index, title); + qobject_cast(ui->tabSqlAreas->widget(index))->getEditor()->setText(query); + if(autoRun) + executeQuery(); + break; + } + case QMessageBox::Help: { + QDesktopServices::openUrl(QUrl(helpUrl)); + break; + } + default: + return; + } +} + +void SqliteDBMainWindow::printDbStructure () +{ + const QTreeView* treeView = ui->dbTreeWidget; + const QAbstractItemModel* model = treeView->model(); + + const int rowCount = model->rowCount(treeView->rootIndex()); + const int columnCount = model->columnCount(treeView->rootIndex()); + + QString strStream; + QTextStream out(&strStream); + + out << "" + << QString("%1").arg(treeView->windowTitle()) + << ""; + + for (int row = 0; row < rowCount; row++) { + + QModelIndex headerIndex = model->index(row, 0, treeView->rootIndex()); + QString strData = model->data(headerIndex).toString().toHtmlEscaped(); + out << QString("

%1

").arg(strData); + + // Open a new table for each group of objects + out << ""; + + for (int column = 0; column < columnCount; column++) { + // Headers + if (!treeView->isColumnHidden(column)) + out << QString("").arg(model->headerData(column, Qt::Horizontal).toString().toHtmlEscaped()); + } + out << ""; + + for (int column = 0; column < columnCount; column++) { + QModelIndex groupIndex = model->index(row, column, treeView->rootIndex()); + + // A row for the object name + for (int rowChild = 0; rowChild < model->rowCount(groupIndex); rowChild++) { + QModelIndex objectIndex = model->index(rowChild, column, groupIndex); + out << ""; + for (int column2 = 0; column2 < columnCount; column2++) { + if (!treeView->isColumnHidden(column2)) { + QModelIndex cellIndex = model->index(rowChild, column2, groupIndex); + QString header_data = model->data(cellIndex).toString().toHtmlEscaped(); + if (column2 != DbStructureModel::ColumnSQL) + out << QString("").arg((!header_data.isEmpty()) ? header_data : QString(" ")); + else + out << QString("").arg((!header_data.isEmpty()) ? header_data : QString(" ")); + } + } + out << ""; + + // One row for each object's fields + for (int rowChild2 = 0; rowChild2 < model->rowCount(objectIndex); rowChild2++) { + out << ""; + for (int column2 = 0; column2 < columnCount; column2++) { + if (!treeView->isColumnHidden(column2)) { + QModelIndex fieldIndex = model->index(rowChild2, column2, objectIndex); + QString field_data = model->data(fieldIndex).toString().toHtmlEscaped(); + out << QString("").arg((!field_data.isEmpty()) ? field_data : QString(" ")); + } + } + out << ""; + } + } + } + out << "
%1

%1

%1
%1
"; + } + out << ""; + + QPrinter printer; + printer.setDocName(treeView->windowTitle()); + + QPrintPreviewDialog *dialog = new QPrintPreviewDialog(&printer); + connect(dialog, &QPrintPreviewDialog::paintRequested, [strStream](QPrinter *previewPrinter) { + QTextDocument document; + document.setHtml(strStream); + document.print(previewPrinter); + }); + + dialog->exec(); + delete dialog; + +} + +void SqliteDBMainWindow::updateDatabaseBusyStatus(bool busy, const QString& user) +{ + statusBusyLabel->setText(tr("Busy (%1)").arg(user)); + statusBusyLabel->setVisible(busy); + statusStopButton->setVisible(busy); +} + + +void SqliteDBMainWindow::closeTab(int index) +{ + ui->mainTab->removeTab(index); +} + +void SqliteDBMainWindow::toggleTabVisible(QWidget* tabWidget, bool show) +{ + if (show) + ui->mainTab->addTab(tabWidget, tabWidget->accessibleName()); + else + ui->mainTab->removeTab(ui->mainTab->indexOf(tabWidget)); +} + +void SqliteDBMainWindow::restoreOpenTabs(QString tabs) +{ + // Split the tab list, skiping the empty parts so the empty string turns to an empty list + // and not a list of one empty string. + QStringList tabList = tabs.split(' ', QString::SkipEmptyParts); + + // Clear the tabs and then add them in the order specified by the setting. + // Use the accessibleName attribute for restoring the tab label. + if (!tabList.isEmpty()) { + // Avoid flickering while clearing and adding tabs. + ui->mainTab->setUpdatesEnabled(false); + ui->mainTab->clear(); + for (const auto& objectName : tabList) { + for (QWidget* widget : {ui->structure, ui->browser, ui->pragmas, ui->query}) + if (widget->objectName() == objectName) { + ui->mainTab->addTab(widget, widget->accessibleName()); + break; + } + } + ui->mainTab->setUpdatesEnabled(true); + // Force the update of the View menu toggable entries + // (it doesn't seem to be a better way) + emit ui->mainTab->tabCloseRequested(-1); + } +} + +QString SqliteDBMainWindow::saveOpenTabs() +{ + QString openTabs; + for (int i=0; i < ui->mainTab->count(); i++) + openTabs.append(ui->mainTab->widget(i)->objectName() + ' '); + openTabs.chop(1); + return openTabs; +} + +void SqliteDBMainWindow::showStatusMessage5s(QString message) +{ + ui->statusbar->showMessage(message, 5000); +} + +void SqliteDBMainWindow::saveAll() +{ + for(int i=0; itabSqlAreas->count(); i++) { + SqlExecutionArea* sqlExecArea = qobject_cast(ui->tabSqlAreas->widget(i)); + if(sqlExecArea->getEditor()->isModified() && !sqlExecArea->fileName().isEmpty()) + saveSqlFile(i); + } + if(!currentProjectFilename.isEmpty()) + saveProject(); + fileSave(); + +} + +void SqliteDBMainWindow::showContextMenuSqlTabBar(const QPoint& pos) +{ + // Don't show context menu if the mouse click was outside of all the tabs + int tab = ui->tabSqlAreas->tabBar()->tabAt(pos); + if(tab == -1) + return; + + // Prepare all menu actions + QAction* actionRename = new QAction(this); + actionRename->setText(tr("Rename Tab")); + connect(actionRename, &QAction::triggered, [this, tab]() { + renameSqlTab(tab); + }); + + QAction* actionDuplicate = new QAction(this); + actionDuplicate->setText(tr("Duplicate Tab")); + connect(actionDuplicate, &QAction::triggered, [this, tab]() { + QString tab_name = ui->tabSqlAreas->tabText(tab).remove("&").remove(QRegExp(" \\(\\d+\\)$")); + QString new_tab_name; + for(int i=1;;i++) + { + new_tab_name = tab_name + QString(" (%1)").arg(i); + bool name_already_exists = false; + for(int j=0;jtabSqlAreas->count();j++) + { + if(ui->tabSqlAreas->tabText(j).remove("&") == new_tab_name) + { + name_already_exists = true; + break; + } + } + + if(!name_already_exists) + break; + } + + int new_tab = openSqlTab(); + ui->tabSqlAreas->setTabText(new_tab, new_tab_name); + + SqlExecutionArea* old_area = qobject_cast(ui->tabSqlAreas->widget(tab)); + SqlExecutionArea* new_area = qobject_cast(ui->tabSqlAreas->widget(new_tab)); + new_area->setSql(old_area->getSql()); + }); + + QAction* actionClose = new QAction(this); + actionClose->setText(tr("Close Tab")); + actionClose->setShortcut(tr("Ctrl+W")); + connect(actionClose, &QAction::triggered, [this, tab]() { + closeSqlTab(tab); + }); + + // Show menu + QMenu* menuTabs = new QMenu(this); + menuTabs->addAction(actionRename); + menuTabs->addAction(actionDuplicate); + menuTabs->addAction(actionClose); + menuTabs->exec(ui->tabSqlAreas->mapToGlobal(pos)); +} + +void SqliteDBMainWindow::openUrlOrFile(const QString& urlString) +{ + QUrl url = QUrl::fromUserInput(urlString, QFileInfo(db.currentFile()).path(), QUrl::AssumeLocalFile); + if(url.isValid()) { + if(QDesktopServices::openUrl(url)) + showStatusMessage5s(tr("Opening '%1'...").arg(url.toDisplayString())); + else + showStatusMessage5s(tr("There was an error opening '%1'...").arg(url.toDisplayString())); + + } else + showStatusMessage5s(tr("Value is not a valid URL or filename: %1").arg(url.errorString())); +} + +void SqliteDBMainWindow::focusSqlEditor() +{ + SqlExecutionArea* sqlArea = qobject_cast(ui->tabSqlAreas->currentWidget()); + if(sqlArea) + sqlArea->getEditor()->setFocus(); +} + +void SqliteDBMainWindow::moveDocksTo(Qt::DockWidgetArea area) +{ + addDockWidget(area, ui->dockEdit); + addDockWidget(area, ui->dockLog); + tabifyDockWidget(ui->dockLog, ui->dockPlot); + tabifyDockWidget(ui->dockLog, ui->dockSchema); + tabifyDockWidget(ui->dockLog, ui->dockRemote); +} diff --git a/src/SqliteDBProcess/src/SqliteDBMainWindow.h b/src/SqliteDBProcess/src/SqliteDBMainWindow.h new file mode 100644 index 0000000..6ca3dc4 --- /dev/null +++ b/src/SqliteDBProcess/src/SqliteDBMainWindow.h @@ -0,0 +1,208 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H +#include "WBFZExchangePluginAPI.h" +#include "sqlitedb.h" + +#include +#include + +struct BrowseDataTableSettings; +class DbStructureModel; +class EditDialog; +class ExtendedTableWidget; +class FindReplaceDialog; +class PlotDock; +class RemoteDock; +class RunSql; +class SqliteTableModel; + +class QDragEnterEvent; +class QModelIndex; +class QLabel; +class QPersistentModelIndex; +class QToolButton; + +namespace Ui { +class SqliteDBMainWindow; +} + +class SqliteDBMainWindow : public QMainWindow +{ + Q_OBJECT + +public: + explicit SqliteDBMainWindow(QWidget* parent = nullptr); + ~SqliteDBMainWindow() override; + + DBBrowserDB& getDb() { return db; } + +private: + struct PragmaValues + { + int autovacuum; + int automatic_index; + int checkpoint_fullsync; + int foreign_keys; + int fullfsync; + int ignore_check_constraints; + QString journal_mode; + int journal_size_limit; + QString locking_mode; + int max_page_count; + int page_size; + int recursive_triggers; + int secure_delete; + int synchronous; + int temp_store; + int user_version; + int wal_autocheckpoint; + int case_sensitive_like; + } pragmaValues; + + Ui::SqliteDBMainWindow* ui; + + DBBrowserDB db; + + SqliteTableModel* m_currentTabTableModel; + + QMenu* popupTableMenu; + QMenu* popupSchemaDockMenu; + QMenu* recentFilesMenu; + QMenu* popupOpenDbMenu; + QMenu* popupSaveSqlFileMenu; + QMenu* popupSaveSqlResultsMenu; + + QLabel* statusEncodingLabel; + QLabel* statusEncryptionLabel; + QLabel* statusReadOnlyLabel; + QToolButton* statusStopButton; + QLabel* statusBusyLabel; + + DbStructureModel* dbStructureModel; + + static const int MaxRecentFiles = 5; + QAction *recentFileActs[MaxRecentFiles]; + QAction *recentSeparatorAct; + + EditDialog* editDock; + PlotDock* plotDock; + //RemoteDock* remoteDock; + FindReplaceDialog* findReplaceDialog; + + std::unique_ptr execute_sql_worker; + + QString defaultOpenTabs; + QByteArray defaultWindowState; + + QString currentProjectFilename; + bool isProjectModified; + + void init(); + void clearCompleterModelsFields(); + + void updateRecentFileActions(); + void setCurrentFile(const QString& fileName); + void addToRecentFilesMenu(const QString& filename, bool read_only = false); + void activateFields(bool enable = true); + void saveAsView(const std::string& query); + void attachPlot(ExtendedTableWidget* tableWidget, SqliteTableModel* model, BrowseDataTableSettings* settings = nullptr, bool keepOrResetSelection = true); + + void toggleTabVisible(QWidget* tabWidget, bool show); + void restoreOpenTabs(QString tabs); + QString saveOpenTabs(); + void saveProject(const QString& currentFilename); + bool closeFiles(); + bool closeProject(); + bool askSaveSqlTab(int index, bool& ignoreUnattachedBuffers); + void focusSqlEditor(); + void moveDocksTo(Qt::DockWidgetArea area); + +protected: + void closeEvent(QCloseEvent *) override; + void dragEnterEvent(QDragEnterEvent *event) override; + void dropEvent(QDropEvent *event) override; + void resizeEvent(QResizeEvent *event) override; + +public slots: + bool fileOpen(const QString& fileName = QString(), bool openFromProject = false, bool readOnly = false); + void logSql(const QString &sql, int msgtype); + void dbState(bool dirty); + void refresh(); + void switchToBrowseDataTab(sqlb::ObjectIdentifier tableToBrowse = sqlb::ObjectIdentifier()); + void populateStructure(const sqlb::ObjectIdentifier& old_table = sqlb::ObjectIdentifier{}); + void reloadSettings(); + +private slots: + void createTreeContextMenu(const QPoint & qPoint); + void createSchemaDockContextMenu(const QPoint & qPoint); + void changeTreeSelection(); + void fileNew(); + void fileNewInMemoryDatabase(); + void populateTable(); + bool fileClose(); + void createTable(); + void createIndex(); + void compact(); + void deleteObject(); + void editObject(); + void helpWhatsThis(); + void helpAbout(); + void updateRecordText(const QPersistentModelIndex& idx, const QByteArray& text, bool isBlob); + void toggleEditDock(bool visible); + void dataTableSelectionChanged(const QModelIndex& index); + void doubleClickTable(const QModelIndex& index); + void executeQuery(); + void importTableFromCSV(); + void exportTableToCSV(); + void exportTableToJson(); + void fileSave(); + void fileRevert(); + void exportDatabaseToSQL(); + void importDatabaseFromSQL(); + void openRecentFile(); + void loadPragmas(); + void updatePragmaUi(); + void savePragmas(); + void mainTabSelected( int tabindex ); + int openSqlTab(bool resetCounter = false); + void closeSqlTab(int index, bool force = false); + void changeSqlTab(int index); + void openSqlFile(); + void saveSqlFile(); + void saveSqlFileAs(); + void saveSqlResultsAsCsv(); + void saveSqlResultsAsView(); + void loadExtension(); + void checkNewVersion(const QString& versionstring, const QString& url); + void on_actionWiki_triggered() const; + void on_actionBug_report_triggered() const; + void on_actionFeature_Request_triggered() const; + void on_actionSqlCipherFaq_triggered() const; + void on_actionWebsite_triggered() const; + void on_actionDonatePatreon_triggered() const; + bool loadProject(QString filename = QString(), bool readOnly = false); + void saveProject(); + void saveProjectAs(); + void fileAttach(const QString& fileName = QString()); + void editEncryption(); + void copyCurrentCreateStatement(); + void fileOpenReadOnly(); + void requestCollation(const QString& name, int eTextRep); + void renameSqlTab(int index); + void setFindFrameVisibility(bool show); + void openFindReplaceDialog(); + void toggleSqlBlockComment(); + void openSqlPrintDialog(); + void runSqlNewTab(const QString& query, const QString& title, const QString& helpUrl, const bool autoRun = true); + void printDbStructure(); + void updateDatabaseBusyStatus(bool busy, const QString& user); + void openPreferences(); + void closeTab(int index); + void showStatusMessage5s(QString message); + void saveSqlFile(int tabIndex); + void saveAll(); + void showContextMenuSqlTabBar(const QPoint& pos); + void openUrlOrFile(const QString& urlString); +}; + +#endif diff --git a/src/SqliteDBProcess/src/SqliteDBMainWindow.ui b/src/SqliteDBProcess/src/SqliteDBMainWindow.ui new file mode 100644 index 0000000..49a4af5 --- /dev/null +++ b/src/SqliteDBProcess/src/SqliteDBMainWindow.ui @@ -0,0 +1,3601 @@ + + + SqliteDBMainWindow + + + + 0 + 0 + 1037 + 630 + + + + DB Browser for SQLite + + + + :/icons/appicon:/icons/appicon + + + + + 3 + + + 3 + + + 3 + + + 3 + + + 3 + + + + + 3 + + + true + + + true + + + + Database Structure + + + 数据库接口 + + + + 3 + + + 3 + + + 3 + + + 3 + + + 3 + + + + + toolBar1 + + + Qt::ToolButtonTextBesideIcon + + + + + + + + + + + + + Qt::CustomContextMenu + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + + + true + + + QAbstractItemView::DragDrop + + + true + + + QAbstractItemView::ScrollPerPixel + + + true + + + + + + + + Browse Data + + + 数据浏览 + + + + 3 + + + 3 + + + 3 + + + 3 + + + 3 + + + + + + + + + Edit Pragmas + + + 参数编辑 + + + + 3 + + + 3 + + + 3 + + + 3 + + + 3 + + + + + true + + + + + 0 + 0 + 739 + 489 + + + + + QFormLayout::ExpandingFieldsGrow + + + + + <html><head/><body><p>自动清理 <a href="http://www.sqlite.org/pragma.html#pragma_auto_vacuum"><img src=":/icons/whatis"/></a></p></body></html> + + + true + + + Qt::LinksAccessibleByMouse + + + comboboxPragmaAutoVacuum + + + + + + + + None + + + + + Full + + + + + Incremental + + + + + + + + <html><head/><body><p>自动索引 <a href="http://www.sqlite.org/pragma.html#pragma_automatic_index"><img src=":/icons/whatis"/></a></p></body></html> + + + true + + + checkboxPragmaAutomaticIndex + + + + + + + + + + + + + + <html><head/><body><p>LIKE检索是否区分大小写 <a href="https://www.sqlite.org/pragma.html#pragma_case_sensitive_like"><img src=":/icons/whatis"/></a></p></body></html> + + + true + + + checkboxPragmaCaseSensitiveLike + + + + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + + + + + + + + + + <html><head/><body><p>Checkpoint Full FSYNC <a href="https://www.sqlite.org/pragma.html#pragma_checkpoint_fullfsync"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + checkboxPragmaCheckpointFullFsync + + + + + + + + + + + + + + <html><head/><body><p>Foreign Keys <a href="https://www.sqlite.org/pragma.html#pragma_foreign_keys"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + checkboxPragmaForeignKeys + + + + + + + + + + + + + + <html><head/><body><p>Full FSYNC <a href="https://www.sqlite.org/pragma.html#pragma_fullfsync"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + checkboxPragmaFullFsync + + + + + + + + + + + + + + <html><head/><body><p>Ignore Check Constraints <a href="https://www.sqlite.org/pragma.html#pragma_ignore_check_constraints"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + checkboxPragmaIgnoreCheckConstraints + + + + + + + + + + + + + + <html><head/><body><p>Journal Mode <a href="https://www.sqlite.org/pragma.html#pragma_journal_mode"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + comboboxPragmaJournalMode + + + + + + + + Delete + + + + + Truncate + + + + + Persist + + + + + Memory + + + + + WAL + + + + + Off + + + + + + + + <html><head/><body><p>Journal Size Limit <a href="https://www.sqlite.org/pragma.html#pragma_journal_size_limit"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + spinPragmaJournalSizeLimit + + + + + + + -1 + + + 100000 + + + + + + + <html><head/><body><p>Locking Mode <a href="https://www.sqlite.org/pragma.html#pragma_locking_mode"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + comboboxPragmaLockingMode + + + + + + + + Normal + + + + + Exclusive + + + + + + + + <html><head/><body><p>Max Page Count <a href="https://www.sqlite.org/pragma.html#pragma_max_page_count"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + spinPragmaMaxPageCount + + + + + + + 2000000000 + + + + + + + <html><head/><body><p>Page Size <a href="https://www.sqlite.org/pragma.html#pragma_page_size"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + comboPragmaPageSize + + + + + + + + 512 + + + + + 1024 + + + + + 2048 + + + + + 4096 + + + + + 8192 + + + + + 16384 + + + + + 32768 + + + + + 65536 + + + + + + + + <html><head/><body><p>Recursive Triggers <a href="https://www.sqlite.org/pragma.html#pragma_recursive_triggers"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + checkboxPragmaRecursiveTriggers + + + + + + + + + + + + + + <html><head/><body><p>Secure Delete <a href="https://www.sqlite.org/pragma.html#pragma_secure_delete"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + checkboxPragmaSecureDelete + + + + + + + + + + + + + + <html><head/><body><p>Synchronous <a href="https://www.sqlite.org/pragma.html#pragma_synchronous"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + comboboxPragmaSynchronous + + + + + + + + Off + + + + + Normal + + + + + Full + + + + + + + + <html><head/><body><p>Temp Store <a href="https://www.sqlite.org/pragma.html#pragma_temp_store"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + comboboxPragmaTempStore + + + + + + + + Default + + + + + File + + + + + Memory + + + + + + + + <html><head/><body><p>User Version <a href="https://www.sqlite.org/pragma.html#pragma_user_version"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + spinPragmaUserVersion + + + + + + + 2147483647 + + + + + + + <html><head/><body><p>WAL Auto Checkpoint <a href="https://www.sqlite.org/pragma.html#pragma_wal_autocheckpoint"><img src=":/icons/whatis"/></a></a></p></body></html> + + + true + + + spinPragmaWalAutoCheckpoint + + + + + + + 10000 + + + + + + + + + + + QDialogButtonBox::Cancel|QDialogButtonBox::Save + + + false + + + + + + + + Execute SQL + + + SQL编辑器 + + + + 3 + + + 3 + + + 3 + + + 3 + + + 3 + + + + + toolBar1 + + + + + + + + + + + + + + + + + + + + + + Qt::CustomContextMenu + + + -1 + + + true + + + + + + + + + + + + + 0 + 0 + 1037 + 22 + + + + + &文件 + + + + &导入 + + + + + + + &导出 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + &编辑 + + + + + + + + + + + + &查看 + + + + + + + + + &工具 + + + + + + + + + + + + + + + + + + + + DB Toolbar + + + Qt::ToolButtonTextBesideIcon + + + TopToolBarArea + + + false + + + + + + + + + + 编辑单元 + + + 2 + + + + + + QDockWidget::AllDockWidgetFeatures + + + 执行日志 + + + 2 + + + + + + + + + + 0 + 30 + + + + 排序依据 + + + comboLogSubmittedBy + + + + + + + + 0 + 30 + + + + + User + + + + + Application + + + + + Error Log + + + + + + + + Qt::Horizontal + + + + 20 + 20 + + + + + + + + + 0 + 30 + + + + This button clears the contents of the SQL logs + + + &Clear + + + + + + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + + + 0 + + + + + Monospace + 8 + + + + true + + + + + + Monospace + 8 + + + + true + + + + + + Monospace + 8 + + + + true + + + + + + + + + + QDockWidget::AllDockWidgetFeatures + + + &绘图 + + + 2 + + + + + + + + 数据模式 + + + 2 + + + + + + + Qt::CustomContextMenu + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + + + true + + + QAbstractItemView::DragDrop + + + true + + + QAbstractItemView::ExtendedSelection + + + QAbstractItemView::SelectItems + + + QAbstractItemView::ScrollPerPixel + + + true + + + + + + + + + &Remote + + + 2 + + + + + + Project Toolbar + + + Qt::ToolButtonTextBesideIcon + + + TopToolBarArea + + + false + + + + + + + true + + + Extra DB toolbar + + + Close the current database file + + + Qt::ToolButtonTextBesideIcon + + + TopToolBarArea + + + false + + + + + + + + :/icons/db_new:/icons/db_new + + + &创建新属性表库 + + + Create a new database file + + + Create a new database file + + + This option is used to create a new database file. + + + Ctrl+N + + + QAction::NoRole + + + + + + :/icons/db_open:/icons/db_open + + + &打开属性库 + + + Open an existing database file + + + Open an existing database file + + + This option is used to open an existing database file. + + + Ctrl+O + + + QAction::NoRole + + + + + false + + + + :/icons/close:/icons/close + + + &关闭数据库 + + + Close the current database file + + + Close the current database file + + + This button closes the connection to the currently open database file + + + Ctrl+F4 + + + QAction::NoRole + + + + + false + + + + :/icons/db_revert:/icons/db_revert + + + &撤销更改 + + + Revert database to last saved state + + + Revert database to last saved state + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + + + QAction::NoRole + + + + + false + + + + :/icons/db_save:/icons/db_save + + + &保存更改 + + + Write changes to the database file + + + Write changes to the database file + + + This option is used to save changes to the database file. + + + Ctrl+S + + + QAction::NoRole + + + + + false + + + 压缩与修复数据库 + + + Compact the database file, removing space wasted by deleted records + + + Compact the database file, removing space wasted by deleted records. + + + Compact the database file, removing space wasted by deleted records. + + + QAction::NoRole + + + + + E&xit + + + Ctrl+Q + + + QAction::QuitRole + + + + + &从SQL + + + Import data from an .sql dump text file into a new or existing database. + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + + + QAction::NoRole + + + + + &从CSV + + + Open a wizard that lets you import data from a comma separated text file into a database table. + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + + + QAction::NoRole + + + + + &到SQL + + + Export a database to a .sql dump text file. + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + + + QAction::NoRole + + + + + &导出到CSV + + + Export a database table as a comma separated text file. + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + + + QAction::NoRole + + + + + false + + + + :/icons/table_create:/icons/table_create + + + &创建表 + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + + + QAction::NoRole + + + + + false + + + + :/icons/table_delete:/icons/table_delete + + + &删除表 + + + Delete Table + + + Open the Delete Table wizard, where you can select a database table to be dropped. + + + QAction::NoRole + + + + + false + + + + :/icons/table_modify:/icons/table_modify + + + &修改表 + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + + + QAction::NoRole + + + + + false + + + + :/icons/index_create:/icons/index_create + + + 创建索引 + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + + + QAction::NoRole + + + + + + :/icons/settings:/icons/settings + + + &设置 + + + Open the preferences window. + + + Open the preferences window. + + + QAction::PreferencesRole + + + + + true + + + + :/icons/toolbar:/icons/toolbar + + + &数据库工具条 + + + Shows or hides the Database toolbar. + + + QAction::NoRole + + + + + + :/icons/whatis:/icons/whatis + + + W&hat's This? + + + Shift+F1 + + + QAction::NoRole + + + + + &About + + + QAction::AboutRole + + + + + &Recently opened + + + + + + :/icons/open_tab:/icons/open_tab + + + Open &tab + + + This button opens a new tab for the SQL editor + + + Ctrl+T + + + + + + :/icons/run:/icons/run + + + &Execute SQL + + + Execute all/selected SQL + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + + + Ctrl+Return + + + + + + :/icons/document_open:/icons/document_open + + + Open SQL file(s) + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + + :/icons/save_sql:/icons/save_sql + + + Save SQL file + + + + + false + + + + :/icons/load_extension:/icons/load_extension + + + &Load Extension... + + + false + + + QAction::NoRole + + + + + + :/icons/run_line:/icons/run_line + + + Execute current line + + + Execute line + + + Execute current line + + + This button executes the SQL statement present in the current editor line + + + Shift+F5 + + + + + false + + + Export as CSV file + + + Export table as comma separated values file + + + + + + :/icons/browser_open:/icons/browser_open + + + &Wiki + + + F1 + + + QAction::NoRole + + + + + + :/icons/browser_open:/icons/browser_open + + + Bug &Report... + + + QAction::NoRole + + + + + + :/icons/browser_open:/icons/browser_open + + + Feature Re&quest... + + + QAction::NoRole + + + + + + :/icons/browser_open:/icons/browser_open + + + Web&site + + + QAction::NoRole + + + + + + :/icons/browser_open:/icons/browser_open + + + &Donate on Patreon... + + + QAction::NoRole + + + + + + :/icons/project_save:/icons/project_save + + + 保存功能 + + + Save the current session to a file + + + Save the current session to a file + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + QAction::NoRole + + + + + + :/icons/project_open:/icons/project_open + + + 打开工程 + + + Load a working session from a file + + + Load a working session from a file + + + This button lets you open a DB Browser for SQLite project file + + + QAction::NoRole + + + + + false + + + + :/icons/db_attach:/icons/db_attach + + + & 附加数据库 + + + Add another database file to the current database connection + + + Add another database file to the current database connection + + + This button lets you add another database file to the current database connection + + + false + + + QAction::NoRole + + + + + + :/icons/encryption:/icons/encryption + + + &加密 + + + QAction::NoRole + + + + + + :/icons/save_sql:/icons/save_sql + + + Save SQL file as + + + Save SQL file as + + + + + + :/icons/save_sql:/icons/save_sql + + + Save SQL file + + + Save SQL file + + + This button saves the content of the current SQL editor tab to a file + + + + + + :/icons/table:/icons/table + + + &Browse Table + + + + + + :/icons/copy:/icons/copy + + + Copy Create statement + + + Copy the CREATE statement of the item to the clipboard + + + + + + :/icons/browser_open:/icons/browser_open + + + SQLCipher &FAQ + + + Opens the SQLCipher FAQ in a browser window + + + + + 导出JSON + + + Export one or more table(s) to a JSON file + + + QAction::NoRole + + + + + + :/icons/db_open:/icons/db_open + + + Open Data&base Read Only... + + + Open an existing database file in read only mode + + + Open an existing database file + + + This option is used to open an existing database file. + + + Ctrl+Shift+O + + + false + + + QAction::NoRole + + + + + + :/icons/save_table:/icons/save_table + + + Save results + + + Save the results view + + + This button lets you save the results of the last executed query + + + + + true + + + + :/icons/find:/icons/find + + + Find text in SQL editor + + + Find + + + Find text in SQL editor + + + This button opens the search bar of the editor + + + Ctrl+F + + + Qt::WidgetShortcut + + + + + false + + + + :/icons/text_replace:/icons/text_replace + + + Find or replace text in SQL editor + + + Find or replace + + + Find or replace text in SQL editor + + + This button opens the find/replace dialog for the current editor tab + + + Ctrl+H + + + Qt::WidgetShortcut + + + + + Export to &CSV + + + + + Save as &view + + + Save as view + + + + + true + + + false + + + + :/icons/toolbar:/icons/toolbar + + + 项目工具条 + + + Shows or hides the Project toolbar. + + + QAction::NoRole + + + + + true + + + + :/icons/toolbar:/icons/toolbar + + + 扩展数据工具条 + + + + + + :/icons/db_open:/icons/db_open + + + &打开已有属性表库 + + + Open an existing database file + + + Open an existing database file + + + This option is used to open an existing database file. + + + QAction::TextHeuristicRole + + + + + false + + + New In-&Memory Database + + + false + + + + + true + + + Drag && Drop Qualified Names + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + + + + + true + + + Drag && Drop Enquoted Names + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + + + + + &完整性检查 + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + + + + + &外键检查 + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + + + + + &快速完整性检查 + + + Run a quick integrity check over the open DB + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + + + + + &优化 + + + Attempt to optimize the database + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + + + + + + :/icons/print:/icons/print + + + Print + + + Print text from current SQL editor tab + + + + + + Open a dialog for printing the text in the current SQL editor tab + + + Ctrl+P + + + Qt::WidgetShortcut + + + + + false + + + + :/icons/print:/icons/print + + + Print + + + Print the structure of the opened database + + + + + + Open a dialog for printing the structure of the opened database + + + Ctrl+P + + + Qt::WidgetShortcut + + + false + + + + + + :/icons/comment_block:/icons/comment_block + + + Un/comment block of SQL code + + + Un/comment block + + + Comment or uncomment current line or selected block of code + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + + + Ctrl+/ + + + Qt::WidgetShortcut + + + + + + :/icons/cancel:/icons/cancel + + + Stop SQL execution + + + Stop execution + + + Stop the currently running SQL script + + + + + + :/icons/project_save_as:/icons/project_save_as + + + &工程另存为 + + + Save the project in a file selected in a dialog + + + Save the project in a file selected in a dialog + + + Save the project in a file selected in a dialog + + + + + + :/icons/save_all:/icons/save_all + + + Save A&ll + + + Save DB file, project file and opened SQL files + + + Save DB file, project file and opened SQL files + + + Save DB file, project file and opened SQL files + + + Ctrl+Shift+S + + + + + + :/icons/table:/icons/table + + + Browse Table + + + + + + SqlTextEdit + QTextEdit +
sqltextedit.h
+ 1 +
+ + ExtendedScintilla + QTextEdit +
ExtendedScintilla.h
+ 1 +
+ + TableBrowser + QWidget +
TableBrowser.h
+ 1 +
+
+ + mainTab + dbTreeWidget + comboLogSubmittedBy + buttonLogClear + treeSchemaDock + scrollareaPragmas + comboboxPragmaAutoVacuum + checkboxPragmaAutomaticIndex + checkboxPragmaCaseSensitiveLike + checkboxPragmaCheckpointFullFsync + checkboxPragmaForeignKeys + checkboxPragmaFullFsync + checkboxPragmaIgnoreCheckConstraints + comboboxPragmaJournalMode + spinPragmaJournalSizeLimit + comboboxPragmaLockingMode + spinPragmaMaxPageCount + comboPragmaPageSize + checkboxPragmaSecureDelete + checkboxPragmaRecursiveTriggers + comboboxPragmaSynchronous + comboboxPragmaTempStore + spinPragmaUserVersion + spinPragmaWalAutoCheckpoint + tabSqlAreas + + + + + + + fileExitAction + triggered() + SqliteDBMainWindow + close() + + + -1 + -1 + + + 399 + 299 + + + + + fileOpenAction + triggered() + SqliteDBMainWindow + fileOpen() + + + -1 + -1 + + + 399 + 299 + + + + + fileNewAction + triggered() + SqliteDBMainWindow + fileNew() + + + -1 + -1 + + + 399 + 299 + + + + + fileCloseAction + triggered() + SqliteDBMainWindow + fileClose() + + + -1 + -1 + + + 399 + 299 + + + + + fileCompactAction + triggered() + SqliteDBMainWindow + compact() + + + -1 + -1 + + + 399 + 299 + + + + + helpWhatsThisAction + triggered() + SqliteDBMainWindow + helpWhatsThis() + + + -1 + -1 + + + 399 + 299 + + + + + helpAboutAction + triggered() + SqliteDBMainWindow + helpAbout() + + + -1 + -1 + + + 399 + 299 + + + + + mainTab + currentChanged(int) + SqliteDBMainWindow + mainTabSelected(int) + + + 399 + 315 + + + 399 + 299 + + + + + fileImportCSVAction + triggered() + SqliteDBMainWindow + importTableFromCSV() + + + -1 + -1 + + + 399 + 299 + + + + + fileExportCSVAction + triggered() + SqliteDBMainWindow + exportTableToCSV() + + + -1 + -1 + + + 399 + 299 + + + + + fileRevertAction + triggered() + SqliteDBMainWindow + fileRevert() + + + -1 + -1 + + + 399 + 299 + + + + + fileSaveAction + triggered() + SqliteDBMainWindow + fileSave() + + + -1 + -1 + + + 399 + 299 + + + + + editCreateIndexAction + triggered() + SqliteDBMainWindow + createIndex() + + + -1 + -1 + + + 399 + 299 + + + + + editDeleteObjectAction + triggered() + SqliteDBMainWindow + deleteObject() + + + -1 + -1 + + + 399 + 299 + + + + + editModifyObjectAction + triggered() + SqliteDBMainWindow + editObject() + + + -1 + -1 + + + 399 + 299 + + + + + fileExportSQLAction + triggered() + SqliteDBMainWindow + exportDatabaseToSQL() + + + -1 + -1 + + + 399 + 299 + + + + + fileImportSQLAction + triggered() + SqliteDBMainWindow + importDatabaseFromSQL() + + + -1 + -1 + + + 399 + 299 + + + + + viewPreferencesAction + triggered() + SqliteDBMainWindow + openPreferences() + + + -1 + -1 + + + 399 + 299 + + + + + dbTreeWidget + customContextMenuRequested(QPoint) + SqliteDBMainWindow + createTreeContextMenu(QPoint) + + + 111 + 261 + + + 399 + 299 + + + + + treeSchemaDock + customContextMenuRequested(QPoint) + SqliteDBMainWindow + createSchemaDockContextMenu(QPoint) + + + 111 + 261 + + + 399 + 299 + + + + + viewDBToolbarAction + toggled(bool) + toolbarDB + setVisible(bool) + + + -1 + -1 + + + 399 + 34 + + + + + actionSqlFind + toggled(bool) + SqliteDBMainWindow + setFindFrameVisibility(bool) + + + -1 + -1 + + + 399 + 34 + + + + + actionSqlFindReplace + triggered() + SqliteDBMainWindow + openFindReplaceDialog() + + + -1 + -1 + + + 399 + 34 + + + + + editCreateTableAction + triggered() + SqliteDBMainWindow + createTable() + + + -1 + -1 + + + 399 + 299 + + + + + buttonBoxPragmas + rejected() + SqliteDBMainWindow + loadPragmas() + + + 111 + 540 + + + -1 + 470 + + + + + buttonBoxPragmas + accepted() + SqliteDBMainWindow + savePragmas() + + + 111 + 540 + + + 802 + 522 + + + + + buttonLogClear + clicked() + editLogApplication + clear() + + + 989 + 126 + + + 632 + 173 + + + + + buttonLogClear + clicked() + editLogUser + clear() + + + 989 + 126 + + + 1028 + 230 + + + + + buttonLogClear + clicked() + editLogErrorLog + clear() + + + 989 + 126 + + + 632 + 173 + + + + + comboLogSubmittedBy + currentIndexChanged(int) + stackLog + setCurrentIndex(int) + + + 772 + 135 + + + 1028 + 230 + + + + + tabSqlAreas + tabCloseRequested(int) + SqliteDBMainWindow + closeSqlTab(int) + + + 91 + 259 + + + -1 + 51 + + + + + tabSqlAreas + currentChanged(int) + SqliteDBMainWindow + changeSqlTab(int) + + + 91 + 259 + + + -1 + 51 + + + + + actionExecuteSql + triggered() + SqliteDBMainWindow + executeQuery() + + + -1 + -1 + + + 399 + 299 + + + + + actionSqlOpenTab + triggered() + SqliteDBMainWindow + openSqlTab() + + + -1 + -1 + + + 399 + 299 + + + + + actionSqlOpenFile + triggered() + SqliteDBMainWindow + openSqlFile() + + + -1 + -1 + + + 399 + 299 + + + + + actionSqlSaveFile + triggered() + SqliteDBMainWindow + saveSqlFile() + + + -1 + -1 + + + 399 + 299 + + + + + actionLoadExtension + triggered() + SqliteDBMainWindow + loadExtension() + + + -1 + -1 + + + 399 + 299 + + + + + actionSqlExecuteLine + triggered() + SqliteDBMainWindow + executeQuery() + + + -1 + -1 + + + 399 + 299 + + + + + actionExportCsvPopup + triggered() + SqliteDBMainWindow + exportTableToCSV() + + + -1 + -1 + + + 399 + 299 + + + + + actionOpenProject + triggered() + SqliteDBMainWindow + loadProject() + + + -1 + -1 + + + 399 + 299 + + + + + actionSaveProject + triggered() + SqliteDBMainWindow + saveProject() + + + -1 + -1 + + + 399 + 299 + + + + + fileAttachAction + triggered() + SqliteDBMainWindow + fileAttach() + + + -1 + -1 + + + 499 + 314 + + + + + actionEncryption + triggered() + SqliteDBMainWindow + editEncryption() + + + -1 + -1 + + + 499 + 314 + + + + + actionSqlSaveFilePopup + triggered() + SqliteDBMainWindow + saveSqlFile() + + + -1 + -1 + + + 499 + 314 + + + + + actionSqlSaveFileAs + triggered() + SqliteDBMainWindow + saveSqlFileAs() + + + -1 + -1 + + + 499 + 314 + + + + + actionEditBrowseTable + triggered() + SqliteDBMainWindow + switchToBrowseDataTab() + + + -1 + -1 + + + 499 + 314 + + + + + actionEditCopyCreateStatement + triggered() + SqliteDBMainWindow + copyCurrentCreateStatement() + + + -1 + -1 + + + 499 + 314 + + + + + fileExportJsonAction + triggered() + SqliteDBMainWindow + exportTableToJson() + + + -1 + -1 + + + 518 + 314 + + + + + fileOpenReadOnlyAction + triggered() + SqliteDBMainWindow + fileOpenReadOnly() + + + -1 + -1 + + + 518 + 314 + + + + + actionSqlResultsExportCsv + triggered() + SqliteDBMainWindow + saveSqlResultsAsCsv() + + + -1 + -1 + + + 518 + 314 + + + + + actionSqlResultsSaveAsView + triggered() + SqliteDBMainWindow + saveSqlResultsAsView() + + + -1 + -1 + + + 518 + 314 + + + + + tabSqlAreas + tabBarDoubleClicked(int) + SqliteDBMainWindow + renameSqlTab(int) + + + 330 + 372 + + + 518 + 314 + + + + + viewProjectToolbarAction + toggled(bool) + toolbarProject + setVisible(bool) + + + -1 + -1 + + + 887 + 44 + + + + + viewExtraDBToolbarAction + toggled(bool) + toolbarExtraDB + setVisible(bool) + + + -1 + -1 + + + 737 + 44 + + + + + SqliteDBMainWindow + toolButtonStyleChanged(Qt::ToolButtonStyle) + toolbarDB + setToolButtonStyle(Qt::ToolButtonStyle) + + + 518 + 314 + + + 296 + 44 + + + + + SqliteDBMainWindow + toolButtonStyleChanged(Qt::ToolButtonStyle) + toolbarExtraDB + setToolButtonStyle(Qt::ToolButtonStyle) + + + 518 + 314 + + + 737 + 44 + + + + + SqliteDBMainWindow + toolButtonStyleChanged(Qt::ToolButtonStyle) + toolbarProject + setToolButtonStyle(Qt::ToolButtonStyle) + + + 518 + 314 + + + 959 + 44 + + + + + fileOpenActionPopup + triggered() + SqliteDBMainWindow + fileOpen() + + + -1 + -1 + + + 518 + 314 + + + + + fileNewInMemoryDatabaseAction + triggered() + SqliteDBMainWindow + fileNewInMemoryDatabase() + + + -1 + -1 + + + 20 + 20 + + + + + actionSqlPrint + triggered() + SqliteDBMainWindow + openSqlPrintDialog() + + + -1 + -1 + + + 518 + 314 + + + + + actionDbPrint + triggered() + SqliteDBMainWindow + printDbStructure() + + + -1 + -1 + + + 518 + 314 + + + + + actionSqlToggleComment + triggered() + SqliteDBMainWindow + toggleSqlBlockComment() + + + -1 + -1 + + + 518 + 314 + + + + + labelPragmaAutomaticIndex + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaCaseSensitiveLike + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaCheckpointFullFsync + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaForeignKeys + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaFullFsync + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaIgnoreCheckConstraints + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaJournalMode + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaLockingMode + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaMaxPageCount + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaPageSize + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaRecursiveTriggers + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaSecureDelete + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaSynchronous + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaTempStore + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaUserVersion + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaWalAutoCheckpoint + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaAutoVacuum + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelPragmaAutoVacuum + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 85 + 133 + + + 518 + 314 + + + + + labelJournalSizeLimit + linkHovered(QString) + SqliteDBMainWindow + showStatusMessage5s(QString) + + + 99 + 345 + + + 518 + 314 + + + + + actionSaveProjectAs + triggered() + SqliteDBMainWindow + saveProjectAs() + + + -1 + -1 + + + 518 + 314 + + + + + actionSaveAll + triggered() + SqliteDBMainWindow + saveAll() + + + -1 + -1 + + + 518 + 314 + + + + + tabSqlAreas + customContextMenuRequested(QPoint) + SqliteDBMainWindow + showContextMenuSqlTabBar(QPoint) + + + -1 + -1 + + + 20 + 20 + + + + + + fileOpen() + fileClose() + browseFind(bool) + refresh() + compact() + helpWhatsThis() + mainTabSelected(int) + executeQuery() + importTableFromCSV() + exportTableToCSV() + fileRevert() + fileSave() + deleteIndex() + createIndex() + createTable() + deleteObject() + editObject() + editTablePopup() + addField() + editField() + exportDatabaseToSQL() + importDatabaseFromSQL() + openPreferences() + createTreeContextMenu(QPoint) + changeTreeSelection() + fileNew() + helpAbout() + deleteField() + loadPragmas() + savePragmas() + copy() + closeSqlTab(int) + openSqlTab() + openSqlFile() + saveSqlFile() + loadExtension() + loadProject() + saveProject() + fileAttach() + editEncryption() + saveSqlFileAs() + switchToBrowseDataTab() + copyCurrentCreateStatement() + browseDataFetchAllData() + exportTableToJson() + fileOpenReadOnly() + saveSqlResultsAsCsv() + saveSqlResultsAsView() + changeSqlTab(int) + renameSqlTab(int) + fileNewInMemoryDatabase() + showContextMenuSqlTabBar(QPoint) + +
diff --git a/src/SqliteDBProcess/src/SqliteDBProcessmain.cpp b/src/SqliteDBProcess/src/SqliteDBProcessmain.cpp new file mode 100644 index 0000000..4e5b6ee --- /dev/null +++ b/src/SqliteDBProcess/src/SqliteDBProcessmain.cpp @@ -0,0 +1,59 @@ +// +//#include "Application.h" +//#include "sqlite.h" +// +//#include +// +//static QString message = QString(); +// +//void db4sMessageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg) +//{ +// QByteArray localMsg = msg.toLocal8Bit(); +// +// // Emulate the default Qt treatment. This might not work in some OS, like Windows. +// fprintf(stderr, "%s\n", localMsg.constData()); +// +// const char *file = context.file ? context.file : ""; +// const char *function = context.function ? context.function : ""; +// localMsg = QString("%1 (%2, %3:%4)\n").arg(msg).arg(function).arg(file).arg(context.line).toLocal8Bit(); +// +// // Log using the SQLite log mechanism, so it gets the same treatment than messages +// // reported by SQLite itself. This will allow these messages to be seen in our Log window. +// // Error code will be the type +// sqlite3_log(static_cast(type), localMsg.constData()); +//} +// +//void boxMessageOutput(QtMsgType, const QMessageLogContext &, const QString &msg) +//{ +// message += msg + "\n"; +//} +// +//int main( int argc, char ** argv ) +//{ +// +//#ifdef Q_OS_WIN +// // In Windows, there is no output to terminal for a graphical application, so we install +// // the output to message box, until the main window is shown or the application exits. +// qInstallMessageHandler(boxMessageOutput); +//#endif +// +// // Create application object. All the initialisation stuff happens in there +// Application a(argc, argv); +// +// // If there has been invocations to the message handler, show it to user in a message box. +// if(!message.isEmpty()) { +// QMessageBox messageBox; +// messageBox.setTextFormat(Qt::RichText); +// messageBox.setText("
" + message.toHtmlEscaped() + "
"); +// messageBox.exec(); +// } +// +// // Quit application now if user doesn't want to see the UI +// if(a.dontShowMainWindow()) +// return 0; +// +// qInstallMessageHandler(db4sMessageOutput); +// +// // Run application +// return a.exec(); +//} diff --git a/src/SqliteDBProcess/src/TableBrowser.cpp b/src/SqliteDBProcess/src/TableBrowser.cpp new file mode 100644 index 0000000..27475b9 --- /dev/null +++ b/src/SqliteDBProcess/src/TableBrowser.cpp @@ -0,0 +1,1603 @@ +#include "AddRecordDialog.h" +#include "Application.h" +#include "ColumnDisplayFormatDialog.h" +#include "CondFormatManager.h" +#include "Data.h" +#include "DbStructureModel.h" +#include "ExportDataDialog.h" +#include "FilterTableHeader.h" +#include "TableBrowser.h" +#include "Settings.h" +#include "sqlitedb.h" +#include "sqlitetablemodel.h" +#include "ui_TableBrowser.h" + +#include +#include +#include +#include +#include +#include +#include + +QMap TableBrowser::m_settings; +QString TableBrowser::m_defaultEncoding; + +TableBrowser::TableBrowser(QWidget* parent) : + QWidget(parent), + ui(new Ui::TableBrowser), + gotoValidator(new QIntValidator(0, 0, this)), + db(nullptr), + dbStructureModel(nullptr), + m_model(nullptr), + m_adjustRows(false), + m_columnsResized(false) +{ + ui->setupUi(this); + + // Set the validator for the goto line edit + ui->editGoto->setValidator(gotoValidator); + + // Set custom placeholder text for global filter field and disable conditional formats + ui->editGlobalFilter->setPlaceholderText(tr("Filter in any column")); + ui->editGlobalFilter->setConditionFormatContextMenuEnabled(false); + + // Set up popup menus + popupNewRecordMenu = new QMenu(this); + popupNewRecordMenu->addAction(ui->newRecordAction); + popupNewRecordMenu->addAction(ui->insertValuesAction); + ui->actionNewRecord->setMenu(popupNewRecordMenu); + + popupSaveFilterAsMenu = new QMenu(this); + popupSaveFilterAsMenu->addAction(ui->actionFilteredTableExportCsv); + popupSaveFilterAsMenu->addAction(ui->actionFilterSaveAsView); + ui->actionSaveFilterAsPopup->setMenu(popupSaveFilterAsMenu); + qobject_cast(ui->browseToolbar->widgetForAction(ui->actionSaveFilterAsPopup))->setPopupMode(QToolButton::InstantPopup); + + popupHeaderMenu = new QMenu(this); + popupHeaderMenu->addAction(ui->actionShowRowidColumn); + popupHeaderMenu->addAction(ui->actionHideColumns); + popupHeaderMenu->addAction(ui->actionShowAllColumns); + popupHeaderMenu->addAction(ui->actionSelectColumn); + popupHeaderMenu->addSeparator(); + popupHeaderMenu->addAction(ui->actionUnlockViewEditing); + popupHeaderMenu->addAction(ui->actionBrowseTableEditDisplayFormat); + popupHeaderMenu->addSeparator(); + popupHeaderMenu->addAction(ui->actionSetTableEncoding); + popupHeaderMenu->addAction(ui->actionSetAllTablesEncoding); + + connect(ui->actionSelectColumn, &QAction::triggered, [this]() { + ui->dataTable->selectColumn(ui->actionBrowseTableEditDisplayFormat->property("clicked_column").toInt()); + }); + + // Set up shortcuts + QShortcut* dittoRecordShortcut = new QShortcut(QKeySequence("Ctrl+\""), this); + connect(dittoRecordShortcut, &QShortcut::activated, [this]() { + int currentRow = ui->dataTable->currentIndex().row(); + duplicateRecord(currentRow); + }); + + // Lambda function for keyboard shortcuts for selecting next/previous table in Browse Data tab + connect(ui->dataTable, &ExtendedTableWidget::switchTable, [this](bool next) { + int index = ui->comboBrowseTable->currentIndex(); + int num_items = ui->comboBrowseTable->count(); + if(next) + { + if(++index >= num_items) + index = 0; + } else { + if(--index < 0) + index = num_items - 1; + } + ui->comboBrowseTable->setCurrentIndex(index); + updateTable(); + }); + + // This is a workaround needed for QDarkStyleSheet. + // See https://github.com/ColinDuquesnoy/QDarkStyleSheet/issues/169 + QStyledItemDelegate* styledItemDelegate = new QStyledItemDelegate(ui->comboBrowseTable); + ui->comboBrowseTable->setItemDelegate(styledItemDelegate); + + // Add the documentation of shortcuts, which aren't otherwise visible in the user interface, to some buttons. + addShortcutsTooltip(ui->actionRefresh, {QKeySequence(tr("Ctrl+R"))}); + addShortcutsTooltip(ui->actionPrintTable); + + // Set up filters + connect(ui->dataTable->filterHeader(), &FilterTableHeader::filterChanged, this, &TableBrowser::updateFilter); + connect(ui->dataTable->filterHeader(), &FilterTableHeader::addCondFormat, this, &TableBrowser::addCondFormatFromFilter); + connect(ui->dataTable->filterHeader(), &FilterTableHeader::allCondFormatsCleared, this, &TableBrowser::clearAllCondFormats); + connect(ui->dataTable->filterHeader(), &FilterTableHeader::condFormatsEdited, this, &TableBrowser::editCondFormats); + connect(ui->dataTable, &ExtendedTableWidget::editCondFormats, this, &TableBrowser::editCondFormats); + + // Set up global filter + connect(ui->editGlobalFilter, &FilterLineEdit::delayedTextChanged, this, [this](const QString& value) { + // Split up filter values + QStringList values = value.trimmed().split(" ", QString::SkipEmptyParts); + std::vector filters; + for(const auto& s : values) + filters.push_back(s); + + // Have they changed? + BrowseDataTableSettings& settings = m_settings[currentlyBrowsedTableName()]; + if(filters != settings.globalFilters) + { + // Set global filters + m_model->updateGlobalFilter(filters); + updateRecordsetLabel(); + + // Save them + settings.globalFilters = filters; + emit projectModified(); + } + }); + + connect(ui->dataTable, &ExtendedTableWidget::doubleClicked, this, &TableBrowser::selectionChangedByDoubleClick); + connect(ui->dataTable->filterHeader(), &FilterTableHeader::sectionClicked, this, &TableBrowser::headerClicked); + connect(ui->dataTable->filterHeader(), &QHeaderView::sectionDoubleClicked, ui->dataTable, &QTableView::selectColumn); + connect(ui->dataTable->verticalScrollBar(), &QScrollBar::valueChanged, this, &TableBrowser::updateRecordsetLabel); + connect(ui->dataTable->horizontalHeader(), &QHeaderView::sectionResized, this, &TableBrowser::updateRecordsetLabel); + connect(ui->dataTable->verticalHeader(), &QHeaderView::sectionResized, this, &TableBrowser::updateRecordsetLabel); + connect(ui->dataTable->horizontalHeader(), &QHeaderView::sectionResized, this, &TableBrowser::updateColumnWidth); + connect(ui->dataTable->horizontalHeader(), &QHeaderView::customContextMenuRequested, this, &TableBrowser::showDataColumnPopupMenu); + connect(ui->dataTable->verticalHeader(), &QHeaderView::customContextMenuRequested, this, &TableBrowser::showRecordPopupMenu); + connect(ui->dataTable, &ExtendedTableWidget::openFileFromDropEvent, this, &TableBrowser::requestFileOpen); + connect(ui->dataTable, &ExtendedTableWidget::selectedRowsToBeDeleted, this, &TableBrowser::deleteRecord); + + connect(ui->fontComboBox, &QFontComboBox::currentFontChanged, this, [this](const QFont &font) { + modifyFormat([font](CondFormat& format) { format.setFontFamily(font.family()); }); + }); + connect(ui->fontSizeBox, static_cast(&QSpinBox::valueChanged), this, + [this](int pointSize) { + modifyFormat([pointSize](CondFormat& format) { format.setFontPointSize(pointSize); }); + }); + + connect(ui->actionFontColor, &QAction::triggered, this, [this]() { + QColor color = QColorDialog::getColor(QColor(m_model->data(currentIndex(), Qt::ForegroundRole).toString())); + if(color.isValid()) + modifyFormat([color](CondFormat& format) { format.setForegroundColor(color); }); + }); + connect(ui->actionBackgroundColor, &QAction::triggered, this, [this]() { + QColor color = QColorDialog::getColor(QColor(m_model->data(currentIndex(), Qt::BackgroundRole).toString())); + if(color.isValid()) + modifyFormat([color](CondFormat& format) { format.setBackgroundColor(color); }); + }); + + connect(ui->actionBold, &QAction::toggled, this, [this](bool checked) { + modifyFormat([checked](CondFormat& format) { format.setBold(checked); }); + }); + connect(ui->actionItalic, &QAction::toggled, this, [this](bool checked) { + modifyFormat([checked](CondFormat& format) { format.setItalic(checked); }); + }); + connect(ui->actionUnderline, &QAction::toggled, this, [this](bool checked) { + modifyFormat([checked](CondFormat& format) { format.setUnderline(checked); }); + }); + + connect(ui->actionLeftAlign, &QAction::triggered, this, [this]() { + ui->actionLeftAlign->setChecked(true); + ui->actionRightAlign->setChecked(false); + ui->actionCenter->setChecked(false); + ui->actionJustify->setChecked(false); + modifyFormat([](CondFormat& format) { format.setAlignment(CondFormat::AlignLeft); }); + }); + connect(ui->actionRightAlign, &QAction::triggered, this, [this]() { + ui->actionLeftAlign->setChecked(false); + ui->actionRightAlign->setChecked(true); + ui->actionCenter->setChecked(false); + ui->actionJustify->setChecked(false); + modifyFormat([](CondFormat& format) { format.setAlignment(CondFormat::AlignRight); }); + }); + connect(ui->actionCenter, &QAction::triggered, this, [this]() { + ui->actionLeftAlign->setChecked(false); + ui->actionRightAlign->setChecked(false); + ui->actionCenter->setChecked(true); + ui->actionJustify->setChecked(false); + modifyFormat([](CondFormat& format) { format.setAlignment(CondFormat::AlignCenter); }); + }); + connect(ui->actionJustify, &QAction::triggered, this, [this]() { + ui->actionLeftAlign->setChecked(false); + ui->actionRightAlign->setChecked(false); + ui->actionCenter->setChecked(false); + ui->actionJustify->setChecked(true); + modifyFormat([](CondFormat& format) { format.setAlignment(CondFormat::AlignJustify); }); + }); + + connect(ui->actionEditCondFormats, &QAction::triggered, this, [this]() { editCondFormats(static_cast(currentIndex().column())); }); + connect(ui->actionClearFormat, &QAction::triggered, this, [this]() { + for (const size_t column : ui->dataTable->selectedCols()) + clearAllCondFormats(column); + for (const QModelIndex& index : ui->dataTable->selectionModel()->selectedIndexes()) + clearRowIdFormats(index); + + }); + + connect(ui->dataTable, &ExtendedTableWidget::currentIndexChanged, this, [this](const QModelIndex ¤t, const QModelIndex &) { + // Get cell current format for updating the format toolbar values. Block signals, so the format change is not reapplied. + QString font_string = m_model->data(current, Qt::FontRole).toString(); + QFont font; + if(!font_string.isEmpty()) + font.fromString(font_string); + + ui->fontComboBox->blockSignals(true); + ui->fontComboBox->setCurrentFont(font); + ui->fontComboBox->blockSignals(false); + + ui->fontSizeBox->blockSignals(true); + ui->fontSizeBox->setValue(font.pointSize()); + ui->fontSizeBox->blockSignals(false); + + ui->actionBold->blockSignals(true); + ui->actionBold->setChecked(font.bold()); + ui->actionBold->blockSignals(false); + + ui->actionItalic->blockSignals(true); + ui->actionItalic->setChecked(font.italic()); + ui->actionItalic->blockSignals(false); + + ui->actionUnderline->blockSignals(true); + ui->actionUnderline->setChecked(font.underline()); + ui->actionUnderline->blockSignals(false); + + Qt::Alignment align = Qt::Alignment(m_model->data(current, Qt::TextAlignmentRole).toInt()); + ui->actionLeftAlign->blockSignals(true); + ui->actionLeftAlign->setChecked(align.testFlag(Qt::AlignLeft)); + ui->actionLeftAlign->blockSignals(false); + + ui->actionRightAlign->blockSignals(true); + ui->actionRightAlign->setChecked(align.testFlag(Qt::AlignRight)); + ui->actionRightAlign->blockSignals(false); + + ui->actionCenter->blockSignals(true); + ui->actionCenter->setChecked(align.testFlag(Qt::AlignCenter)); + ui->actionCenter->blockSignals(false); + + ui->actionJustify->blockSignals(true); + ui->actionJustify->setChecked(align.testFlag(Qt::AlignJustify)); + ui->actionJustify->blockSignals(false); + }); + + connect(ui->actionToggleFormatToolbar, &QAction::toggled, ui->formatFrame, &QFrame::setVisible); + ui->actionToggleFormatToolbar->setChecked(false); + ui->formatFrame->setVisible(false); + + // Set up find frame + ui->frameFind->hide(); + + QShortcut* shortcutHideFindFrame = new QShortcut(QKeySequence("ESC"), ui->editFindExpression); + connect(shortcutHideFindFrame, &QShortcut::activated, ui->buttonFindClose, &QToolButton::click); + + QShortcut* shortcutActionFind = new QShortcut(QKeySequence("Ctrl+F"), this, nullptr, nullptr, Qt::WidgetWithChildrenShortcut); + connect(shortcutActionFind, &QShortcut::activated, ui->actionFind, &QAction::trigger); + connect(ui->actionFind, &QAction::triggered, [this](bool checked) { + if(checked) + { + ui->widgetReplace->hide(); + ui->frameFind->show(); + ui->editFindExpression->setFocus(); + ui->actionReplace->setChecked(false); + } else { + ui->buttonFindClose->click(); + } + }); + + QShortcut* shortcutActionReplace = new QShortcut(QKeySequence("Ctrl+H"), this, nullptr, nullptr, Qt::WidgetWithChildrenShortcut); + connect(shortcutActionReplace, &QShortcut::activated, ui->actionReplace, &QAction::trigger); + connect(ui->actionReplace, &QAction::triggered, [this](bool checked) { + if(checked) + { + ui->widgetReplace->show(); + ui->frameFind->show(); + ui->editFindExpression->setFocus(); + ui->actionFind->setChecked(false); + } else { + ui->buttonFindClose->click(); + } + }); + + connect(ui->editFindExpression, &QLineEdit::returnPressed, ui->buttonFindNext, &QToolButton::click); + connect(ui->editFindExpression, &QLineEdit::textChanged, this, [this]() { + // When the text has changed but neither Return nor F3 or similar nor any buttons were pressed, we want to include the current + // cell in the search as well. This makes sure the selected cell does not jump around every time the text is changed but only + // when the current cell does not match the search expression anymore. + find(ui->editFindExpression->text(), true, true); + }); + connect(ui->buttonFindClose, &QToolButton::clicked, this, [this](){ + ui->dataTable->setFocus(); + ui->frameFind->hide(); + ui->actionFind->setChecked(false); + ui->actionReplace->setChecked(false); + }); + connect(ui->buttonFindPrevious, &QToolButton::clicked, this, [this](){ + find(ui->editFindExpression->text(), false); + }); + connect(ui->buttonFindNext, &QToolButton::clicked, this, [this](){ + find(ui->editFindExpression->text(), true); + }); + connect(ui->buttonReplaceNext, &QToolButton::clicked, this, [this](){ + find(ui->editFindExpression->text(), true, true, ReplaceMode::ReplaceNext); + }); + connect(ui->buttonReplaceAll, &QToolButton::clicked, this, [this](){ + find(ui->editFindExpression->text(), true, true, ReplaceMode::ReplaceAll); + }); +} + +TableBrowser::~TableBrowser() +{ + delete gotoValidator; + delete ui; +} + +void TableBrowser::init(DBBrowserDB* _db) +{ + db = _db; + + if(m_model) + delete m_model; + m_model = new SqliteTableModel(*db, this); + + connect(m_model, &SqliteTableModel::finishedFetch, this, &TableBrowser::fetchedData); + +} + +void TableBrowser::reset() +{ + // Reset the model + m_model->reset(); + + // Remove all stored table information browse data tab + m_settings.clear(); + m_defaultEncoding = QString(); + + // Reset the recordset label inside the Browse tab now + updateRecordsetLabel(); + + // Clear filters + clearFilters(); + + // Reset the plot dock model and connection + emit updatePlot(nullptr, nullptr, nullptr, true); +} + +sqlb::ObjectIdentifier TableBrowser::currentlyBrowsedTableName() const +{ + return sqlb::ObjectIdentifier(dbStructureModel->index(ui->comboBrowseTable->currentIndex(), + DbStructureModel::ColumnSchema, + ui->comboBrowseTable->rootModelIndex()).data().toString().toStdString(), + ui->comboBrowseTable->currentData(Qt::EditRole).toString().toStdString()); // Use the edit role here to make sure we actually get the + // table name without the schema bit in front of it. +} + +BrowseDataTableSettings& TableBrowser::settings(const sqlb::ObjectIdentifier& object) +{ + return m_settings[object]; +} + +void TableBrowser::setSettings(const sqlb::ObjectIdentifier& table, const BrowseDataTableSettings& table_settings) +{ + m_settings[table] = table_settings; +} + +void TableBrowser::setStructure(QAbstractItemModel* model, const sqlb::ObjectIdentifier& old_table) +{ + dbStructureModel = model; + ui->comboBrowseTable->setModel(model); + + ui->comboBrowseTable->setRootModelIndex(dbStructureModel->index(0, 0)); // Show the 'browsable' section of the db structure tree + int old_table_index = ui->comboBrowseTable->findText(QString::fromStdString(old_table.toDisplayString())); + if(old_table_index == -1 && ui->comboBrowseTable->count()) // If the old table couldn't be found anymore but there is another table, select that + ui->comboBrowseTable->setCurrentIndex(0); + else if(old_table_index == -1) // If there aren't any tables to be selected anymore, clear the table view + clear(); + else // Under normal circumstances just select the old table again + ui->comboBrowseTable->setCurrentIndex(old_table_index); +} + +QModelIndex TableBrowser::currentIndex() const +{ + return ui->dataTable->currentIndex(); +} + +void TableBrowser::setEnabled(bool enable) +{ + ui->browseToolbar->setEnabled(enable); + ui->editGlobalFilter->setEnabled(enable); + ui->formatFrame->setEnabled(enable); + ui->frameFind->setEnabled(enable); + + ui->buttonNext->setEnabled(enable); + ui->buttonPrevious->setEnabled(enable); + ui->buttonBegin->setEnabled(enable); + ui->buttonEnd->setEnabled(enable); + ui->buttonGoto->setEnabled(enable); + ui->editGoto->setEnabled(enable); + + updateInsertDeleteRecordButton(); +} + +void TableBrowser::updateTable() +{ + // Remove the model-view link if the table name is empty in order to remove any data from the view + if(ui->comboBrowseTable->model()->rowCount(ui->comboBrowseTable->rootModelIndex()) == 0) + { + clear(); + return; + } + + // Update the schema first + db->updateSchema(); + + // Reset the minimum width of the vertical header which could have been modified in updateFilter + // or in headerClicked. + ui->dataTable->verticalHeader()->setMinimumWidth(0); + + // Get current table name + sqlb::ObjectIdentifier tablename = currentlyBrowsedTableName(); + + // Set model + bool reconnectSelectionSignals = false; + if(ui->dataTable->model() == nullptr) + reconnectSelectionSignals = true; + ui->dataTable->setModel(m_model); + if(reconnectSelectionSignals) + { + connect(ui->dataTable->selectionModel(), &QItemSelectionModel::currentChanged, this, &TableBrowser::selectionChanged); + connect(ui->dataTable->selectionModel(), &QItemSelectionModel::selectionChanged, [this](const QItemSelection&, const QItemSelection&) { + updateInsertDeleteRecordButton(); + + const QModelIndexList& sel = ui->dataTable->selectionModel()->selectedIndexes(); + QString statusMessage; + if (sel.count() > 1) { + int rows = sel.last().row() - sel.first().row() + 1; + statusMessage = tr("%n row(s)", "", rows); + int columns = sel.last().column() - sel.first().column() + 1; + statusMessage += tr(", %n column(s)", "", columns); + + if (sel.count() < Settings::getValue("databrowser", "complete_threshold").toInt()) { + double sum = 0; + double first = m_model->data(sel.first(), Qt::EditRole).toDouble(); + double min = first; + double max = first; + for (const QModelIndex& index : sel) { + double dblData = m_model->data(index, Qt::EditRole).toDouble(); + sum += dblData; + min = std::min(min, dblData); + max = std::max(max, dblData); + } + statusMessage += tr(". Sum: %1; Average: %2; Min: %3; Max: %4").arg(sum).arg(sum/sel.count()).arg(min).arg(max); + } + } + emit statusMessageRequested(statusMessage); + }); + } + // Search stored table settings for this table + bool storedDataFound = m_settings.contains(tablename); + + // Set new table + if(!storedDataFound) + { + // No stored settings found. + + // Set table name and apply default display format settings + m_model->setQuery(sqlb::Query(tablename)); + + // There aren't any information stored for this table yet, so use some default values + + // Hide rowid column. Needs to be done before the column widths setting because of the workaround in there + showRowidColumn(false); + + // Unhide all columns by default + on_actionShowAllColumns_triggered(); + + // Enable editing in general, but lock view editing + unlockViewEditing(false); + + // Prepare for setting an initial column width based on the content. + m_columnsResized = false; + + // Encoding + m_model->setEncoding(m_defaultEncoding); + + // Global filter + ui->editGlobalFilter->clear(); + + updateRecordsetLabel(); + + // Plot + emit updatePlot(ui->dataTable, m_model, &m_settings[tablename], true); + + // The filters can be left empty as they are + } else { + // Stored settings found. Retrieve them and assemble a query from them. + BrowseDataTableSettings storedData = m_settings[tablename]; + sqlb::Query query(tablename); + + // Sorting + query.setOrderBy(storedData.query.orderBy()); + + // Filters + for(auto it=storedData.filterValues.constBegin();it!=storedData.filterValues.constEnd();++it) + query.where().insert({it.key(), CondFormat::filterToSqlCondition(it.value(), m_model->encoding())}); + + // Global filter + for(const auto& f : storedData.globalFilters) + query.globalWhere().push_back(CondFormat::filterToSqlCondition(f, m_model->encoding())); + + // Display formats + bool only_defaults = true; + if(db->getObjectByName(tablename)) + { + const sqlb::FieldInfoList& tablefields = db->getObjectByName(tablename)->fieldInformation(); + for(size_t i=0; i(i)+1]; + if(format.size()) + { + query.selectedColumns().emplace_back(tablefields.at(i).name, format.toStdString()); + only_defaults = false; + } else { + query.selectedColumns().emplace_back(tablefields.at(i).name, tablefields.at(i).name); + } + } + } + if(only_defaults) + query.selectedColumns().clear(); + + // Unlock view editing + query.setRowIdColumn(storedData.unlockViewPk.toStdString()); + + // Apply query + m_model->setQuery(query); + + // There is information stored for this table, so extract it and apply it + applySettings(storedData); + + updateRecordsetLabel(); + + // Plot + emit updatePlot(ui->dataTable, m_model, &m_settings[tablename], false); + } + + + // Show/hide menu options depending on whether this is a table or a view + if(db->getObjectByName(currentlyBrowsedTableName()) && db->getObjectByName(currentlyBrowsedTableName())->type() == sqlb::Object::Table) + { + // Table + sqlb::TablePtr table = db->getObjectByName(currentlyBrowsedTableName()); + ui->actionUnlockViewEditing->setVisible(false); + ui->actionShowRowidColumn->setVisible(!table->withoutRowidTable()); + } else { + // View + ui->actionUnlockViewEditing->setVisible(true); + ui->actionShowRowidColumn->setVisible(false); + } + + updateInsertDeleteRecordButton(); +} + +void TableBrowser::clearFilters() +{ + ui->dataTable->filterHeader()->clearFilters(); + ui->editGlobalFilter->clear(); +} + +void TableBrowser::reloadSettings() +{ + ui->dataTable->reloadSettings(); + + ui->browseToolbar->setToolButtonStyle(static_cast(Settings::getValue("General", "toolbarStyleBrowse").toInt())); + m_model->reloadSettings(); +} + +void TableBrowser::setCurrentTable(const sqlb::ObjectIdentifier& name) +{ + int index = ui->comboBrowseTable->findText(QString::fromStdString(name.toDisplayString())); + if(index != -1) + ui->comboBrowseTable->setCurrentIndex(index); +} + +void TableBrowser::clear() +{ + if (!ui->dataTable->model()) + return; + + ui->dataTable->setModel(nullptr); + if(qobject_cast(ui->dataTable->horizontalHeader())) + qobject_cast(ui->dataTable->horizontalHeader())->generateFilters(0); + + ui->editGlobalFilter->blockSignals(true); + ui->editGlobalFilter->clear(); + ui->editGlobalFilter->blockSignals(false); +} + +void TableBrowser::updateFilter(size_t column, const QString& value) +{ + // Set minimum width to the vertical header in order to avoid flickering while a filter is being updated. + ui->dataTable->verticalHeader()->setMinimumWidth(ui->dataTable->verticalHeader()->width()); + + m_model->updateFilter(column, value); + BrowseDataTableSettings& settings = m_settings[currentlyBrowsedTableName()]; + if(value.isEmpty() && settings.filterValues.remove(static_cast(column)) > 0) + { + emit projectModified(); + } else { + if (settings.filterValues[static_cast(column)] != value) { + settings.filterValues[static_cast(column)] = value; + emit projectModified(); + } + } + + updateRecordsetLabel(); + + // Reapply the view settings. This seems to be necessary as a workaround for newer Qt versions. + applySettings(settings, true); +} + +void TableBrowser::addCondFormatFromFilter(size_t column, const QString& value) +{ + QFont font = QFont(Settings::getValue("databrowser", "font").toString()); + font.setPointSize(Settings::getValue("databrowser", "fontsize").toInt()); + + // Create automatically a new conditional format with the next serial background color according to the theme and the regular foreground + // color and font in the settings. + CondFormat newCondFormat(value, QColor(Settings::getValue("databrowser", "reg_fg_colour").toString()), + m_condFormatPalette.nextSerialColor(Palette::appHasDarkTheme()), + font, + CondFormat::AlignLeft, + m_model->encoding()); + addCondFormat(false, column, newCondFormat); +} + +void TableBrowser::addCondFormat(bool isRowIdFormat, size_t column, const CondFormat& newCondFormat) +{ + BrowseDataTableSettings& settings = m_settings[currentlyBrowsedTableName()]; + std::vector& formats = isRowIdFormat ? settings.rowIdFormats[column] : settings.condFormats[column]; + m_model->addCondFormat(isRowIdFormat, column, newCondFormat); + // Conditionless formats are pushed back and others inserted at the begining, so they aren't eclipsed. + if (newCondFormat.filter().isEmpty()) + formats.push_back(newCondFormat); + else + formats.insert(formats.begin(), newCondFormat); +} + +void TableBrowser::clearAllCondFormats(size_t column) +{ + std::vector emptyCondFormatVector = std::vector(); + m_model->setCondFormats(false, column, emptyCondFormatVector); + m_settings[currentlyBrowsedTableName()].condFormats[column].clear(); + emit projectModified(); +} + +void TableBrowser::clearRowIdFormats(const QModelIndex index) +{ + + std::vector& rowIdFormats = m_settings[currentlyBrowsedTableName()].rowIdFormats[static_cast(index.column())]; + rowIdFormats.erase(std::remove_if(rowIdFormats.begin(), rowIdFormats.end(), [&](const CondFormat& format) { + return format.filter() == QString("=%1").arg(m_model->data(index.sibling(index.row(), 0)).toString()); + }), rowIdFormats.end()); + m_model->setCondFormats(true, static_cast(index.column()), rowIdFormats); + emit projectModified(); + +} + +void TableBrowser::editCondFormats(size_t column) +{ + CondFormatManager condFormatDialog(m_settings[currentlyBrowsedTableName()].condFormats[column], + m_model->encoding(), this); + condFormatDialog.setWindowTitle(tr("Conditional formats for \"%1\""). + arg(m_model->headerData(static_cast(column), Qt::Horizontal, Qt::EditRole).toString())); + if (condFormatDialog.exec()) { + std::vector condFormatVector = condFormatDialog.getCondFormats(); + m_model->setCondFormats(false, column, condFormatVector); + m_settings[currentlyBrowsedTableName()].condFormats[column] = condFormatVector; + emit projectModified(); + } +} +void TableBrowser::modifySingleFormat(const bool isRowIdFormat, const QString& filter, const QModelIndex refIndex, std::function changeFunction) +{ + const size_t column = static_cast(refIndex.column()); + BrowseDataTableSettings& settings = m_settings[currentlyBrowsedTableName()]; + std::vector& formats = isRowIdFormat ? settings.rowIdFormats[column] : settings.condFormats[column]; + auto it = std::find_if(formats.begin(), formats.end(), [&filter](const CondFormat& format) { + return format.filter() == filter; + }); + if(it != formats.end()) { + changeFunction(*it); + m_model->addCondFormat(isRowIdFormat, column, *it); + } else { + // Create a new conditional format based on the current reference index and then modify it as requested using the passed function. + CondFormat newCondFormat(filter, m_model, refIndex, m_model->encoding()); + changeFunction(newCondFormat); + addCondFormat(isRowIdFormat, column, newCondFormat); + } +} + +void TableBrowser::modifyFormat(std::function changeFunction) +{ + // Modify the conditional formats from entirely selected columns having the current filter value, + // or modify the row-id formats of selected cells, when the selection does not cover entire columns. + const std::unordered_set& columns = ui->dataTable->selectedCols(); + if (columns.size() > 0) { + for (size_t column : columns) { + const QString& filter = m_settings[currentlyBrowsedTableName()].filterValues.value(static_cast(column)); + modifySingleFormat(false, filter, currentIndex().sibling(currentIndex().row(), static_cast(column)), changeFunction); + } + } else { + for(const QModelIndex& index : ui->dataTable->selectionModel()->selectedIndexes()) { + const QString filter = QString("=%1").arg(m_model->data(index.sibling(index.row(), 0)).toString()); + modifySingleFormat(true, filter, index, changeFunction); + } + } + emit projectModified(); +} + +void TableBrowser::updateRecordsetLabel() +{ + // Get all the numbers, i.e. the number of the first row and the last row as well as the total number of rows + int from = ui->dataTable->verticalHeader()->visualIndexAt(0) + 1; + int total = m_model->rowCount(); + int to = from + ui->dataTable->numVisibleRows() - 1; + if(to < 0) + to = 0; + + // Update the validator of the goto row field + gotoValidator->setRange(0, total); + + // When there is no query for this table (i.e. no table is selected), there is no row count query either which in turn means + // that the row count query will never finish. And because of this the row count will be forever unknown. To avoid always showing + // a misleading "determining row count" text in the UI we set the row count status to complete here for empty queries. + auto row_count_available = m_model->rowCountAvailable(); + if(m_model->query().empty()) + row_count_available = SqliteTableModel::RowCount::Complete; + + // Update the label showing the current position + QString txt; + switch(row_count_available) + { + case SqliteTableModel::RowCount::Unknown: + txt = tr("determining row count..."); + break; + case SqliteTableModel::RowCount::Partial: + txt = tr("%1 - %2 of >= %3").arg(from).arg(to).arg(total); + break; + case SqliteTableModel::RowCount::Complete: + txt = tr("%1 - %2 of %3").arg(from).arg(to).arg(total); + break; + } + ui->labelRecordset->setText(txt); + + // Enable editing only for tables or views with editing unlocked for which the row count is already available + sqlb::ObjectIdentifier current_table = currentlyBrowsedTableName(); + bool is_table_or_unlocked_view = !current_table.isEmpty() && !m_model->query().empty() && db->getObjectByName(current_table) && ( + (db->getObjectByName(current_table)->type() == sqlb::Object::View && m_model->hasPseudoPk()) || + (db->getObjectByName(current_table)->type() == sqlb::Object::Table)); + enableEditing(m_model->rowCountAvailable() != SqliteTableModel::RowCount::Unknown && is_table_or_unlocked_view); +} + +void TableBrowser::applySettings(const BrowseDataTableSettings& storedData, bool skipFilters) +{ + // We don't want to pass storedData by reference because the functions below would change the referenced data in their original + // place, thus modifiying the data this function can use. To have a static description of what the view should look like we want + // a copy here. + + // Show rowid column. Needs to be done before the column widths setting because of the workaround in there and before the filter setting + // because of the filter row generation. + showRowidColumn(storedData.showRowid, skipFilters); + + // Enable editing in general and (un)lock view editing depending on the settings + unlockViewEditing(!storedData.unlockViewPk.isEmpty() && storedData.unlockViewPk != "_rowid_", storedData.unlockViewPk); + + // Column hidden status + on_actionShowAllColumns_triggered(); + for(auto hiddenIt=storedData.hiddenColumns.constBegin();hiddenIt!=storedData.hiddenColumns.constEnd();++hiddenIt) + hideColumns(hiddenIt.key(), hiddenIt.value()); + + // Column widths + for(auto widthIt=storedData.columnWidths.constBegin();widthIt!=storedData.columnWidths.constEnd();++widthIt) + ui->dataTable->setColumnWidth(widthIt.key(), widthIt.value()); + m_columnsResized = true; + + // Filters + if(!skipFilters) + { + // Set filters blocking signals, since the filter is already applied to the browse table model + FilterTableHeader* filterHeader = qobject_cast(ui->dataTable->horizontalHeader()); + bool oldState = filterHeader->blockSignals(true); + for(auto filterIt=storedData.filterValues.constBegin();filterIt!=storedData.filterValues.constEnd();++filterIt) + filterHeader->setFilter(static_cast(filterIt.key()), filterIt.value()); + + // Regular conditional formats + for(auto formatIt=storedData.condFormats.constBegin(); formatIt!=storedData.condFormats.constEnd(); ++formatIt) + m_model->setCondFormats(false, formatIt.key(), formatIt.value()); + + // Row Id formats + for(auto formatIt=storedData.rowIdFormats.constBegin(); formatIt!=storedData.rowIdFormats.constEnd(); ++formatIt) + m_model->setCondFormats(true, formatIt.key(), formatIt.value()); + + filterHeader->blockSignals(oldState); + + ui->editGlobalFilter->blockSignals(true); + QString text; + for(const auto& f : storedData.globalFilters) + text += f + " "; + text.chop(1); + ui->editGlobalFilter->setText(text); + ui->editGlobalFilter->blockSignals(false); + } + + // Encoding + m_model->setEncoding(storedData.encoding); +} + +void TableBrowser::enableEditing(bool enable_edit) +{ + // Don't enable anything if this is a read only database + bool edit = enable_edit && !db->readOnly(); + + // Apply settings + ui->dataTable->setEditTriggers(edit ? QAbstractItemView::SelectedClicked | QAbstractItemView::AnyKeyPressed | QAbstractItemView::EditKeyPressed : QAbstractItemView::NoEditTriggers); + updateInsertDeleteRecordButton(); +} + +void TableBrowser::showRowidColumn(bool show, bool skipFilters) +{ + // Block all signals from the horizontal header. Otherwise the QHeaderView::sectionResized signal causes us trouble + ui->dataTable->horizontalHeader()->blockSignals(true); + + // WORKAROUND + // Set the opposite hidden/visible status of what we actually want for the rowid column. This is to work around a Qt bug which + // is present in at least version 5.7.1. The problem is this: when you browse a table/view with n colums, then switch to a table/view + // with less than n columns, you'll be able to resize the first (hidden!) column by resizing the section to the left of the first visible + // column. By doing so the table view gets messed up. But even when not resizing the first hidden column, tab-ing through the fields + // will stop at the not-so-much-hidden rowid column, too. All this can be fixed by this line. I haven't managed to find another workaround + // or way to fix this yet. + ui->dataTable->setColumnHidden(0, show); + + // Show/hide rowid column + ui->dataTable->setColumnHidden(0, !show); + + // Update checked status of the popup menu action + ui->actionShowRowidColumn->setChecked(show); + + // Save settings for this table + sqlb::ObjectIdentifier current_table = currentlyBrowsedTableName(); + if (m_settings[current_table].showRowid != show) { + emit projectModified(); + m_settings[current_table].showRowid = show; + } + + // Update the filter row + if(!skipFilters) + qobject_cast(ui->dataTable->horizontalHeader())->generateFilters(static_cast(m_model->columnCount()), show); + + // Re-enable signals + ui->dataTable->horizontalHeader()->blockSignals(false); + + ui->dataTable->update(); +} + +void TableBrowser::unlockViewEditing(bool unlock, QString pk) +{ + sqlb::ObjectIdentifier currentTable = currentlyBrowsedTableName(); + + if(currentTable.isEmpty()) + return; + + // If this isn't a view just unlock editing and return + if(db->getObjectByName(currentTable) && db->getObjectByName(currentTable)->type() != sqlb::Object::View) + { + m_model->setPseudoPk(m_model->pseudoPk()); + enableEditing(true); + return; + } + + sqlb::ViewPtr obj = db->getObjectByName(currentTable); + + // If the view gets unlocked for editing and we don't have a 'primary key' for this view yet, then ask for one + if(unlock && pk.isEmpty()) + { + while(true) + { + bool ok; + + QStringList options; + for(const auto& n : obj->fieldNames()) + options.push_back(QString::fromStdString(n)); + + // Ask for a PK + pk = QInputDialog::getItem(this, + qApp->applicationName(), + tr("Please enter a pseudo-primary key in order to enable editing on this view. " + "This should be the name of a unique column in the view."), + options, + 0, + false, + &ok); + + // Cancelled? + if(!ok || pk.isEmpty()) { + ui->actionUnlockViewEditing->setChecked(false); + return; + } + + // Do some basic testing of the input and if the input appears to be good, go on + if(db->executeSQL("SELECT " + sqlb::escapeIdentifier(pk.toStdString()) + " FROM " + currentTable.toString() + " LIMIT 1;", false, true)) + break; + } + } else if(!unlock) { + // Locking the view is done by unsetting the pseudo-primary key + pk = "_rowid_"; + } + + // (De)activate editing + enableEditing(unlock); + m_model->setPseudoPk({pk.toStdString()}); + + // Update checked status of the popup menu action + ui->actionUnlockViewEditing->blockSignals(true); + ui->actionUnlockViewEditing->setChecked(unlock); + ui->actionUnlockViewEditing->blockSignals(false); + + // If the settings didn't change, do not try to reapply them. + // This avoids an infinite mutual recursion. + BrowseDataTableSettings& settings = m_settings[currentTable]; + + if(settings.unlockViewPk != pk) { + // Save settings for this table + settings.unlockViewPk = pk; + // Reapply the view settings. This seems to be necessary as a workaround for newer Qt versions. + applySettings(settings); + emit projectModified(); + } +} + +void TableBrowser::hideColumns(int column, bool hide) +{ + sqlb::ObjectIdentifier tableName = currentlyBrowsedTableName(); + + // Select columns to (un)hide + std::unordered_set columns; + if(column == -1) + { + if(ui->dataTable->selectedCols().size() == 0) + columns.insert(ui->actionBrowseTableEditDisplayFormat->property("clicked_column").toInt()); + else { + auto cols = ui->dataTable->selectedCols(); + columns.insert(cols.begin(), cols.end()); + } + } else { + columns.insert(column); + } + + // (Un)hide requested column(s) + for(int col : columns) + { + ui->dataTable->setColumnHidden(col, hide); + if(!hide) + ui->dataTable->setColumnWidth(col, ui->dataTable->horizontalHeader()->defaultSectionSize()); + m_settings[tableName].hiddenColumns[col] = hide; + } + + // check to see if all the columns are hidden + bool allHidden = true; + for(int col = 1; col < ui->dataTable->model()->columnCount(); col++) + { + if(!ui->dataTable->isColumnHidden(col)) + { + allHidden = false; + break; + } + } + + if(allHidden && ui->dataTable->model()->columnCount() > 1) + hideColumns(1, false); + emit projectModified(); +} + +void TableBrowser::on_actionShowAllColumns_triggered() +{ + for(int col = 1; col < ui->dataTable->model()->columnCount(); col++) + { + if(ui->dataTable->isColumnHidden(col)) + hideColumns(col, false); + } +} + +void TableBrowser::updateInsertDeleteRecordButton() +{ + // Update the delete record button to reflect number of selected records + + // NOTE: We're assuming here that the selection is always contiguous, i.e. that there are never two selected + // rows with a non-selected row in between. + int rows = 0; + + // If there is no model yet (because e.g. no database file is opened) there is no selection model either. So we need to check for that here + // in order to avoid null pointer dereferences. If no selection model exists we will just continue as if no row is selected because without a + // model you could argue there actually is no row to be selected. + if(ui->dataTable->selectionModel()) + { + const auto & sel = ui->dataTable->selectionModel()->selectedIndexes(); + if(sel.count()) + rows = sel.last().row() - sel.first().row() + 1; + } + + // Enable the insert and delete buttons only if the currently browsed table or view is editable. For the delete button we additionally require + // at least one row to be selected. For the insert button there is an extra rule to disable it when we are browsing a view because inserting + // into a view isn't supported yet. + bool isEditable = m_model->isEditable() && !db->readOnly(); + ui->actionNewRecord->setEnabled(isEditable); + ui->actionDeleteRecord->setEnabled(isEditable && rows != 0); + + if(rows > 1) + ui->actionDeleteRecord->setText(tr("Delete Records")); + else + ui->actionDeleteRecord->setText(tr("Delete Record")); +} + +void TableBrowser::duplicateRecord(int currentRow) +{ + auto row = m_model->dittoRecord(currentRow); + if (row.isValid()) + ui->dataTable->setCurrentIndex(row); + else + QMessageBox::warning(this, qApp->applicationName(), db->lastError()); +} + +void TableBrowser::headerClicked(int logicalindex) +{ + BrowseDataTableSettings& settings = m_settings[currentlyBrowsedTableName()]; + + // Abort if there is more than one column selected because this tells us that the user pretty sure wants to do a range selection + // instead of sorting data. But restore before the sort indicator automatically changed by Qt so it still indicates the last + // use sort action. + // This check is disabled when the Control key is pressed. This is done because we use the Control key for sorting by multiple columns and + // Qt seems to pretty much always select multiple columns when the Control key is pressed. + if(!QApplication::keyboardModifiers().testFlag(Qt::ControlModifier) && ui->dataTable->selectionModel()->selectedColumns().count() > 1) { + applySettings(settings); + return; + } + + // Set minimum width to the vertical header in order to avoid flickering when sorting. + ui->dataTable->verticalHeader()->setMinimumWidth(ui->dataTable->verticalHeader()->width()); + + // Get the current list of sort columns + auto& columns = settings.query.orderBy(); + + // Before sorting, first check if the Control key is pressed. If it is, we want to append this column to the list of sort columns. If it is not, + // we want to sort only by the new column. + if(QApplication::keyboardModifiers().testFlag(Qt::ControlModifier)) + { + // Multi column sorting + + // If the column was control+clicked again, change its sort order. + // If not already in the sort order, add the column as a new sort column to the list. + bool present = false; + for(sqlb::SortedColumn& sortedCol : columns) { + + if(sortedCol.column == static_cast(logicalindex)) { + sortedCol.direction = (sortedCol.direction == sqlb::Ascending ? sqlb::Descending : sqlb::Ascending); + present = true; + break; + } + } + if(!present) + columns.emplace_back(logicalindex, sqlb::Ascending); + } else { + // Single column sorting + + // If we have exactly one sort column and it is the column which was just clicked, change its sort order. + // If not, clear the list of sorting columns and replace it by a single new sort column. + if(columns.size() == 1 && columns.front().column == static_cast(logicalindex)) + { + columns.front().direction = (columns.front().direction == sqlb::Ascending ? sqlb::Descending : sqlb::Ascending); + } else { + columns.clear(); + columns.emplace_back(logicalindex, sqlb::Ascending); + } + } + + // Do the actual sorting + ui->dataTable->sortByColumns(columns); + + // select the first item in the column so the header is bold + // we might try to select the last selected item + ui->dataTable->setCurrentIndex(ui->dataTable->currentIndex().sibling(0, logicalindex)); + + emit updatePlot(ui->dataTable, m_model, &m_settings[currentlyBrowsedTableName()], true); + + // Reapply the view settings. This seems to be necessary as a workaround for newer Qt versions. + applySettings(settings); + + emit projectModified(); +} + +void TableBrowser::updateColumnWidth(int section, int /*old_size*/, int new_size) +{ + std::unordered_set selectedCols = ui->dataTable->selectedCols(); + sqlb::ObjectIdentifier tableName = currentlyBrowsedTableName(); + + if (selectedCols.find(static_cast(section)) == selectedCols.end()) + { + if (m_settings[tableName].columnWidths[section] != new_size) { + emit projectModified(); + m_settings[tableName].columnWidths[section] = new_size; + } + } + else + { + ui->dataTable->blockSignals(true); + for(size_t col : selectedCols) + { + ui->dataTable->setColumnWidth(static_cast(col), new_size); + if (m_settings[tableName].columnWidths[static_cast(col)] != new_size) { + emit projectModified(); + m_settings[tableName].columnWidths[static_cast(col)] = new_size; + } + } + ui->dataTable->blockSignals(false); + } +} + +void TableBrowser::showDataColumnPopupMenu(const QPoint& pos) +{ + // Get the index of the column which the user has clicked on and store it in the action. This is sort of hack-ish and it might be the heat in my room + // but I haven't come up with a better solution so far + int logical_index = ui->dataTable->horizontalHeader()->logicalIndexAt(pos); + if(logical_index == -1) // Don't open the popup menu if the user hasn't clicked on a column header + return; + ui->actionBrowseTableEditDisplayFormat->setProperty("clicked_column", logical_index); + + // Calculate the proper position for the context menu and display it + popupHeaderMenu->exec(ui->dataTable->horizontalHeader()->mapToGlobal(pos)); +} + +void TableBrowser::showRecordPopupMenu(const QPoint& pos) +{ + int row = ui->dataTable->verticalHeader()->logicalIndexAt(pos); + if (row == -1) + return; + + QMenu popupRecordMenu(this); + + // "Delete and duplicate records" can only be done on writable objects + if(db->getObjectByName(currentlyBrowsedTableName())->type() == sqlb::Object::Types::Table && !db->readOnly()) { + + // Select the row if it is not already in the selection. + QModelIndexList rowList = ui->dataTable->selectionModel()->selectedRows(); + bool found = false; + for (QModelIndex index : rowList) { + if (row == index.row()) { + found = true; + break; + } + } + if (!found) + ui->dataTable->selectRow(row); + + rowList = ui->dataTable->selectionModel()->selectedRows(); + + QString duplicateText = rowList.count() > 1 ? tr("Duplicate records") : tr("Duplicate record"); + + QAction* action = new QAction(duplicateText, &popupRecordMenu); + // Set shortcut for documentation purposes (the actual functional shortcut is not set here) + action->setShortcut(QKeySequence(tr("Ctrl+\""))); + popupRecordMenu.addAction(action); + + connect(action, &QAction::triggered, [rowList, this]() { + for (const QModelIndex& index : rowList) + duplicateRecord(index.row()); + }); + + QAction* deleteRecordAction = new QAction(QIcon(":icons/delete_record"), ui->actionDeleteRecord->text(), &popupRecordMenu); + popupRecordMenu.addAction(deleteRecordAction); + + connect(deleteRecordAction, &QAction::triggered, [&]() { + deleteRecord(); + }); + + popupRecordMenu.addSeparator(); + } + + // "Adjust rows" can be done on any object + QAction* adjustRowHeightAction = new QAction(tr("Adjust rows to contents"), &popupRecordMenu); + adjustRowHeightAction->setCheckable(true); + adjustRowHeightAction->setChecked(m_adjustRows); + popupRecordMenu.addAction(adjustRowHeightAction); + + connect(adjustRowHeightAction, &QAction::toggled, [&](bool checked) { + m_adjustRows = checked; + if(m_adjustRows) + ui->dataTable->resizeRowsToContents(); + else + updateTable(); + }); + + popupRecordMenu.exec(ui->dataTable->verticalHeader()->mapToGlobal(pos)); +} + +void TableBrowser::addRecord() +{ + int row = m_model->rowCount(); + + // If table has pseudo_pk, then it must be an editable view. Jump straight to inserting by pop-up dialog. + if(!m_model->hasPseudoPk() && m_model->insertRow(row)) + { + selectTableLine(row); + } else { + // Error inserting empty row. + // User has to provide values acomplishing the constraints. Open Add Record Dialog. + insertValues(); + } +} + +void TableBrowser::insertValues() +{ + std::vector pseudo_pk = m_model->hasPseudoPk() ? m_model->pseudoPk() : std::vector(); + AddRecordDialog dialog(*db, currentlyBrowsedTableName(), this, pseudo_pk); + if (dialog.exec()) + updateTable(); +} + +void TableBrowser::deleteRecord() +{ + if(ui->dataTable->selectionModel()->hasSelection()) + { + // If only filter header is selected + if(ui->dataTable->selectionModel()->selectedIndexes().isEmpty()) + return; + + int old_row = ui->dataTable->currentIndex().row(); + while(ui->dataTable->selectionModel()->hasSelection()) + { + int first_selected_row = ui->dataTable->selectionModel()->selectedIndexes().first().row(); + int last_selected_row = ui->dataTable->selectionModel()->selectedIndexes().last().row(); + int selected_rows_count = last_selected_row - first_selected_row + 1; + if(!m_model->removeRows(first_selected_row, selected_rows_count)) + { + QMessageBox::warning(this, QApplication::applicationName(), tr("Error deleting record:\n%1").arg(db->lastError())); + break; + } + } + + if(old_row > m_model->rowCount()) + old_row = m_model->rowCount(); + selectTableLine(old_row); + } else { + QMessageBox::information( this, QApplication::applicationName(), tr("Please select a record first")); + } +} + +void TableBrowser::navigatePrevious() +{ + int curRow = ui->dataTable->currentIndex().row(); + curRow -= ui->dataTable->numVisibleRows() - 1; + if(curRow < 0) + curRow = 0; + selectTableLine(curRow); +} + +void TableBrowser::navigateNext() +{ + int curRow = ui->dataTable->currentIndex().row(); + curRow += ui->dataTable->numVisibleRows() - 1; + if(curRow >= m_model->rowCount()) + curRow = m_model->rowCount() - 1; + selectTableLine(curRow); +} + +void TableBrowser::navigateBegin() +{ + selectTableLine(0); +} + +void TableBrowser::navigateEnd() +{ + selectTableLine(m_model->rowCount()-1); +} + +void TableBrowser::navigateGoto() +{ + int row = ui->editGoto->text().toInt(); + if(row <= 0) + row = 1; + if(row > m_model->rowCount()) + row = m_model->rowCount(); + + selectTableLine(row - 1); + ui->editGoto->setText(QString::number(row)); +} + +void TableBrowser::selectTableLine(int lineToSelect) +{ + ui->dataTable->selectTableLine(lineToSelect); +} + +void TableBrowser::on_actionClearFilters_triggered() +{ + ui->dataTable->filterHeader()->clearFilters(); +} + +void TableBrowser::on_actionClearSorting_triggered() +{ + // Get the current list of sort columns + auto& columns = m_settings[currentlyBrowsedTableName()].query.orderBy(); + columns.clear(); + // Set cleared vector of sort-by columns + m_model->sort(columns); +} + +void TableBrowser::editDisplayFormat() +{ + // Get the current table name and fetch its table object, then retrieve the fields of that table and look up the index of the clicked table header + // section using it as the table field array index. Subtract one from the header index to get the column index because in the the first (though hidden) + // column is always the rowid column. Ultimately, get the column name from the column object + sqlb::ObjectIdentifier current_table = currentlyBrowsedTableName(); + int field_number = sender()->property("clicked_column").toInt(); + QString field_name; + if (db->getObjectByName(current_table)->type() == sqlb::Object::Table) + field_name = QString::fromStdString(db->getObjectByName(current_table)->fields.at(static_cast(field_number)-1).name()); + else + field_name = QString::fromStdString(db->getObjectByName(current_table)->fieldNames().at(static_cast(field_number)-1)); + // Get the current display format of the field + QString current_displayformat = m_settings[current_table].displayFormats[field_number]; + + // Open the dialog + ColumnDisplayFormatDialog dialog(*db, current_table, field_name, current_displayformat, this); + if(dialog.exec()) + { + // Set the newly selected display format + QString new_format = dialog.selectedDisplayFormat(); + if(new_format.size()) + m_settings[current_table].displayFormats[field_number] = new_format; + else + m_settings[current_table].displayFormats.remove(field_number); + emit projectModified(); + + // Refresh view + updateTable(); + } +} + +void TableBrowser::exportFilteredTable() +{ + ExportDataDialog dialog(*db, ExportDataDialog::ExportFormatCsv, this, m_model->customQuery(false)); + dialog.exec(); +} + +void TableBrowser::saveFilterAsView() +{ + if (m_model->filterCount() > 0) + // Save as view a custom query without rowid + emit createView(m_model->customQuery(false)); + else + QMessageBox::information(this, qApp->applicationName(), tr("There is no filter set for this table. View will not be created.")); +} + +void TableBrowser::setTableEncoding(bool forAllTables) +{ + // Get the old encoding + QString encoding = m_model->encoding(); + + // Ask the user for a new encoding + bool ok; + QString question; + QStringList availableCodecs = toStringList(QTextCodec::availableCodecs()); + availableCodecs.removeDuplicates(); + int currentItem = availableCodecs.indexOf(encoding); + + if(forAllTables) + question = tr("Please choose a new encoding for all tables."); + else + question = tr("Please choose a new encoding for this table."); + encoding = QInputDialog::getItem(this, + tr("Set encoding"), + tr("%1\nLeave the field empty for using the database encoding.").arg(question), + availableCodecs, + currentItem, + true, // editable + &ok); + + // Only set the new encoding if the user clicked the OK button + if(ok) + { + // Check if encoding is valid + if(!encoding.isEmpty() && !QTextCodec::codecForName(encoding.toUtf8())) + { + QMessageBox::warning(this, qApp->applicationName(), tr("This encoding is either not valid or not supported.")); + return; + } + + // Set encoding for current table + m_model->setEncoding(encoding); + + // Save encoding for this table + m_settings[currentlyBrowsedTableName()].encoding = encoding; + + // Set default encoding if requested to and change all stored table encodings + if(forAllTables) + { + m_defaultEncoding = encoding; + + for(auto it=m_settings.begin();it!=m_settings.end();++it) + it.value().encoding = encoding; + } + + emit projectModified(); + } +} + +void TableBrowser::setDefaultTableEncoding() +{ + setTableEncoding(true); +} + +void TableBrowser::jumpToRow(const sqlb::ObjectIdentifier& table, std::string column, const QByteArray& value) +{ + // First check if table exists + sqlb::TablePtr obj = db->getObjectByName(table); + if(!obj) + return; + + // If no column name is set, assume the primary key is meant + if(!column.size()) + column = obj->primaryKey()->columnList().front(); + + // If column doesn't exist don't do anything + auto column_index = sqlb::findField(obj, column); + if(column_index == obj->fields.end()) + return; + + // Jump to table + setCurrentTable(table); + + // Set filter + ui->dataTable->filterHeader()->setFilter(static_cast(column_index-obj->fields.begin()+1), QString("=") + value); + updateTable(); +} + +static QString replaceInValue(QString value, const QString& find, const QString& replace, Qt::MatchFlags flags) +{ + // Helper function which replaces a string in another string by a third string. It uses regular expressions if told so. + if(flags.testFlag(Qt::MatchRegExp)) + { + QRegularExpression reg_exp(find, (flags.testFlag(Qt::MatchCaseSensitive) ? QRegularExpression::NoPatternOption : QRegularExpression::CaseInsensitiveOption)); + if(!flags.testFlag(Qt::MatchContains)) + { +#if QT_VERSION < QT_VERSION_CHECK(5, 12, 0) + reg_exp.setPattern("\\A(" + reg_exp.pattern() + ")\\Z"); +#else + reg_exp.setPattern(QRegularExpression::anchoredPattern(reg_exp.pattern())); +#endif + } + + return value.replace(reg_exp, replace); + } else { + return value.replace(find, replace, flags.testFlag(Qt::MatchCaseSensitive) ? Qt::CaseSensitive : Qt::CaseInsensitive); + } +} + +void TableBrowser::find(const QString& expr, bool forward, bool include_first, ReplaceMode replace) +{ + // Reset the colour of the line edit, assuming there is no error. + ui->editFindExpression->setStyleSheet(""); + + // You are not allowed to search for an ampty string + if(expr.isEmpty()) + return; + + // Get the cell from which the search should be started. If there is a selected cell, use that. If there is no selected cell, start at the first cell. + QModelIndex start; + if(ui->dataTable->selectionModel()->hasSelection()) + start = ui->dataTable->selectionModel()->selectedIndexes().front(); + else + start = m_model->index(0, 0); + + // Prepare the match flags with all the search settings + Qt::MatchFlags flags = Qt::MatchWrap; + + if(ui->checkFindCaseSensitive->isChecked()) + flags |= Qt::MatchCaseSensitive; + + if(ui->checkFindWholeCell->isChecked()) + flags |= Qt::MatchFixedString; + else + flags |= Qt::MatchContains; + + if(ui->checkFindRegEx->isChecked()) + flags |= Qt::MatchRegExp; + + // Prepare list of columns to search in. We only search in non-hidden rows + std::vector column_list; + sqlb::ObjectIdentifier tableName = currentlyBrowsedTableName(); + if(m_settings[tableName].showRowid) + column_list.push_back(0); + for(int i=1;icolumnCount();i++) + { + if(m_settings[tableName].hiddenColumns.contains(i) == false) + column_list.push_back(i); + else if(m_settings[tableName].hiddenColumns[i] == false) + column_list.push_back(i); + } + + // Are we only searching for text or are we supposed to replace text? + switch(replace) + { + case ReplaceMode::NoReplace: { + // Perform the actual search using the model class + const auto match = m_model->nextMatch(start, column_list, expr, flags, !forward, include_first); + + // Select the next match if we found one + if(match.isValid()) + ui->dataTable->setCurrentIndex(match); + + // Make the expression control red if no results were found + if(!match.isValid()) + ui->editFindExpression->setStyleSheet("QLineEdit {color: white; background-color: rgb(255, 102, 102)}"); + } break; + case ReplaceMode::ReplaceNext: { + // Find the next match + const auto match = m_model->nextMatch(start, column_list, expr, flags, !forward, include_first); + + // If there was a match, perform the replacement on the cell and select it + if(match.isValid()) + { + m_model->setData(match, replaceInValue(match.data(Qt::EditRole).toString(), expr, ui->editReplaceExpression->text(), flags)); + ui->dataTable->setCurrentIndex(match); + } + + // Make the expression control red if no results were found + if(!match.isValid()) + ui->editFindExpression->setStyleSheet("QLineEdit {color: white; background-color: rgb(255, 102, 102)}"); + } break; + case ReplaceMode::ReplaceAll: { + // Find all matches + std::set all_matches; + while(true) + { + // Find the next match + const auto match = m_model->nextMatch(start, column_list, expr, flags, !forward, include_first); + + // If there was a match, perform the replacement and continue from that position. If there was no match, stop looking for other matches. + // Additionally, keep track of all the matches so far in order to avoid running over them again indefinitely, e.g. when replacing "1" by "10". + if(match.isValid() && all_matches.find(match) == all_matches.end()) + { + all_matches.insert(match); + m_model->setData(match, replaceInValue(match.data(Qt::EditRole).toString(), expr, ui->editReplaceExpression->text(), flags)); + + // Start searching from the last match onwards in order to not search through the same cells over and over again. + start = match; + include_first = false; + } else { + break; + } + } + + // Make the expression control red if no results were found + if(!all_matches.empty()) + QMessageBox::information(this, qApp->applicationName(), tr("%1 replacement(s) made.").arg(all_matches.size())); + else + ui->editFindExpression->setStyleSheet("QLineEdit {color: white; background-color: rgb(255, 102, 102)}"); + } break; + } +} + +void TableBrowser::fetchedData() +{ + updateRecordsetLabel(); + + // Adjust row height to contents. This has to be done each time new data is fetched. + if(m_adjustRows) + ui->dataTable->resizeRowsToContents(); + + // Don't resize the columns more than once to fit their contents. This is necessary because the finishedFetch signal of the model + // is emitted for each loaded prefetch block and we want to avoid column resizes while scrolling down. + if(m_columnsResized) + return; + m_columnsResized = true; + + // Set column widths according to their contents but make sure they don't exceed a certain size + ui->dataTable->resizeColumnsToContents(); + for(int i = 0; i < m_model->columnCount(); i++) + { + if(ui->dataTable->columnWidth(i) > 300) + ui->dataTable->setColumnWidth(i, 300); + } +} diff --git a/src/SqliteDBProcess/src/TableBrowser.h b/src/SqliteDBProcess/src/TableBrowser.h new file mode 100644 index 0000000..9925132 --- /dev/null +++ b/src/SqliteDBProcess/src/TableBrowser.h @@ -0,0 +1,197 @@ +#ifndef TABLEBROWSER_H +#define TABLEBROWSER_H +#include "WBFZExchangePluginAPI.h" +#include "CondFormat.h" +#include "PlotDock.h" +#include "sql/Query.h" + +#include +#include +#include + +#include +#include + +class DBBrowserDB; +class ExtendedTableWidget; +class SqliteTableModel; + +class QAbstractItemModel; +class QIntValidator; + +namespace Ui { +class TableBrowser; +} + +struct BrowseDataTableSettings +{ + using CondFormatMap = QMap>; + sqlb::Query query; // NOTE: We only store the sort order in here (for now) + QMap columnWidths; + QMap filterValues; + CondFormatMap condFormats; + CondFormatMap rowIdFormats; + QMap displayFormats; + bool showRowid; + QString encoding; + QString plotXAxis; + QList> plotYAxes; + QString unlockViewPk; + QMap hiddenColumns; + std::vector globalFilters; + + BrowseDataTableSettings() : + showRowid(false), + unlockViewPk("_rowid_") + { + plotYAxes = {QMap(), QMap()}; + } + + friend QDataStream& operator>>(QDataStream& stream, BrowseDataTableSettings& object) + { + int sortOrderIndex, sortOrderMode; + stream >> sortOrderIndex; + stream >> sortOrderMode; + object.query.orderBy().emplace_back(sortOrderIndex, sortOrderMode == Qt::AscendingOrder ? sqlb::Ascending : sqlb::Descending); + stream >> object.columnWidths; + stream >> object.filterValues; + stream >> object.displayFormats; + stream >> object.showRowid; + stream >> object.encoding; + + // Versions pre 3.10.0 didn't store the following information in their project files. + // To be absolutely sure that nothing strange happens when we read past the stream for + // those cases, check for the end of the stream here. + if(stream.atEnd()) + return stream; + stream >> object.plotXAxis; + stream >> object.plotYAxes[0]; + stream >> object.unlockViewPk; + + // Project files from versions before 3.11.0 didn't have these fields + if(stream.atEnd()) + return stream; + stream >> object.hiddenColumns; + + return stream; + } +}; + +class TableBrowser : public QWidget +{ + Q_OBJECT + +public: + explicit TableBrowser(QWidget* parent = nullptr); + ~TableBrowser(); + void init(DBBrowserDB* _db); + void reset(); + + sqlb::ObjectIdentifier currentlyBrowsedTableName() const; + + QMap allSettings() const { return m_settings; } + BrowseDataTableSettings& settings(const sqlb::ObjectIdentifier& object); + void setSettings(const sqlb::ObjectIdentifier& table, const BrowseDataTableSettings& table_settings); + + void setStructure(QAbstractItemModel* model, const sqlb::ObjectIdentifier& old_table = sqlb::ObjectIdentifier{}); + + SqliteTableModel* model() { return m_model; } + + QModelIndex currentIndex() const; + + void setDefaultEncoding(const QString& encoding) { m_defaultEncoding = encoding; } + QString defaultEncoding() const { return m_defaultEncoding; } + +public slots: + void setEnabled(bool enable); + void updateTable(); + void clearFilters(); + void reloadSettings(); + void setCurrentTable(const sqlb::ObjectIdentifier& name); + void updateRecordsetLabel(); + void jumpToRow(const sqlb::ObjectIdentifier& table, std::string column, const QByteArray& value); + +signals: + void projectModified(); + void selectionChanged(QModelIndex index); + void selectionChangedByDoubleClick(QModelIndex index); + void statusMessageRequested(QString message); + void updatePlot(ExtendedTableWidget* tableWidget, SqliteTableModel* model, BrowseDataTableSettings* settings, bool keepOrResetSelection); + void createView(std::string sql); + void requestFileOpen(QString file); + +private slots: + void clear(); + void updateFilter(size_t column, const QString& value); + void addCondFormatFromFilter(size_t column, const QString& value); + void addCondFormat(bool isRowIdFormat, size_t column, const CondFormat& newCondFormat); + void clearAllCondFormats(size_t column); + void clearRowIdFormats(const QModelIndex index); + void editCondFormats(size_t column); + void applySettings(const BrowseDataTableSettings& storedData, bool skipFilters = false); + void enableEditing(bool enable_edit); + void showRowidColumn(bool show, bool skipFilters = false); + void unlockViewEditing(bool unlock, QString pk = QString()); + void hideColumns(int column = -1, bool hide = true); + void on_actionShowAllColumns_triggered(); + void updateInsertDeleteRecordButton(); + void duplicateRecord(int currentRow); + void headerClicked(int logicalindex); + void updateColumnWidth(int section, int /*old_size*/, int new_size); + void showDataColumnPopupMenu(const QPoint& pos); + void showRecordPopupMenu(const QPoint& pos); + void addRecord(); + void insertValues(); + void deleteRecord(); + void navigatePrevious(); + void navigateNext(); + void navigateBegin(); + void navigateEnd(); + void navigateGoto(); + void selectTableLine(int lineToSelect); + void on_actionClearFilters_triggered(); + void on_actionClearSorting_triggered(); + void editDisplayFormat(); + void exportFilteredTable(); + void saveFilterAsView(); + void setTableEncoding(bool forAllTables = false); + void setDefaultTableEncoding(); + void fetchedData(); + +private: + enum class ReplaceMode + { + NoReplace, + ReplaceNext, + ReplaceAll, + }; + void find(const QString& expr, bool forward, bool include_first = false, ReplaceMode replace = ReplaceMode::NoReplace); + +private: + Ui::TableBrowser* ui; + QIntValidator* gotoValidator; + QMenu* popupNewRecordMenu; + QMenu* popupSaveFilterAsMenu; + QMenu* popupHeaderMenu; + + DBBrowserDB* db; + + QAbstractItemModel* dbStructureModel; + + /// the table model used in the "Browse Data" page (re-used and + /// re-initialized when switching to another table) + SqliteTableModel* m_model; + + static QMap m_settings; // This is static, so settings are shared between instances + static QString m_defaultEncoding; + + Palette m_condFormatPalette; + bool m_adjustRows; + bool m_columnsResized; + + void modifySingleFormat(const bool isRowIdFormat, const QString& filter, const QModelIndex refIndex, + std::function changeFunction); + void modifyFormat(std::function changeFunction); +}; + +#endif diff --git a/src/SqliteDBProcess/src/TableBrowser.ui b/src/SqliteDBProcess/src/TableBrowser.ui new file mode 100644 index 0000000..ea82b1f --- /dev/null +++ b/src/SqliteDBProcess/src/TableBrowser.ui @@ -0,0 +1,1475 @@ + + + TableBrowser + + + + 0 + 0 + 695 + 400 + + + + Browse Data + + + + 1 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + 2 + + + 2 + + + + + &Table: + + + comboBrowseTable + + + + + + + + 150 + 0 + + + + Select a table to browse data + + + Use this list to select a table to be displayed in the database view + + + 30 + + + QComboBox::AdjustToContents + + + + + + + Qt::ToolButtonIconOnly + + + + + + + + + + + + + + + + + + + + + + + Qt::Horizontal + + + QSizePolicy::MinimumExpanding + + + + 0 + 20 + + + + + + + + + + + 5 + + + 2 + + + 0 + + + 2 + + + 0 + + + + + + + + + 50 + 16777215 + + + + 1 + + + + + + + Qt::ToolButtonIconOnly + + + + + + + + + + + + + + + + + + + + + + + + true + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + + + QAbstractItemView::NoEditTriggers + + + QAbstractItemView::DragDrop + + + Qt::CopyAction + + + QAbstractItemView::ContiguousSelection + + + + + + + + 16777215 + 62 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + 1 + + + 1 + + + 1 + + + 1 + + + 1 + + + + + + 3 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + Qt::DefaultContextMenu + + + Text pattern to find considering the checks in this frame + + + Find in table + + + true + + + + + + + Find previous match [Shift+F3] + + + Find previous match with wrapping + + + + :/icons/up:/icons/up + + + Shift+F3 + + + + + + + Find next match [Enter, F3] + + + Find next match with wrapping + + + + :/icons/down:/icons/down + + + F3 + + + + + + + The found pattern must match in letter case + + + Case Sensitive + + + + + + + The found pattern must be a whole word + + + Whole Cell + + + + + + + Interpret search pattern as a regular expression + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + Regular Expression + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Close Find Bar + + + Close Find Bar + + + + :/icons/close:/icons/close + + + true + + + + + + + + + + + 3 + + + 0 + + + 0 + + + 0 + + + 0 + + + + + Qt::DefaultContextMenu + + + Text to replace with + + + Replace with + + + true + + + + + + + Replace next match + + + Replace + + + + + + + Replace all matches + + + Replace all + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + + + 2 + + + 2 + + + 2 + + + 2 + + + + + false + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + + + |< + + + + :/icons/resultset_first.png:/icons/resultset_first.png + + + + + + + false + + + Scroll one page upwards + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + + + < + + + + :/icons/resultset_previous.png:/icons/resultset_previous.png + + + + + + + 0 - 0 of 0 + + + + + + + false + + + Scroll one page downwards + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + + + > + + + + :/icons/run:/icons/run + + + + + + + false + + + Scroll to the end + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + >| + + + + :/icons/run_line:/icons/run_line + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + + + Go to: + + + + + + + Enter record number to browse + + + Type a record number in this area and click the Go to: button to display the record in the database view + + + 1 + + + + + + + + + true + + + Show rowid column + + + Toggle the visibility of the rowid column + + + + + true + + + Unlock view editing + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + + + + + Edit display format + + + Edit the display format of the data in this column + + + + + + :/icons/add_record:/icons/add_record + + + New Record + + + Insert a new record in the current table + + + Insert a new record in the current table + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + + + + + + :/icons/delete_record:/icons/delete_record + + + Delete Record + + + Delete the current record + + + This button deletes the record or records currently selected in the table + + + This button deletes the record or records currently selected in the table + + + + + + :/icons/add_record:/icons/add_record + + + New Record + + + Insert new record using default values in browsed table + + + Insert new record using default values in browsed table + + + + + Insert Values... + + + Open a dialog for inserting values in a new record + + + Open a dialog for inserting values in a new record + + + + + Export to &CSV + + + Export the filtered data to CSV + + + Export the filtered data to CSV + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + + + + + Save as &view + + + Save the current filter, sort column and display formats as a view + + + Save the current filter, sort column and display formats as a view + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + + + + + + :/icons/save_table:/icons/save_table + + + Save Table As... + + + Save the table as currently displayed + + + Save the table as currently displayed + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + + + + + Hide column(s) + + + Hide selected column(s) + + + + + Show all columns + + + Show all columns that were hidden + + + + + Set encoding + + + Change the encoding of the text in the table cells + + + + + Set encoding for all tables + + + Change the default encoding assumed for all tables in the database + + + + + + :/icons/clear_filters:/icons/clear_filters + + + Clear Filters + + + Clear all filters + + + This button clears all the filters set in the header input fields for the currently browsed table. + + + This button clears all the filters set in the header input fields for the currently browsed table. + + + + + + :/icons/clear_sorting:/icons/clear_sorting + + + Clear Sorting + + + Reset the order of rows to the default + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + + + + + + :/icons/print:/icons/print + + + Print + + + Print currently browsed table data + + + + + + Print currently browsed table data. Print selection if more than one cell is selected. + + + Ctrl+P + + + Qt::WidgetShortcut + + + + + + :/icons/refresh:/icons/refresh + + + Refresh + + + Refresh the data in the selected table + + + This button refreshes the data in the currently selected table. + + + F5 + + + Qt::WidgetShortcut + + + + + true + + + + :/icons/find:/icons/find + + + Find in cells + + + Open the find tool bar which allows you to search for values in the table view below. + + + + + true + + + + :/icons/text_bold.png:/icons/text_bold.png + + + Bold + + + Bold + + + Ctrl+B + + + + + true + + + + :/icons/text_italic.png:/icons/text_italic.png + + + Italic + + + Italic + + + + + true + + + + :/icons/text_underline.png:/icons/text_underline.png + + + Underline + + + Underline + + + Ctrl+U + + + + + true + + + + :/icons/text_align_right.png:/icons/text_align_right.png + + + Align Right + + + Align Right + + + + + true + + + + :/icons/text_align_left.png:/icons/text_align_left.png + + + Align Left + + + Align Left + + + + + true + + + + :/icons/text_align_center.png:/icons/text_align_center.png + + + Center Horizontally + + + Center Horizontally + + + + + true + + + + :/icons/text_align_justify.png:/icons/text_align_justify.png + + + Justify + + + Justify + + + + + + :/icons/edit_cond_formats:/icons/edit_cond_formats + + + Edit Conditional Formats... + + + Edit Conditional Formats... + + + Edit conditional formats for the current column + + + + + + :/icons/clear_cond_formats:/icons/clear_cond_formats + + + Clear Format + + + Clear All Formats + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + + + + + + :/icons/foreground_color:/icons/foreground_color + + + Font Color + + + Font Color + + + + + + :/icons/background_color:/icons/background_color + + + Background Color + + + Background Color + + + + + true + + + + :/icons/cond_formats:/icons/cond_formats + + + Toggle Format Toolbar + + + Show/hide format toolbar + + + This button shows or hides the formatting toolbar of the Data Browser + + + This button shows or hides the formatting toolbar of the Data Browser + + + + + Select column + + + Ctrl+Space + + + + + true + + + + :/icons/text_replace:/icons/text_replace + + + Replace + + + Replace text in cells + + + + + + ExtendedTableWidget + QTableWidget +
ExtendedTableWidget.h
+ + foreignKeyClicked(QString,QString,QByteArray) + foreignKeyClicked(sqlb::ObjectIdentifier,QString,QByteArray) + +
+ + FilterLineEdit + QLineEdit +
FilterLineEdit.h
+
+
+ + comboBrowseTable + editGlobalFilter + fontComboBox + fontSizeBox + dataTable + editFindExpression + editReplaceExpression + buttonFindPrevious + buttonFindNext + checkFindCaseSensitive + checkFindWholeCell + checkFindRegEx + buttonFindClose + buttonReplaceNext + buttonReplaceAll + buttonBegin + buttonPrevious + buttonNext + buttonEnd + buttonGoto + editGoto + + + + + + + comboBrowseTable + activated(QString) + TableBrowser + updateTable() + + + 159 + 31 + + + 399 + 299 + + + + + buttonPrevious + clicked() + TableBrowser + navigatePrevious() + + + 55 + 395 + + + 399 + 299 + + + + + buttonNext + clicked() + TableBrowser + navigateNext() + + + 140 + 395 + + + 399 + 299 + + + + + buttonGoto + clicked() + TableBrowser + navigateGoto() + + + 452 + 397 + + + 399 + 299 + + + + + editGoto + returnPressed() + TableBrowser + navigateGoto() + + + 648 + 397 + + + 399 + 299 + + + + + buttonEnd + clicked() + TableBrowser + navigateEnd() + + + 170 + 395 + + + 499 + 314 + + + + + buttonBegin + clicked() + TableBrowser + navigateBegin() + + + 25 + 395 + + + 499 + 314 + + + + + dataTable + foreignKeyClicked(sqlb::ObjectIdentifier,std::string,QByteArray) + TableBrowser + jumpToRow(sqlb::ObjectIdentifier,std::string,QByteArray) + + + 70 + 242 + + + 518 + 314 + + + + + actionShowRowidColumn + triggered(bool) + TableBrowser + showRowidColumn(bool) + + + -1 + -1 + + + 518 + 314 + + + + + actionUnlockViewEditing + toggled(bool) + TableBrowser + unlockViewEditing(bool) + + + -1 + -1 + + + 518 + 314 + + + + + actionBrowseTableEditDisplayFormat + triggered() + TableBrowser + editDisplayFormat() + + + -1 + -1 + + + 518 + 314 + + + + + actionNewRecord + triggered() + TableBrowser + addRecord() + + + -1 + -1 + + + 518 + 314 + + + + + actionDeleteRecord + triggered() + TableBrowser + deleteRecord() + + + -1 + -1 + + + 399 + 299 + + + + + newRecordAction + triggered() + TableBrowser + addRecord() + + + -1 + -1 + + + 518 + 314 + + + + + insertValuesAction + triggered() + TableBrowser + insertValues() + + + -1 + -1 + + + 20 + 20 + + + + + actionFilteredTableExportCsv + triggered() + TableBrowser + exportFilteredTable() + + + -1 + -1 + + + 518 + 314 + + + + + actionFilterSaveAsView + triggered() + TableBrowser + saveFilterAsView() + + + -1 + -1 + + + 518 + 314 + + + + + actionSetTableEncoding + triggered() + TableBrowser + setTableEncoding() + + + -1 + -1 + + + 518 + 314 + + + + + actionSetAllTablesEncoding + triggered() + TableBrowser + setDefaultTableEncoding() + + + -1 + -1 + + + 518 + 314 + + + + + actionHideColumns + triggered() + TableBrowser + hideColumns() + + + -1 + -1 + + + 518 + 314 + + + + + actionRefresh + triggered() + TableBrowser + updateTable() + + + -1 + -1 + + + 518 + 314 + + + + + actionPrintTable + triggered() + dataTable + openPrintDialog() + + + -1 + -1 + + + 326 + 291 + + + + + + updateTable() + selectionChanged(QModelIndex) + navigatePrevious() + navigateNext() + navigateBegin() + navigateEnd() + navigateGoto() + jumpToRow(sqlb::ObjectIdentifier,std::string,QByteArray) + showRowidColumn(bool) + unlockViewEditing(bool) + editDisplayFormat() + addRecord() + deleteRecord() + insertValues() + exportFilteredTable + saveFilterAsView + setDefaultTableEncoding() + hideColumns() + setTableEncoding() + +
diff --git a/src/SqliteDBProcess/src/VacuumDialog.cpp b/src/SqliteDBProcess/src/VacuumDialog.cpp new file mode 100644 index 0000000..c2a622a --- /dev/null +++ b/src/SqliteDBProcess/src/VacuumDialog.cpp @@ -0,0 +1,53 @@ +#include "VacuumDialog.h" +#include "ui_VacuumDialog.h" +#include "sqlitedb.h" + +#include + +VacuumDialog::VacuumDialog(DBBrowserDB* _db, QWidget* parent) : + QDialog(parent), + ui(new Ui::VacuumDialog), + db(_db) +{ + // Create UI + ui->setupUi(this); + + // Show warning if DB is dirty + ui->labelSavepointWarning->setVisible(db->getDirty()); + + // Populate list of objects to compact. We just support vacuuming the different schemas here. + for(const auto& it : db->schemata) + { + QTreeWidgetItem* item = new QTreeWidgetItem(ui->treeDatabases); + item->setText(0, QString::fromStdString(it.first)); + item->setIcon(0, QIcon(QString(":icons/database"))); + ui->treeDatabases->addTopLevelItem(item); + } + + // Select the first item which should always be the main schema + ui->treeDatabases->setCurrentItem(ui->treeDatabases->topLevelItem(0)); +} + +VacuumDialog::~VacuumDialog() +{ + delete ui; +} + +void VacuumDialog::accept() +{ + if(ui->treeDatabases->selectedItems().count() == 0) + return QDialog::reject(); + + QApplication::setOverrideCursor(Qt::WaitCursor); + + // Commit all changes first + db->releaseAllSavepoints(); + + // Loop through all selected databases and vacuum them individually + QList selection = ui->treeDatabases->selectedItems(); + for(const QTreeWidgetItem* item : selection) + db->executeSQL("VACUUM " + sqlb::escapeIdentifier(item->text(0).toStdString()), false); + + QApplication::restoreOverrideCursor(); + QDialog::accept(); +} diff --git a/src/SqliteDBProcess/src/VacuumDialog.h b/src/SqliteDBProcess/src/VacuumDialog.h new file mode 100644 index 0000000..6e4efa8 --- /dev/null +++ b/src/SqliteDBProcess/src/VacuumDialog.h @@ -0,0 +1,28 @@ +#ifndef VACUUMDIALOG_H +#define VACUUMDIALOG_H +#include "WBFZExchangePluginAPI.h" +#include + +namespace Ui { +class VacuumDialog; +} + +class DBBrowserDB; + +class VacuumDialog : public QDialog +{ + Q_OBJECT + +public: + explicit VacuumDialog(DBBrowserDB* _db, QWidget* parent = nullptr); + ~VacuumDialog() override; + +private: + Ui::VacuumDialog* ui; + DBBrowserDB* db; + +protected slots: + void accept() override; +}; + +#endif diff --git a/src/SqliteDBProcess/src/VacuumDialog.ui b/src/SqliteDBProcess/src/VacuumDialog.ui new file mode 100644 index 0000000..e1bf215 --- /dev/null +++ b/src/SqliteDBProcess/src/VacuumDialog.ui @@ -0,0 +1,127 @@ + + + VacuumDialog + + + + 0 + 0 + 475 + 439 + + + + Compact Database + + + + + + + 75 + true + + + + Warning: Compacting the database will commit all of your changes. + + + true + + + 5 + + + + + + + Please select the databases to co&mpact: + + + treeDatabases + + + + + + + QAbstractItemView::NoEditTriggers + + + false + + + QAbstractItemView::ExtendedSelection + + + false + + + false + + + false + + + false + + + + 1 + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + treeDatabases + buttonBox + + + + + buttonBox + accepted() + VacuumDialog + accept() + + + 222 + 374 + + + 157 + 274 + + + + + buttonBox + rejected() + VacuumDialog + reject() + + + 290 + 380 + + + 286 + 274 + + + + + diff --git a/src/SqliteDBProcess/src/app.plist b/src/SqliteDBProcess/src/app.plist new file mode 100644 index 0000000..03023c3 --- /dev/null +++ b/src/SqliteDBProcess/src/app.plist @@ -0,0 +1,82 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleDocumentTypes + + + CFBundleTypeExtensions + + db + db3 + sqlite + sqlite3 + + CFBundleTypeName + Database Document + CFBundleTypeOSTypes + + **** + + CFBundleTypeRole + Editor + + + CFBundleTypeExtensions + + sqbpro + + CFBundleTypeName + DB Browser for SQLite Project + CFBundleTypeOSTypes + + **** + + CFBundleTypeRole + Editor + + + CFBundleTypeExtensions + + * + + CFBundleTypeName + Other Document Type + CFBundleTypeOSTypes + + **** + + CFBundleTypeRole + Editor + + + CFBundleExecutable + @EXECUTABLE@ + CFBundleGetInfoString + 3.12.2 + CFBundleIconFile + @ICON@ + CFBundleIdentifier + net.sourceforge.sqlitebrowser + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + DB Browser for SQLite + CFBundlePackageType + APPL + CFBundleShortVersionString + 3.12.2 + CFBundleSignature + SqLB + CFBundleVersion + 3.12.2 + NSPrincipalClass + NSApplication + NSHighResolutionCapable + + NSSupportsAutomaticGraphicsSwitching + + + diff --git a/src/SqliteDBProcess/src/csvparser.cpp b/src/SqliteDBProcess/src/csvparser.cpp new file mode 100644 index 0000000..212a053 --- /dev/null +++ b/src/SqliteDBProcess/src/csvparser.cpp @@ -0,0 +1,324 @@ +#include "csvparser.h" + +#include + +CSVParser::CSVParser(bool trimfields, char32_t fieldseparator, char32_t quotechar) + : m_bTrimFields(trimfields) + , m_iNumExtraBytesFieldSeparator(0) + , m_iNumExtraBytesQuoteChar(0) + , m_pCSVProgress(nullptr) + , m_nBufferSize(4096) +{ + for(int i=0;i<4;i++) + { + m_cFieldSeparator[i] = static_cast((fieldseparator >> i*8) & 0xFF); + m_cQuoteChar[i] = static_cast((quotechar >> i*8) & 0xFF); + + if(i && m_cFieldSeparator[i]) + m_iNumExtraBytesFieldSeparator = i; + if(i && m_cQuoteChar[i]) + m_iNumExtraBytesQuoteChar = i; + } +} + +CSVParser::~CSVParser() +{ + delete m_pCSVProgress; +} + +namespace { +// This function adds a character to an existing field structure. If necessary, it extends the buffer size. +inline void addChar(CSVField* field, char c) +{ + // Increase buffer size if it is too small + if(field->buffer_length >= field->buffer_max_length) + { + field->buffer_max_length += 64; + field->buffer = static_cast(realloc(field->buffer, field->buffer_max_length)); + } + + // Add char to the end of the buffer and increase length by one + field->buffer[field->buffer_length++] = c; +} + +// This function increases the size of the field list of an existing row. However, it only does so if the field list is currently full. +inline void increaseRowSize(CSVRow& r) +{ + // Check if field list is full + if(r.num_fields >= r.max_num_fields) + { + // Increase field list size + r.max_num_fields += 5; + r.fields = static_cast(realloc(r.fields, r.max_num_fields*sizeof(CSVField))); + + // Initialise the newly created field structures + for(size_t i=r.num_fields;idata = field->buffer; + field->data_length = field->buffer_length; + + // If we have to trim the field, do this by manipulating the data start and data length variables + if(trim) + { + // Check for trailing spaces and omit them + while(field->data_length && isspace(*field->data)) + { + field->data++; + field->data_length--; + } + + // Check for pending spaces and omit them + while(field->data_length && isspace(field->data[field->data_length-1])) + field->data_length--; + } + + // We assume here that the field object has been constructed in-place. So all we need to do for adding it to the row structure + // is increasing the field count by one to make sure the newly constructed field object is used. + r.num_fields++; + + // Clear field buffer for next use + field->buffer_length = 0; + + // Increase field list size if it is too small + increaseRowSize(r); + + // Return pointer to the next field + return &r.fields[r.num_fields]; +} + +// This function takes a parsed CSV row and hands it back to the caller of the CSV parser. It returns a null pointer if the parsing should be +// aborted, otherwise it returns a pointer to a new field object that can be used for storing the contents of the first field of the next row. +inline CSVField* addRow(CSVParser::csvRowFunction& f, CSVRow& r, size_t& rowCount) +{ + // Call row function + if(!f(rowCount, r)) + return nullptr; + + // Reset the field list by setting the field count to 0. No need to deconstruct anything else. + r.num_fields = 0; + + // Increase row count by one, as we're now starting to parse the next row + rowCount++; + + // Return a pointer to the first field in the row object because we're starting with the first field of the next row now + return r.fields; +} +} + +CSVParser::ParserResult CSVParser::parse(csvRowFunction insertFunction, QTextStream& stream, size_t nMaxRecords) +{ + ParseStates state = StateNormal; // State of the parser + QByteArray sBuffer; // Buffer for reading the file + CSVRow record; // Buffer for parsing the current row + size_t parsedRows = 0; // Number of rows parsed so far + CSVField* field; // Buffer for parsing the current field + + if(m_pCSVProgress) + m_pCSVProgress->start(); + + // Initialise row buffer and get pointer to the first field + record = { nullptr, 0, 0 }; + increaseRowSize(record); + field = record.fields; + + // Make sure all buffers are freed when we're done here + class FieldBufferDealloc + { + public: + explicit FieldBufferDealloc(CSVRow& row) : m_row(row) {} + ~FieldBufferDealloc() + { + for(size_t i=0;i 0 && parsedRows >= nMaxRecords) + return ParserResult::ParserResultSuccess; + } + + if(m_pCSVProgress && parsedRows % 100 == 0) + { + if(!m_pCSVProgress->update(bufferPos)) + return ParserResult::ParserResultCancelled; + } + } + + if(record.num_fields || record.fields->buffer_length) + { + addColumn(record, field, m_bTrimFields); + + if(!(field = addRow(insertFunction, record, parsedRows))) + return ParserResult::ParserResultError; + } + + if(m_pCSVProgress) + m_pCSVProgress->end(); + + // Check if we are in StateNormal or StateEndQuote state. The first is what we should be in for unquoted data and all files which + // end with a line break. The latter is what we are in for quoted data with no final line break. + return (state == StateNormal || state == StateEndQuote) ? ParserResult::ParserResultSuccess : ParserResult::ParserResultError; +} + +bool CSVParser::look_ahead(QTextStream& stream, QByteArray& sBuffer, const char** it, const char** sBufferEnd, char expected) +{ + // look ahead for next byte + auto nit = *it + 1; + + // In order to check what the next byte is we must make sure that that byte is already loaded. Assume we're at an m_nBufferSize + // boundary but not at the end of the file when we hit a \r character. Now we're going to be at the end of the sBuffer string + // because of the m_nBufferSize boundary. But this means that the following check won't work properly because we can't check the + // next byte when we really should be able to do so because there's more data coming. To fix this we'll check for this particular + // case and, if this is what's happening, we'll just load an extra byte. + if(nit == *sBufferEnd && !stream.atEnd()) + { + // Load one more byte + sBuffer.append(stream.read(1)); + *sBufferEnd = sBuffer.constEnd(); + + // Restore both iterators. sBufferEnd points to the imagined char after the last one in the string. So the extra byte we've + // just loaded is the one before that, i.e. the actual last one, and the original last char is the one before that. + *it = *sBufferEnd - 2; + nit = *sBufferEnd - 1; + } + + // Check whether there actually is one more byte and it is the expected one + return nit != *sBufferEnd && *nit == expected; +} diff --git a/src/SqliteDBProcess/src/csvparser.h b/src/SqliteDBProcess/src/csvparser.h new file mode 100644 index 0000000..8687ff9 --- /dev/null +++ b/src/SqliteDBProcess/src/csvparser.h @@ -0,0 +1,99 @@ +#ifndef CSVPARSER_H +#define CSVPARSER_H + +#include +#include +#include + +class QByteArray; +class QTextStream; + +/*! + * \brief The CSVProgress class + * + * This is an abstract class, an implementation of which you can pass to the CSVParser to get progress updates. + */ +class CSVProgress +{ +public: + virtual ~CSVProgress() = default; + + virtual void start() = 0; + virtual bool update(int64_t pos) = 0; + virtual void end() = 0; +}; + +/* + * This structure represents one parsed column in a CSV row + */ +struct CSVField +{ + // These variables are used internally by the parser. Usually there should be no need to access them from outside the parser + char* buffer; // Start of the field buffer + uint64_t buffer_length; // Current length of the buffer content. The content is NOT null-terminated + uint64_t buffer_max_length; // Size of the entire buffer + + // These variables point to the parsed contents of the field and can be directly passed to SQLite functions + char* data; // Pointer to the start of the field contents + uint64_t data_length; // Length of the field contents +}; + +/* + * This structure holds all columns of a single parsed CSV row + */ +struct CSVRow +{ + CSVField* fields; // Pointer to the field list/the first element in the list + size_t num_fields; // Number of fields in the row + size_t max_num_fields; // Size of the field list. Used internally by the parser only +}; + +class CSVParser +{ +public: + using csvRowFunction = std::function; + + CSVParser(bool trimfields = true, char32_t fieldseparator = ',', char32_t quotechar = '"'); + ~CSVParser(); + + enum ParserResult + { + ParserResultSuccess, + ParserResultCancelled, + ParserResultError + }; + + /*! + * \brief parse the given stream + * @param insertFunction A function pointer that is called for each parsed row. It is passed two parameters, the row number and a list of all parsed columns + * in the row. The called function may return false if an error ocurred to stop the import process. Otherwise it should return true. + * \param stream Stream with the CSV parser + * \param nMaxRecords Max records too read, 0 if unlimited + * \return ParserResult value that indicated whether action finished normally, was cancelled or errored. + */ + ParserResult parse(csvRowFunction insertFunction, QTextStream& stream, size_t nMaxRecords = 0); + + void setCSVProgress(CSVProgress* csvp) { m_pCSVProgress = csvp; } + +private: + enum ParseStates + { + StateNormal, + StateInQuote, + StateEndQuote + }; + +private: + bool m_bTrimFields; + char m_cFieldSeparator[4]; + char m_cQuoteChar[4]; + int m_iNumExtraBytesFieldSeparator; + int m_iNumExtraBytesQuoteChar; + CSVProgress* m_pCSVProgress; + + int64_t m_nBufferSize; //! internal buffer read size + + bool look_ahead(QTextStream& stream, QByteArray& sBuffer, const char** it, const char** sBufferEnd, char expected); +}; + +#endif diff --git a/src/SqliteDBProcess/src/docktextedit.cpp b/src/SqliteDBProcess/src/docktextedit.cpp new file mode 100644 index 0000000..39c40f9 --- /dev/null +++ b/src/SqliteDBProcess/src/docktextedit.cpp @@ -0,0 +1,115 @@ +#include "docktextedit.h" +#include "Settings.h" + +#include +#include +#include + +QsciLexerJSON* DockTextEdit::jsonLexer = nullptr; +QsciLexerXML* DockTextEdit::xmlLexer = nullptr; + +DockTextEdit::DockTextEdit(QWidget* parent) : + ExtendedScintilla(parent) +{ + // Create lexer objects if not done yet + if(jsonLexer == nullptr) + jsonLexer = new QsciLexerJSON(this); + if(xmlLexer == nullptr) + xmlLexer = new QsciLexerXML(this); + + // Set plain text as default + setLanguage(PlainText); + + jsonLexer->setFoldCompact(false); + jsonLexer->setHighlightComments(true); + + // Do rest of initialisation + reloadSettings(); +} + +void DockTextEdit::reloadSettings() +{ + // Set the parent settings for both lexers + reloadLexerSettings(jsonLexer); + reloadLexerSettings(xmlLexer); + + // Set the databrowser font for the plain text editor. + plainTextFont = QFont(Settings::getValue("databrowser", "font").toString()); + plainTextFont.setPointSize(Settings::getValue("databrowser", "fontsize").toInt()); + setFont(plainTextFont); + + setupSyntaxHighlightingFormat(jsonLexer, "comment", QsciLexerJSON::CommentLine); + setupSyntaxHighlightingFormat(jsonLexer, "comment", QsciLexerJSON::CommentBlock); + setupSyntaxHighlightingFormat(jsonLexer, "keyword", QsciLexerJSON::Keyword); + setupSyntaxHighlightingFormat(jsonLexer, "keyword", QsciLexerJSON::KeywordLD); + setupSyntaxHighlightingFormat(jsonLexer, "function", QsciLexerJSON::Operator); + setupSyntaxHighlightingFormat(jsonLexer, "string", QsciLexerJSON::String); + setupSyntaxHighlightingFormat(jsonLexer, "table", QsciLexerJSON::Number); + setupSyntaxHighlightingFormat(jsonLexer, "identifier", QsciLexerJSON::Property); + + // The default style for invalid JSON or unclosed strings uses red + // background and white foreground, but the current line has + // precedence, so it is by default white over gray. We change the + // default to something more readable for the current line at + // invalid JSON. + QColor stringColor = QColor(Settings::getValue("syntaxhighlighter", "string_colour").toString()); + jsonLexer->setColor(stringColor, QsciLexerJSON::Error); + jsonLexer->setColor(stringColor, QsciLexerJSON::UnclosedString); + QFont errorFont(Settings::getValue("editor", "font").toString()); + errorFont.setPointSize(Settings::getValue("editor", "fontsize").toInt()); + errorFont.setItalic(true); + jsonLexer->setFont(errorFont, QsciLexerJSON::Error); + jsonLexer->setFont(errorFont, QsciLexerJSON::UnclosedString); + jsonLexer->setPaper(jsonLexer->defaultPaper(QsciLexerJSON::String), QsciLexerJSON::Error); + jsonLexer->setPaper(jsonLexer->defaultPaper(QsciLexerJSON::String), QsciLexerJSON::UnclosedString); + + xmlLexer->setColor(QColor(Settings::getValue("syntaxhighlighter", "foreground_colour").toString())); + setupSyntaxHighlightingFormat(xmlLexer, "comment", QsciLexerHTML::HTMLComment); + setupSyntaxHighlightingFormat(xmlLexer, "keyword", QsciLexerHTML::Tag); + setupSyntaxHighlightingFormat(xmlLexer, "keyword", QsciLexerHTML::XMLTagEnd); + setupSyntaxHighlightingFormat(xmlLexer, "keyword", QsciLexerHTML::XMLStart); + setupSyntaxHighlightingFormat(xmlLexer, "keyword", QsciLexerHTML::XMLEnd); + setupSyntaxHighlightingFormat(xmlLexer, "string", QsciLexerHTML::HTMLDoubleQuotedString); + setupSyntaxHighlightingFormat(xmlLexer, "string", QsciLexerHTML::HTMLSingleQuotedString); + setupSyntaxHighlightingFormat(xmlLexer, "table", QsciLexerHTML::HTMLNumber); + setupSyntaxHighlightingFormat(xmlLexer, "identifier", QsciLexerHTML::Attribute); +} + +void DockTextEdit::setLanguage(Language lang) +{ + m_language = lang; + switch (lang) { + case PlainText: { + setLexer(nullptr); + setFolding(QsciScintilla::NoFoldStyle); + // This appears to be reset by setLexer + setFont(plainTextFont); + break; + } + case JSON: + setLexer(jsonLexer); + setFolding(QsciScintilla::BoxedTreeFoldStyle); + break; + case XML: + setLexer(xmlLexer); + setFolding(QsciScintilla::BoxedTreeFoldStyle); + break; + } +} + +void DockTextEdit::setTextInMargin(const QString& text) +{ + clearMarginText(); + setMarginType(0, QsciScintilla::TextMargin); + setMarginText(0, text, QsciStyle(QsciScintillaBase::STYLE_LINENUMBER)); + setMarginWidth(0, text); + reloadCommonSettings(); +} + +void DockTextEdit::clearTextInMargin() +{ + clearMarginText(); + setMarginLineNumbers(0, true); + reloadCommonSettings(); + emit linesChanged(); +} diff --git a/src/SqliteDBProcess/src/docktextedit.h b/src/SqliteDBProcess/src/docktextedit.h new file mode 100644 index 0000000..f6719a4 --- /dev/null +++ b/src/SqliteDBProcess/src/docktextedit.h @@ -0,0 +1,48 @@ +#ifndef DOCKTEXTEDIT_H +#define DOCKTEXTEDIT_H +#include "WBFZExchangePluginAPI.h" +#include "ExtendedScintilla.h" + +class QsciLexerJSON; +class QsciLexerXML; + +/** + * @brief The DockTextEdit class + * This class is based on our Extended QScintilla widget + */ +class DockTextEdit : public ExtendedScintilla +{ + Q_OBJECT + +public: + explicit DockTextEdit(QWidget *parent = nullptr); + + // Enumeration of supported languages + enum Language + { + PlainText, + JSON, + XML + }; + + void setLanguage(Language lang); + Language language() const { return m_language; } + + // Disables the line-number margin and sets this text in the first line. + void setTextInMargin(const QString& text); + + // Resets margin to their original line-number mode + void clearTextInMargin(); + +public slots: + void reloadSettings(); + +protected: + static QsciLexerJSON* jsonLexer; + static QsciLexerXML* xmlLexer; +private: + Language m_language; + QFont plainTextFont; +}; + +#endif diff --git a/src/SqliteDBProcess/src/extensions/extension-formats.c b/src/SqliteDBProcess/src/extensions/extension-formats.c new file mode 100644 index 0000000..53306b1 --- /dev/null +++ b/src/SqliteDBProcess/src/extensions/extension-formats.c @@ -0,0 +1,971 @@ +/*** Extension-formats + * + * This file adds the following file format support to SQLite. + * + * Plist - An XML like encoding + * Base64 - Standard binary to text conversion + * + * Compile using: + * + * gcc -g -fPIC -shared extension-formats.c -o libsqlite-formats.so + */ + +#include +#include +#include +#include +#include +#include +#include + +#define COMPILE_SQLITE_EXTENSIONS_AS_LOADABLE_MODULE 1 +#include "sqlite3ext.h" +SQLITE_EXTENSION_INIT1 + +#define INDENT_INCREMENT 4 + +#define ERROR_NONE 0 +#define ERROR_INSUFFICIENT_MEMORY 1 +#define ERROR_INVALID_HEADER 2 +#define ERROR_INVALID_TRAILER 3 +#define ERROR_INVALID_OFFSET 4 +#define ERROR_INVALID_OBJECT_LENGTH 5 +#define ERROR_INVALID_REFERENCE 6 +#define ERROR_INVALID_CHARACTER 7 + +typedef struct KEY { + struct OBJECT *key; + struct OBJECT *value; +} KEY; + +typedef struct OBJECT { + int type; + int length; + union { + time_t date; + double real; + long integer; + unsigned long uid; + unsigned char binary[1]; + char text[1]; + short int utf16[1]; + int refs[1]; + KEY keys[1]; + struct OBJECT *objects[1]; + } data; +} OBJECT; + +typedef struct CONFIG { + int bytesPerOffset; + int bytesPerReference; + int objectCount; + int rootObjectReference; + int offsetTableOffset; + size_t bufferLength; + size_t outputBufferLength; + size_t outputBufferIn; + long *offsetTable; + unsigned char *buffer; + unsigned char *outputBuffer; +} CONFIG; + +int createObject(int type, int length, int extra, OBJECT **ptr2); +int readObject(CONFIG *cfg, long offset, OBJECT **ptr2); + +static int indent = 2; + +int outputText(CONFIG *cfg, const char *text) +{ + size_t textLength = strlen(text); + size_t availableSpace = cfg->outputBufferLength - cfg->outputBufferIn; + while (textLength >= availableSpace) { + unsigned char *tmp = cfg->outputBuffer; + cfg->outputBufferLength += textLength + 1024; + cfg->outputBuffer = (unsigned char *)realloc(cfg->outputBuffer, cfg->outputBufferLength); + if (cfg->outputBuffer == NULL) { + if (tmp != NULL) + free(tmp); + return ERROR_INSUFFICIENT_MEMORY; + } + availableSpace = cfg->outputBufferLength - cfg->outputBufferIn; + } + strcpy((char *)(cfg->outputBuffer+cfg->outputBufferIn), text); + cfg->outputBufferIn += textLength; + return ERROR_NONE; +} + +int printWithIndent(CONFIG *cfg, const char *text, int newline) +{ + int err = ERROR_NONE; + char spaces[9] = " "; + int n = indent; + while ((n > 8) && (err == ERROR_NONE)) { + err = outputText(cfg, spaces); + n -= 8; + } + if ((n > 0) && (err == ERROR_NONE)) + err = outputText(cfg, spaces + 8 - n); + if (err == ERROR_NONE) + err = outputText(cfg, text); + if (newline && (err == ERROR_NONE)) + err = outputText(cfg, "\n"); + return err; +} + +int readHeader(CONFIG *cfg) +{ + if ((cfg->bufferLength < 40) || + (strncmp((const char *)(cfg->buffer), "bplist0", 7) != 0) || + ((cfg->buffer[7] != '0') && (cfg->buffer[7] != '1'))) + return ERROR_INVALID_HEADER; + return ERROR_NONE; +} + +int readTrailer(CONFIG *cfg) +{ + int i, j; + int objectCount = 0; + int rootObjectReference = 0; + int offsetTableOffset = 0; + unsigned char *ptr; + unsigned char *buffer = cfg->buffer + cfg->bufferLength - 32; + + // Extract the relevant fields + for (i=12; i < 16; i++) + objectCount = (objectCount << 8) + buffer[i]; + for (i=20; i < 24; i++) + rootObjectReference = (rootObjectReference << 8) + buffer[i]; + for (i=28; i < 32; i++) + offsetTableOffset = (offsetTableOffset << 8) + buffer[i]; + + // Populate the configurartion structure + cfg->bytesPerOffset = buffer[6]; + cfg->bytesPerReference = buffer[7]; + cfg->objectCount = objectCount; + cfg->rootObjectReference = rootObjectReference; + cfg->offsetTableOffset = offsetTableOffset; + cfg->offsetTable = (long *)malloc((size_t)objectCount * sizeof(long)); + if (cfg->offsetTable == NULL) + return ERROR_INSUFFICIENT_MEMORY; + ptr = cfg->buffer + offsetTableOffset; + for (i=0; i < objectCount; i++) { + long n = 0; + for (j=0; j < cfg->bytesPerOffset; j++) + n = (n << 8) | *(ptr++); + cfg->offsetTable[i] = n; + } + return ERROR_NONE; +} + +int createObject(int type, int length, int extra, OBJECT **ptr2) +{ + *ptr2 = NULL; + OBJECT *ptr = (OBJECT *)malloc(sizeof(OBJECT) + (size_t)extra); + if (ptr == NULL) + return ERROR_INSUFFICIENT_MEMORY; + ptr->type = type; + ptr->length = length; + *ptr2 = ptr; + return ERROR_NONE; +} + +long readInteger(unsigned char *ptr, int desc) +{ + long value = 0L; + int n = 1 << (desc & 0x03); + while (n--) + value = (value << 8) | (long)(*(ptr++)); + return value; +} + +unsigned long readUid(unsigned char *ptr, int desc) +{ + unsigned long value = 0L; + int n = 1 << (desc & 0x03); + while (n--) + value = (value << 8) | (unsigned long)(*(ptr++)); + return value; +} + +double readDouble(unsigned char *ptr, int desc) +{ + union { + double v; + float f[2]; + unsigned char b[8]; + } value; + int n = 1 << (desc & 0x03); + for (int i=0; i < n; i++) + value.b[7-i] = *(ptr++); + if (n == 4) + value.v = (double)(value.f[1]); + return value.v; +} + +int readArray(CONFIG *cfg, unsigned char *ptr, int type, int length, OBJECT **array2) +{ + int i; + long offset; + OBJECT *array; + int err = createObject(type, length, ((length-1) * (int)sizeof(OBJECT)), &array); + *array2 = NULL; + for (i=0; (i < length) && (err == ERROR_NONE); i++) { + offset = 0L; + for (int j=0; j < cfg->bytesPerReference; j++) + offset = (offset << 8) | (long)(*(ptr++)); + if (offset >= cfg->objectCount) + return ERROR_INVALID_REFERENCE; + offset = cfg->offsetTable[offset]; + err = readObject(cfg, offset, &(array->data.objects[i])); + } + if (err == ERROR_NONE) + *array2 = array; + return err; +} + +int readDictionary(CONFIG *cfg, unsigned char *ptr, int type, int length, OBJECT **dict2) +{ + int i; + long offset; + OBJECT *dict; + int err = createObject(type, length, ((length-1) * (int)sizeof(KEY)), &dict); + *dict2 = NULL; + if (err != ERROR_NONE) + return err; + for (i=0; (i < length) && (err == ERROR_NONE); i++) { + offset = 0L; + for (int j=0; j < cfg->bytesPerReference; j++) + offset = (offset << 8) | (long)(*(ptr++)); + if (offset >= cfg->objectCount) + return ERROR_INVALID_REFERENCE; + offset = cfg->offsetTable[offset]; + err = readObject(cfg, offset, &(dict->data.keys[i].key)); + } + for (i=0; (i < length) && (err == ERROR_NONE); i++) { + offset = 0L; + for (int j=0; j < cfg->bytesPerReference; j++) + offset = (offset << 8) | (long)(*(ptr++)); + if (offset >= cfg->objectCount) + return ERROR_INVALID_REFERENCE; + offset = cfg->offsetTable[offset]; + err = readObject(cfg, offset, &(dict->data.keys[i].value)); + } + if (err == ERROR_NONE) + *dict2 = dict; + return err; +} + +int readObject(CONFIG *cfg, long offset, OBJECT **ptr2) +{ + int i; + int length; + int type; + int err = ERROR_NONE; + OBJECT *obj; + unsigned char *ptr; + + *ptr2 = NULL; + if ((size_t)offset >= cfg->bufferLength) + return ERROR_INVALID_OFFSET; + ptr = cfg->buffer + offset; + type = *(ptr++); + length = (type & 0x0F); + type >>= 4; + if ((type != 0) && (length == 0x0F)) { + length = *(ptr++); + if ((length >> 4) != 0x01) + return ERROR_INVALID_OBJECT_LENGTH; + i = (int)readInteger(ptr, length); + ptr += (1 << (length & 0x03)); + length = i; + } + switch (type) { + case 0x00: // Singleton + err = createObject(type, length, 5, &obj); + if (err != ERROR_NONE) + return err; + switch(length) { + case 0: // NULL + strcpy(obj->data.text, ""); + break; + case 8: // False + strcpy(obj->data.text, ""); + break; + case 9: // True + strcpy(obj->data.text, ""); + break; + case 15: // Fill + strcpy(obj->data.text, ""); + break; + default: // Illegal + strcpy(obj->data.text, "***Error***"); + break; + } + break; + case 0x01: // Integer + err = createObject(type, length, 0, &obj); + if (err != ERROR_NONE) + return err; + obj->data.integer = readInteger(ptr, length); + break; + case 0x02: // Float + err = createObject(type, length, 0, &obj); + if (err != ERROR_NONE) + return err; + obj->data.real = readDouble(ptr, length); + break; + case 0x03: // Date in Elapsed seconds + err = createObject(type, length, 0, &obj); + if (err != ERROR_NONE) + return err; + obj->data.date = (time_t)readDouble(ptr, length); + break; + case 0x04: // binary data + err = createObject(type, length, length, &obj); + if (err != ERROR_NONE) + return err; + for (i=0; i < length; i++) + obj->data.binary[i] = *(ptr++); + break; + case 0x05: // ASCII string + err = createObject(type, length, length, &obj); + if (err != ERROR_NONE) + return err; + for (i=0; i < length; i++) + obj->data.text[i] = (char)*(ptr++); + obj->data.text[length] = '\0'; + break; + case 0x06: // UTF16 string + err = createObject(type, length, 2 * length, &obj); + if (err != ERROR_NONE) + return err; + for (i=0; i < length; i++) { + short int d = *(ptr++); + obj->data.utf16[i] = (short int)((d << 8) | *(ptr++)); + } + obj->data.utf16[length] = '\0'; + break; + case 0x08: // UID + err = createObject(type, length, 0, &obj); + if (err != ERROR_NONE) + return err; + obj->data.uid = readUid(ptr, length); + break; + case 0x0A: // Array + err = readArray(cfg, ptr, type, length, &obj); + break; + case 0x0D: // Dictionary + err = readDictionary(cfg, ptr, type, length, &obj); + break; + default: + fprintf(stderr, "Unknown object type: %d\n", type); + err = createObject(type, length, 0, &obj); + break; + } + if (err == ERROR_NONE) + *ptr2 = obj; + return err; +} + +void displayHex(CONFIG *cfg, int data) +{ + static int in = 0; + static char buffer[76]; + static long offset = 0L; + static char hex[] = "0123456789ABCDEF"; + char *tmp; + + // If -ve then flush buffer + if (data < 0) { + if (in > 0) { + tmp = buffer + in * 3 + 8 + 2 * (in / 8); + while (tmp < buffer+59) + *(tmp++) = ' '; + buffer[in+59] = '\0'; + printWithIndent(cfg, buffer, 1); + } + offset = 0L; + in = 0; + return; + } + + // If start of line add offset + if (in == 0) { + sprintf((char *)buffer, "%06lX ", offset); + offset += 16; + buffer[8] = '\0'; + } + + // Add Byte in hex + tmp = buffer + in * 3 + 8 + 2 * (in / 8); + *(tmp++) = hex[(data >> 4) & 0x0F]; + *(tmp++) = hex[data & 0x0F]; + *(tmp++) = ' '; + + // Add to character buffer + buffer[in+59] = (char)data; + + // Check if midpoint of buffer + if (++in == 8) { + *(tmp++) = '-'; + *(tmp++) = ' '; + } + + // Check if buffer full + if (in == 16) { + buffer[75] = '\0'; + printWithIndent(cfg, buffer, 1); + in = 0; + } + return; +} + +int displayObject(CONFIG *cfg, OBJECT *obj, int raw) +{ + char text[32]; + switch (obj->type) { + case 0x00: // Singleton + printWithIndent(cfg, obj->data.text, 1); + break; + case 0x01: // Integer + if (raw == 0) + printWithIndent(cfg, "", 0); + sprintf(text, "%ld", obj->data.integer); + outputText(cfg, text); + if (raw == 0) + outputText(cfg, "\n"); + break; + case 0x02: // Float + if (raw == 0) + printWithIndent(cfg, "", 0); + sprintf(text, "%f", obj->data.real); + outputText(cfg, text); + if (raw == 0) + outputText(cfg, "\n"); + break; + case 0x03: // Date + if (raw == 0) + printWithIndent(cfg, "", 0); + outputText(cfg, ctime(&(obj->data.date))); + if (raw == 0) + outputText(cfg, "\n"); + break; + case 0x04: // Binary data + if (raw == 0) + printWithIndent(cfg, "", 1); + indent += INDENT_INCREMENT; + for (int i=0; i < obj->length; i++) + displayHex(cfg, obj->data.binary[i]); + displayHex(cfg, -1); + indent -= INDENT_INCREMENT; + if (raw == 0) + printWithIndent(cfg, "", 1); + break; + case 0x05: // String + if (raw == 0) + printWithIndent(cfg, "", 0); + outputText(cfg, (obj->data.text)); + if (raw == 0) + outputText(cfg, "\n"); + break; + case 0x06: // UTF16 string + if (raw == 0) + printWithIndent(cfg, "", 1); + indent += INDENT_INCREMENT; + for (int i=0; i < obj->length; i++) + displayHex(cfg, obj->data.binary[i]); + displayHex(cfg, -1); + indent -= INDENT_INCREMENT; + if (raw == 0) + printWithIndent(cfg, "", 1); + break; + case 0x08: // UID + if (raw == 0) + printWithIndent(cfg, "", 0); + sprintf(text, "%lu", obj->data.uid); + outputText(cfg, text); + if (raw == 0) + outputText(cfg, "\n"); + break; + case 0x0A: // Array + printWithIndent(cfg, "", 1); + indent += INDENT_INCREMENT; + for (int i=0; i < obj->length; i++) + displayObject(cfg, obj->data.objects[i], 0); + indent -= INDENT_INCREMENT; + printWithIndent(cfg, "", 1); + break; + case 0x0D: // Dictionary + printWithIndent(cfg, "", 1); + indent += INDENT_INCREMENT; + for (int i=0; i < obj->length; i++) { + printWithIndent(cfg, "", 0); + displayObject(cfg, obj->data.keys[i].key, 1); + outputText(cfg, "\n"); + displayObject(cfg, obj->data.keys[i].value, 0); + } + indent -= INDENT_INCREMENT; + printWithIndent(cfg, "", 1); + break; + default: + sprintf(text, "Cannot display type: %d\n", obj->type); + outputText(cfg, text); + break; + } + return ERROR_NONE; +} + +int releaseObject(OBJECT *obj) +{ + int i; + switch (obj->type) { + case 0x00: // Singleton + case 0x01: // Int + case 0x02: // Float + case 0x03: // Date + case 0x04: // Binary + case 0x05: // ASCII + case 0x06: // UTF16 + case 0x08: // UID + break; + case 0x0A: // Array + for (i=0; i < obj->length; i++) + releaseObject(obj->data.objects[i]); + break; + case 0x0D: // Dictionary + for (i=0; i < obj->length; i++) { + releaseObject(obj->data.keys[i].key); + releaseObject(obj->data.keys[i].value); + } + break; + } + free(obj); + return ERROR_NONE; +} + +int parsePlist(char **result, const char *data, int dataLength) +{ + CONFIG cfg; + char *ptr; + OBJECT *obj; + int err = ERROR_NONE; + int version; + long offset; + long length; + char text[32]; + + // Determine the file size and save + cfg.buffer = (unsigned char *)data; + cfg.bufferLength = dataLength; + + // Preset the output buffer + cfg.outputBufferLength = 0; + cfg.outputBufferIn = 0; + cfg.outputBuffer = NULL; + + // Read the header + err = readHeader(&cfg); + if (err != ERROR_NONE) + return err; + version = (int)(cfg.buffer[7] - '0'); + + // Read the trailer + err = readTrailer(&cfg); + if (err != ERROR_NONE) + return err; // ERROR_INVALID_TRAILER; + + // Locate and read the root object + offset = cfg.offsetTable[cfg.rootObjectReference]; + err = readObject(&cfg, offset, &obj); + + // If no error display the root object and hence the whole object tree + if (err != ERROR_NONE) + return err; + + sprintf(text, "\n", version); + outputText(&cfg, text); + displayObject(&cfg, obj, 0); + outputText(&cfg, "\n"); + + // Create return data + length = strlen((const char *)(cfg.outputBuffer)); + ptr = malloc(length + 1); + *result = ptr; + if (ptr != NULL) { + for (int i=0; i < length; i++) + *(ptr++) = cfg.outputBuffer[i]; + *ptr = '\0'; + } + else + err = ERROR_INSUFFICIENT_MEMORY; + + // Release assigned memory + releaseObject(obj); + free(cfg.offsetTable); + free(cfg.outputBuffer); + return err; +} + +static char map[64] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; + +/** Encode Base64 + * + */ + +int encodeBase64(char **result, const unsigned char *data, int dataLength) +{ + unsigned char d; + int b; + int bitsLeft = 0; + int in = 0; + int out = 0; + int encodedLength = dataLength * 4 / 3 + 4; + char *encoded = malloc(encodedLength); + *result = encoded; + if (encoded == NULL) + return ERROR_INSUFFICIENT_MEMORY; + + while (out < dataLength) { + d = data[out++]; + switch (bitsLeft) { + case 0: + encoded[in++] = map[d >> 2]; + b = d & 0x03; + bitsLeft = 2; + break; + case 2: + b = (b << 8) | d; + encoded[in++] = map[b >> 4]; + b &= 0x0F; + bitsLeft = 4; + break; + case 4: + b = (b << 8) | d; + encoded[in++] = map[b >> 6]; + encoded[in++] = map[b & 0x03F]; + bitsLeft = 0; + break; + } + } + + /* Flush remaining bits */ + switch (bitsLeft) { + case 2: + encoded[in++] = map[b << 4]; + encoded[in++] = '='; + encoded[in++] = '='; + break; + case 4: + encoded[in++] = map[b << 2]; + encoded[in++] = '='; + break; + default: + break; + } + + /* Terminate as string */ + encoded[in] = '\0'; + return ERROR_NONE; +} + +static unsigned char unmap[256] = { 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // 00 - 07 + 0x81, 0x80, 0x81, 0x80, 0x80, 0x81, 0x80, 0x80, // 08 - 0F + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // 10 - 17 + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // 18 - 1F + 0x80, 0x81, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // 20 - 27 + 0x80, 0x80, 0x80, 0x3E, 0x80, 0x80, 0x80, 0x3F, // 28 - 2F + 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x3B, // 30 - 37 + 0x3C, 0x3D, 0x80, 0x80, 0x80, 0x40, 0x80, 0x80, // 38 - 3F + 0x80, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, // 40 - 47 + 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, // 48 - 4F + 0x0F, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, // 50 - 57 + 0x17, 0x18, 0x19, 0x80, 0x80, 0x80, 0x80, 0x80, // 58 - 5F + 0x80, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F, 0x20, // 60 - 67 + 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, // 68 - 6F + 0x29, 0x2A, 0x2B, 0x2C, 0x2D, 0x2E, 0x2F, 0x30, // 70 - 77 + 0x31, 0x32, 0x33, 0x80, 0x80, 0x80, 0x80, 0x80, // 78 - 7F + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // 80 - 87 + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // 88 - 8F + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // 90 - 97 + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // 98 - 9F + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // A0 - A7 + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // A8 - AF + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // B0 - B7 + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // B8 - BF + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // C0 - C7 + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // C8 - CF + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // D0 - D7 + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // D8 - DF + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // E0 - E7 + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // E8 - EF + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // F0 - F7 + 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, // F8 - FF +}; + +/*** decodeBase64 + * + * Returns decoded data and length. + */ + +int decodeBase64(unsigned char **result, int *resultLength, const char *data, int dataLength) +{ + int bitsLeft = 8; + int in = 0; + unsigned char b; + unsigned char d; + unsigned char *decoded = malloc(dataLength * 3 / 4 + 3); + *result = decoded; + *resultLength = 0; + if (decoded == NULL) + return ERROR_INSUFFICIENT_MEMORY; + + while (*data != '\0') { + // Get character and check valid + d = unmap[*(data++)]; + if (d > 0x3F) { + if (d == 0x80) { + free(decoded); + return ERROR_INVALID_CHARACTER; + } + break; // padding space + } + + switch (bitsLeft) { + case 8: + decoded[in] = d; + bitsLeft = 2; + break; + case 2: + decoded[in] = (decoded[in] << 2) | (d >> 4); + decoded[++in] = d & 0x0F; + bitsLeft = 4; + break; + case 4: + decoded[in] = (decoded[in] << 4) | (d >> 2); + decoded[++in] = d & 0x03; + bitsLeft = 6; + break; + case 6: + decoded[in] = (decoded[in] << 6) | d; + in++; + bitsLeft = 8; + break; + } + } + *resultLength = in; + return ERROR_NONE; +} + +/** Wrapper functions + * + */ + +void freeResult(void *ptr) +{ + if (ptr != NULL) + free(ptr); + return; +} + +static void plistFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + int resultLength; + int errorCode = 0; + char *result = NULL; + assert( argc==1 ); + switch( sqlite3_value_type(argv[0]) ){ + case SQLITE_TEXT: + case SQLITE_BLOB: { + const char *data = sqlite3_value_text(argv[0]); + const int dataLength = sqlite3_value_bytes(argv[0]); + errorCode = parsePlist(&result, data, dataLength); + if (errorCode == ERROR_NONE) { + resultLength = strlen(result); + sqlite3_result_text(context, result, resultLength, &freeResult); + } else { + if (sqlite3_value_type(argv[0]) == SQLITE_TEXT) + sqlite3_result_text(context, data, dataLength, NULL); + else + sqlite3_result_blob(context, data, dataLength, NULL); + } + break; + } + default: { + sqlite3_result_null(context); + break; + } + } +} + +static void encodeBase64Func(sqlite3_context *context, int argc, sqlite3_value **argv){ + int resultLength; + int errorCode = 0; + int dataLength; + const unsigned char *data; + char *result = NULL; + assert( argc==1 ); + switch( sqlite3_value_type(argv[0]) ){ + case SQLITE_BLOB: + data = sqlite3_value_blob(argv[0]); + dataLength = sqlite3_value_bytes(argv[0]); + errorCode = encodeBase64(&result, data, dataLength); + if (errorCode == ERROR_NONE) { + resultLength = strlen(result); + sqlite3_result_text(context, result, resultLength, &freeResult); + } else { + sqlite3_result_blob(context, data, dataLength, NULL); + } + break; + case SQLITE_TEXT: { + data = sqlite3_value_text(argv[0]); + dataLength = sqlite3_value_bytes(argv[0]); + sqlite3_result_text(context, data, dataLength, NULL); + errorCode = encodeBase64(&result, data, dataLength); + if (errorCode == ERROR_NONE) { + resultLength = strlen(result); + sqlite3_result_text(context, result, resultLength, &freeResult); + } else { + sqlite3_result_text(context, data, dataLength, NULL); + } + break; + } + default: { + sqlite3_result_null(context); + break; + } + } +} + + +/*** isText + * + * Returns zero if supplied data is entirely + * ASCII printable characters or white space. + */ + +int isText(unsigned char *data, int dataLength) +{ + static unsigned char map[256] = { + 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 + }; + int result = 0; + for (int i=0; i < dataLength; i++) + result |= map[*(data++)]; + return result; +} + +/** isUTF8 + * + * Returns one if the characters conform to UTF8 format in so + * far as all the byte lengths are consistent. It does not + * check for overlong encodings or invalid characters. A zero + * is returned if the format is not consistent. + * Note that a file of all zeros will be returned as UTF8. + */ + +int isUTF8(unsigned char *data, int length) +{ + int count = 0; + while (length-- > 0) { + unsigned char d = *(data++); + switch (count) { + case 0: /* First character */ + if ((d & 0x80) == 0) + continue; /* 7 bit ASCII */ + if ((d & 0xE0) == 0xC0) { + count = 1; /* 2 byte code */ + break; + } + if ((d & 0xF0) == 0xE0) { + count = 2; /* 3 byte code */ + break; + } + if ((d & 0xF8) == 0xF0) { + count = 3; /* 4 byte code */ + break; + } + return 0; + default: + count--; + if ((d & 0xC0) != 0x80) + return 0; + break; + } + } + return (count == 0) ? 1 : 0; +} + +static void decodeBase64Func(sqlite3_context *context, int argc, sqlite3_value **argv){ + int resultLength; + int errorCode = 0; + unsigned char *result = NULL; + assert( argc==1 ); + switch( sqlite3_value_type(argv[0]) ){ + case SQLITE_BLOB: + case SQLITE_TEXT: { + const char *data = sqlite3_value_text(argv[0]); + int dataLength = sqlite3_value_bytes(argv[0]); + errorCode = decodeBase64(&result, &resultLength, data, dataLength); + if (errorCode == ERROR_NONE) { + if (isUTF8(result, resultLength)) + sqlite3_result_text(context, result, resultLength, &freeResult); + else + sqlite3_result_blob(context, result, resultLength, &freeResult); + } else { + if (sqlite3_value_type(argv[0]) == SQLITE_TEXT) + sqlite3_result_text(context, data, dataLength, NULL); + else + sqlite3_result_blob(context, data, dataLength, NULL); + } + break; + } + default: { + sqlite3_result_null(context); + break; + } + } +} + +/** RegisterExtensionFormats + * + * Register the parsing functions with sqlite + */ + +int RegisterExtensionFormats(sqlite3 *db) +{ + sqlite3_create_function(db, "plist", 1, 0, db, plistFunc, 0, 0); + sqlite3_create_function(db, "unBase64", 1, 0, db, decodeBase64Func, 0, 0); + sqlite3_create_function(db, "toBase64", 1, 0, db, encodeBase64Func, 0, 0); +} + +#ifdef COMPILE_SQLITE_EXTENSIONS_AS_LOADABLE_MODULE + +#ifdef _WIN32 +__declspec(dllexport) +#endif + +int sqlite3_extension_init(sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi) +{ + int rc = SQLITE_OK; + SQLITE_EXTENSION_INIT2(pApi); + RegisterExtensionFormats(db); + return rc; +} + +#endif + + diff --git a/src/SqliteDBProcess/src/extensions/extension-formats.def b/src/SqliteDBProcess/src/extensions/extension-formats.def new file mode 100644 index 0000000..2bfb84f --- /dev/null +++ b/src/SqliteDBProcess/src/extensions/extension-formats.def @@ -0,0 +1,5 @@ +EXPORTS + RegisterExtensionFormats + sqlite3_api + sqlite3_extension_init + freeResult diff --git a/src/SqliteDBProcess/src/extensions/extension-functions.c b/src/SqliteDBProcess/src/extensions/extension-functions.c new file mode 100644 index 0000000..2bdd194 --- /dev/null +++ b/src/SqliteDBProcess/src/extensions/extension-functions.c @@ -0,0 +1,1947 @@ +/* +This library will provide common mathematical and string functions in +SQL queries using the operating system libraries or provided +definitions. It includes the following functions: + +Math: acos, asin, atan, atn2, atan2, acosh, asinh, atanh, difference, +degrees, radians, cos, sin, tan, cot, cosh, sinh, tanh, coth, exp, +log, log10, power, sign, sqrt, square, ceil, floor, pi. + +String: replicate, charindex, leftstr, rightstr, ltrim, rtrim, trim, +replace, reverse, proper, padl, padr, padc, strfilter. + +Aggregate: stdev, variance, mode, median, lower_quartile, +upper_quartile. + +The string functions ltrim, rtrim, trim, replace are included in +recent versions of SQLite and so by default do not build. + +Compilation instructions: + Compile this C source file into a dynamic library as follows: + * Linux: + gcc -fPIC -lm -shared extension-functions.c -o libsqlitefunctions.so + * Mac OS X: + gcc -fno-common -dynamiclib extension-functions.c -o libsqlitefunctions.dylib + (You may need to add flags + -I /opt/local/include/ -L/opt/local/lib -lsqlite3 + if your sqlite3 is installed from Mac ports, or + -I /sw/include/ -L/sw/lib -lsqlite3 + if installed with Fink.) + * Windows: + 1. Install MinGW (http://www.mingw.org/) and you will get the gcc + (gnu compiler collection) + 2. add the path to your path variable (isn't done during the + installation!) + 3. compile: + gcc -shared -I "path" -o libsqlitefunctions.so extension-functions.c + (path = path of sqlite3ext.h; i.e. C:\programs\sqlite) + +Usage instructions for applications calling the sqlite3 API functions: + In your application, call sqlite3_enable_load_extension(db,1) to + allow loading external libraries. Then load the library libsqlitefunctions + using sqlite3_load_extension; the third argument should be 0. + See http://www.sqlite.org/cvstrac/wiki?p=LoadableExtensions. + Select statements may now use these functions, as in + SELECT cos(radians(inclination)) FROM satsum WHERE satnum = 25544; + +Usage instructions for the sqlite3 program: + If the program is built so that loading extensions is permitted, + the following will work: + sqlite> SELECT load_extension('./libsqlitefunctions.so'); + sqlite> select cos(radians(45)); + 0.707106781186548 + Note: Loading extensions is by default prohibited as a + security measure; see "Security Considerations" in + http://www.sqlite.org/cvstrac/wiki?p=LoadableExtensions. + If the sqlite3 program and library are built this + way, you cannot use these functions from the program, you + must write your own program using the sqlite3 API, and call + sqlite3_enable_load_extension as described above, or else + rebuilt the sqlite3 program to allow loadable extensions. + +Alterations: +The instructions are for Linux, Mac OS X, and Windows; users of other +OSes may need to modify this procedure. In particular, if your math +library lacks one or more of the needed trig or log functions, comment +out the appropriate HAVE_ #define at the top of file. If you do not +wish to make a loadable module, comment out the define for +COMPILE_SQLITE_EXTENSIONS_AS_LOADABLE_MODULE. If you are using a +version of SQLite without the trim functions and replace, comment out +the HAVE_TRIM #define. + +Liam Healy + +History: +2010-01-06 Correct check for argc in squareFunc, and add Windows +compilation instructions. +2009-06-24 Correct check for argc in properFunc. +2008-09-14 Add check that memory was actually allocated after +sqlite3_malloc or sqlite3StrDup, call sqlite3_result_error_nomem if +not. Thanks to Robert Simpson. +2008-06-13 Change to instructions to indicate use of the math library +and that program might work. +2007-10-01 Minor clarification to instructions. +2007-09-29 Compilation as loadable module is optional with +COMPILE_SQLITE_EXTENSIONS_AS_LOADABLE_MODULE. +2007-09-28 Use sqlite3_extension_init and macros +SQLITE_EXTENSION_INIT1, SQLITE_EXTENSION_INIT2, so that it works with +sqlite3_load_extension. Thanks to Eric Higashino and Joe Wilson. +New instructions for Mac compilation. +2007-09-17 With help from Joe Wilson and Nuno Luca, made use of +external interfaces so that compilation is no longer dependent on +SQLite source code. Merged source, header, and README into a single +file. Added casts so that Mac will compile without warnings (unsigned +and signed char). +2007-09-05 Included some definitions from sqlite 3.3.13 so that this +will continue to work in newer versions of sqlite. Completed +description of functions available. +2007-03-27 Revised description. +2007-03-23 Small cleanup and a bug fix on the code. This was mainly +letting errno flag errors encountered in the math library and checking +the result, rather than pre-checking. This fixes a bug in power that +would cause an error if any non-positive number was raised to any +power. +2007-02-07 posted by Mikey C to sqlite mailing list. +Original code 2006 June 05 by relicoder. + +*/ + +//#include "config.h" + +#define COMPILE_SQLITE_EXTENSIONS_AS_LOADABLE_MODULE 1 +#define HAVE_ACOSH 1 +#define HAVE_ASINH 1 +#define HAVE_ATANH 1 +#define HAVE_SINH 1 +#define HAVE_COSH 1 +#define HAVE_TANH 1 +#define HAVE_LOG10 1 +#define HAVE_ISBLANK 1 +#define SQLITE_SOUNDEX 1 +#define HAVE_TRIM 1 /* LMH 2007-03-25 if sqlite has trim functions */ + +#ifdef COMPILE_SQLITE_EXTENSIONS_AS_LOADABLE_MODULE +#include "sqlite3ext.h" +SQLITE_EXTENSION_INIT1 +#else +#include "sqlite3.h" +#endif + +#include +/* relicoder */ +#include +#include +#include +#include /* LMH 2007-03-25 */ + +#include +#include + +#ifndef _MAP_H_ +#define _MAP_H_ + +#include + +/* +** Simple binary tree implementation to use in median, mode and quartile calculations +** Tree is not necessarily balanced. That would require something like red&black trees of AVL +*/ + +typedef int(*cmp_func)(const void *, const void *); +typedef void(*map_iterator)(void*, int64_t, void*); + +typedef struct node{ + struct node *l; + struct node *r; + void* data; + int64_t count; +} node; + +typedef struct map{ + node *base; + cmp_func cmp; + short free; +} map; + +/* +** creates a map given a comparison function +*/ +map map_make(cmp_func cmp); + +/* +** inserts the element e into map m +*/ +void map_insert(map *m, void *e); + +/* +** executes function iter over all elements in the map, in key increasing order +*/ +void map_iterate(map *m, map_iterator iter, void* p); + +/* +** frees all memory used by a map +*/ +void map_destroy(map *m); + +/* +** compares 2 integers +** to use with map_make +*/ +int int_cmp(const void *a, const void *b); + +/* +** compares 2 doubles +** to use with map_make +*/ +int double_cmp(const void *a, const void *b); + +#endif /* _MAP_H_ */ + +typedef uint8_t u8; +typedef uint16_t u16; +typedef int64_t i64; + +static char *sqlite3StrDup( const char *z ) { + char *res = sqlite3_malloc( strlen(z)+1 ); + return strcpy( res, z ); +} + +/* +** These are copied verbatim from fun.c so as to not have the names exported +*/ + +/* LMH from sqlite3 3.3.13 */ +/* +** This table maps from the first byte of a UTF-8 character to the number +** of trailing bytes expected. A value '4' indicates that the table key +** is not a legal first byte for a UTF-8 character. +*/ +static const u8 xtra_utf8_bytes[256] = { +/* 0xxxxxxx */ +0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + +/* 10wwwwww */ +4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, +4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, +4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, +4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + +/* 110yyyyy */ +1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, +1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + +/* 1110zzzz */ +2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + +/* 11110yyy */ +3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, +}; + + +/* +** This table maps from the number of trailing bytes in a UTF-8 character +** to an integer constant that is effectively calculated for each character +** read by a naive implementation of a UTF-8 character reader. The code +** in the READ_UTF8 macro explains things best. +*/ +static const int xtra_utf8_bits[] = { + 0, + 12416, /* (0xC0 << 6) + (0x80) */ + 925824, /* (0xE0 << 12) + (0x80 << 6) + (0x80) */ + 63447168 /* (0xF0 << 18) + (0x80 << 12) + (0x80 << 6) + 0x80 */ +}; + +/* +** If a UTF-8 character contains N bytes extra bytes (N bytes follow +** the initial byte so that the total character length is N+1) then +** masking the character with utf8_mask[N] must produce a non-zero +** result. Otherwise, we have an (illegal) overlong encoding. +*/ +static const int utf_mask[] = { + 0x00000000, + 0xffffff80, + 0xfffff800, + 0xffff0000, +}; + +/* LMH salvaged from sqlite3 3.3.13 source code src/utf.c */ +#define READ_UTF8(zIn, c) { \ + int xtra; \ + c = *(zIn)++; \ + xtra = xtra_utf8_bytes[c]; \ + switch( xtra ){ \ + case 4: c = (int)0xFFFD; break; \ + case 3: c = (c<<6) + *(zIn)++; \ + case 2: c = (c<<6) + *(zIn)++; \ + case 1: c = (c<<6) + *(zIn)++; \ + c -= xtra_utf8_bits[xtra]; \ + if( (utf_mask[xtra]&c)==0 \ + || (c&0xFFFFF800)==0xD800 \ + || (c&0xFFFFFFFE)==0xFFFE ){ c = 0xFFFD; } \ + } \ +} + +static int sqlite3ReadUtf8(const unsigned char *z){ + int c; + READ_UTF8(z, c); + return c; +} + +#define SKIP_UTF8(zIn) { \ + zIn += (xtra_utf8_bytes[*(u8 *)zIn] + 1); \ +} + +/* +** pZ is a UTF-8 encoded unicode string. If nByte is less than zero, +** return the number of unicode characters in pZ up to (but not including) +** the first 0x00 byte. If nByte is not less than zero, return the +** number of unicode characters in the first nByte of pZ (or up to +** the first 0x00, whichever comes first). +*/ +static int sqlite3Utf8CharLen(const char *z, int nByte){ + int r = 0; + const char *zTerm; + if( nByte>=0 ){ + zTerm = &z[nByte]; + }else{ + zTerm = (const char *)(-1); + } + assert( z<=zTerm ); + while( *z!=0 && z 0) ? 1: ( iVal < 0 ) ? -1: 0; + sqlite3_result_int64(context, iVal); + break; + } + case SQLITE_NULL: { + sqlite3_result_null(context); + break; + } + default: { + /* 2nd change below. Line for abs was: if( rVal<0 ) rVal = rVal * -1.0; */ + + rVal = sqlite3_value_double(argv[0]); + rVal = ( rVal > 0) ? 1: ( rVal < 0 ) ? -1: 0; + sqlite3_result_double(context, rVal); + break; + } + } +} + + +/* +** smallest integer value not less than argument +*/ +static void ceilFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + double rVal=0.0; + i64 iVal=0; + assert( argc==1 ); + switch( sqlite3_value_type(argv[0]) ){ + case SQLITE_INTEGER: { + i64 iVal = sqlite3_value_int64(argv[0]); + sqlite3_result_int64(context, iVal); + break; + } + case SQLITE_NULL: { + sqlite3_result_null(context); + break; + } + default: { + rVal = sqlite3_value_double(argv[0]); + sqlite3_result_int64(context, (i64) ceil(rVal)); + break; + } + } +} + +/* +** largest integer value not greater than argument +*/ +static void floorFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + double rVal=0.0; + i64 iVal=0; + assert( argc==1 ); + switch( sqlite3_value_type(argv[0]) ){ + case SQLITE_INTEGER: { + i64 iVal = sqlite3_value_int64(argv[0]); + sqlite3_result_int64(context, iVal); + break; + } + case SQLITE_NULL: { + sqlite3_result_null(context); + break; + } + default: { + rVal = sqlite3_value_double(argv[0]); + sqlite3_result_int64(context, (i64) floor(rVal)); + break; + } + } +} + +/* +** Given a string (s) in the first argument and an integer (n) in the second returns the +** string that constains s contatenated n times +*/ +static void replicateFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + unsigned char *z; /* input string */ + unsigned char *zo; /* result string */ + i64 iCount; /* times to repeat */ + i64 nLen; /* length of the input string (no multibyte considerations) */ + i64 nTLen; /* length of the result string (no multibyte considerations) */ + i64 i=0; + + if( argc!=2 || SQLITE_NULL==sqlite3_value_type(argv[0]) ) + return; + + iCount = sqlite3_value_int64(argv[1]); + + if( iCount<0 ){ + sqlite3_result_error(context, "domain error", -1); + }else{ + + nLen = sqlite3_value_bytes(argv[0]); + nTLen = nLen*iCount; + z=sqlite3_malloc(nTLen+1); + zo=sqlite3_malloc(nLen+1); + if (!z || !zo){ + sqlite3_result_error_nomem(context); + if (z) sqlite3_free(z); + if (zo) sqlite3_free(zo); + return; + } + strcpy((char*)zo, (char*)sqlite3_value_text(argv[0])); + + for(i=0; i=n it's a NOP +** padl(NULL) = NULL +*/ +static void padlFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + i64 ilen; /* length to pad to */ + i64 zl; /* length of the input string (UTF-8 chars) */ + int i = 0; + const char *zi; /* input string */ + char *zo; /* output string */ + char *zt; + + assert( argc==2 ); + + if( sqlite3_value_type(argv[0]) == SQLITE_NULL ){ + sqlite3_result_null(context); + }else{ + zi = (char *)sqlite3_value_text(argv[0]); + ilen = sqlite3_value_int64(argv[1]); + /* check domain */ + if(ilen<0){ + sqlite3_result_error(context, "domain error", -1); + return; + } + zl = sqlite3Utf8CharLen(zi, -1); + if( zl>=ilen ){ + /* string is longer than the requested pad length, return the same string (dup it) */ + zo = sqlite3StrDup(zi); + if (!zo){ + sqlite3_result_error_nomem(context); + return; + } + sqlite3_result_text(context, zo, -1, SQLITE_TRANSIENT); + }else{ + zo = sqlite3_malloc(strlen(zi)+ilen-zl+1); + if (!zo){ + sqlite3_result_error_nomem(context); + return; + } + zt = zo; + for(i=1; i+zl<=ilen; ++i){ + *(zt++)=' '; + } + /* no need to take UTF-8 into consideration here */ + strcpy(zt,zi); + } + sqlite3_result_text(context, zo, -1, SQLITE_TRANSIENT); + sqlite3_free(zo); + } +} + +/* +** given an input string (s) and an integer (n) appends spaces at the end of s +** until it has a length of n characters. +** When s has a length >=n it's a NOP +** padl(NULL) = NULL +*/ +static void padrFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + i64 ilen; /* length to pad to */ + i64 zl; /* length of the input string (UTF-8 chars) */ + i64 zll; /* length of the input string (bytes) */ + int i = 0; + const char *zi; /* input string */ + char *zo; /* output string */ + char *zt; + + assert( argc==2 ); + + if( sqlite3_value_type(argv[0]) == SQLITE_NULL ){ + sqlite3_result_null(context); + }else{ + zi = (char *)sqlite3_value_text(argv[0]); + ilen = sqlite3_value_int64(argv[1]); + /* check domain */ + if(ilen<0){ + sqlite3_result_error(context, "domain error", -1); + return; + } + zl = sqlite3Utf8CharLen(zi, -1); + if( zl>=ilen ){ + /* string is longer than the requested pad length, return the same string (dup it) */ + zo = sqlite3StrDup(zi); + if (!zo){ + sqlite3_result_error_nomem(context); + return; + } + sqlite3_result_text(context, zo, -1, SQLITE_TRANSIENT); + }else{ + zll = strlen(zi); + zo = sqlite3_malloc(zll+ilen-zl+1); + if (!zo){ + sqlite3_result_error_nomem(context); + return; + } + zt = strcpy(zo,zi)+zll; + for(i=1; i+zl<=ilen; ++i){ + *(zt++) = ' '; + } + *zt = '\0'; + } + sqlite3_result_text(context, zo, -1, SQLITE_TRANSIENT); + sqlite3_free(zo); + } +} + +/* +** given an input string (s) and an integer (n) appends spaces at the end of s +** and adds spaces at the begining of s until it has a length of n characters. +** Tries to add has many characters at the left as at the right. +** When s has a length >=n it's a NOP +** padl(NULL) = NULL +*/ +static void padcFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + i64 ilen; /* length to pad to */ + i64 zl; /* length of the input string (UTF-8 chars) */ + i64 zll; /* length of the input string (bytes) */ + int i = 0; + const char *zi; /* input string */ + char *zo; /* output string */ + char *zt; + + assert( argc==2 ); + + if( sqlite3_value_type(argv[0]) == SQLITE_NULL ){ + sqlite3_result_null(context); + }else{ + zi = (char *)sqlite3_value_text(argv[0]); + ilen = sqlite3_value_int64(argv[1]); + /* check domain */ + if(ilen<0){ + sqlite3_result_error(context, "domain error", -1); + return; + } + zl = sqlite3Utf8CharLen(zi, -1); + if( zl>=ilen ){ + /* string is longer than the requested pad length, return the same string (dup it) */ + zo = sqlite3StrDup(zi); + if (!zo){ + sqlite3_result_error_nomem(context); + return; + } + sqlite3_result_text(context, zo, -1, SQLITE_TRANSIENT); + }else{ + zll = strlen(zi); + zo = sqlite3_malloc(zll+ilen-zl+1); + if (!zo){ + sqlite3_result_error_nomem(context); + return; + } + zt = zo; + for(i=1; 2*i+zl<=ilen; ++i){ + *(zt++) = ' '; + } + strcpy(zt, zi); + zt+=zll; + for(; i+zl<=ilen; ++i){ + *(zt++) = ' '; + } + *zt = '\0'; + } + sqlite3_result_text(context, zo, -1, SQLITE_TRANSIENT); + sqlite3_free(zo); + } +} + +/* +** given 2 string (s1,s2) returns the string s1 with the characters NOT in s2 removed +** assumes strings are UTF-8 encoded +*/ +static void strfilterFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + const char *zi1; /* first parameter string (searched string) */ + const char *zi2; /* second parameter string (vcontains valid characters) */ + const char *z1; + const char *z21; + const char *z22; + char *zo; /* output string */ + char *zot; + int c1 = 0; + int c2 = 0; + + assert( argc==2 ); + + if( sqlite3_value_type(argv[0]) == SQLITE_NULL || sqlite3_value_type(argv[1]) == SQLITE_NULL ){ + sqlite3_result_null(context); + }else{ + zi1 = (char *)sqlite3_value_text(argv[0]); + zi2 = (char *)sqlite3_value_text(argv[1]); + /* + ** maybe I could allocate less, but that would imply 2 passes, rather waste + ** (possibly) some memory + */ + zo = sqlite3_malloc(strlen(zi1)+1); + if (!zo){ + sqlite3_result_error_nomem(context); + return; + } + zot = zo; + z1 = zi1; + while( (c1=sqliteCharVal((unsigned char *)z1))!=0 ){ + z21=zi2; + while( (c2=sqliteCharVal((unsigned char *)z21))!=0 && c2!=c1 ){ + sqliteNextChar(z21); + } + if( c2!=0){ + z22=z21; + sqliteNextChar(z22); + strncpy(zot, z21, z22-z21); + zot+=z22-z21; + } + sqliteNextChar(z1); + } + *zot = '\0'; + + sqlite3_result_text(context, zo, -1, SQLITE_TRANSIENT); + sqlite3_free(zo); + } +} + +/* +** Given a string z1, retutns the (0 based) index of it's first occurence +** in z2 after the first s characters. +** Returns -1 when there isn't a match. +** updates p to point to the character where the match occured. +** This is an auxiliary function. +*/ +static int _substr(const char* z1, const char* z2, int s, const char** p){ + int c = 0; + int rVal=-1; + const char* zt1; + const char* zt2; + int c1,c2; + + if( '\0'==*z1 ){ + return -1; + } + + while( (sqliteCharVal((unsigned char *)z2) != 0) && (c++)=0 ? rVal+s : rVal; +} + +/* +** given 2 input strings (s1,s2) and an integer (n) searches from the nth character +** for the string s1. Returns the position where the match occured. +** Characters are counted from 1. +** 0 is returned when no match occurs. +*/ + +static void charindexFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + const u8 *z1; /* s1 string */ + u8 *z2; /* s2 string */ + int s=0; + int rVal=0; + + assert( argc==3 ||argc==2); + + if( SQLITE_NULL==sqlite3_value_type(argv[0]) || SQLITE_NULL==sqlite3_value_type(argv[1])){ + sqlite3_result_null(context); + return; + } + + z1 = sqlite3_value_text(argv[0]); + if( z1==0 ) return; + z2 = (u8*) sqlite3_value_text(argv[1]); + if(argc==3){ + s = sqlite3_value_int(argv[2])-1; + if(s<0){ + s=0; + } + }else{ + s = 0; + } + + rVal = _substr((char *)z1,(char *)z2,s,NULL); + sqlite3_result_int(context, rVal+1); +} + +/* +** given a string (s) and an integer (n) returns the n leftmost (UTF-8) characters +** if the string has a length<=n or is NULL this function is NOP +*/ +static void leftFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + int c=0; + int cc=0; + int l=0; + const unsigned char *z; /* input string */ + const unsigned char *zt; + unsigned char *rz; /* output string */ + + assert( argc==2); + + if( SQLITE_NULL==sqlite3_value_type(argv[0]) || SQLITE_NULL==sqlite3_value_type(argv[1])){ + sqlite3_result_null(context); + return; + } + + z = sqlite3_value_text(argv[0]); + l = sqlite3_value_int(argv[1]); + zt = z; + + while( sqliteCharVal(zt) && c++ 0 ){ + sqliteNextChar(zt); + } + + rz = sqlite3_malloc(ze-zt+1); + if (!rz){ + sqlite3_result_error_nomem(context); + return; + } + strcpy((char*) rz, (char*) (zt)); + sqlite3_result_text(context, (char*)rz, -1, SQLITE_TRANSIENT); + sqlite3_free(rz); +} + +#ifndef HAVE_TRIM +/* +** removes the whitespaces at the begining of a string. +*/ +const char* ltrim(const char* s){ + while( *s==' ' ) + ++s; + return s; +} + +/* +** removes the whitespaces at the end of a string. +** !mutates the input string! +*/ +void rtrim(char* s){ + char* ss = s+strlen(s)-1; + while( ss>=s && *ss==' ' ) + --ss; + *(ss+1)='\0'; +} + +/* +** Removes the whitespace at the begining of a string +*/ +static void ltrimFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + const char *z; + + assert( argc==1); + + if( SQLITE_NULL==sqlite3_value_type(argv[0]) ){ + sqlite3_result_null(context); + return; + } + z = sqlite3_value_text(argv[0]); + sqlite3_result_text(context, ltrim(z), -1, SQLITE_TRANSIENT); +} + +/* +** Removes the whitespace at the end of a string +*/ +static void rtrimFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + const char *z; + char *rz; + /* try not to change data in argv */ + + assert( argc==1); + + if( SQLITE_NULL==sqlite3_value_type(argv[0]) ){ + sqlite3_result_null(context); + return; + } + z = sqlite3_value_text(argv[0]); + rz = sqlite3StrDup(z); + rtrim(rz); + sqlite3_result_text(context, rz, -1, SQLITE_TRANSIENT); + sqlite3_free(rz); +} + +/* +** Removes the whitespace at the begining and end of a string +*/ +static void trimFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + const char *z; + char *rz; + /* try not to change data in argv */ + + assert( argc==1); + + if( SQLITE_NULL==sqlite3_value_type(argv[0]) ){ + sqlite3_result_null(context); + return; + } + z = sqlite3_value_text(argv[0]); + rz = sqlite3StrDup(z); + rtrim(rz); + sqlite3_result_text(context, ltrim(rz), -1, SQLITE_TRANSIENT); + sqlite3_free(rz); +} +#endif + +/* +** given a pointer to a string s1, the length of that string (l1), a new string (s2) +** and it's length (l2) appends s2 to s1. +** All lengths in bytes. +** This is just an auxiliary function +*/ +// static void _append(char **s1, int l1, const char *s2, int l2){ +// *s1 = realloc(*s1, (l1+l2+1)*sizeof(char)); +// strncpy((*s1)+l1, s2, l2); +// *(*(s1)+l1+l2) = '\0'; +// } + +#ifndef HAVE_TRIM + +/* +** given strings s, s1 and s2 replaces occurrences of s1 in s by s2 +*/ +static void replaceFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + const char *z1; /* string s (first parameter) */ + const char *z2; /* string s1 (second parameter) string to look for */ + const char *z3; /* string s2 (third parameter) string to replace occurrences of s1 with */ + int lz1; + int lz2; + int lz3; + int lzo=0; + char *zo=0; + int ret=0; + const char *zt1; + const char *zt2; + + assert( 3==argc ); + + if( SQLITE_NULL==sqlite3_value_type(argv[0]) ){ + sqlite3_result_null(context); + return; + } + + z1 = sqlite3_value_text(argv[0]); + z2 = sqlite3_value_text(argv[1]); + z3 = sqlite3_value_text(argv[2]); + /* handle possible null values */ + if( 0==z2 ){ + z2=""; + } + if( 0==z3 ){ + z3=""; + } + + lz1 = strlen(z1); + lz2 = strlen(z2); + lz3 = strlen(z3); + +#if 0 + /* special case when z2 is empty (or null) nothing will be changed */ + if( 0==lz2 ){ + sqlite3_result_text(context, z1, -1, SQLITE_TRANSIENT); + return; + } +#endif + + zt1=z1; + zt2=z1; + + while(1){ + ret=_substr(z2,zt1 , 0, &zt2); + + if( ret<0 ) + break; + + _append(&zo, lzo, zt1, zt2-zt1); + lzo+=zt2-zt1; + _append(&zo, lzo, z3, lz3); + lzo+=lz3; + + zt1=zt2+lz2; + } + _append(&zo, lzo, zt1, lz1-(zt1-z1)); + sqlite3_result_text(context, zo, -1, SQLITE_TRANSIENT); + sqlite3_free(zo); +} +#endif + +/* +** given a string returns the same string but with the characters in reverse order +*/ +static void reverseFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + const char *z; + const char *zt; + char *rz; + char *rzt; + int l = 0; + int i = 0; + + assert( 1==argc ); + + if( SQLITE_NULL==sqlite3_value_type(argv[0]) ){ + sqlite3_result_null(context); + return; + } + z = (char *)sqlite3_value_text(argv[0]); + l = strlen(z); + rz = sqlite3_malloc(l+1); + if (!rz){ + sqlite3_result_error_nomem(context); + return; + } + rzt = rz+l; + *(rzt--) = '\0'; + + zt=z; + while( sqliteCharVal((unsigned char *)zt)!=0 ){ + z=zt; + sqliteNextChar(zt); + for(i=1; zt-i>=z; ++i){ + *(rzt--)=*(zt-i); + } + } + + sqlite3_result_text(context, rz, -1, SQLITE_TRANSIENT); + sqlite3_free(rz); +} + +/* +** An instance of the following structure holds the context of a +** stdev() or variance() aggregate computation. +** implementaion of http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#Algorithm_II +** less prone to rounding errors +*/ +typedef struct StdevCtx StdevCtx; +struct StdevCtx { + double rM; + double rS; + i64 cnt; /* number of elements */ +}; + +/* +** An instance of the following structure holds the context of a +** mode() or median() aggregate computation. +** Depends on structures defined in map.c (see map & map) +** These aggregate functions only work for integers and floats although +** they could be made to work for strings. This is usually considered meaningless. +** Only usuall order (for median), no use of collation functions (would this even make sense?) +*/ +typedef struct ModeCtx ModeCtx; +struct ModeCtx { + i64 riM; /* integer value found so far */ + double rdM; /* double value found so far */ + i64 cnt; /* number of elements so far */ + double pcnt; /* number of elements smaller than a percentile */ + i64 mcnt; /* maximum number of occurrences (for mode) */ + i64 mn; /* number of occurrences (for mode and percentiles) */ + i64 is_double; /* whether the computation is being done for doubles (>0) or integers (=0) */ + map* m; /* map structure used for the computation */ + int done; /* whether the answer has been found */ +}; + +/* +** called for each value received during a calculation of stdev or variance +*/ +static void varianceStep(sqlite3_context *context, int argc, sqlite3_value **argv){ + StdevCtx *p; + + double delta; + double x; + + assert( argc==1 ); + p = sqlite3_aggregate_context(context, sizeof(*p)); + /* only consider non-null values */ + if( SQLITE_NULL != sqlite3_value_numeric_type(argv[0]) ){ + p->cnt++; + x = sqlite3_value_double(argv[0]); + delta = (x-p->rM); + p->rM += delta/p->cnt; + p->rS += delta*(x-p->rM); + } +} + +/* +** called for each value received during a calculation of mode of median +*/ +static void modeStep(sqlite3_context *context, int argc, sqlite3_value **argv){ + ModeCtx *p; + i64 xi=0; + double xd=0.0; + i64 *iptr; + double *dptr; + int type; + + assert( argc==1 ); + type = sqlite3_value_numeric_type(argv[0]); + + if( type == SQLITE_NULL) + return; + + p = sqlite3_aggregate_context(context, sizeof(*p)); + + if( 0==(p->m) ){ + p->m = calloc(1, sizeof(map)); + if( type==SQLITE_INTEGER ){ + /* map will be used for integers */ + *(p->m) = map_make(int_cmp); + p->is_double = 0; + }else{ + p->is_double = 1; + /* map will be used for doubles */ + *(p->m) = map_make(double_cmp); + } + } + + ++(p->cnt); + + if( 0==p->is_double ){ + xi = sqlite3_value_int64(argv[0]); + iptr = (i64*)calloc(1,sizeof(i64)); + *iptr = xi; + map_insert(p->m, iptr); + }else{ + xd = sqlite3_value_double(argv[0]); + dptr = (double*)calloc(1,sizeof(double)); + *dptr = xd; + map_insert(p->m, dptr); + } +} + +/* +** Auxiliary function that iterates all elements in a map and finds the mode +** (most frequent value) +*/ +static void modeIterate(void* e, i64 c, void* pp){ + i64 ei; + double ed; + ModeCtx *p = (ModeCtx*)pp; + + if( 0==p->is_double ){ + ei = *(int*)(e); + + if( p->mcnt==c ){ + ++p->mn; + }else if( p->mcntriM = ei; + p->mcnt = c; + p->mn=1; + } + }else{ + ed = *(double*)(e); + + if( p->mcnt==c ){ + ++p->mn; + }else if(p->mcntrdM = ed; + p->mcnt = c; + p->mn=1; + } + } +} + +/* +** Auxiliary function that iterates all elements in a map and finds the median +** (the value such that the number of elements smaller is equal the the number of +** elements larger) +*/ +static void medianIterate(void* e, i64 c, void* pp){ + i64 ei; + double ed; + double iL; + double iR; + int il; + int ir; + ModeCtx *p = (ModeCtx*)pp; + + if(p->done>0) + return; + + iL = p->pcnt; + iR = p->cnt - p->pcnt; + il = p->mcnt + c; + ir = p->cnt - p->mcnt; + + if( il >= iL ){ + if( ir >= iR ){ + ++p->mn; + if( 0==p->is_double ){ + ei = *(int*)(e); + p->riM += ei; + }else{ + ed = *(double*)(e); + p->rdM += ed; + } + }else{ + p->done=1; + } + } + p->mcnt+=c; +} + +/* +** Returns the mode value +*/ +static void modeFinalize(sqlite3_context *context){ + ModeCtx *p; + p = sqlite3_aggregate_context(context, 0); + if( p && p->m ){ + map_iterate(p->m, modeIterate, p); + map_destroy(p->m); + free(p->m); + + if( 1==p->mn ){ + if( 0==p->is_double ) + sqlite3_result_int64(context, p->riM); + else + sqlite3_result_double(context, p->rdM); + } + } +} + +/* +** auxiliary function for percentiles +*/ +static void _medianFinalize(sqlite3_context *context){ + ModeCtx *p; + p = (ModeCtx*) sqlite3_aggregate_context(context, 0); + if( p && p->m ){ + p->done=0; + map_iterate(p->m, medianIterate, p); + map_destroy(p->m); + free(p->m); + + if( 0==p->is_double ) + if( 1==p->mn ) + sqlite3_result_int64(context, p->riM); + else + sqlite3_result_double(context, p->riM*1.0/p->mn); + else + sqlite3_result_double(context, p->rdM/p->mn); + } +} + +/* +** Returns the median value +*/ +static void medianFinalize(sqlite3_context *context){ + ModeCtx *p; + p = (ModeCtx*) sqlite3_aggregate_context(context, 0); + if( p!=0 ){ + p->pcnt = (p->cnt)/2.0; + _medianFinalize(context); + } +} + +/* +** Returns the lower_quartile value +*/ +static void lower_quartileFinalize(sqlite3_context *context){ + ModeCtx *p; + p = (ModeCtx*) sqlite3_aggregate_context(context, 0); + if( p!=0 ){ + p->pcnt = (p->cnt)/4.0; + _medianFinalize(context); + } +} + +/* +** Returns the upper_quartile value +*/ +static void upper_quartileFinalize(sqlite3_context *context){ + ModeCtx *p; + p = (ModeCtx*) sqlite3_aggregate_context(context, 0); + if( p!=0 ){ + p->pcnt = (p->cnt)*3/4.0; + _medianFinalize(context); + } +} + +/* +** Returns the stdev value +*/ +static void stdevFinalize(sqlite3_context *context){ + StdevCtx *p; + p = sqlite3_aggregate_context(context, 0); + if( p && p->cnt>1 ){ + sqlite3_result_double(context, sqrt(p->rS/(p->cnt-1))); + }else{ + sqlite3_result_double(context, 0.0); + } +} + +/* +** Returns the variance value +*/ +static void varianceFinalize(sqlite3_context *context){ + StdevCtx *p; + p = sqlite3_aggregate_context(context, 0); + if( p && p->cnt>1 ){ + sqlite3_result_double(context, p->rS/(p->cnt-1)); + }else{ + sqlite3_result_double(context, 0.0); + } +} + +#ifdef SQLITE_SOUNDEX + +/* relicoder factored code */ +/* +** Calculates the soundex value of a string +*/ + +static void soundex(const u8 *zIn, char *zResult){ + int i, j; + static const unsigned char iCode[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 2, 3, 0, 1, 2, 0, 0, 2, 2, 4, 5, 5, 0, + 1, 2, 6, 2, 3, 0, 1, 0, 2, 0, 2, 0, 0, 0, 0, 0, + 0, 0, 1, 2, 3, 0, 1, 2, 0, 0, 2, 2, 4, 5, 5, 0, + 1, 2, 6, 2, 3, 0, 1, 0, 2, 0, 2, 0, 0, 0, 0, 0, + }; + + for(i=0; zIn[i] && !isalpha(zIn[i]); i++){} + if( zIn[i] ){ + zResult[0] = toupper(zIn[i]); + for(j=1; j<4 && zIn[i]; i++){ + int code = iCode[zIn[i]&0x7f]; + if( code>0 ){ + zResult[j++] = code + '0'; + } + } + while( j<4 ){ + zResult[j++] = '0'; + } + zResult[j] = 0; + }else{ + strcpy(zResult, "?000"); + } +} + +/* +** computes the number of different characters between the soundex value fo 2 strings +*/ +static void differenceFunc(sqlite3_context *context, int argc, sqlite3_value **argv){ + char zResult1[8]; + char zResult2[8]; + char *zR1 = zResult1; + char *zR2 = zResult2; + int rVal = 0; + int i = 0; + const u8 *zIn1; + const u8 *zIn2; + + assert( argc==2 ); + + if( sqlite3_value_type(argv[0])==SQLITE_NULL || sqlite3_value_type(argv[1])==SQLITE_NULL ){ + sqlite3_result_null(context); + return; + } + + zIn1 = (u8*)sqlite3_value_text(argv[0]); + zIn2 = (u8*)sqlite3_value_text(argv[1]); + + soundex(zIn1, zR1); + soundex(zIn2, zR2); + + for(i=0; i<4; ++i){ + if( sqliteCharVal((unsigned char *)zR1)==sqliteCharVal((unsigned char *)zR2) ) + ++rVal; + sqliteNextChar(zR1); + sqliteNextChar(zR2); + } + sqlite3_result_int(context, rVal); +} +#endif + +/* +** This function registered all of the above C functions as SQL +** functions. This should be the only routine in this file with +** external linkage. +*/ +int RegisterExtensionFunctions(sqlite3 *db){ + static const struct FuncDef { + char *zName; + signed char nArg; + u8 argType; /* 0: none. 1: db 2: (-1) */ + u8 eTextRep; /* 1: UTF-16. 0: UTF-8 */ + u8 needCollSeq; + void (*xFunc)(sqlite3_context*,int,sqlite3_value **); + } aFuncs[] = { + /* math.h */ + { "acos", 1, 0, SQLITE_UTF8, 0, acosFunc }, + { "asin", 1, 0, SQLITE_UTF8, 0, asinFunc }, + { "atan", 1, 0, SQLITE_UTF8, 0, atanFunc }, + { "atn2", 2, 0, SQLITE_UTF8, 0, atn2Func }, + /* XXX alias */ + { "atan2", 2, 0, SQLITE_UTF8, 0, atn2Func }, + { "acosh", 1, 0, SQLITE_UTF8, 0, acoshFunc }, + { "asinh", 1, 0, SQLITE_UTF8, 0, asinhFunc }, + { "atanh", 1, 0, SQLITE_UTF8, 0, atanhFunc }, + + { "difference", 2, 0, SQLITE_UTF8, 0, differenceFunc}, + { "degrees", 1, 0, SQLITE_UTF8, 0, rad2degFunc }, + { "radians", 1, 0, SQLITE_UTF8, 0, deg2radFunc }, + + { "cos", 1, 0, SQLITE_UTF8, 0, cosFunc }, + { "sin", 1, 0, SQLITE_UTF8, 0, sinFunc }, + { "tan", 1, 0, SQLITE_UTF8, 0, tanFunc }, + { "cot", 1, 0, SQLITE_UTF8, 0, cotFunc }, + { "cosh", 1, 0, SQLITE_UTF8, 0, coshFunc }, + { "sinh", 1, 0, SQLITE_UTF8, 0, sinhFunc }, + { "tanh", 1, 0, SQLITE_UTF8, 0, tanhFunc }, + { "coth", 1, 0, SQLITE_UTF8, 0, cothFunc }, + + { "exp", 1, 0, SQLITE_UTF8, 0, expFunc }, + { "log", 1, 0, SQLITE_UTF8, 0, logFunc }, + { "log10", 1, 0, SQLITE_UTF8, 0, log10Func }, + { "power", 2, 0, SQLITE_UTF8, 0, powerFunc }, + { "sign", 1, 0, SQLITE_UTF8, 0, signFunc }, + { "sqrt", 1, 0, SQLITE_UTF8, 0, sqrtFunc }, + { "square", 1, 0, SQLITE_UTF8, 0, squareFunc }, + + { "ceil", 1, 0, SQLITE_UTF8, 0, ceilFunc }, + { "floor", 1, 0, SQLITE_UTF8, 0, floorFunc }, + + { "pi", 0, 0, SQLITE_UTF8, 1, piFunc }, + + + /* string */ + { "replicate", 2, 0, SQLITE_UTF8, 0, replicateFunc }, + { "charindex", 2, 0, SQLITE_UTF8, 0, charindexFunc }, + { "charindex", 3, 0, SQLITE_UTF8, 0, charindexFunc }, + { "leftstr", 2, 0, SQLITE_UTF8, 0, leftFunc }, + { "rightstr", 2, 0, SQLITE_UTF8, 0, rightFunc }, +#ifndef HAVE_TRIM + { "ltrim", 1, 0, SQLITE_UTF8, 0, ltrimFunc }, + { "rtrim", 1, 0, SQLITE_UTF8, 0, rtrimFunc }, + { "trim", 1, 0, SQLITE_UTF8, 0, trimFunc }, + { "replace", 3, 0, SQLITE_UTF8, 0, replaceFunc }, +#endif + { "reverse", 1, 0, SQLITE_UTF8, 0, reverseFunc }, + { "proper", 1, 0, SQLITE_UTF8, 0, properFunc }, + { "padl", 2, 0, SQLITE_UTF8, 0, padlFunc }, + { "padr", 2, 0, SQLITE_UTF8, 0, padrFunc }, + { "padc", 2, 0, SQLITE_UTF8, 0, padcFunc }, + { "strfilter", 2, 0, SQLITE_UTF8, 0, strfilterFunc }, + + }; + /* Aggregate functions */ + static const struct FuncDefAgg { + char *zName; + signed char nArg; + u8 argType; + u8 needCollSeq; + void (*xStep)(sqlite3_context*,int,sqlite3_value**); + void (*xFinalize)(sqlite3_context*); + } aAggs[] = { + { "stdev", 1, 0, 0, varianceStep, stdevFinalize }, + { "variance", 1, 0, 0, varianceStep, varianceFinalize }, + { "mode", 1, 0, 0, modeStep, modeFinalize }, + { "median", 1, 0, 0, modeStep, medianFinalize }, + { "lower_quartile", 1, 0, 0, modeStep, lower_quartileFinalize }, + { "upper_quartile", 1, 0, 0, modeStep, upper_quartileFinalize }, + }; + int i; + + for(i=0; ineedCollSeq = 1; + } + } +#endif + } + + for(i=0; ineedCollSeq = 1; + } + } +#endif + } + return 0; +} + +#ifdef COMPILE_SQLITE_EXTENSIONS_AS_LOADABLE_MODULE +int sqlite3_extension_init( + sqlite3 *db, char **pzErrMsg, const sqlite3_api_routines *pApi){ + SQLITE_EXTENSION_INIT2(pApi); + RegisterExtensionFunctions(db); + return 0; +} +#endif /* COMPILE_SQLITE_EXTENSIONS_AS_LOADABLE_MODULE */ + +map map_make(cmp_func cmp){ + map r; + r.cmp=cmp; + r.base = 0; + + return r; +} + +void* xcalloc(size_t nmemb, size_t size, char* s){ + void* ret = calloc(nmemb, size); + return ret; +} + +void xfree(void* p){ + free(p); +} + +void node_insert(node** n, cmp_func cmp, void *e){ + int c; + node* nn; + if(*n==0){ + nn = (node*)xcalloc(1,sizeof(node), "for node"); + nn->data = e; + nn->count = 1; + *n=nn; + }else{ + c=cmp((*n)->data,e); + if(0==c){ + ++((*n)->count); + xfree(e); + }else if(c>0){ + /* put it right here */ + node_insert(&((*n)->l), cmp, e); + }else{ + node_insert(&((*n)->r), cmp, e); + } + } +} + +void map_insert(map *m, void *e){ + node_insert(&(m->base), m->cmp, e); +} + +void node_iterate(node *n, map_iterator iter, void* p){ + if(n){ + if(n->l) + node_iterate(n->l, iter, p); + iter(n->data, n->count, p); + if(n->r) + node_iterate(n->r, iter, p); + } +} + +void map_iterate(map *m, map_iterator iter, void* p){ + node_iterate(m->base, iter, p); +} + +void node_destroy(node *n){ + if(0!=n){ + xfree(n->data); + if(n->l) + node_destroy(n->l); + if(n->r) + node_destroy(n->r); + + xfree(n); + } +} + +void map_destroy(map *m){ + node_destroy(m->base); +} + +int int_cmp(const void *a, const void *b){ + int64_t aa = *(int64_t *)(a); + int64_t bb = *(int64_t *)(b); + /* printf("cmp %d <=> %d\n",aa,bb); */ + if(aa==bb) + return 0; + else if(aa %d\n",aa,bb); */ + if(aa==bb) + return 0; + else if(aa %lld\n", ee,c); +} + diff --git a/src/SqliteDBProcess/src/extensions/extension-functions.def b/src/SqliteDBProcess/src/extensions/extension-functions.def new file mode 100644 index 0000000..df979a4 --- /dev/null +++ b/src/SqliteDBProcess/src/extensions/extension-functions.def @@ -0,0 +1,16 @@ +EXPORTS + RegisterExtensionFunctions + double_cmp + int_cmp + map_destroy + map_insert + map_iterate + map_make + node_destroy + node_insert + node_iterate + print_elem + sqlite3_api + sqlite3_extension_init + xcalloc + xfree diff --git a/src/SqliteDBProcess/src/i18n.pri b/src/SqliteDBProcess/src/i18n.pri new file mode 100644 index 0000000..5f201e5 --- /dev/null +++ b/src/SqliteDBProcess/src/i18n.pri @@ -0,0 +1,48 @@ +# This file is taken from the project https://gitorious.org/qop/qop/. +# For autocompiling qm-files. + +#rules to generate ts +isEmpty(QMAKE_LUPDATE) { + win32: QMAKE_LUPDATE = $$[QT_INSTALL_BINS]/lupdate.exe + unix { + QMAKE_LUPDATE = $$[QT_INSTALL_BINS]/lupdate + !exists($$QMAKE_LUPDATE) { QMAKE_LUPDATE = lupdate-qt4 } + } else { + !exists($$QMAKE_LUPDATE) { QMAKE_LUPDATE = lupdate } + } +} +#limitation: only on ts can be generated +updatets.name = Creating or updating ts-files... +updatets.input = _PRO_FILE_ +updatets.output = $$TRANSLATIONS +updatets.commands = $$QMAKE_LUPDATE ${QMAKE_FILE_IN} +updatets.CONFIG += no_link no_clean +QMAKE_EXTRA_COMPILERS += updatets + +#rules for ts->qm +isEmpty(QMAKE_LRELEASE) { +#a qm generated by lrelease-qt3 can be used for qt2, qt3, qt4! + win32: QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease.exe + unix { + QMAKE_LRELEASE = lrelease-qt3 + !exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease } + !exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease } + !exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease-qt4 } + } else { + !exists($$QMAKE_LRELEASE) { QMAKE_LRELEASE = lrelease } + } +} +updatets.name = Compiling qm-files... +updateqm.input = TRANSLATIONS +updateqm.output = ${QMAKE_FILE_PATH}/${QMAKE_FILE_BASE}.qm +updateqm.commands = $$QMAKE_LRELEASE ${QMAKE_FILE_IN} -qm ${QMAKE_FILE_PATH}/${QMAKE_FILE_BASE}.qm +updateqm.CONFIG += no_link no_clean target_predeps +updateqm.variable_out = copytranslations.files +QMAKE_EXTRA_COMPILERS += updateqm + +# Copy translations into the bundle when one is created +mac:contains(CONFIG, "app_bundle") { + copytranslations.path = Contents/MacOS/translations + copytranslations.depends = updateqm + QMAKE_BUNDLE_DATA += copytranslations +} diff --git a/src/SqliteDBProcess/src/icons/application_go.png b/src/SqliteDBProcess/src/icons/application_go.png new file mode 100644 index 0000000..5cc2b0d Binary files /dev/null and b/src/SqliteDBProcess/src/icons/application_go.png differ diff --git a/src/SqliteDBProcess/src/icons/application_link.png b/src/SqliteDBProcess/src/icons/application_link.png new file mode 100644 index 0000000..f8fbb3e Binary files /dev/null and b/src/SqliteDBProcess/src/icons/application_link.png differ diff --git a/src/SqliteDBProcess/src/icons/application_side_list.png b/src/SqliteDBProcess/src/icons/application_side_list.png new file mode 100644 index 0000000..37b4131 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/application_side_list.png differ diff --git a/src/SqliteDBProcess/src/icons/bullet_arrow_bottom.png b/src/SqliteDBProcess/src/icons/bullet_arrow_bottom.png new file mode 100644 index 0000000..1a28d82 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/bullet_arrow_bottom.png differ diff --git a/src/SqliteDBProcess/src/icons/bullet_arrow_down.png b/src/SqliteDBProcess/src/icons/bullet_arrow_down.png new file mode 100644 index 0000000..9b23c06 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/bullet_arrow_down.png differ diff --git a/src/SqliteDBProcess/src/icons/bullet_arrow_top.png b/src/SqliteDBProcess/src/icons/bullet_arrow_top.png new file mode 100644 index 0000000..0ce86d2 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/bullet_arrow_top.png differ diff --git a/src/SqliteDBProcess/src/icons/bullet_arrow_up.png b/src/SqliteDBProcess/src/icons/bullet_arrow_up.png new file mode 100644 index 0000000..24df0f4 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/bullet_arrow_up.png differ diff --git a/src/SqliteDBProcess/src/icons/cancel.png b/src/SqliteDBProcess/src/icons/cancel.png new file mode 100644 index 0000000..c149c2b Binary files /dev/null and b/src/SqliteDBProcess/src/icons/cancel.png differ diff --git a/src/SqliteDBProcess/src/icons/chart_curve.png b/src/SqliteDBProcess/src/icons/chart_curve.png new file mode 100644 index 0000000..01e933a Binary files /dev/null and b/src/SqliteDBProcess/src/icons/chart_curve.png differ diff --git a/src/SqliteDBProcess/src/icons/clear_filters.png b/src/SqliteDBProcess/src/icons/clear_filters.png new file mode 100644 index 0000000..16288fd Binary files /dev/null and b/src/SqliteDBProcess/src/icons/clear_filters.png differ diff --git a/src/SqliteDBProcess/src/icons/clear_sorting.png b/src/SqliteDBProcess/src/icons/clear_sorting.png new file mode 100644 index 0000000..be27fea Binary files /dev/null and b/src/SqliteDBProcess/src/icons/clear_sorting.png differ diff --git a/src/SqliteDBProcess/src/icons/cog.png b/src/SqliteDBProcess/src/icons/cog.png new file mode 100644 index 0000000..67de2c6 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/cog.png differ diff --git a/src/SqliteDBProcess/src/icons/cog_go.png b/src/SqliteDBProcess/src/icons/cog_go.png new file mode 100644 index 0000000..3262767 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/cog_go.png differ diff --git a/src/SqliteDBProcess/src/icons/color_swatch.png b/src/SqliteDBProcess/src/icons/color_swatch.png new file mode 100644 index 0000000..6e6e852 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/color_swatch.png differ diff --git a/src/SqliteDBProcess/src/icons/comment_block.png b/src/SqliteDBProcess/src/icons/comment_block.png new file mode 100644 index 0000000..3b3ee4c Binary files /dev/null and b/src/SqliteDBProcess/src/icons/comment_block.png differ diff --git a/src/SqliteDBProcess/src/icons/cross.png b/src/SqliteDBProcess/src/icons/cross.png new file mode 100644 index 0000000..1514d51 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/cross.png differ diff --git a/src/SqliteDBProcess/src/icons/database.png b/src/SqliteDBProcess/src/icons/database.png new file mode 100644 index 0000000..3d09261 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/database.png differ diff --git a/src/SqliteDBProcess/src/icons/database_add.png b/src/SqliteDBProcess/src/icons/database_add.png new file mode 100644 index 0000000..802bd6c Binary files /dev/null and b/src/SqliteDBProcess/src/icons/database_add.png differ diff --git a/src/SqliteDBProcess/src/icons/database_go.png b/src/SqliteDBProcess/src/icons/database_go.png new file mode 100644 index 0000000..61a8556 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/database_go.png differ diff --git a/src/SqliteDBProcess/src/icons/database_link.png b/src/SqliteDBProcess/src/icons/database_link.png new file mode 100644 index 0000000..4c8204a Binary files /dev/null and b/src/SqliteDBProcess/src/icons/database_link.png differ diff --git a/src/SqliteDBProcess/src/icons/database_refresh.png b/src/SqliteDBProcess/src/icons/database_refresh.png new file mode 100644 index 0000000..ff803be Binary files /dev/null and b/src/SqliteDBProcess/src/icons/database_refresh.png differ diff --git a/src/SqliteDBProcess/src/icons/database_save.png b/src/SqliteDBProcess/src/icons/database_save.png new file mode 100644 index 0000000..44c06dd Binary files /dev/null and b/src/SqliteDBProcess/src/icons/database_save.png differ diff --git a/src/SqliteDBProcess/src/icons/document-link.png b/src/SqliteDBProcess/src/icons/document-link.png new file mode 100644 index 0000000..06df131 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/document-link.png differ diff --git a/src/SqliteDBProcess/src/icons/document-open.png b/src/SqliteDBProcess/src/icons/document-open.png new file mode 100644 index 0000000..ab94046 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/document-open.png differ diff --git a/src/SqliteDBProcess/src/icons/edit_cond_formats.png b/src/SqliteDBProcess/src/icons/edit_cond_formats.png new file mode 100644 index 0000000..3b69aa0 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/edit_cond_formats.png differ diff --git a/src/SqliteDBProcess/src/icons/filter.png b/src/SqliteDBProcess/src/icons/filter.png new file mode 100644 index 0000000..58ec874 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/filter.png differ diff --git a/src/SqliteDBProcess/src/icons/folder.png b/src/SqliteDBProcess/src/icons/folder.png new file mode 100644 index 0000000..784e8fa Binary files /dev/null and b/src/SqliteDBProcess/src/icons/folder.png differ diff --git a/src/SqliteDBProcess/src/icons/folder_user.png b/src/SqliteDBProcess/src/icons/folder_user.png new file mode 100644 index 0000000..f021c3e Binary files /dev/null and b/src/SqliteDBProcess/src/icons/folder_user.png differ diff --git a/src/SqliteDBProcess/src/icons/help.png b/src/SqliteDBProcess/src/icons/help.png new file mode 100644 index 0000000..5c87017 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/help.png differ diff --git a/src/SqliteDBProcess/src/icons/hourglass.png b/src/SqliteDBProcess/src/icons/hourglass.png new file mode 100644 index 0000000..57b03ce Binary files /dev/null and b/src/SqliteDBProcess/src/icons/hourglass.png differ diff --git a/src/SqliteDBProcess/src/icons/icons.qrc b/src/SqliteDBProcess/src/icons/icons.qrc new file mode 100644 index 0000000..3d31be5 --- /dev/null +++ b/src/SqliteDBProcess/src/icons/icons.qrc @@ -0,0 +1,106 @@ + + + database_add.png + database_go.png + database_refresh.png + database_save.png + table_add.png + table_delete.png + table_edit.png + tag_blue_add.png + tag_blue_delete.png + page_edit.png + page_delete.png + page_add.png + page_green.png + table.png + tag_blue.png + view-refresh.png + picture_delete.png + picture.png + picture_add.png + script.png + script_add.png + script_delete.png + wrench.png + help.png + tab_add.png + resultset_next.png + page_save.png + page_white_database.png + plugin_add.png + plugin_delete.png + table_save.png + resultset_last.png + layout_sidebar.png + bullet_arrow_down.png + bullet_arrow_up.png + sqlitebrowser.png + internet-web-browser.png + package.png + package_go.png + page_key.png + key.png + document-open.png + chart_curve.png + cog.png + clear_filters.png + page_copy.png + resultset_previous.png + resultset_first.png + picture_edit.png + script_edit.png + tag_blue_edit.png + folder.png + database.png + cog_go.png + page_paste.png + folder_user.png + server_go.png + page_find.png + cross.png + page_white_copy.png + page_copy_sql.png + text_replace.png + picture_save.png + application_side_list.png + database_link.png + text_indent.png + printer.png + package_save.png + cancel.png + comment_block.png + hourglass.png + table_row_delete.png + table_row_insert.png + textfield_delete.png + filter.png + tab.png + package_rename.png + page_foreign_key.png + save_all.png + page_white_text.png + color_swatch.png + edit_cond_formats.png + clear_sorting.png + bullet_arrow_bottom.png + bullet_arrow_top.png + text_bold.png + text_italic.png + text_underline.png + text_align_center.png + text_align_justify.png + text_align_left.png + text_align_right.png + page_paintbrush.png + text_paintbrush.png + style.png + style_edit.png + style_delete.png + style_add.png + application_link.png + document-link.png + application_go.png + server_add.png + + diff --git a/src/SqliteDBProcess/src/icons/internet-web-browser.png b/src/SqliteDBProcess/src/icons/internet-web-browser.png new file mode 100644 index 0000000..ac5957a Binary files /dev/null and b/src/SqliteDBProcess/src/icons/internet-web-browser.png differ diff --git a/src/SqliteDBProcess/src/icons/key.png b/src/SqliteDBProcess/src/icons/key.png new file mode 100644 index 0000000..4ec1a92 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/key.png differ diff --git a/src/SqliteDBProcess/src/icons/layout_sidebar.png b/src/SqliteDBProcess/src/icons/layout_sidebar.png new file mode 100644 index 0000000..3be27bb Binary files /dev/null and b/src/SqliteDBProcess/src/icons/layout_sidebar.png differ diff --git a/src/SqliteDBProcess/src/icons/package.png b/src/SqliteDBProcess/src/icons/package.png new file mode 100644 index 0000000..da3c2a2 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/package.png differ diff --git a/src/SqliteDBProcess/src/icons/package_go.png b/src/SqliteDBProcess/src/icons/package_go.png new file mode 100644 index 0000000..aace63a Binary files /dev/null and b/src/SqliteDBProcess/src/icons/package_go.png differ diff --git a/src/SqliteDBProcess/src/icons/package_rename.png b/src/SqliteDBProcess/src/icons/package_rename.png new file mode 100644 index 0000000..41bf2be Binary files /dev/null and b/src/SqliteDBProcess/src/icons/package_rename.png differ diff --git a/src/SqliteDBProcess/src/icons/package_save.png b/src/SqliteDBProcess/src/icons/package_save.png new file mode 100644 index 0000000..35eb763 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/package_save.png differ diff --git a/src/SqliteDBProcess/src/icons/page_add.png b/src/SqliteDBProcess/src/icons/page_add.png new file mode 100644 index 0000000..d5bfa07 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_add.png differ diff --git a/src/SqliteDBProcess/src/icons/page_copy.png b/src/SqliteDBProcess/src/icons/page_copy.png new file mode 100644 index 0000000..195dc6d Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_copy.png differ diff --git a/src/SqliteDBProcess/src/icons/page_copy_sql.png b/src/SqliteDBProcess/src/icons/page_copy_sql.png new file mode 100644 index 0000000..3b0e3f8 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_copy_sql.png differ diff --git a/src/SqliteDBProcess/src/icons/page_delete.png b/src/SqliteDBProcess/src/icons/page_delete.png new file mode 100644 index 0000000..3141467 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_delete.png differ diff --git a/src/SqliteDBProcess/src/icons/page_edit.png b/src/SqliteDBProcess/src/icons/page_edit.png new file mode 100644 index 0000000..046811e Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_edit.png differ diff --git a/src/SqliteDBProcess/src/icons/page_find.png b/src/SqliteDBProcess/src/icons/page_find.png new file mode 100644 index 0000000..2f19388 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_find.png differ diff --git a/src/SqliteDBProcess/src/icons/page_foreign_key.png b/src/SqliteDBProcess/src/icons/page_foreign_key.png new file mode 100644 index 0000000..62dc6d4 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_foreign_key.png differ diff --git a/src/SqliteDBProcess/src/icons/page_green.png b/src/SqliteDBProcess/src/icons/page_green.png new file mode 100644 index 0000000..de8e003 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_green.png differ diff --git a/src/SqliteDBProcess/src/icons/page_key.png b/src/SqliteDBProcess/src/icons/page_key.png new file mode 100644 index 0000000..d6626cb Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_key.png differ diff --git a/src/SqliteDBProcess/src/icons/page_paintbrush.png b/src/SqliteDBProcess/src/icons/page_paintbrush.png new file mode 100644 index 0000000..246a2f0 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_paintbrush.png differ diff --git a/src/SqliteDBProcess/src/icons/page_paste.png b/src/SqliteDBProcess/src/icons/page_paste.png new file mode 100644 index 0000000..968f073 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_paste.png differ diff --git a/src/SqliteDBProcess/src/icons/page_save.png b/src/SqliteDBProcess/src/icons/page_save.png new file mode 100644 index 0000000..caea546 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_save.png differ diff --git a/src/SqliteDBProcess/src/icons/page_white_copy.png b/src/SqliteDBProcess/src/icons/page_white_copy.png new file mode 100644 index 0000000..a9f31a2 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_white_copy.png differ diff --git a/src/SqliteDBProcess/src/icons/page_white_database.png b/src/SqliteDBProcess/src/icons/page_white_database.png new file mode 100644 index 0000000..bddba1f Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_white_database.png differ diff --git a/src/SqliteDBProcess/src/icons/page_white_text.png b/src/SqliteDBProcess/src/icons/page_white_text.png new file mode 100644 index 0000000..813f712 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/page_white_text.png differ diff --git a/src/SqliteDBProcess/src/icons/picture.png b/src/SqliteDBProcess/src/icons/picture.png new file mode 100644 index 0000000..4a158fe Binary files /dev/null and b/src/SqliteDBProcess/src/icons/picture.png differ diff --git a/src/SqliteDBProcess/src/icons/picture_add.png b/src/SqliteDBProcess/src/icons/picture_add.png new file mode 100644 index 0000000..d6d3f85 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/picture_add.png differ diff --git a/src/SqliteDBProcess/src/icons/picture_delete.png b/src/SqliteDBProcess/src/icons/picture_delete.png new file mode 100644 index 0000000..cca9f53 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/picture_delete.png differ diff --git a/src/SqliteDBProcess/src/icons/picture_edit.png b/src/SqliteDBProcess/src/icons/picture_edit.png new file mode 100644 index 0000000..9a70c34 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/picture_edit.png differ diff --git a/src/SqliteDBProcess/src/icons/picture_save.png b/src/SqliteDBProcess/src/icons/picture_save.png new file mode 100644 index 0000000..777fb5d Binary files /dev/null and b/src/SqliteDBProcess/src/icons/picture_save.png differ diff --git a/src/SqliteDBProcess/src/icons/plugin_add.png b/src/SqliteDBProcess/src/icons/plugin_add.png new file mode 100644 index 0000000..ae43690 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/plugin_add.png differ diff --git a/src/SqliteDBProcess/src/icons/plugin_delete.png b/src/SqliteDBProcess/src/icons/plugin_delete.png new file mode 100644 index 0000000..d9c3376 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/plugin_delete.png differ diff --git a/src/SqliteDBProcess/src/icons/printer.png b/src/SqliteDBProcess/src/icons/printer.png new file mode 100644 index 0000000..a350d18 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/printer.png differ diff --git a/src/SqliteDBProcess/src/icons/resultset_first.png b/src/SqliteDBProcess/src/icons/resultset_first.png new file mode 100644 index 0000000..b03eaf8 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/resultset_first.png differ diff --git a/src/SqliteDBProcess/src/icons/resultset_last.png b/src/SqliteDBProcess/src/icons/resultset_last.png new file mode 100644 index 0000000..8ec8947 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/resultset_last.png differ diff --git a/src/SqliteDBProcess/src/icons/resultset_next.png b/src/SqliteDBProcess/src/icons/resultset_next.png new file mode 100644 index 0000000..e252606 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/resultset_next.png differ diff --git a/src/SqliteDBProcess/src/icons/resultset_previous.png b/src/SqliteDBProcess/src/icons/resultset_previous.png new file mode 100644 index 0000000..18f9cc1 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/resultset_previous.png differ diff --git a/src/SqliteDBProcess/src/icons/save_all.png b/src/SqliteDBProcess/src/icons/save_all.png new file mode 100644 index 0000000..14e2a7c Binary files /dev/null and b/src/SqliteDBProcess/src/icons/save_all.png differ diff --git a/src/SqliteDBProcess/src/icons/script.png b/src/SqliteDBProcess/src/icons/script.png new file mode 100644 index 0000000..0f9ed4d Binary files /dev/null and b/src/SqliteDBProcess/src/icons/script.png differ diff --git a/src/SqliteDBProcess/src/icons/script_add.png b/src/SqliteDBProcess/src/icons/script_add.png new file mode 100644 index 0000000..d650552 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/script_add.png differ diff --git a/src/SqliteDBProcess/src/icons/script_delete.png b/src/SqliteDBProcess/src/icons/script_delete.png new file mode 100644 index 0000000..e6500ce Binary files /dev/null and b/src/SqliteDBProcess/src/icons/script_delete.png differ diff --git a/src/SqliteDBProcess/src/icons/script_edit.png b/src/SqliteDBProcess/src/icons/script_edit.png new file mode 100644 index 0000000..b4d31ce Binary files /dev/null and b/src/SqliteDBProcess/src/icons/script_edit.png differ diff --git a/src/SqliteDBProcess/src/icons/server_add.png b/src/SqliteDBProcess/src/icons/server_add.png new file mode 100644 index 0000000..3f10a3a Binary files /dev/null and b/src/SqliteDBProcess/src/icons/server_add.png differ diff --git a/src/SqliteDBProcess/src/icons/server_go.png b/src/SqliteDBProcess/src/icons/server_go.png new file mode 100644 index 0000000..540c8e2 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/server_go.png differ diff --git a/src/SqliteDBProcess/src/icons/sqlitebrowser.png b/src/SqliteDBProcess/src/icons/sqlitebrowser.png new file mode 100644 index 0000000..7897a11 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/sqlitebrowser.png differ diff --git a/src/SqliteDBProcess/src/icons/style.png b/src/SqliteDBProcess/src/icons/style.png new file mode 100644 index 0000000..81e41de Binary files /dev/null and b/src/SqliteDBProcess/src/icons/style.png differ diff --git a/src/SqliteDBProcess/src/icons/style_add.png b/src/SqliteDBProcess/src/icons/style_add.png new file mode 100644 index 0000000..e0369c6 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/style_add.png differ diff --git a/src/SqliteDBProcess/src/icons/style_delete.png b/src/SqliteDBProcess/src/icons/style_delete.png new file mode 100644 index 0000000..640f187 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/style_delete.png differ diff --git a/src/SqliteDBProcess/src/icons/style_edit.png b/src/SqliteDBProcess/src/icons/style_edit.png new file mode 100644 index 0000000..25bb5b6 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/style_edit.png differ diff --git a/src/SqliteDBProcess/src/icons/tab.png b/src/SqliteDBProcess/src/icons/tab.png new file mode 100644 index 0000000..3d8207f Binary files /dev/null and b/src/SqliteDBProcess/src/icons/tab.png differ diff --git a/src/SqliteDBProcess/src/icons/tab_add.png b/src/SqliteDBProcess/src/icons/tab_add.png new file mode 100644 index 0000000..d3b9936 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/tab_add.png differ diff --git a/src/SqliteDBProcess/src/icons/table.png b/src/SqliteDBProcess/src/icons/table.png new file mode 100644 index 0000000..abcd936 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/table.png differ diff --git a/src/SqliteDBProcess/src/icons/table_add.png b/src/SqliteDBProcess/src/icons/table_add.png new file mode 100644 index 0000000..2a3e5c4 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/table_add.png differ diff --git a/src/SqliteDBProcess/src/icons/table_delete.png b/src/SqliteDBProcess/src/icons/table_delete.png new file mode 100644 index 0000000..b85916d Binary files /dev/null and b/src/SqliteDBProcess/src/icons/table_delete.png differ diff --git a/src/SqliteDBProcess/src/icons/table_edit.png b/src/SqliteDBProcess/src/icons/table_edit.png new file mode 100644 index 0000000..bfcb024 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/table_edit.png differ diff --git a/src/SqliteDBProcess/src/icons/table_row_delete.png b/src/SqliteDBProcess/src/icons/table_row_delete.png new file mode 100644 index 0000000..d52c57e Binary files /dev/null and b/src/SqliteDBProcess/src/icons/table_row_delete.png differ diff --git a/src/SqliteDBProcess/src/icons/table_row_insert.png b/src/SqliteDBProcess/src/icons/table_row_insert.png new file mode 100644 index 0000000..cfbfc75 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/table_row_insert.png differ diff --git a/src/SqliteDBProcess/src/icons/table_save.png b/src/SqliteDBProcess/src/icons/table_save.png new file mode 100644 index 0000000..25b74d1 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/table_save.png differ diff --git a/src/SqliteDBProcess/src/icons/tag_blue.png b/src/SqliteDBProcess/src/icons/tag_blue.png new file mode 100644 index 0000000..9757fc6 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/tag_blue.png differ diff --git a/src/SqliteDBProcess/src/icons/tag_blue_add.png b/src/SqliteDBProcess/src/icons/tag_blue_add.png new file mode 100644 index 0000000..f135248 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/tag_blue_add.png differ diff --git a/src/SqliteDBProcess/src/icons/tag_blue_delete.png b/src/SqliteDBProcess/src/icons/tag_blue_delete.png new file mode 100644 index 0000000..9fbae67 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/tag_blue_delete.png differ diff --git a/src/SqliteDBProcess/src/icons/tag_blue_edit.png b/src/SqliteDBProcess/src/icons/tag_blue_edit.png new file mode 100644 index 0000000..2a9f626 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/tag_blue_edit.png differ diff --git a/src/SqliteDBProcess/src/icons/text_align_center.png b/src/SqliteDBProcess/src/icons/text_align_center.png new file mode 100644 index 0000000..57beb38 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/text_align_center.png differ diff --git a/src/SqliteDBProcess/src/icons/text_align_justify.png b/src/SqliteDBProcess/src/icons/text_align_justify.png new file mode 100644 index 0000000..2fbdd69 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/text_align_justify.png differ diff --git a/src/SqliteDBProcess/src/icons/text_align_left.png b/src/SqliteDBProcess/src/icons/text_align_left.png new file mode 100644 index 0000000..6c8fcc1 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/text_align_left.png differ diff --git a/src/SqliteDBProcess/src/icons/text_align_right.png b/src/SqliteDBProcess/src/icons/text_align_right.png new file mode 100644 index 0000000..a150257 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/text_align_right.png differ diff --git a/src/SqliteDBProcess/src/icons/text_bold.png b/src/SqliteDBProcess/src/icons/text_bold.png new file mode 100644 index 0000000..889ae80 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/text_bold.png differ diff --git a/src/SqliteDBProcess/src/icons/text_indent.png b/src/SqliteDBProcess/src/icons/text_indent.png new file mode 100644 index 0000000..9364532 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/text_indent.png differ diff --git a/src/SqliteDBProcess/src/icons/text_italic.png b/src/SqliteDBProcess/src/icons/text_italic.png new file mode 100644 index 0000000..8482ac8 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/text_italic.png differ diff --git a/src/SqliteDBProcess/src/icons/text_paintbrush.png b/src/SqliteDBProcess/src/icons/text_paintbrush.png new file mode 100644 index 0000000..6187693 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/text_paintbrush.png differ diff --git a/src/SqliteDBProcess/src/icons/text_replace.png b/src/SqliteDBProcess/src/icons/text_replace.png new file mode 100644 index 0000000..877f82f Binary files /dev/null and b/src/SqliteDBProcess/src/icons/text_replace.png differ diff --git a/src/SqliteDBProcess/src/icons/text_underline.png b/src/SqliteDBProcess/src/icons/text_underline.png new file mode 100644 index 0000000..90d0df2 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/text_underline.png differ diff --git a/src/SqliteDBProcess/src/icons/textfield_delete.png b/src/SqliteDBProcess/src/icons/textfield_delete.png new file mode 100644 index 0000000..c7bd58b Binary files /dev/null and b/src/SqliteDBProcess/src/icons/textfield_delete.png differ diff --git a/src/SqliteDBProcess/src/icons/view-refresh.png b/src/SqliteDBProcess/src/icons/view-refresh.png new file mode 100644 index 0000000..3fd71d6 Binary files /dev/null and b/src/SqliteDBProcess/src/icons/view-refresh.png differ diff --git a/src/SqliteDBProcess/src/icons/wrench.png b/src/SqliteDBProcess/src/icons/wrench.png new file mode 100644 index 0000000..5c8213f Binary files /dev/null and b/src/SqliteDBProcess/src/icons/wrench.png differ diff --git a/src/SqliteDBProcess/src/macapp.icns b/src/SqliteDBProcess/src/macapp.icns new file mode 100644 index 0000000..33cfe25 Binary files /dev/null and b/src/SqliteDBProcess/src/macapp.icns differ diff --git a/src/SqliteDBProcess/src/os2app.rc b/src/SqliteDBProcess/src/os2app.rc new file mode 100644 index 0000000..0519ecb --- /dev/null +++ b/src/SqliteDBProcess/src/os2app.rc @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/SqliteDBProcess/src/qdarkstyle/LICENSE.md b/src/SqliteDBProcess/src/qdarkstyle/LICENSE.md new file mode 100644 index 0000000..f8714d0 --- /dev/null +++ b/src/SqliteDBProcess/src/qdarkstyle/LICENSE.md @@ -0,0 +1,185 @@ +# License + +This is the license of [QDarkStyleSheet](https://github.com/ColinDuquesnoy/QDarkStyleSheet). + +## The MIT License (MIT) - Code + +Copyright (c) 2013-2018 Colin Duquesnoy + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +## Creative Commons Attribution International 4.0 - Images + +QDarkStyle (c) 2013-2018 Colin Duquesnoy + +Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. + +### Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses. + +* __Considerations for licensors:__ Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC-licensed material, or material used under an exception or limitation to copyright. [More considerations for licensors](http://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensors). + +* __Considerations for the public:__ By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. [More considerations for the public](http://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensees). + +## Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. + +### Section 1 – Definitions + +a. __Adapted Material__ means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. + +b. __Adapter's License__ means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. + +c. __Copyright and Similar Rights__ means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. + +d. __Effective Technological Measures__ means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. + +e. __Exceptions and Limitations__ means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. + +f. __Licensed Material__ means the artistic or literary work, database, or other material to which the Licensor applied this Public License. + +g. __Licensed Rights__ means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. + +h. __Licensor__ means the individual(s) or entity(ies) granting rights under this Public License. + +i. __Share__ means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. + +j. __Sui Generis Database Rights__ means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. + +k. __You__ means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. + +### Section 2 – Scope + +a. ___License grant.___ + + 1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: + + A. reproduce and Share the Licensed Material, in whole or in part; and + + B. produce, reproduce, and Share Adapted Material. + + 2. __Exceptions and Limitations.__ For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. + + 3. __Term.__ The term of this Public License is specified in Section 6(a). + + 4. __Media and formats; technical modifications allowed.__ The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. + + 5. __Downstream recipients.__ + + A. __Offer from the Licensor – Licensed Material.__ Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. + + B. __No downstream restrictions.__ You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. + + 6. __No endorsement.__ Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). + +b. ___Other rights.___ + + 1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this Public License. + + 3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. + +### Section 3 – License Conditions + +Your exercise of the Licensed Rights is expressly made subject to the following conditions. + +a. ___Attribution.___ + + 1. If You Share the Licensed Material (including in modified form), You must: + + A. retain the following if it is supplied by the Licensor with the Licensed Material: + + i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of warranties; + + v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable; + + B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and + + C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. + + 3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's License You apply must not prevent recipients of the Adapted Material from complying with this Public License. + +### Section 4 – Sui Generis Database Rights + +Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: + +a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; + +b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and + +c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. + +### Section 5 – Disclaimer of Warranties and Limitation of Liability + +a. __Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.__ + +b. __To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.__ + +c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. + +### Section 6 – Term and Termination + +a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. + +b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. + +c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. + +d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License. + +### Section 7 – Other Terms and Conditions + +a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. + +b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. + +### Section 8 – Interpretation + +a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. + +b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. + +c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. + +d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. + +> Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at [creativecommons.org/policies](http://creativecommons.org/policies), Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. +> +> Creative Commons may be contacted at creativecommons.org diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/Hmovetoolbar.png b/src/SqliteDBProcess/src/qdarkstyle/rc/Hmovetoolbar.png new file mode 100644 index 0000000..cead99e Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/Hmovetoolbar.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/Hsepartoolbar.png b/src/SqliteDBProcess/src/qdarkstyle/rc/Hsepartoolbar.png new file mode 100644 index 0000000..7f183c8 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/Hsepartoolbar.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/Vmovetoolbar.png b/src/SqliteDBProcess/src/qdarkstyle/rc/Vmovetoolbar.png new file mode 100644 index 0000000..ac6a655 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/Vmovetoolbar.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/Vsepartoolbar.png b/src/SqliteDBProcess/src/qdarkstyle/rc/Vsepartoolbar.png new file mode 100644 index 0000000..7bf62f1 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/Vsepartoolbar.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down.png new file mode 100644 index 0000000..4fc454e Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down@2x.png new file mode 100644 index 0000000..fab22c4 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_disabled.png new file mode 100644 index 0000000..39bd0c1 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_disabled@2x.png new file mode 100644 index 0000000..5f3ab00 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_focus.png new file mode 100644 index 0000000..5986712 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_focus@2x.png new file mode 100644 index 0000000..cef37e8 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_pressed.png new file mode 100644 index 0000000..e1d5d3a Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_pressed@2x.png new file mode 100644 index 0000000..f54850f Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_down_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left.png new file mode 100644 index 0000000..bd7d54f Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left@2x.png new file mode 100644 index 0000000..aa3fcfe Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_disabled.png new file mode 100644 index 0000000..673ad11 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_disabled@2x.png new file mode 100644 index 0000000..56a1c0f Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_focus.png new file mode 100644 index 0000000..e7fad8f Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_focus@2x.png new file mode 100644 index 0000000..473b6f7 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_pressed.png new file mode 100644 index 0000000..2f69cbf Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_pressed@2x.png new file mode 100644 index 0000000..2955581 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_left_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right.png new file mode 100644 index 0000000..26050b8 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right@2x.png new file mode 100644 index 0000000..efbc8de Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_disabled.png new file mode 100644 index 0000000..1e59a58 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_disabled@2x.png new file mode 100644 index 0000000..a6222d7 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_focus.png new file mode 100644 index 0000000..9bdcd85 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_focus@2x.png new file mode 100644 index 0000000..e24c3ba Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_pressed.png new file mode 100644 index 0000000..4f4fc8e Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_pressed@2x.png new file mode 100644 index 0000000..1a85167 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_right_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up.png new file mode 100644 index 0000000..9f45d8e Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up@2x.png new file mode 100644 index 0000000..2fe1c6b Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_disabled.png new file mode 100644 index 0000000..a77807c Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_disabled@2x.png new file mode 100644 index 0000000..e12c4ee Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_focus.png new file mode 100644 index 0000000..b3970bd Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_focus@2x.png new file mode 100644 index 0000000..00c6c44 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_pressed.png new file mode 100644 index 0000000..8f9dcf4 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_pressed@2x.png new file mode 100644 index 0000000..40c7f20 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/arrow_up_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon.png b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon.png new file mode 100644 index 0000000..bb00857 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon@2x.png new file mode 100644 index 0000000..bc4ab78 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_disabled.png new file mode 100644 index 0000000..bb00857 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_disabled@2x.png new file mode 100644 index 0000000..bc4ab78 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_focus.png new file mode 100644 index 0000000..bb00857 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_focus@2x.png new file mode 100644 index 0000000..bc4ab78 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_pressed.png new file mode 100644 index 0000000..bb00857 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_pressed@2x.png new file mode 100644 index 0000000..bc4ab78 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/base_icon_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed-on.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed-on.png new file mode 100644 index 0000000..d081e9b Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed-on.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed.png new file mode 100644 index 0000000..caa34ce Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed@2x.png new file mode 100644 index 0000000..bc87d01 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_disabled.png new file mode 100644 index 0000000..a83f842 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_disabled@2x.png new file mode 100644 index 0000000..4bb3f6e Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_focus.png new file mode 100644 index 0000000..6d19399 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_focus@2x.png new file mode 100644 index 0000000..c02f8a8 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_pressed.png new file mode 100644 index 0000000..17b7784 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_pressed@2x.png new file mode 100644 index 0000000..51db176 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_closed_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end.png new file mode 100644 index 0000000..05cf7b6 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end@2x.png new file mode 100644 index 0000000..6df213e Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_disabled.png new file mode 100644 index 0000000..8d1c2ce Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_disabled@2x.png new file mode 100644 index 0000000..0a9305f Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_focus.png new file mode 100644 index 0000000..3227c78 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_focus@2x.png new file mode 100644 index 0000000..331af9c Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_pressed.png new file mode 100644 index 0000000..3537347 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_pressed@2x.png new file mode 100644 index 0000000..e5e4bce Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_end_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line.png new file mode 100644 index 0000000..36c7ddf Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line@2x.png new file mode 100644 index 0000000..573c551 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_disabled.png new file mode 100644 index 0000000..36f9b4e Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_disabled@2x.png new file mode 100644 index 0000000..cf615a5 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_focus.png new file mode 100644 index 0000000..b81bc5b Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_focus@2x.png new file mode 100644 index 0000000..c474ed9 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_pressed.png new file mode 100644 index 0000000..445aa18 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_pressed@2x.png new file mode 100644 index 0000000..4117b54 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_line_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more.png new file mode 100644 index 0000000..1b91df3 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more@2x.png new file mode 100644 index 0000000..2e1bebe Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_disabled.png new file mode 100644 index 0000000..72ec42b Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_disabled@2x.png new file mode 100644 index 0000000..65d1d9a Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_focus.png new file mode 100644 index 0000000..9ff3921 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_focus@2x.png new file mode 100644 index 0000000..95ac204 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_pressed.png new file mode 100644 index 0000000..a4f20e0 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_pressed@2x.png new file mode 100644 index 0000000..b113484 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_more_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open-on.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open-on.png new file mode 100644 index 0000000..ec372b2 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open-on.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open.png new file mode 100644 index 0000000..eee8188 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open@2x.png new file mode 100644 index 0000000..bcfdc84 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_disabled.png new file mode 100644 index 0000000..b6d2d47 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_disabled@2x.png new file mode 100644 index 0000000..dffe12f Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_focus.png new file mode 100644 index 0000000..1f7bfdc Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_focus@2x.png new file mode 100644 index 0000000..3cc22d7 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_pressed.png new file mode 100644 index 0000000..db44859 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_pressed@2x.png new file mode 100644 index 0000000..bdf8b2d Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/branch_open_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked.png new file mode 100644 index 0000000..5acad08 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked@2x.png new file mode 100644 index 0000000..99e66ca Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_disabled.png new file mode 100644 index 0000000..bad9677 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_disabled@2x.png new file mode 100644 index 0000000..3c3ea0b Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_focus.png new file mode 100644 index 0000000..464b573 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_focus@2x.png new file mode 100644 index 0000000..1c30bd1 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_pressed.png new file mode 100644 index 0000000..4ca5764 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_pressed@2x.png new file mode 100644 index 0000000..a617952 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_checked_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate.png new file mode 100644 index 0000000..b1c6e71 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate@2x.png new file mode 100644 index 0000000..0d8feb9 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_disabled.png new file mode 100644 index 0000000..04d7da1 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_disabled@2x.png new file mode 100644 index 0000000..de228aa Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_focus.png new file mode 100644 index 0000000..f7f6d71 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_focus@2x.png new file mode 100644 index 0000000..3638a7f Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_pressed.png new file mode 100644 index 0000000..31220be Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_pressed@2x.png new file mode 100644 index 0000000..8d112b1 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_indeterminate_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked.png new file mode 100644 index 0000000..4e68c78 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked@2x.png new file mode 100644 index 0000000..c0c4ec9 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_disabled.png new file mode 100644 index 0000000..9fb0036 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_disabled@2x.png new file mode 100644 index 0000000..8d6c0ed Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_focus.png new file mode 100644 index 0000000..2d6b2fc Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_focus@2x.png new file mode 100644 index 0000000..ed63aaa Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_pressed.png new file mode 100644 index 0000000..85c6c9b Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_pressed@2x.png new file mode 100644 index 0000000..2a4b99a Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/checkbox_unchecked_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/close-hover.png b/src/SqliteDBProcess/src/qdarkstyle/rc/close-hover.png new file mode 100644 index 0000000..657943a Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/close-hover.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/close-pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/close-pressed.png new file mode 100644 index 0000000..937d005 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/close-pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/close.png b/src/SqliteDBProcess/src/qdarkstyle/rc/close.png new file mode 100644 index 0000000..bc0f576 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/close.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/down_arrow.png b/src/SqliteDBProcess/src/qdarkstyle/rc/down_arrow.png new file mode 100644 index 0000000..e271f7f Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/down_arrow.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/down_arrow_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/down_arrow_disabled.png new file mode 100644 index 0000000..5805d98 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/down_arrow_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/left_arrow.png b/src/SqliteDBProcess/src/qdarkstyle/rc/left_arrow.png new file mode 100644 index 0000000..f808d2d Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/left_arrow.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/left_arrow_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/left_arrow_disabled.png new file mode 100644 index 0000000..f5b9af8 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/left_arrow_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal.png new file mode 100644 index 0000000..a89a1ed Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal@2x.png new file mode 100644 index 0000000..3c6899f Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_disabled.png new file mode 100644 index 0000000..b89b2c9 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_disabled@2x.png new file mode 100644 index 0000000..027a030 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_focus.png new file mode 100644 index 0000000..148a2df Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_focus@2x.png new file mode 100644 index 0000000..bdce2bb Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_pressed.png new file mode 100644 index 0000000..c4587b8 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_pressed@2x.png new file mode 100644 index 0000000..9210add Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_horizontal_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical.png new file mode 100644 index 0000000..36c7ddf Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical@2x.png new file mode 100644 index 0000000..573c551 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_disabled.png new file mode 100644 index 0000000..36f9b4e Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_disabled@2x.png new file mode 100644 index 0000000..cf615a5 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_focus.png new file mode 100644 index 0000000..b81bc5b Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_focus@2x.png new file mode 100644 index 0000000..c474ed9 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_pressed.png new file mode 100644 index 0000000..445aa18 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_pressed@2x.png new file mode 100644 index 0000000..4117b54 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/line_vertical_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked.png new file mode 100644 index 0000000..3521990 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked@2x.png new file mode 100644 index 0000000..b4db822 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_disabled.png new file mode 100644 index 0000000..6bf1e26 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_disabled@2x.png new file mode 100644 index 0000000..c2c08f9 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_focus.png new file mode 100644 index 0000000..a74da48 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_focus@2x.png new file mode 100644 index 0000000..3282d3e Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_pressed.png new file mode 100644 index 0000000..06131ab Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_pressed@2x.png new file mode 100644 index 0000000..f7b1f57 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_checked_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked.png new file mode 100644 index 0000000..3428257 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked@2x.png new file mode 100644 index 0000000..b34782b Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_disabled.png new file mode 100644 index 0000000..1205d7f Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_disabled@2x.png new file mode 100644 index 0000000..e050fee Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_focus.png new file mode 100644 index 0000000..caa245f Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_focus@2x.png new file mode 100644 index 0000000..dd81932 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_pressed.png new file mode 100644 index 0000000..21711dc Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_pressed@2x.png new file mode 100644 index 0000000..1a1b9c2 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/radio_unchecked_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/right_arrow.png b/src/SqliteDBProcess/src/qdarkstyle/rc/right_arrow.png new file mode 100644 index 0000000..9b0a4e6 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/right_arrow.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/right_arrow_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/right_arrow_disabled.png new file mode 100644 index 0000000..5c0bee4 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/right_arrow_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/sizegrip.png b/src/SqliteDBProcess/src/qdarkstyle/rc/sizegrip.png new file mode 100644 index 0000000..350583a Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/sizegrip.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/stylesheet-branch-end.png b/src/SqliteDBProcess/src/qdarkstyle/rc/stylesheet-branch-end.png new file mode 100644 index 0000000..cb5d3b5 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/stylesheet-branch-end.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/stylesheet-branch-more.png b/src/SqliteDBProcess/src/qdarkstyle/rc/stylesheet-branch-more.png new file mode 100644 index 0000000..6271140 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/stylesheet-branch-more.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/stylesheet-vline.png b/src/SqliteDBProcess/src/qdarkstyle/rc/stylesheet-vline.png new file mode 100644 index 0000000..87536cc Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/stylesheet-vline.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal.png new file mode 100644 index 0000000..5dbf8c2 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal@2x.png new file mode 100644 index 0000000..e775854 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_disabled.png new file mode 100644 index 0000000..0563329 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_disabled@2x.png new file mode 100644 index 0000000..42eed67 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_focus.png new file mode 100644 index 0000000..d870747 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_focus@2x.png new file mode 100644 index 0000000..f292153 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_pressed.png new file mode 100644 index 0000000..69cc1c5 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_pressed@2x.png new file mode 100644 index 0000000..9819881 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_horizontal_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical.png new file mode 100644 index 0000000..4450862 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical@2x.png new file mode 100644 index 0000000..3f0618f Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_disabled.png new file mode 100644 index 0000000..1369e44 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_disabled@2x.png new file mode 100644 index 0000000..5820962 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_focus.png new file mode 100644 index 0000000..28cedf1 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_focus@2x.png new file mode 100644 index 0000000..828ed59 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_pressed.png new file mode 100644 index 0000000..2b413d3 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_pressed@2x.png new file mode 100644 index 0000000..4e80a0b Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_move_vertical_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal.png new file mode 100644 index 0000000..a1e84c1 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal@2x.png new file mode 100644 index 0000000..664323f Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_disabled.png new file mode 100644 index 0000000..bedbab4 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_disabled@2x.png new file mode 100644 index 0000000..d421e81 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_focus.png new file mode 100644 index 0000000..1632c59 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_focus@2x.png new file mode 100644 index 0000000..da41f2c Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_pressed.png new file mode 100644 index 0000000..e03fb80 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_pressed@2x.png new file mode 100644 index 0000000..64a94a4 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_horizontal_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical.png new file mode 100644 index 0000000..86688ee Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical@2x.png new file mode 100644 index 0000000..e4efe8c Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_disabled.png new file mode 100644 index 0000000..2445368 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_disabled@2x.png new file mode 100644 index 0000000..393920e Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_focus.png new file mode 100644 index 0000000..d286348 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_focus@2x.png new file mode 100644 index 0000000..ad701df Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_pressed.png new file mode 100644 index 0000000..7f09d5a Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_pressed@2x.png new file mode 100644 index 0000000..08d83e1 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/toolbar_separator_vertical_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/transparent.png b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent.png new file mode 100644 index 0000000..6775361 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/transparent@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent@2x.png new file mode 100644 index 0000000..4012944 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_disabled.png new file mode 100644 index 0000000..6775361 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_disabled@2x.png new file mode 100644 index 0000000..4012944 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_focus.png new file mode 100644 index 0000000..6775361 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_focus@2x.png new file mode 100644 index 0000000..4012944 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_pressed.png new file mode 100644 index 0000000..6775361 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_pressed@2x.png new file mode 100644 index 0000000..4012944 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/transparent_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/undock.png b/src/SqliteDBProcess/src/qdarkstyle/rc/undock.png new file mode 100644 index 0000000..88691d7 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/undock.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/up_arrow.png b/src/SqliteDBProcess/src/qdarkstyle/rc/up_arrow.png new file mode 100644 index 0000000..abcc724 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/up_arrow.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/up_arrow_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/up_arrow_disabled.png new file mode 100644 index 0000000..b9c8e3b Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/up_arrow_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_close.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close.png new file mode 100644 index 0000000..c7ac3e7 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_close@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close@2x.png new file mode 100644 index 0000000..b11aa08 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_disabled.png new file mode 100644 index 0000000..d60edac Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_disabled@2x.png new file mode 100644 index 0000000..b571b12 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_focus.png new file mode 100644 index 0000000..c970d3f Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_focus@2x.png new file mode 100644 index 0000000..f87ac73 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_pressed.png new file mode 100644 index 0000000..c6da5c8 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_pressed@2x.png new file mode 100644 index 0000000..749009c Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_close_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip.png new file mode 100644 index 0000000..e3df93b Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip@2x.png new file mode 100644 index 0000000..c5a0dcc Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_disabled.png new file mode 100644 index 0000000..3c0d86e Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_disabled@2x.png new file mode 100644 index 0000000..f57b353 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_focus.png new file mode 100644 index 0000000..2d35380 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_focus@2x.png new file mode 100644 index 0000000..d92f09b Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_pressed.png new file mode 100644 index 0000000..89d5908 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_pressed@2x.png new file mode 100644 index 0000000..ef2dc70 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_grip_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize.png new file mode 100644 index 0000000..a850c48 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize@2x.png new file mode 100644 index 0000000..83b82b6 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_disabled.png new file mode 100644 index 0000000..d66d070 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_disabled@2x.png new file mode 100644 index 0000000..3a7f2af Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_focus.png new file mode 100644 index 0000000..f533977 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_focus@2x.png new file mode 100644 index 0000000..a2b376a Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_pressed.png new file mode 100644 index 0000000..ac050a0 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_pressed@2x.png new file mode 100644 index 0000000..b701572 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_minimize_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock.png new file mode 100644 index 0000000..fab0e72 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock@2x.png new file mode 100644 index 0000000..9574d4a Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_disabled.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_disabled.png new file mode 100644 index 0000000..a2e1649 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_disabled.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_disabled@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_disabled@2x.png new file mode 100644 index 0000000..b6d5c6c Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_disabled@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_focus.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_focus.png new file mode 100644 index 0000000..2932dea Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_focus.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_focus@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_focus@2x.png new file mode 100644 index 0000000..62de7ba Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_focus@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_pressed.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_pressed.png new file mode 100644 index 0000000..4ccf8a5 Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_pressed.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_pressed@2x.png b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_pressed@2x.png new file mode 100644 index 0000000..fba29fc Binary files /dev/null and b/src/SqliteDBProcess/src/qdarkstyle/rc/window_undock_pressed@2x.png differ diff --git a/src/SqliteDBProcess/src/qdarkstyle/style.qrc b/src/SqliteDBProcess/src/qdarkstyle/style.qrc new file mode 100644 index 0000000..e301854 --- /dev/null +++ b/src/SqliteDBProcess/src/qdarkstyle/style.qrc @@ -0,0 +1,216 @@ + + + + rc/arrow_down.png + rc/arrow_down@2x.png + rc/arrow_down_disabled.png + rc/arrow_down_disabled@2x.png + rc/arrow_down_focus.png + rc/arrow_down_focus@2x.png + rc/arrow_down_pressed.png + rc/arrow_down_pressed@2x.png + rc/arrow_left.png + rc/arrow_left@2x.png + rc/arrow_left_disabled.png + rc/arrow_left_disabled@2x.png + rc/arrow_left_focus.png + rc/arrow_left_focus@2x.png + rc/arrow_left_pressed.png + rc/arrow_left_pressed@2x.png + rc/arrow_right.png + rc/arrow_right@2x.png + rc/arrow_right_disabled.png + rc/arrow_right_disabled@2x.png + rc/arrow_right_focus.png + rc/arrow_right_focus@2x.png + rc/arrow_right_pressed.png + rc/arrow_right_pressed@2x.png + rc/arrow_up.png + rc/arrow_up@2x.png + rc/arrow_up_disabled.png + rc/arrow_up_disabled@2x.png + rc/arrow_up_focus.png + rc/arrow_up_focus@2x.png + rc/arrow_up_pressed.png + rc/arrow_up_pressed@2x.png + rc/base_icon.png + rc/base_icon@2x.png + rc/base_icon_disabled.png + rc/base_icon_disabled@2x.png + rc/base_icon_focus.png + rc/base_icon_focus@2x.png + rc/base_icon_pressed.png + rc/base_icon_pressed@2x.png + rc/branch_closed.png + rc/branch_closed@2x.png + rc/branch_closed_disabled.png + rc/branch_closed_disabled@2x.png + rc/branch_closed_focus.png + rc/branch_closed_focus@2x.png + rc/branch_closed_pressed.png + rc/branch_closed_pressed@2x.png + rc/branch_end.png + rc/branch_end@2x.png + rc/branch_end_disabled.png + rc/branch_end_disabled@2x.png + rc/branch_end_focus.png + rc/branch_end_focus@2x.png + rc/branch_end_pressed.png + rc/branch_end_pressed@2x.png + rc/branch_line.png + rc/branch_line@2x.png + rc/branch_line_disabled.png + rc/branch_line_disabled@2x.png + rc/branch_line_focus.png + rc/branch_line_focus@2x.png + rc/branch_line_pressed.png + rc/branch_line_pressed@2x.png + rc/branch_more.png + rc/branch_more@2x.png + rc/branch_more_disabled.png + rc/branch_more_disabled@2x.png + rc/branch_more_focus.png + rc/branch_more_focus@2x.png + rc/branch_more_pressed.png + rc/branch_more_pressed@2x.png + rc/branch_open.png + rc/branch_open@2x.png + rc/branch_open_disabled.png + rc/branch_open_disabled@2x.png + rc/branch_open_focus.png + rc/branch_open_focus@2x.png + rc/branch_open_pressed.png + rc/branch_open_pressed@2x.png + rc/checkbox_checked.png + rc/checkbox_checked@2x.png + rc/checkbox_checked_disabled.png + rc/checkbox_checked_disabled@2x.png + rc/checkbox_checked_focus.png + rc/checkbox_checked_focus@2x.png + rc/checkbox_checked_pressed.png + rc/checkbox_checked_pressed@2x.png + rc/checkbox_indeterminate.png + rc/checkbox_indeterminate@2x.png + rc/checkbox_indeterminate_disabled.png + rc/checkbox_indeterminate_disabled@2x.png + rc/checkbox_indeterminate_focus.png + rc/checkbox_indeterminate_focus@2x.png + rc/checkbox_indeterminate_pressed.png + rc/checkbox_indeterminate_pressed@2x.png + rc/checkbox_unchecked.png + rc/checkbox_unchecked@2x.png + rc/checkbox_unchecked_disabled.png + rc/checkbox_unchecked_disabled@2x.png + rc/checkbox_unchecked_focus.png + rc/checkbox_unchecked_focus@2x.png + rc/checkbox_unchecked_pressed.png + rc/checkbox_unchecked_pressed@2x.png + rc/line_horizontal.png + rc/line_horizontal@2x.png + rc/line_horizontal_disabled.png + rc/line_horizontal_disabled@2x.png + rc/line_horizontal_focus.png + rc/line_horizontal_focus@2x.png + rc/line_horizontal_pressed.png + rc/line_horizontal_pressed@2x.png + rc/line_vertical.png + rc/line_vertical@2x.png + rc/line_vertical_disabled.png + rc/line_vertical_disabled@2x.png + rc/line_vertical_focus.png + rc/line_vertical_focus@2x.png + rc/line_vertical_pressed.png + rc/line_vertical_pressed@2x.png + rc/radio_checked.png + rc/radio_checked@2x.png + rc/radio_checked_disabled.png + rc/radio_checked_disabled@2x.png + rc/radio_checked_focus.png + rc/radio_checked_focus@2x.png + rc/radio_checked_pressed.png + rc/radio_checked_pressed@2x.png + rc/radio_unchecked.png + rc/radio_unchecked@2x.png + rc/radio_unchecked_disabled.png + rc/radio_unchecked_disabled@2x.png + rc/radio_unchecked_focus.png + rc/radio_unchecked_focus@2x.png + rc/radio_unchecked_pressed.png + rc/radio_unchecked_pressed@2x.png + rc/toolbar_move_horizontal.png + rc/toolbar_move_horizontal@2x.png + rc/toolbar_move_horizontal_disabled.png + rc/toolbar_move_horizontal_disabled@2x.png + rc/toolbar_move_horizontal_focus.png + rc/toolbar_move_horizontal_focus@2x.png + rc/toolbar_move_horizontal_pressed.png + rc/toolbar_move_horizontal_pressed@2x.png + rc/toolbar_move_vertical.png + rc/toolbar_move_vertical@2x.png + rc/toolbar_move_vertical_disabled.png + rc/toolbar_move_vertical_disabled@2x.png + rc/toolbar_move_vertical_focus.png + rc/toolbar_move_vertical_focus@2x.png + rc/toolbar_move_vertical_pressed.png + rc/toolbar_move_vertical_pressed@2x.png + rc/toolbar_separator_horizontal.png + rc/toolbar_separator_horizontal@2x.png + rc/toolbar_separator_horizontal_disabled.png + rc/toolbar_separator_horizontal_disabled@2x.png + rc/toolbar_separator_horizontal_focus.png + rc/toolbar_separator_horizontal_focus@2x.png + rc/toolbar_separator_horizontal_pressed.png + rc/toolbar_separator_horizontal_pressed@2x.png + rc/toolbar_separator_vertical.png + rc/toolbar_separator_vertical@2x.png + rc/toolbar_separator_vertical_disabled.png + rc/toolbar_separator_vertical_disabled@2x.png + rc/toolbar_separator_vertical_focus.png + rc/toolbar_separator_vertical_focus@2x.png + rc/toolbar_separator_vertical_pressed.png + rc/toolbar_separator_vertical_pressed@2x.png + rc/transparent.png + rc/transparent@2x.png + rc/transparent_disabled.png + rc/transparent_disabled@2x.png + rc/transparent_focus.png + rc/transparent_focus@2x.png + rc/transparent_pressed.png + rc/transparent_pressed@2x.png + rc/window_close.png + rc/window_close@2x.png + rc/window_close_disabled.png + rc/window_close_disabled@2x.png + rc/window_close_focus.png + rc/window_close_focus@2x.png + rc/window_close_pressed.png + rc/window_close_pressed@2x.png + rc/window_grip.png + rc/window_grip@2x.png + rc/window_grip_disabled.png + rc/window_grip_disabled@2x.png + rc/window_grip_focus.png + rc/window_grip_focus@2x.png + rc/window_grip_pressed.png + rc/window_grip_pressed@2x.png + rc/window_minimize.png + rc/window_minimize@2x.png + rc/window_minimize_disabled.png + rc/window_minimize_disabled@2x.png + rc/window_minimize_focus.png + rc/window_minimize_focus@2x.png + rc/window_minimize_pressed.png + rc/window_minimize_pressed@2x.png + rc/window_undock.png + rc/window_undock@2x.png + rc/window_undock_disabled.png + rc/window_undock_disabled@2x.png + rc/window_undock_focus.png + rc/window_undock_focus@2x.png + rc/window_undock_pressed.png + rc/window_undock_pressed@2x.png + + + style.qss + + diff --git a/src/SqliteDBProcess/src/qdarkstyle/style.qrc.depends b/src/SqliteDBProcess/src/qdarkstyle/style.qrc.depends new file mode 100644 index 0000000..e301854 --- /dev/null +++ b/src/SqliteDBProcess/src/qdarkstyle/style.qrc.depends @@ -0,0 +1,216 @@ + + + + rc/arrow_down.png + rc/arrow_down@2x.png + rc/arrow_down_disabled.png + rc/arrow_down_disabled@2x.png + rc/arrow_down_focus.png + rc/arrow_down_focus@2x.png + rc/arrow_down_pressed.png + rc/arrow_down_pressed@2x.png + rc/arrow_left.png + rc/arrow_left@2x.png + rc/arrow_left_disabled.png + rc/arrow_left_disabled@2x.png + rc/arrow_left_focus.png + rc/arrow_left_focus@2x.png + rc/arrow_left_pressed.png + rc/arrow_left_pressed@2x.png + rc/arrow_right.png + rc/arrow_right@2x.png + rc/arrow_right_disabled.png + rc/arrow_right_disabled@2x.png + rc/arrow_right_focus.png + rc/arrow_right_focus@2x.png + rc/arrow_right_pressed.png + rc/arrow_right_pressed@2x.png + rc/arrow_up.png + rc/arrow_up@2x.png + rc/arrow_up_disabled.png + rc/arrow_up_disabled@2x.png + rc/arrow_up_focus.png + rc/arrow_up_focus@2x.png + rc/arrow_up_pressed.png + rc/arrow_up_pressed@2x.png + rc/base_icon.png + rc/base_icon@2x.png + rc/base_icon_disabled.png + rc/base_icon_disabled@2x.png + rc/base_icon_focus.png + rc/base_icon_focus@2x.png + rc/base_icon_pressed.png + rc/base_icon_pressed@2x.png + rc/branch_closed.png + rc/branch_closed@2x.png + rc/branch_closed_disabled.png + rc/branch_closed_disabled@2x.png + rc/branch_closed_focus.png + rc/branch_closed_focus@2x.png + rc/branch_closed_pressed.png + rc/branch_closed_pressed@2x.png + rc/branch_end.png + rc/branch_end@2x.png + rc/branch_end_disabled.png + rc/branch_end_disabled@2x.png + rc/branch_end_focus.png + rc/branch_end_focus@2x.png + rc/branch_end_pressed.png + rc/branch_end_pressed@2x.png + rc/branch_line.png + rc/branch_line@2x.png + rc/branch_line_disabled.png + rc/branch_line_disabled@2x.png + rc/branch_line_focus.png + rc/branch_line_focus@2x.png + rc/branch_line_pressed.png + rc/branch_line_pressed@2x.png + rc/branch_more.png + rc/branch_more@2x.png + rc/branch_more_disabled.png + rc/branch_more_disabled@2x.png + rc/branch_more_focus.png + rc/branch_more_focus@2x.png + rc/branch_more_pressed.png + rc/branch_more_pressed@2x.png + rc/branch_open.png + rc/branch_open@2x.png + rc/branch_open_disabled.png + rc/branch_open_disabled@2x.png + rc/branch_open_focus.png + rc/branch_open_focus@2x.png + rc/branch_open_pressed.png + rc/branch_open_pressed@2x.png + rc/checkbox_checked.png + rc/checkbox_checked@2x.png + rc/checkbox_checked_disabled.png + rc/checkbox_checked_disabled@2x.png + rc/checkbox_checked_focus.png + rc/checkbox_checked_focus@2x.png + rc/checkbox_checked_pressed.png + rc/checkbox_checked_pressed@2x.png + rc/checkbox_indeterminate.png + rc/checkbox_indeterminate@2x.png + rc/checkbox_indeterminate_disabled.png + rc/checkbox_indeterminate_disabled@2x.png + rc/checkbox_indeterminate_focus.png + rc/checkbox_indeterminate_focus@2x.png + rc/checkbox_indeterminate_pressed.png + rc/checkbox_indeterminate_pressed@2x.png + rc/checkbox_unchecked.png + rc/checkbox_unchecked@2x.png + rc/checkbox_unchecked_disabled.png + rc/checkbox_unchecked_disabled@2x.png + rc/checkbox_unchecked_focus.png + rc/checkbox_unchecked_focus@2x.png + rc/checkbox_unchecked_pressed.png + rc/checkbox_unchecked_pressed@2x.png + rc/line_horizontal.png + rc/line_horizontal@2x.png + rc/line_horizontal_disabled.png + rc/line_horizontal_disabled@2x.png + rc/line_horizontal_focus.png + rc/line_horizontal_focus@2x.png + rc/line_horizontal_pressed.png + rc/line_horizontal_pressed@2x.png + rc/line_vertical.png + rc/line_vertical@2x.png + rc/line_vertical_disabled.png + rc/line_vertical_disabled@2x.png + rc/line_vertical_focus.png + rc/line_vertical_focus@2x.png + rc/line_vertical_pressed.png + rc/line_vertical_pressed@2x.png + rc/radio_checked.png + rc/radio_checked@2x.png + rc/radio_checked_disabled.png + rc/radio_checked_disabled@2x.png + rc/radio_checked_focus.png + rc/radio_checked_focus@2x.png + rc/radio_checked_pressed.png + rc/radio_checked_pressed@2x.png + rc/radio_unchecked.png + rc/radio_unchecked@2x.png + rc/radio_unchecked_disabled.png + rc/radio_unchecked_disabled@2x.png + rc/radio_unchecked_focus.png + rc/radio_unchecked_focus@2x.png + rc/radio_unchecked_pressed.png + rc/radio_unchecked_pressed@2x.png + rc/toolbar_move_horizontal.png + rc/toolbar_move_horizontal@2x.png + rc/toolbar_move_horizontal_disabled.png + rc/toolbar_move_horizontal_disabled@2x.png + rc/toolbar_move_horizontal_focus.png + rc/toolbar_move_horizontal_focus@2x.png + rc/toolbar_move_horizontal_pressed.png + rc/toolbar_move_horizontal_pressed@2x.png + rc/toolbar_move_vertical.png + rc/toolbar_move_vertical@2x.png + rc/toolbar_move_vertical_disabled.png + rc/toolbar_move_vertical_disabled@2x.png + rc/toolbar_move_vertical_focus.png + rc/toolbar_move_vertical_focus@2x.png + rc/toolbar_move_vertical_pressed.png + rc/toolbar_move_vertical_pressed@2x.png + rc/toolbar_separator_horizontal.png + rc/toolbar_separator_horizontal@2x.png + rc/toolbar_separator_horizontal_disabled.png + rc/toolbar_separator_horizontal_disabled@2x.png + rc/toolbar_separator_horizontal_focus.png + rc/toolbar_separator_horizontal_focus@2x.png + rc/toolbar_separator_horizontal_pressed.png + rc/toolbar_separator_horizontal_pressed@2x.png + rc/toolbar_separator_vertical.png + rc/toolbar_separator_vertical@2x.png + rc/toolbar_separator_vertical_disabled.png + rc/toolbar_separator_vertical_disabled@2x.png + rc/toolbar_separator_vertical_focus.png + rc/toolbar_separator_vertical_focus@2x.png + rc/toolbar_separator_vertical_pressed.png + rc/toolbar_separator_vertical_pressed@2x.png + rc/transparent.png + rc/transparent@2x.png + rc/transparent_disabled.png + rc/transparent_disabled@2x.png + rc/transparent_focus.png + rc/transparent_focus@2x.png + rc/transparent_pressed.png + rc/transparent_pressed@2x.png + rc/window_close.png + rc/window_close@2x.png + rc/window_close_disabled.png + rc/window_close_disabled@2x.png + rc/window_close_focus.png + rc/window_close_focus@2x.png + rc/window_close_pressed.png + rc/window_close_pressed@2x.png + rc/window_grip.png + rc/window_grip@2x.png + rc/window_grip_disabled.png + rc/window_grip_disabled@2x.png + rc/window_grip_focus.png + rc/window_grip_focus@2x.png + rc/window_grip_pressed.png + rc/window_grip_pressed@2x.png + rc/window_minimize.png + rc/window_minimize@2x.png + rc/window_minimize_disabled.png + rc/window_minimize_disabled@2x.png + rc/window_minimize_focus.png + rc/window_minimize_focus@2x.png + rc/window_minimize_pressed.png + rc/window_minimize_pressed@2x.png + rc/window_undock.png + rc/window_undock@2x.png + rc/window_undock_disabled.png + rc/window_undock_disabled@2x.png + rc/window_undock_focus.png + rc/window_undock_focus@2x.png + rc/window_undock_pressed.png + rc/window_undock_pressed@2x.png + + + style.qss + + diff --git a/src/SqliteDBProcess/src/qdarkstyle/style.qss b/src/SqliteDBProcess/src/qdarkstyle/style.qss new file mode 100644 index 0000000..55dfe09 --- /dev/null +++ b/src/SqliteDBProcess/src/qdarkstyle/style.qss @@ -0,0 +1,2165 @@ +/* --------------------------------------------------------------------------- + + Created by the qtsass compiler v0.1.1 + + The definitions are in the "qdarkstyle.qss._styles.scss" module + + WARNING! All changes made in this file will be lost! + +--------------------------------------------------------------------------- */ +/* QDarkStyleSheet ----------------------------------------------------------- + +This is the main style sheet, the palette has nine colors. + +It is based on three selecting colors, three greyish (background) colors +plus three whitish (foreground) colors. Each set of widgets of the same +type have a header like this: + + ------------------ + GroupName -------- + ------------------ + +And each widget is separated with a header like this: + + QWidgetName ------ + +This makes more easy to find and change some css field. The basic +configuration is described bellow. + + BACKGROUND ----------- + + Light (unpressed) + Normal (border, disabled, pressed, checked, toolbars, menus) + Dark (background) + + FOREGROUND ----------- + + Light (texts/labels) + Normal (not used yet) + Dark (disabled texts) + + SELECTION ------------ + + Light (selection/hover/active) + Normal (selected) + Dark (selected disabled) + +If a stranger configuration is required because of a bugfix or anything +else, keep the comment on the line above so nobody changes it, including the +issue number. + +*/ +/* + +See Qt documentation: + + - https://doc.qt.io/qt-5/stylesheet.html + - https://doc.qt.io/qt-5/stylesheet-reference.html + - https://doc.qt.io/qt-5/stylesheet-examples.html + +--------------------------------------------------------------------------- */ +/* QWidget ---------------------------------------------------------------- + +--------------------------------------------------------------------------- */ +QWidget { + background-color: #19232D; + border: 0px solid #32414B; + padding: 0px; + color: #F0F0F0; + selection-background-color: #1464A0; + selection-color: #F0F0F0; +} + +QWidget:disabled { + background-color: #19232D; + color: #787878; + selection-background-color: #14506E; + selection-color: #787878; +} + +QWidget::item:selected { + background-color: #1464A0; +} + +QWidget::item:hover { + background-color: #148CD2; + color: #32414B; +} + +/* QMainWindow ------------------------------------------------------------ + +This adjusts the splitter in the dock widget, not qsplitter +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qmainwindow + +--------------------------------------------------------------------------- */ +QMainWindow::separator { + background-color: #32414B; + border: 0px solid #19232D; + spacing: 0px; + padding: 2px; +} + +QMainWindow::separator:hover { + background-color: #505F69; + border: 0px solid #148CD2; +} + +QMainWindow::separator:horizontal { + width: 5px; + margin-top: 2px; + margin-bottom: 2px; + image: url(":/qss_icons/rc/toolbar_separator_vertical.png"); +} + +QMainWindow::separator:vertical { + height: 5px; + margin-left: 2px; + margin-right: 2px; + image: url(":/qss_icons/rc/toolbar_separator_horizontal.png"); +} + +/* QToolTip --------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qtooltip + +--------------------------------------------------------------------------- */ +QToolTip { + background-color: #148CD2; + border: 1px solid #19232D; + color: #19232D; + /* Remove padding, for fix combo box tooltip */ + padding: 0px; + /* Remove opacity, fix #174 - may need to use RGBA */ +} + +/* QStatusBar ------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qstatusbar + +--------------------------------------------------------------------------- */ +QStatusBar { + border: 1px solid #32414B; + /* Fixes Spyder #9120, #9121 */ + background: #32414B; + /* Fixes #205, white vertical borders separating items */ +} + +QStatusBar::item { + border: none; +} + +QStatusBar QToolTip { + background-color: #148CD2; + border: 1px solid #19232D; + color: #19232D; + /* Remove padding, for fix combo box tooltip */ + padding: 0px; + /* Reducing transparency to read better */ + opacity: 230; +} + +QStatusBar QLabel { + /* Fixes Spyder #9120, #9121 */ + background: transparent; +} + +/* QCheckBox -------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qcheckbox + +--------------------------------------------------------------------------- */ +QCheckBox { + background-color: #19232D; + color: #F0F0F0; + spacing: 4px; + outline: none; + padding-top: 4px; + padding-bottom: 4px; +} + +QCheckBox:focus { + border: none; +} + +QCheckBox QWidget:disabled { + background-color: #19232D; + color: #787878; +} + +QCheckBox::indicator { + margin-left: 4px; + height: 16px; + width: 16px; +} + +QCheckBox::indicator:unchecked { + image: url(":/qss_icons/rc/checkbox_unchecked.png"); +} + +QCheckBox::indicator:unchecked:hover, QCheckBox::indicator:unchecked:focus, QCheckBox::indicator:unchecked:pressed { + border: none; + image: url(":/qss_icons/rc/checkbox_unchecked_focus.png"); +} + +QCheckBox::indicator:unchecked:disabled { + image: url(":/qss_icons/rc/checkbox_unchecked_disabled.png"); +} + +QCheckBox::indicator:checked { + image: url(":/qss_icons/rc/checkbox_checked.png"); +} + +QCheckBox::indicator:checked:hover, QCheckBox::indicator:checked:focus, QCheckBox::indicator:checked:pressed { + border: none; + image: url(":/qss_icons/rc/checkbox_checked_focus.png"); +} + +QCheckBox::indicator:checked:disabled { + image: url(":/qss_icons/rc/checkbox_checked_disabled.png"); +} + +QCheckBox::indicator:indeterminate { + image: url(":/qss_icons/rc/checkbox_indeterminate.png"); +} + +QCheckBox::indicator:indeterminate:disabled { + image: url(":/qss_icons/rc/checkbox_indeterminate_disabled.png"); +} + +QCheckBox::indicator:indeterminate:focus, QCheckBox::indicator:indeterminate:hover, QCheckBox::indicator:indeterminate:pressed { + image: url(":/qss_icons/rc/checkbox_indeterminate_focus.png"); +} + +/* QGroupBox -------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qgroupbox + +--------------------------------------------------------------------------- */ +QGroupBox { + font-weight: bold; + border: 1px solid #32414B; + border-radius: 4px; + padding: 4px; + margin-top: 16px; +} + +QGroupBox::title { + subcontrol-origin: margin; + subcontrol-position: top left; + left: 3px; + padding-left: 3px; + padding-right: 5px; + padding-top: 8px; + padding-bottom: 16px; +} + +QGroupBox::indicator { + margin-left: 2px; + height: 12px; + width: 12px; +} + +QGroupBox::indicator:unchecked:hover, QGroupBox::indicator:unchecked:focus, QGroupBox::indicator:unchecked:pressed { + border: none; + image: url(":/qss_icons/rc/checkbox_unchecked_focus.png"); +} + +QGroupBox::indicator:unchecked:disabled { + image: url(":/qss_icons/rc/checkbox_unchecked_disabled.png"); +} + +QGroupBox::indicator:checked:hover, QGroupBox::indicator:checked:focus, QGroupBox::indicator:checked:pressed { + border: none; + image: url(":/qss_icons/rc/checkbox_checked_focus.png"); +} + +QGroupBox::indicator:checked:disabled { + image: url(":/qss_icons/rc/checkbox_checked_disabled.png"); +} + +/* QRadioButton ----------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qradiobutton + +--------------------------------------------------------------------------- */ +QRadioButton { + background-color: #19232D; + color: #F0F0F0; + spacing: 4px; + padding: 0px; + border: none; + outline: none; +} + +QRadioButton:focus { + border: none; +} + +QRadioButton:disabled { + background-color: #19232D; + color: #787878; + border: none; + outline: none; +} + +QRadioButton QWidget { + background-color: #19232D; + color: #F0F0F0; + spacing: 0px; + padding: 0px; + outline: none; + border: none; +} + +QRadioButton::indicator { + border: none; + outline: none; + margin-left: 4px; + height: 16px; + width: 16px; +} + +QRadioButton::indicator:unchecked { + image: url(":/qss_icons/rc/radio_unchecked.png"); +} + +QRadioButton::indicator:unchecked:hover, QRadioButton::indicator:unchecked:focus, QRadioButton::indicator:unchecked:pressed { + border: none; + outline: none; + image: url(":/qss_icons/rc/radio_unchecked_focus.png"); +} + +QRadioButton::indicator:unchecked:disabled { + image: url(":/qss_icons/rc/radio_unchecked_disabled.png"); +} + +QRadioButton::indicator:checked { + border: none; + outline: none; + image: url(":/qss_icons/rc/radio_checked.png"); +} + +QRadioButton::indicator:checked:hover, QRadioButton::indicator:checked:focus, QRadioButton::indicator:checked:pressed { + border: none; + outline: none; + image: url(":/qss_icons/rc/radio_checked_focus.png"); +} + +QRadioButton::indicator:checked:disabled { + outline: none; + image: url(":/qss_icons/rc/radio_checked_disabled.png"); +} + +/* QMenuBar --------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qmenubar + +--------------------------------------------------------------------------- */ +QMenuBar { + background-color: #32414B; + padding: 2px; + border: 1px solid #19232D; + color: #F0F0F0; +} + +QMenuBar:focus { + border: 1px solid #148CD2; +} + +QMenuBar::item { + background: transparent; + padding: 4px; +} + +QMenuBar::item:selected { + padding: 4px; + background: transparent; + border: 0px solid #32414B; +} + +QMenuBar::item:pressed { + padding: 4px; + border: 0px solid #32414B; + background-color: #148CD2; + color: #F0F0F0; + margin-bottom: 0px; + padding-bottom: 0px; +} + +/* QMenu ------------------------------------------------------------------ + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qmenu + +--------------------------------------------------------------------------- */ +QMenu { + border: 0px solid #32414B; + color: #F0F0F0; + margin: 0px; +} + +QMenu::separator { + height: 1px; + background-color: #505F69; + color: #F0F0F0; +} + +QMenu::icon { + margin: 0px; + padding-left: 8px; +} + +QMenu::item { + background-color: #32414B; + padding: 4px 24px 4px 24px; + /* Reserve space for selection border */ + border: 1px transparent #32414B; +} + +QMenu::item:selected { + color: #F0F0F0; +} + +QMenu::indicator { + width: 12px; + height: 12px; + padding-left: 6px; + /* non-exclusive indicator = check box style indicator (see QActionGroup::setExclusive) */ + /* exclusive indicator = radio button style indicator (see QActionGroup::setExclusive) */ +} + +QMenu::indicator:non-exclusive:unchecked { + image: url(":/qss_icons/rc/checkbox_unchecked.png"); +} + +QMenu::indicator:non-exclusive:unchecked:selected { + image: url(":/qss_icons/rc/checkbox_unchecked_disabled.png"); +} + +QMenu::indicator:non-exclusive:checked { + image: url(":/qss_icons/rc/checkbox_checked.png"); +} + +QMenu::indicator:non-exclusive:checked:selected { + image: url(":/qss_icons/rc/checkbox_checked_disabled.png"); +} + +QMenu::indicator:exclusive:unchecked { + image: url(":/qss_icons/rc/radio_unchecked.png"); +} + +QMenu::indicator:exclusive:unchecked:selected { + image: url(":/qss_icons/rc/radio_unchecked_disabled.png"); +} + +QMenu::indicator:exclusive:checked { + image: url(":/qss_icons/rc/radio_checked.png"); +} + +QMenu::indicator:exclusive:checked:selected { + image: url(":/qss_icons/rc/radio_checked_disabled.png"); +} + +QMenu::right-arrow { + margin: 5px; + image: url(":/qss_icons/rc/arrow_right.png"); + height: 12px; + width: 12px; +} + +/* QAbstractItemView ------------------------------------------------------ + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qcombobox + +--------------------------------------------------------------------------- */ +QAbstractItemView { + alternate-background-color: #19232D; + color: #F0F0F0; + border: 1px solid #32414B; + border-radius: 4px; +} + +QAbstractItemView QLineEdit { + padding: 2px; +} + +/* QAbstractScrollArea ---------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qabstractscrollarea + +--------------------------------------------------------------------------- */ +QAbstractScrollArea { + background-color: #19232D; + border: 1px solid #32414B; + border-radius: 4px; + padding: 2px; + /* fix #159 */ + min-height: 1.25em; + /* fix #159 */ + color: #F0F0F0; +} + +QAbstractScrollArea:disabled { + color: #787878; +} + +/* QScrollArea ------------------------------------------------------------ + +--------------------------------------------------------------------------- */ +QScrollArea QWidget QWidget:disabled { + background-color: #19232D; +} + +/* QScrollBar ------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qscrollbar + +--------------------------------------------------------------------------- */ +QScrollBar:horizontal { + height: 16px; + margin: 2px 16px 2px 16px; + border: 1px solid #32414B; + border-radius: 4px; + background-color: #19232D; +} + +QScrollBar:vertical { + background-color: #19232D; + width: 16px; + margin: 16px 2px 16px 2px; + border: 1px solid #32414B; + border-radius: 4px; +} + +QScrollBar::handle:horizontal { + background-color: #787878; + border: 1px solid #32414B; + border-radius: 4px; + min-width: 8px; +} + +QScrollBar::handle:horizontal:hover { + background-color: #148CD2; + border: 1px solid #148CD2; + border-radius: 4px; + min-width: 8px; +} + +QScrollBar::handle:horizontal:focus { + border: 1px solid #1464A0; +} + +QScrollBar::handle:vertical { + background-color: #787878; + border: 1px solid #32414B; + min-height: 8px; + border-radius: 4px; +} + +QScrollBar::handle:vertical:hover { + background-color: #148CD2; + border: 1px solid #148CD2; + border-radius: 4px; + min-height: 8px; +} + +QScrollBar::handle:vertical:focus { + border: 1px solid #1464A0; +} + +QScrollBar::add-line:horizontal { + margin: 0px 0px 0px 0px; + border-image: url(":/qss_icons/rc/arrow_right_disabled.png"); + height: 12px; + width: 12px; + subcontrol-position: right; + subcontrol-origin: margin; +} + +QScrollBar::add-line:horizontal:hover, QScrollBar::add-line:horizontal:on { + border-image: url(":/qss_icons/rc/arrow_right.png"); + height: 12px; + width: 12px; + subcontrol-position: right; + subcontrol-origin: margin; +} + +QScrollBar::add-line:vertical { + margin: 3px 0px 3px 0px; + border-image: url(":/qss_icons/rc/arrow_down_disabled.png"); + height: 12px; + width: 12px; + subcontrol-position: bottom; + subcontrol-origin: margin; +} + +QScrollBar::add-line:vertical:hover, QScrollBar::add-line:vertical:on { + border-image: url(":/qss_icons/rc/arrow_down.png"); + height: 12px; + width: 12px; + subcontrol-position: bottom; + subcontrol-origin: margin; +} + +QScrollBar::sub-line:horizontal { + margin: 0px 3px 0px 3px; + border-image: url(":/qss_icons/rc/arrow_left_disabled.png"); + height: 12px; + width: 12px; + subcontrol-position: left; + subcontrol-origin: margin; +} + +QScrollBar::sub-line:horizontal:hover, QScrollBar::sub-line:horizontal:on { + border-image: url(":/qss_icons/rc/arrow_left.png"); + height: 12px; + width: 12px; + subcontrol-position: left; + subcontrol-origin: margin; +} + +QScrollBar::sub-line:vertical { + margin: 3px 0px 3px 0px; + border-image: url(":/qss_icons/rc/arrow_up_disabled.png"); + height: 12px; + width: 12px; + subcontrol-position: top; + subcontrol-origin: margin; +} + +QScrollBar::sub-line:vertical:hover, QScrollBar::sub-line:vertical:on { + border-image: url(":/qss_icons/rc/arrow_up.png"); + height: 12px; + width: 12px; + subcontrol-position: top; + subcontrol-origin: margin; +} + +QScrollBar::up-arrow:horizontal, QScrollBar::down-arrow:horizontal { + background: none; +} + +QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical { + background: none; +} + +QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal { + background: none; +} + +QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical { + background: none; +} + +/* QTextEdit -------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-specific-widgets + +--------------------------------------------------------------------------- */ +QTextEdit { + background-color: #19232D; + color: #F0F0F0; + border-radius: 4px; + border: 1px solid #32414B; +} + +QTextEdit:hover { + border: 1px solid #148CD2; + color: #F0F0F0; +} + +QTextEdit:focus { + border: 1px solid #1464A0; +} + +QTextEdit:selected { + background: #1464A0; + color: #32414B; +} + +/* QPlainTextEdit --------------------------------------------------------- + +--------------------------------------------------------------------------- */ +QPlainTextEdit { + background-color: #19232D; + color: #F0F0F0; + border-radius: 4px; + border: 1px solid #32414B; +} + +QPlainTextEdit:hover { + border: 1px solid #148CD2; + color: #F0F0F0; +} + +QPlainTextEdit:focus { + border: 1px solid #1464A0; +} + +QPlainTextEdit:selected { + background: #1464A0; + color: #32414B; +} + +/* QSizeGrip -------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qsizegrip + +--------------------------------------------------------------------------- */ +QSizeGrip { + background: transparent; + width: 12px; + height: 12px; + image: url(":/qss_icons/rc/window_grip.png"); +} + +/* QStackedWidget --------------------------------------------------------- + +--------------------------------------------------------------------------- */ +QStackedWidget { + padding: 2px; + border: 1px solid #32414B; + border: 1px solid #19232D; +} + +/* QToolBar --------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qtoolbar + +--------------------------------------------------------------------------- */ +QToolBar { + background-color: #32414B; + border-bottom: 1px solid #19232D; + padding: 2px; + font-weight: bold; + spacing: 2px; +} + +QToolBar QToolButton { + background-color: #32414B; + border: 1px solid #32414B; +} + +QToolBar QToolButton:hover { + border: 1px solid #148CD2; +} + +QToolBar QToolButton:checked { + border: 1px solid #19232D; + background-color: #19232D; +} + +QToolBar QToolButton:checked:hover { + border: 1px solid #148CD2; +} + +QToolBar::handle:horizontal { + width: 16px; + image: url(":/qss_icons/rc/toolbar_move_horizontal.png"); +} + +QToolBar::handle:vertical { + height: 16px; + image: url(":/qss_icons/rc/toolbar_move_vertical.png"); +} + +QToolBar::separator:horizontal { + width: 16px; + image: url(":/qss_icons/rc/toolbar_separator_horizontal.png"); +} + +QToolBar::separator:vertical { + height: 16px; + image: url(":/qss_icons/rc/toolbar_separator_vertical.png"); +} + +QToolButton#qt_toolbar_ext_button { + background: #32414B; + border: 0px; + color: #F0F0F0; + image: url(":/qss_icons/rc/arrow_right.png"); +} + +/* QAbstractSpinBox ------------------------------------------------------- + +--------------------------------------------------------------------------- */ +QAbstractSpinBox { + background-color: #19232D; + border: 1px solid #32414B; + color: #F0F0F0; + /* This fixes 103, 111 */ + padding-top: 2px; + /* This fixes 103, 111 */ + padding-bottom: 2px; + padding-left: 4px; + padding-right: 4px; + border-radius: 4px; + /* min-width: 5px; removed to fix 109 */ +} + +QAbstractSpinBox:up-button { + background-color: transparent #19232D; + subcontrol-origin: border; + subcontrol-position: top right; + border-left: 1px solid #32414B; + border-bottom: 1px solid #32414B; + border-top-left-radius: 0; + border-bottom-left-radius: 0; + margin: 1px; + width: 12px; + margin-bottom: -1px; +} + +QAbstractSpinBox::up-arrow, QAbstractSpinBox::up-arrow:disabled, QAbstractSpinBox::up-arrow:off { + image: url(":/qss_icons/rc/arrow_up_disabled.png"); + height: 8px; + width: 8px; +} + +QAbstractSpinBox::up-arrow:hover { + image: url(":/qss_icons/rc/arrow_up.png"); +} + +QAbstractSpinBox:down-button { + background-color: transparent #19232D; + subcontrol-origin: border; + subcontrol-position: bottom right; + border-left: 1px solid #32414B; + border-top: 1px solid #32414B; + border-top-left-radius: 0; + border-bottom-left-radius: 0; + margin: 1px; + width: 12px; + margin-top: -1px; +} + +QAbstractSpinBox::down-arrow, QAbstractSpinBox::down-arrow:disabled, QAbstractSpinBox::down-arrow:off { + image: url(":/qss_icons/rc/arrow_down_disabled.png"); + height: 8px; + width: 8px; +} + +QAbstractSpinBox::down-arrow:hover { + image: url(":/qss_icons/rc/arrow_down.png"); +} + +QAbstractSpinBox:hover { + border: 1px solid #148CD2; + color: #F0F0F0; +} + +QAbstractSpinBox:focus { + border: 1px solid #1464A0; +} + +QAbstractSpinBox:selected { + background: #1464A0; + color: #32414B; +} + +/* ------------------------------------------------------------------------ */ +/* DISPLAYS --------------------------------------------------------------- */ +/* ------------------------------------------------------------------------ */ +/* QLabel ----------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qframe + +--------------------------------------------------------------------------- */ +QLabel { + background-color: #19232D; + border: 0px solid #32414B; + padding: 2px; + margin: 0px; + color: #F0F0F0; +} + +QLabel:disabled { + background-color: #19232D; + border: 0px solid #32414B; + color: #787878; +} + +/* QTextBrowser ----------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qabstractscrollarea + +--------------------------------------------------------------------------- */ +QTextBrowser { + background-color: #19232D; + border: 1px solid #32414B; + color: #F0F0F0; + border-radius: 4px; +} + +QTextBrowser:disabled { + background-color: #19232D; + border: 1px solid #32414B; + color: #787878; + border-radius: 4px; +} + +QTextBrowser:hover, QTextBrowser:!hover, QTextBrowser:selected, QTextBrowser:pressed { + border: 1px solid #32414B; +} + +/* QGraphicsView ---------------------------------------------------------- + +--------------------------------------------------------------------------- */ +QGraphicsView { + background-color: #19232D; + border: 1px solid #32414B; + color: #F0F0F0; + border-radius: 4px; +} + +QGraphicsView:disabled { + background-color: #19232D; + border: 1px solid #32414B; + color: #787878; + border-radius: 4px; +} + +QGraphicsView:hover, QGraphicsView:!hover, QGraphicsView:selected, QGraphicsView:pressed { + border: 1px solid #32414B; +} + +/* QCalendarWidget -------------------------------------------------------- + +--------------------------------------------------------------------------- */ +QCalendarWidget { + border: 1px solid #32414B; + border-radius: 4px; +} + +QCalendarWidget:disabled { + background-color: #19232D; + color: #787878; +} + +/* QLCDNumber ------------------------------------------------------------- + +--------------------------------------------------------------------------- */ +QLCDNumber { + background-color: #19232D; + color: #F0F0F0; +} + +QLCDNumber:disabled { + background-color: #19232D; + color: #787878; +} + +/* QProgressBar ----------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qprogressbar + +--------------------------------------------------------------------------- */ +QProgressBar { + background-color: #19232D; + border: 1px solid #32414B; + color: #F0F0F0; + border-radius: 4px; + text-align: center; +} + +QProgressBar:disabled { + background-color: #19232D; + border: 1px solid #32414B; + color: #787878; + border-radius: 4px; + text-align: center; +} + +QProgressBar::chunk { + background-color: #1464A0; + color: #19232D; + border-radius: 4px; +} + +QProgressBar::chunk:disabled { + background-color: #14506E; + color: #787878; + border-radius: 4px; +} + +/* ------------------------------------------------------------------------ */ +/* BUTTONS ---------------------------------------------------------------- */ +/* ------------------------------------------------------------------------ */ +/* QPushButton ------------------------------------------------------------ + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qpushbutton + +--------------------------------------------------------------------------- */ +QPushButton { + background-color: #505F69; + border: 1px solid #32414B; + color: #F0F0F0; + border-radius: 4px; + padding: 3px; + outline: none; + /* Issue #194 - Special case of QPushButton inside dialogs, for better UI */ + min-width: 80px; +} + +QPushButton:disabled { + background-color: #32414B; + border: 1px solid #32414B; + color: #787878; + border-radius: 4px; + padding: 3px; +} + +QPushButton:checked { + background-color: #32414B; + border: 1px solid #32414B; + border-radius: 4px; + padding: 3px; + outline: none; +} + +QPushButton:checked:disabled { + background-color: #19232D; + border: 1px solid #32414B; + color: #787878; + border-radius: 4px; + padding: 3px; + outline: none; +} + +QPushButton:checked:selected { + background: #1464A0; + color: #32414B; +} + +QPushButton::menu-indicator { + subcontrol-origin: padding; + subcontrol-position: bottom right; + bottom: 4px; +} + +QPushButton:pressed { + background-color: #19232D; + border: 1px solid #19232D; +} + +QPushButton:pressed:hover { + border: 1px solid #148CD2; +} + +QPushButton:hover { + border: 1px solid #148CD2; + color: #F0F0F0; +} + +QPushButton:selected { + background: #1464A0; + color: #32414B; +} + +QPushButton:hover { + border: 1px solid #148CD2; + color: #F0F0F0; +} + +QPushButton:focus { + border: 1px solid #1464A0; +} + +/* QToolButton ------------------------------------------------------------ + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qtoolbutton + +--------------------------------------------------------------------------- */ +QToolButton { + background-color: transparent; + border: 1px solid transparent; + border-radius: 4px; + margin: 0px; + padding: 2px; + /* The subcontrols below are used only in the DelayedPopup mode */ + /* The subcontrols below are used only in the MenuButtonPopup mode */ + /* The subcontrol below is used only in the InstantPopup or DelayedPopup mode */ +} + +QToolButton:checked { + background-color: transparent; + border: 1px solid #1464A0; +} + +QToolButton:checked:disabled { + border: 1px solid #14506E; +} + +QToolButton:pressed { + margin: 1px; + background-color: transparent; + border: 1px solid #1464A0; +} + +QToolButton:disabled { + border: none; +} + +QToolButton:hover { + border: 1px solid #148CD2; +} + +QToolButton[popupMode="0"] { + /* Only for DelayedPopup */ + padding-right: 2px; +} + +QToolButton[popupMode="1"] { + /* Only for MenuButtonPopup */ + padding-right: 20px; +} + +QToolButton[popupMode="1"]::menu-button { + border: none; +} + +QToolButton[popupMode="1"]::menu-button:hover { + border: none; + border-left: 1px solid #148CD2; + border-radius: 0; +} + +QToolButton[popupMode="2"] { + /* Only for InstantPopup */ + padding-right: 2px; +} + +QToolButton::menu-button { + padding: 2px; + border-radius: 4px; + border: 1px solid #32414B; + width: 12px; + outline: none; +} + +QToolButton::menu-button:hover { + border: 1px solid #148CD2; +} + +QToolButton::menu-button:checked:hover { + border: 1px solid #148CD2; +} + +QToolButton::menu-indicator { + image: url(":/qss_icons/rc/arrow_down.png"); + height: 8px; + width: 8px; + top: 0; + /* Exclude a shift for better image */ + left: -2px; + /* Shift it a bit */ +} + +QToolButton::menu-arrow { + image: url(":/qss_icons/rc/arrow_down.png"); + height: 8px; + width: 8px; +} + +QToolButton::menu-arrow:hover { + image: url(":/qss_icons/rc/arrow_down_focus.png"); +} + +/* QCommandLinkButton ----------------------------------------------------- + +--------------------------------------------------------------------------- */ +QCommandLinkButton { + background-color: transparent; + border: 1px solid #32414B; + color: #F0F0F0; + border-radius: 4px; + padding: 0px; + margin: 0px; +} + +QCommandLinkButton:disabled { + background-color: transparent; + color: #787878; +} + +/* ------------------------------------------------------------------------ */ +/* INPUTS - NO FIELDS ----------------------------------------------------- */ +/* ------------------------------------------------------------------------ */ +/* QComboBox -------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qcombobox + +--------------------------------------------------------------------------- */ +QComboBox { + border: 1px solid #32414B; + border-radius: 4px; + selection-background-color: #1464A0; + padding-left: 4px; + padding-right: 36px; + /* 4 + 16*2 See scrollbar size */ + /* Fixes #103, #111 */ + min-height: 1.5em; + /* padding-top: 2px; removed to fix #132 */ + /* padding-bottom: 2px; removed to fix #132 */ + /* min-width: 75px; removed to fix #109 */ + /* Needed to remove indicator - fix #132 */ +} + +QComboBox QAbstractItemView { + border: 1px solid #32414B; + border-radius: 0; + background-color: #19232D; + selection-background-color: #1464A0; +} + +QComboBox QAbstractItemView:hover { + background-color: #19232D; + color: #F0F0F0; +} + +QComboBox QAbstractItemView:selected { + background: #1464A0; + color: #32414B; +} + +QComboBox QAbstractItemView:alternate { + background: #19232D; +} + +QComboBox:disabled { + background-color: #19232D; + color: #787878; +} + +QComboBox:hover { + border: 1px solid #148CD2; +} + +QComboBox:focus { + border: 1px solid #1464A0; +} + +QComboBox:on { + selection-background-color: #1464A0; +} + +QComboBox::indicator { + border: none; + border-radius: 0; + background-color: transparent; + selection-background-color: transparent; + color: transparent; + selection-color: transparent; + /* Needed to remove indicator - fix #132 */ +} + +QComboBox::indicator:alternate { + background: #19232D; +} + +QComboBox::item:alternate { + background: #19232D; +} + +QComboBox::item:checked { + font-weight: bold; +} + +QComboBox::item:selected { + border: 0px solid transparent; +} + +QComboBox::drop-down { + subcontrol-origin: padding; + subcontrol-position: top right; + width: 12px; + border-left: 1px solid #32414B; +} + +QComboBox::down-arrow { + image: url(":/qss_icons/rc/arrow_down_disabled.png"); + height: 8px; + width: 8px; +} + +QComboBox::down-arrow:on, QComboBox::down-arrow:hover, QComboBox::down-arrow:focus { + image: url(":/qss_icons/rc/arrow_down.png"); +} + +/* QSlider ---------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qslider + +--------------------------------------------------------------------------- */ +QSlider:disabled { + background: #19232D; +} + +QSlider:focus { + border: none; +} + +QSlider::groove:horizontal { + background: #32414B; + border: 1px solid #32414B; + height: 4px; + margin: 0px; + border-radius: 4px; +} + +QSlider::groove:vertical { + background: #32414B; + border: 1px solid #32414B; + width: 4px; + margin: 0px; + border-radius: 4px; +} + +QSlider::add-page:vertical { + background: #1464A0; + border: 1px solid #32414B; + width: 4px; + margin: 0px; + border-radius: 4px; +} + +QSlider::add-page:vertical :disabled { + background: #14506E; +} + +QSlider::sub-page:horizontal { + background: #1464A0; + border: 1px solid #32414B; + height: 4px; + margin: 0px; + border-radius: 4px; +} + +QSlider::sub-page:horizontal:disabled { + background: #14506E; +} + +QSlider::handle:horizontal { + background: #787878; + border: 1px solid #32414B; + width: 8px; + height: 8px; + margin: -8px 0px; + border-radius: 4px; +} + +QSlider::handle:horizontal:hover { + background: #148CD2; + border: 1px solid #148CD2; +} + +QSlider::handle:horizontal:focus { + border: 1px solid #1464A0; +} + +QSlider::handle:vertical { + background: #787878; + border: 1px solid #32414B; + width: 8px; + height: 8px; + margin: 0 -8px; + border-radius: 4px; +} + +QSlider::handle:vertical:hover { + background: #148CD2; + border: 1px solid #148CD2; +} + +QSlider::handle:vertical:focus { + border: 1px solid #1464A0; +} + +/* QLineEdit -------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qlineedit + +--------------------------------------------------------------------------- */ +QLineEdit { + background-color: #19232D; + padding-top: 2px; + /* This QLineEdit fix 103, 111 */ + padding-bottom: 2px; + /* This QLineEdit fix 103, 111 */ + padding-left: 4px; + padding-right: 4px; + border-style: solid; + border: 1px solid #32414B; + border-radius: 4px; + color: #F0F0F0; +} + +QLineEdit:disabled { + background-color: #19232D; + color: #787878; +} + +QLineEdit:hover { + border: 1px solid #148CD2; + color: #F0F0F0; +} + +QLineEdit:focus { + border: 1px solid #1464A0; +} + +QLineEdit:selected { + background-color: #1464A0; + color: #32414B; +} + +/* QTabWiget -------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qtabwidget-and-qtabbar + +--------------------------------------------------------------------------- */ +QTabWidget { + padding: 2px; + selection-background-color: #32414B; +} + +QTabWidget QWidget { + /* Fixes #189 */ + border-radius: 4px; +} + +QTabWidget::pane { + border: 1px solid #32414B; + border-radius: 4px; + margin: 0px; + /* Fixes double border inside pane with pyqt5 */ + padding: 0px; +} + +QTabWidget::pane:selected { + background-color: #32414B; + border: 1px solid #1464A0; +} + +/* QTabBar ---------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qtabwidget-and-qtabbar + +--------------------------------------------------------------------------- */ +QTabBar { + qproperty-drawBase: 0; + border-radius: 4px; + margin: 0px; + padding: 2px; + border: 0; + /* left: 5px; move to the right by 5px - removed for fix */ +} + +QTabBar::close-button { + border: 0; + margin: 2px; + padding: 2px; + image: url(":/qss_icons/rc/window_close.png"); +} + +QTabBar::close-button:hover { + image: url(":/qss_icons/rc/window_close_focus.png"); +} + +QTabBar::close-button:pressed { + image: url(":/qss_icons/rc/window_close_pressed.png"); +} + +/* QTabBar::tab - selected ------------------------------------------------ + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qtabwidget-and-qtabbar + +--------------------------------------------------------------------------- */ +QTabBar::tab { + /* !selected and disabled ----------------------------------------- */ + /* selected ------------------------------------------------------- */ +} + +QTabBar::tab:top:selected:disabled { + border-bottom: 3px solid #14506E; + color: #787878; + background-color: #32414B; +} + +QTabBar::tab:bottom:selected:disabled { + border-top: 3px solid #14506E; + color: #787878; + background-color: #32414B; +} + +QTabBar::tab:left:selected:disabled { + border-right: 3px solid #14506E; + color: #787878; + background-color: #32414B; +} + +QTabBar::tab:right:selected:disabled { + border-left: 3px solid #14506E; + color: #787878; + background-color: #32414B; +} + +QTabBar::tab:top:!selected:disabled { + border-bottom: 3px solid #19232D; + color: #787878; + background-color: #19232D; +} + +QTabBar::tab:bottom:!selected:disabled { + border-top: 3px solid #19232D; + color: #787878; + background-color: #19232D; +} + +QTabBar::tab:left:!selected:disabled { + border-right: 3px solid #19232D; + color: #787878; + background-color: #19232D; +} + +QTabBar::tab:right:!selected:disabled { + border-left: 3px solid #19232D; + color: #787878; + background-color: #19232D; +} + +QTabBar::tab:top:!selected { + border-bottom: 2px solid #19232D; + margin-top: 2px; +} + +QTabBar::tab:bottom:!selected { + border-top: 2px solid #19232D; + margin-bottom: 3px; +} + +QTabBar::tab:left:!selected { + border-left: 2px solid #19232D; + margin-right: 2px; +} + +QTabBar::tab:right:!selected { + border-right: 2px solid #19232D; + margin-left: 2px; +} + +QTabBar::tab:top { + background-color: #32414B; + color: #F0F0F0; + margin-left: 2px; + padding-left: 4px; + padding-right: 4px; + padding-top: 2px; + padding-bottom: 2px; + min-width: 5px; + border-bottom: 3px solid #32414B; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} + +QTabBar::tab:top:selected { + background-color: #505F69; + color: #F0F0F0; + border-bottom: 3px solid #1464A0; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} + +QTabBar::tab:top:!selected:hover { + border: 1px solid #148CD2; + border-bottom: 3px solid #148CD2; + /* Fixes spyder-ide/spyder#9766 */ + padding-left: 4px; + padding-right: 4px; +} + +QTabBar::tab:bottom { + color: #F0F0F0; + border-top: 3px solid #32414B; + background-color: #32414B; + margin-left: 2px; + padding-left: 4px; + padding-right: 4px; + padding-top: 2px; + padding-bottom: 2px; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; + min-width: 5px; +} + +QTabBar::tab:bottom:selected { + color: #F0F0F0; + background-color: #505F69; + border-top: 3px solid #1464A0; + border-bottom-left-radius: 3px; + border-bottom-right-radius: 3px; +} + +QTabBar::tab:bottom:!selected:hover { + border: 1px solid #148CD2; + border-top: 3px solid #148CD2; + /* Fixes spyder-ide/spyder#9766 */ + padding-left: 4px; + padding-right: 4px; +} + +QTabBar::tab:left { + color: #F0F0F0; + background-color: #32414B; + margin-top: 2px; + padding-left: 2px; + padding-right: 2px; + padding-top: 4px; + padding-bottom: 4px; + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; + min-height: 5px; +} + +QTabBar::tab:left:selected { + color: #F0F0F0; + background-color: #505F69; + border-right: 3px solid #1464A0; +} + +QTabBar::tab:left:!selected:hover { + border: 1px solid #148CD2; + border-right: 3px solid #148CD2; + padding: 0px; +} + +QTabBar::tab:right { + color: #F0F0F0; + background-color: #32414B; + margin-top: 2px; + padding-left: 2px; + padding-right: 2px; + padding-top: 4px; + padding-bottom: 4px; + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; + min-height: 5px; +} + +QTabBar::tab:right:selected { + color: #F0F0F0; + background-color: #505F69; + border-left: 3px solid #1464A0; +} + +QTabBar::tab:right:!selected:hover { + border: 1px solid #148CD2; + border-left: 3px solid #148CD2; + padding: 0px; +} + +QTabBar QToolButton { + /* Fixes #136 */ + background-color: #32414B; + height: 12px; + width: 12px; +} + +QTabBar QToolButton:pressed { + background-color: #32414B; +} + +QTabBar QToolButton:pressed:hover { + border: 1px solid #148CD2; +} + +QTabBar QToolButton::left-arrow:enabled { + image: url(":/qss_icons/rc/arrow_left.png"); +} + +QTabBar QToolButton::left-arrow:disabled { + image: url(":/qss_icons/rc/arrow_left_disabled.png"); +} + +QTabBar QToolButton::right-arrow:enabled { + image: url(":/qss_icons/rc/arrow_right.png"); +} + +QTabBar QToolButton::right-arrow:disabled { + image: url(":/qss_icons/rc/arrow_right_disabled.png"); +} + +/* QDockWiget ------------------------------------------------------------- + +--------------------------------------------------------------------------- */ +QDockWidget { + outline: 1px solid #32414B; + background-color: #19232D; + border: 1px solid #32414B; + border-radius: 4px; + titlebar-close-icon: url(":/qss_icons/rc/window_close.png"); + titlebar-normal-icon: url(":/qss_icons/rc/window_undock.png"); +} + +QDockWidget::title { + /* Better size for title bar */ + padding: 6px; + spacing: 4px; + border: none; + background-color: #32414B; +} + +QDockWidget::close-button { + background-color: #32414B; + border-radius: 4px; + border: none; +} + +QDockWidget::close-button:hover { + image: url(":/qss_icons/rc/window_close_focus.png"); +} + +QDockWidget::close-button:pressed { + image: url(":/qss_icons/rc/window_close_pressed.png"); +} + +QDockWidget::float-button { + background-color: #32414B; + border-radius: 4px; + border: none; +} + +QDockWidget::float-button:hover { + image: url(":/qss_icons/rc/window_undock_focus.png"); +} + +QDockWidget::float-button:pressed { + image: url(":/qss_icons/rc/window_undock_pressed.png"); +} + +/* QTreeView QListView QTableView ----------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qtreeview +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qlistview +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qtableview + +--------------------------------------------------------------------------- */ +QTreeView:branch:selected, QTreeView:branch:hover { + background: url(":/qss_icons/rc/transparent.png"); +} + +QTreeView:branch:has-siblings:!adjoins-item { + border-image: url(":/qss_icons/rc/branch_line.png") 0; +} + +QTreeView:branch:has-siblings:adjoins-item { + border-image: url(":/qss_icons/rc/branch_more.png") 0; +} + +QTreeView:branch:!has-children:!has-siblings:adjoins-item { + border-image: url(":/qss_icons/rc/branch_end.png") 0; +} + +QTreeView:branch:has-children:!has-siblings:closed, QTreeView:branch:closed:has-children:has-siblings { + border-image: none; + image: url(":/qss_icons/rc/branch_closed.png"); +} + +QTreeView:branch:open:has-children:!has-siblings, QTreeView:branch:open:has-children:has-siblings { + border-image: none; + image: url(":/qss_icons/rc/branch_open.png"); +} + +QTreeView:branch:has-children:!has-siblings:closed:hover, QTreeView:branch:closed:has-children:has-siblings:hover { + image: url(":/qss_icons/rc/branch_closed_focus.png"); +} + +QTreeView:branch:open:has-children:!has-siblings:hover, QTreeView:branch:open:has-children:has-siblings:hover { + image: url(":/qss_icons/rc/branch_open_focus.png"); +} + +QTreeView::indicator:checked, +QListView::indicator:checked { + image: url(":/qss_icons/rc/checkbox_checked.png"); +} + +QTreeView::indicator:checked:hover, QTreeView::indicator:checked:focus, QTreeView::indicator:checked:pressed, +QListView::indicator:checked:hover, +QListView::indicator:checked:focus, +QListView::indicator:checked:pressed { + image: url(":/qss_icons/rc/checkbox_checked_focus.png"); +} + +QTreeView::indicator:unchecked, +QListView::indicator:unchecked { + image: url(":/qss_icons/rc/checkbox_unchecked.png"); +} + +QTreeView::indicator:unchecked:hover, QTreeView::indicator:unchecked:focus, QTreeView::indicator:unchecked:pressed, +QListView::indicator:unchecked:hover, +QListView::indicator:unchecked:focus, +QListView::indicator:unchecked:pressed { + image: url(":/qss_icons/rc/checkbox_unchecked_focus.png"); +} + +QTreeView::indicator:indeterminate, +QListView::indicator:indeterminate { + image: url(":/qss_icons/rc/checkbox_indeterminate.png"); +} + +QTreeView::indicator:indeterminate:hover, QTreeView::indicator:indeterminate:focus, QTreeView::indicator:indeterminate:pressed, +QListView::indicator:indeterminate:hover, +QListView::indicator:indeterminate:focus, +QListView::indicator:indeterminate:pressed { + image: url(":/qss_icons/rc/checkbox_indeterminate_focus.png"); +} + +QTreeView, +QListView, +QTableView, +QColumnView { + background-color: #19232D; + border: 1px solid #32414B; + color: #F0F0F0; + gridline-color: #32414B; + border-radius: 4px; +} + +QTreeView:disabled, +QListView:disabled, +QTableView:disabled, +QColumnView:disabled { + background-color: #19232D; + color: #787878; +} + +QTreeView:selected, +QListView:selected, +QTableView:selected, +QColumnView:selected { + background-color: #1464A0; + color: #32414B; +} + +QTreeView:hover, +QListView:hover, +QTableView:hover, +QColumnView:hover { + background-color: #19232D; + border: 1px solid #148CD2; +} + +QTreeView::item:pressed, +QListView::item:pressed, +QTableView::item:pressed, +QColumnView::item:pressed { + background-color: #1464A0; +} + +QTreeView::item:selected:hover, +QListView::item:selected:hover, +QTableView::item:selected:hover, +QColumnView::item:selected:hover { + background: #1464A0; + color: #19232D; +} + +QTreeView::item:selected:active, +QListView::item:selected:active, +QTableView::item:selected:active, +QColumnView::item:selected:active { + background-color: #1464A0; +} + +QTreeView::item:!selected:hover, +QListView::item:!selected:hover, +QTableView::item:!selected:hover, +QColumnView::item:!selected:hover { + outline: 0; + color: #148CD2; + background-color: #32414B; +} + +QTableCornerButton::section { + background-color: #19232D; + border: 1px transparent #32414B; + border-radius: 0px; +} + +/* QHeaderView ------------------------------------------------------------ + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qheaderview + +--------------------------------------------------------------------------- */ +QHeaderView { + background-color: #32414B; + border: 0px transparent #32414B; + padding: 0px; + margin: 0px; + border-radius: 0px; +} + +QHeaderView:disabled { + background-color: #32414B; + border: 1px transparent #32414B; + padding: 2px; +} + +QHeaderView::section { + background-color: #32414B; + color: #F0F0F0; + padding: 2px; + border-radius: 0px; + text-align: left; +} + +QHeaderView::section:checked { + color: #F0F0F0; + background-color: #1464A0; +} + +QHeaderView::section:checked:disabled { + color: #787878; + background-color: #14506E; +} + +QHeaderView::section::horizontal { + padding-left: 4px; + padding-right: 4px; + border-left: 1px solid #19232D; +} + +QHeaderView::section::horizontal::first, QHeaderView::section::horizontal::only-one { + border-left: 1px solid #32414B; +} + +QHeaderView::section::horizontal:disabled { + color: #787878; +} + +QHeaderView::section::vertical { + padding-left: 4px; + padding-right: 4px; + border-top: 1px solid #19232D; +} + +QHeaderView::section::vertical::first, QHeaderView::section::vertical::only-one { + border-top: 1px solid #32414B; +} + +QHeaderView::section::vertical:disabled { + color: #787878; +} + +QHeaderView::down-arrow { + /* Those settings (border/width/height/background-color) solve bug */ + /* transparent arrow background and size */ + background-color: #32414B; + border: none; + height: 12px; + width: 12px; + padding-left: 2px; + padding-right: 2px; + image: url(":/qss_icons/rc/arrow_down.png"); +} + +QHeaderView::up-arrow { + background-color: #32414B; + border: none; + height: 12px; + width: 12px; + padding-left: 2px; + padding-right: 2px; + image: url(":/qss_icons/rc/arrow_up.png"); +} + +/* QToolBox -------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qtoolbox + +--------------------------------------------------------------------------- */ +QToolBox { + padding: 0px; + border: 0px; + border: 1px solid #32414B; +} + +QToolBox:selected { + padding: 0px; + border: 2px solid #1464A0; +} + +QToolBox::tab { + background-color: #19232D; + border: 1px solid #32414B; + color: #F0F0F0; + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} + +QToolBox::tab:disabled { + color: #787878; +} + +QToolBox::tab:selected { + background-color: #505F69; + border-bottom: 2px solid #1464A0; +} + +QToolBox::tab:selected:disabled { + background-color: #32414B; + border-bottom: 2px solid #14506E; +} + +QToolBox::tab:!selected { + background-color: #32414B; + border-bottom: 2px solid #32414B; +} + +QToolBox::tab:!selected:disabled { + background-color: #19232D; +} + +QToolBox::tab:hover { + border-color: #148CD2; + border-bottom: 2px solid #148CD2; +} + +QToolBox QScrollArea QWidget QWidget { + padding: 0px; + border: 0px; + background-color: #19232D; +} + +/* QFrame ----------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qframe +https://doc.qt.io/qt-5/qframe.html#-prop +https://doc.qt.io/qt-5/qframe.html#details +https://stackoverflow.com/questions/14581498/qt-stylesheet-for-hline-vline-color + +--------------------------------------------------------------------------- */ +/* (dot) .QFrame fix #141, #126, #123 */ +.QFrame { + border-radius: 4px; + border: 1px solid #32414B; + /* No frame */ + /* HLine */ + /* HLine */ +} + +.QFrame[frameShape="0"] { + border-radius: 4px; + border: 1px transparent #32414B; +} + +.QFrame[frameShape="4"] { + max-height: 2px; + border: none; + background-color: #32414B; +} + +.QFrame[frameShape="5"] { + max-width: 2px; + border: none; + background-color: #32414B; +} + +/* QSplitter -------------------------------------------------------------- + +https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qsplitter + +--------------------------------------------------------------------------- */ +QSplitter { + background-color: #32414B; + spacing: 0px; + padding: 0px; + margin: 0px; +} + +QSplitter::handle { + background-color: #32414B; + border: 0px solid #19232D; + spacing: 0px; + padding: 1px; + margin: 0px; +} + +QSplitter::handle:hover { + background-color: #787878; +} + +QSplitter::handle:horizontal { + width: 5px; + image: url(":/qss_icons/rc/line_vertical.png"); +} + +QSplitter::handle:vertical { + height: 5px; + image: url(":/qss_icons/rc/line_horizontal.png"); +} + +/* QDateEdit -------------------------------------------------------------- + +--------------------------------------------------------------------------- */ +QDateEdit { + selection-background-color: #1464A0; + border-style: solid; + border: 1px solid #32414B; + border-radius: 4px; + /* This fixes 103, 111 */ + padding-top: 2px; + /* This fixes 103, 111 */ + padding-bottom: 2px; + padding-left: 4px; + padding-right: 4px; + min-width: 10px; +} + +QDateEdit:on { + selection-background-color: #1464A0; +} + +QDateEdit::drop-down { + subcontrol-origin: padding; + subcontrol-position: top right; + width: 12px; + border-left: 1px solid #32414B; +} + +QDateEdit::down-arrow { + image: url(":/qss_icons/rc/arrow_down_disabled.png"); + height: 8px; + width: 8px; +} + +QDateEdit::down-arrow:on, QDateEdit::down-arrow:hover, QDateEdit::down-arrow:focus { + image: url(":/qss_icons/rc/arrow_down.png"); +} + +QDateEdit QAbstractItemView { + background-color: #19232D; + border-radius: 4px; + border: 1px solid #32414B; + selection-background-color: #1464A0; +} + +/* QAbstractView ---------------------------------------------------------- + +--------------------------------------------------------------------------- */ +QAbstractView:hover { + border: 1px solid #148CD2; + color: #F0F0F0; +} + +QAbstractView:selected { + background: #1464A0; + color: #32414B; +} + +/* PlotWidget ------------------------------------------------------------- + +--------------------------------------------------------------------------- */ +PlotWidget { + /* Fix cut labels in plots #134 */ + padding: 0px; +} diff --git a/src/SqliteDBProcess/src/sql/ObjectIdentifier.cpp b/src/SqliteDBProcess/src/sql/ObjectIdentifier.cpp new file mode 100644 index 0000000..d94aa1c --- /dev/null +++ b/src/SqliteDBProcess/src/sql/ObjectIdentifier.cpp @@ -0,0 +1,80 @@ +#include "ObjectIdentifier.h" + +static std::string duplicate_char(std::string str, char to_replace) +{ + size_t pos = 0; + while((pos = str.find(to_replace, pos)) != std::string::npos) + { + str.insert(pos, 1, to_replace); + pos += 2; // Advance by two characters in order to avoid escaping a character multiple times + } + return str; +} + +namespace sqlb { + +static escapeQuoting customQuoting = DoubleQuotes; + +void setIdentifierQuoting(escapeQuoting toQuoting) +{ + customQuoting = toQuoting; +} + +char getIdentifierQuoteChar() +{ + switch(customQuoting) { + case GraveAccents: + return '`'; + case SquareBrackets: + return '['; + case DoubleQuotes: + return '"'; + } + + return '"'; +} + +std::string escapeIdentifier(const std::string& id) +{ + switch(customQuoting) { + case GraveAccents: + return '`' + duplicate_char(id, '`') + '`'; + case SquareBrackets: + // There aren't any escaping possibilities for square brackets inside the identifier, + // so we rely on the user to not enter these characters when this kind of quoting is + // selected. + return '[' + id + ']'; + case DoubleQuotes: + default: + // This may produce a 'control reaches end of non-void function' warning if the + // default branch is removed, even though we have covered all possibilities in the + // switch statement. + return '"' + duplicate_char(id, '"') + '"'; + } +} + +std::string escapeString(const std::string& literal) +{ + return '\'' + duplicate_char(literal, '\'') + '\''; +} + +bool ObjectIdentifier::fromSerialised(const std::string& serialised) +{ + auto pos_comma = serialised.find(","); + auto pos_colon = serialised.find(":"); + if(pos_comma == serialised.npos || pos_colon == serialised.npos) + return false; + + size_t size_schema, size_name; + size_schema = std::stoul(serialised.substr(0, pos_comma)); + size_name = std::stoul(serialised.substr(pos_comma+1, pos_colon-pos_comma)); + if(pos_colon + size_schema + size_name + 1 != serialised.size()) + return false; + + m_schema = serialised.substr(pos_colon + 1, size_schema); + m_name = serialised.substr(pos_colon + size_schema + 1, size_name); + + return true; +} + +} diff --git a/src/SqliteDBProcess/src/sql/ObjectIdentifier.h b/src/SqliteDBProcess/src/sql/ObjectIdentifier.h new file mode 100644 index 0000000..8d2f528 --- /dev/null +++ b/src/SqliteDBProcess/src/sql/ObjectIdentifier.h @@ -0,0 +1,104 @@ +#ifndef OBJECTIDENTIFIER_H +#define OBJECTIDENTIFIER_H + +#include + +namespace sqlb { + +enum escapeQuoting { + DoubleQuotes, + GraveAccents, + SquareBrackets +}; + +// Set quoting style for escapeIdentifier +void setIdentifierQuoting(escapeQuoting toQuoting); + +// Get currently configured quote char +char getIdentifierQuoteChar(); + +// Add quotes to an identifier +std::string escapeIdentifier(const std::string& id); + +// Add SQL quotes to a string literal and escape any single quote character +std::string escapeString(const std::string& literal); + +// Object identifier consisting of schema name and object name +class ObjectIdentifier +{ +public: + ObjectIdentifier(const std::string& schema, const std::string& name) + : m_schema(schema), + m_name(name) + { + } + + ObjectIdentifier() + : m_schema("main") + { + } + + explicit ObjectIdentifier(const std::string& variant) + { + // Try to unserialise the parameter first. If that does not work, just assume it's an object name for the main schema + clear(); + if(!fromSerialised(variant)) + m_name = variant; + } + + bool operator==(const ObjectIdentifier& rhs) const + { + return (rhs.m_schema == m_schema && rhs.m_name == m_name); + } + + bool operator<(const ObjectIdentifier& rhs) const + { + return toDisplayString() < rhs.toDisplayString(); + } + + const std::string& schema() const { return m_schema; } + const std::string& name() const { return m_name; } + void setSchema(const std::string& schema) { m_schema = schema; } + void setName(const std::string& name) { m_name = name; } + + void clear() + { + m_schema = "main"; + m_name.clear(); + } + + bool isEmpty() const { return m_name.empty(); } + + // This returns a string which can be used in SQL statements + std::string toString(bool shortName = false) const + { + if(shortName && m_schema == "main") + return sqlb::escapeIdentifier(m_name); + else + return sqlb::escapeIdentifier(m_schema) + "." + sqlb::escapeIdentifier(m_name); + } + + // This returns a string which can be used in the user interface + std::string toDisplayString() const + { + if(m_schema == "main") + return m_name; + else + return m_schema + "." + m_name; + } + + std::string toSerialised() const + { + return std::to_string(m_schema.size()) + "," + std::to_string(m_name.size()) + ":" + m_schema + m_name; + } + + bool fromSerialised(const std::string& serialised); + +private: + std::string m_schema; + std::string m_name; +}; + +} + +#endif diff --git a/src/SqliteDBProcess/src/sql/Query.cpp b/src/SqliteDBProcess/src/sql/Query.cpp new file mode 100644 index 0000000..b35fb66 --- /dev/null +++ b/src/SqliteDBProcess/src/sql/Query.cpp @@ -0,0 +1,148 @@ +#include "Query.h" + +#include + +namespace sqlb +{ + +void Query::clear() +{ + m_table.clear(); + m_rowid_columns = {"_rowid_"}; + m_selected_columns.clear(); + m_where.clear(); + m_sort.clear(); +} + +std::string Query::buildWherePart() const +{ + if(m_where.empty() && m_global_where.empty()) + return std::string(); + + std::string where = "WHERE "; + + if(m_where.size()) + { + for(auto i=m_where.cbegin();i!=m_where.cend();++i) + { + const auto it = findSelectedColumnByName(m_column_names.at(i->first)); + std::string column = sqlb::escapeIdentifier(m_column_names.at(i->first)); + if(it != m_selected_columns.cend() && it->selector != column) + column = it->selector; + where += column + " " + i->second + " AND "; + } + + // Remove last ' AND ' + where.erase(where.size() - 5); + } + + if(m_global_where.size()) + { + // Connect to previous conditions if there are any + if(m_where.size()) + where += " AND "; + + // For each condition + for(const auto& w : m_global_where) + { + where += "("; + + // For each selected column + for(const auto& c : m_column_names) + { + const auto it = findSelectedColumnByName(c); + std::string column = sqlb::escapeIdentifier(c); + if(it != m_selected_columns.cend() && it->selector != column) + column = it->selector; + + where += column + " " + w + " OR "; + } + + // Remove last ' OR ' + where.erase(where.size() - 4); + + where += ") AND "; + } + + // Remove last ' AND ' + where.erase(where.size() - 5); + } + + return where; +} + +std::string Query::buildQuery(bool withRowid) const +{ + // Selector and display formats + std::string selector; + if (withRowid) + { + // We select the rowid data into a JSON array in case there are multiple rowid columns in order to have all values at hand. + // If there is only one rowid column, we leave it as is. + if(m_rowid_columns.size() == 1) + { + selector = sqlb::escapeIdentifier(m_rowid_columns.at(0)) + ","; + } else { + selector += "sqlb_make_single_value("; + for(size_t i=0;i::iterator Query::findSelectedColumnByName(const std::string& name) +{ + return std::find_if(m_selected_columns.begin(), m_selected_columns.end(), [name](const SelectedColumn& c) { + return name == c.original_column; + }); +} + +std::vector::const_iterator Query::findSelectedColumnByName(const std::string& name) const +{ + return std::find_if(m_selected_columns.cbegin(), m_selected_columns.cend(), [name](const SelectedColumn& c) { + return name == c.original_column; + }); +} + +} diff --git a/src/SqliteDBProcess/src/sql/Query.h b/src/SqliteDBProcess/src/sql/Query.h new file mode 100644 index 0000000..112f675 --- /dev/null +++ b/src/SqliteDBProcess/src/sql/Query.h @@ -0,0 +1,99 @@ +#ifndef QUERY_H +#define QUERY_H + +#include "ObjectIdentifier.h" + +#include +#include +#include + +namespace sqlb +{ + +enum SortDirection +{ + Ascending, + Descending +}; + +struct SortedColumn +{ + SortedColumn(size_t column_, SortDirection direction_) : + column(column_), + direction(direction_) + {} + + bool operator==(const SortedColumn& rhs) const + { + return column == rhs.column && direction == rhs.direction; + } + + size_t column; + SortDirection direction; +}; + +struct SelectedColumn +{ + SelectedColumn(const std::string& original_column_, const std::string& selector_) : + original_column(original_column_), + selector(selector_) + {} + + std::string original_column; + std::string selector; +}; + +class Query +{ +public: + Query() {} + explicit Query(const sqlb::ObjectIdentifier& table) : + m_table(table) + {} + + void clear(); + std::string buildQuery(bool withRowid) const; + std::string buildCountQuery() const; + + void setColumNames(const std::vector& column_names) { m_column_names = column_names; } + std::vector columnNames() const { return m_column_names; } + + void setTable(const sqlb::ObjectIdentifier& table) { m_table = table; } + sqlb::ObjectIdentifier table() const { return m_table; } + + void setRowIdColumns(const std::vector& rowids) { m_rowid_columns = rowids; } + std::vector rowIdColumns() const { return m_rowid_columns; } + void setRowIdColumn(const std::string& rowid) { m_rowid_columns = {rowid}; } + bool hasCustomRowIdColumn() const { return m_rowid_columns.size() != 1 || (m_rowid_columns.at(0) != "rowid" && m_rowid_columns.at(0) != "_rowid_"); } + + const std::vector& selectedColumns() const { return m_selected_columns; } + std::vector& selectedColumns() { return m_selected_columns; } + + const std::unordered_map& where() const { return m_where; } + std::unordered_map& where() { return m_where; } + + const std::vector& globalWhere() const { return m_global_where; } + std::vector& globalWhere() { return m_global_where; } + void setGlobalWhere(const std::vector& w) { m_global_where = w; } + + const std::vector& orderBy() const { return m_sort; } + std::vector& orderBy() { return m_sort; } + void setOrderBy(const std::vector& columns) { m_sort = columns; } + +private: + std::vector m_column_names; + sqlb::ObjectIdentifier m_table; + std::vector m_rowid_columns; + std::vector m_selected_columns; + std::unordered_map m_where; // TODO The two where variables should be merged into a single variable which ... + std::vector m_global_where; // ... holds some sort of general tree structure for all sorts of where conditions. + std::vector m_sort; + + std::vector::iterator findSelectedColumnByName(const std::string& name); + std::vector::const_iterator findSelectedColumnByName(const std::string& name) const; + std::string buildWherePart() const; +}; + +} + +#endif diff --git a/src/SqliteDBProcess/src/sql/parser/ParserDriver.cpp b/src/SqliteDBProcess/src/sql/parser/ParserDriver.cpp new file mode 100644 index 0000000..d2dae0f --- /dev/null +++ b/src/SqliteDBProcess/src/sql/parser/ParserDriver.cpp @@ -0,0 +1,31 @@ +#include "ParserDriver.h" + +namespace sqlb +{ +namespace parser +{ + +ParserDriver::ParserDriver() : + result(nullptr), + trace_scanner(false), + trace_parser(false), + scanner(nullptr), + buffer(nullptr) +{ +} + +int ParserDriver::parse(const std::string& s) +{ + source = s; + begin_scan(); + + sqlb::parser::parser parse(scanner, *this); + parse.set_debug_level(trace_parser); + int res = parse(); + + end_scan(); + return res; +} + +} +} diff --git a/src/SqliteDBProcess/src/sql/parser/ParserDriver.h b/src/SqliteDBProcess/src/sql/parser/ParserDriver.h new file mode 100644 index 0000000..66796da --- /dev/null +++ b/src/SqliteDBProcess/src/sql/parser/ParserDriver.h @@ -0,0 +1,59 @@ +#ifndef PARSER_DRIVER_H +#define PARSER_DRIVER_H + +#include +#include "sqlite3_parser.hpp" +#include "../sqlitetypes.h" + +// Give Flex the prototype of yylex we want and declare it for the parser +typedef void* yyscan_t; +namespace sqlb { namespace parser { class ParserDriver; } } +#define YY_DECL sqlb::parser::parser::symbol_type yylex(yyscan_t yyscanner, sqlb::parser::ParserDriver& drv) +YY_DECL; + +namespace sqlb +{ +namespace parser +{ + +class ParserDriver +{ +public: + ParserDriver(); + + void setScannerDebug(bool on) { trace_scanner = on; } + void setParserDebug(bool on) { trace_parser = on; } + + // Run the parser on string s. Returns 0 on success + int parse(const std::string& s); + + // Result returned by the parsing process + sqlb::ObjectPtr result; + + // The token's location used by the scanner + sqlb::parser::location location; + +private: + // The string to be parsed + std::string source; + + // Handling the scanner + void begin_scan(); + void end_scan(); + + // Debug flags for both scanner and parser + bool trace_scanner; + bool trace_parser; + + // Scanner state + yyscan_t scanner; + + // Scanner buffer + typedef struct yy_buffer_state* YY_BUFFER_STATE; + YY_BUFFER_STATE buffer; +}; + +} +} + +#endif diff --git a/src/SqliteDBProcess/src/sql/parser/README b/src/SqliteDBProcess/src/sql/parser/README new file mode 100644 index 0000000..71adf65 --- /dev/null +++ b/src/SqliteDBProcess/src/sql/parser/README @@ -0,0 +1,9 @@ +This directory contains the SQLite lexer and parser files. + +For convenience and to not have extra dependencies in the build process, +the generated C++ files are included here. Please don't edit them by hand. +To modify the lexer or parser, edit the sqlite3_lexer.ll or sqlite3_parser.yy +files and rerun flex or bison like this: + +flex sqlite3_lexer.ll +bison sqlite3_parser.yy diff --git a/src/SqliteDBProcess/src/sql/parser/sqlite3_lexer.cpp b/src/SqliteDBProcess/src/sql/parser/sqlite3_lexer.cpp new file mode 100644 index 0000000..5ff6e45 --- /dev/null +++ b/src/SqliteDBProcess/src/sql/parser/sqlite3_lexer.cpp @@ -0,0 +1,3623 @@ +#line 2 "sqlite3_lexer.cpp" + +#line 4 "sqlite3_lexer.cpp" + +#define YY_INT_ALIGNED short int + +/* A lexical scanner generated by flex */ + +/* %not-for-header */ +/* %if-c-only */ +/* %if-not-reentrant */ +/* %endif */ +/* %endif */ +/* %ok-for-header */ + +#define FLEX_SCANNER +#define YY_FLEX_MAJOR_VERSION 2 +#define YY_FLEX_MINOR_VERSION 6 +#define YY_FLEX_SUBMINOR_VERSION 4 +#if YY_FLEX_SUBMINOR_VERSION > 0 +#define FLEX_BETA +#endif + +/* %if-c++-only */ +/* %endif */ + +/* %if-c-only */ + +/* %endif */ + +/* %if-c-only */ + +/* %endif */ + +/* First, we deal with platform-specific or compiler-specific issues. */ + +/* begin standard C headers. */ +/* %if-c-only */ +#include +#include +#include +#include +/* %endif */ + +/* %if-tables-serialization */ +/* %endif */ +/* end standard C headers. */ + +/* %if-c-or-c++ */ +/* flex integer type definitions */ + +#ifndef FLEXINT_H +#define FLEXINT_H + +/* C99 systems have . Non-C99 systems may or may not. */ + +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L + +/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, + * if you want the limit (max/min) macros for int types. + */ +#ifndef __STDC_LIMIT_MACROS +#define __STDC_LIMIT_MACROS 1 +#endif + +#include +typedef int8_t flex_int8_t; +typedef uint8_t flex_uint8_t; +typedef int16_t flex_int16_t; +typedef uint16_t flex_uint16_t; +typedef int32_t flex_int32_t; +typedef uint32_t flex_uint32_t; +#else +typedef signed char flex_int8_t; +typedef short int flex_int16_t; +typedef int flex_int32_t; +typedef unsigned char flex_uint8_t; +typedef unsigned short int flex_uint16_t; +typedef unsigned int flex_uint32_t; + +/* Limits of integral types. */ +#ifndef INT8_MIN +#define INT8_MIN (-128) +#endif +#ifndef INT16_MIN +#define INT16_MIN (-32767-1) +#endif +#ifndef INT32_MIN +#define INT32_MIN (-2147483647-1) +#endif +#ifndef INT8_MAX +#define INT8_MAX (127) +#endif +#ifndef INT16_MAX +#define INT16_MAX (32767) +#endif +#ifndef INT32_MAX +#define INT32_MAX (2147483647) +#endif +#ifndef UINT8_MAX +#define UINT8_MAX (255U) +#endif +#ifndef UINT16_MAX +#define UINT16_MAX (65535U) +#endif +#ifndef UINT32_MAX +#define UINT32_MAX (4294967295U) +#endif + +#ifndef SIZE_MAX +#define SIZE_MAX (~(size_t)0) +#endif + +#endif /* ! C99 */ + +#endif /* ! FLEXINT_H */ + +/* %endif */ + +/* begin standard C++ headers. */ +/* %if-c++-only */ +/* %endif */ + +/* TODO: this is always defined, so inline it */ +#define yyconst const + +#if defined(__GNUC__) && __GNUC__ >= 3 +#define yynoreturn __attribute__((__noreturn__)) +#else +#define yynoreturn +#endif + +/* %not-for-header */ +/* Returned upon end-of-file. */ +#define YY_NULL 0 +/* %ok-for-header */ + +/* %not-for-header */ +/* Promotes a possibly negative, possibly signed char to an + * integer in range [0..255] for use as an array index. + */ +#define YY_SC_TO_UI(c) ((YY_CHAR) (c)) +/* %ok-for-header */ + +/* %if-reentrant */ + +/* An opaque pointer. */ +#ifndef YY_TYPEDEF_YY_SCANNER_T +#define YY_TYPEDEF_YY_SCANNER_T +typedef void* yyscan_t; +#endif + +/* For convenience, these vars (plus the bison vars far below) + are macros in the reentrant scanner. */ +#define yyin yyg->yyin_r +#define yyout yyg->yyout_r +#define yyextra yyg->yyextra_r +#define yyleng yyg->yyleng_r +#define yytext yyg->yytext_r +#define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno) +#define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column) +#define yy_flex_debug yyg->yy_flex_debug_r + +/* %endif */ + +/* %if-not-reentrant */ +/* %endif */ + +/* Enter a start condition. This macro really ought to take a parameter, + * but we do it the disgusting crufty way forced on us by the ()-less + * definition of BEGIN. + */ +#define BEGIN yyg->yy_start = 1 + 2 * +/* Translate the current start state into a value that can be later handed + * to BEGIN to return to the state. The YYSTATE alias is for lex + * compatibility. + */ +#define YY_START ((yyg->yy_start - 1) / 2) +#define YYSTATE YY_START +/* Action number for EOF rule of a given start state. */ +#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) +/* Special action meaning "start processing a new file". */ +#define YY_NEW_FILE yyrestart( yyin , yyscanner ) +#define YY_END_OF_BUFFER_CHAR 0 + +/* Size of default input buffer. */ +#ifndef YY_BUF_SIZE +#ifdef __ia64__ +/* On IA-64, the buffer size is 16k, not 8k. + * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. + * Ditto for the __ia64__ case accordingly. + */ +#define YY_BUF_SIZE 32768 +#else +#define YY_BUF_SIZE 16384 +#endif /* __ia64__ */ +#endif + +/* The state buf must be large enough to hold one state per character in the main buffer. + */ +#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) + +#ifndef YY_TYPEDEF_YY_BUFFER_STATE +#define YY_TYPEDEF_YY_BUFFER_STATE +typedef struct yy_buffer_state *YY_BUFFER_STATE; +#endif + +#ifndef YY_TYPEDEF_YY_SIZE_T +#define YY_TYPEDEF_YY_SIZE_T +typedef size_t yy_size_t; +#endif + +/* %if-not-reentrant */ +/* %endif */ + +/* %if-c-only */ +/* %if-not-reentrant */ +/* %endif */ +/* %endif */ + +#define EOB_ACT_CONTINUE_SCAN 0 +#define EOB_ACT_END_OF_FILE 1 +#define EOB_ACT_LAST_MATCH 2 + + #define YY_LESS_LINENO(n) + #define YY_LINENO_REWIND_TO(ptr) + +/* Return all but the first "n" matched characters back to the input stream. */ +#define yyless(n) \ + do \ + { \ + /* Undo effects of setting up yytext. */ \ + int yyless_macro_arg = (n); \ + YY_LESS_LINENO(yyless_macro_arg);\ + *yy_cp = yyg->yy_hold_char; \ + YY_RESTORE_YY_MORE_OFFSET \ + yyg->yy_c_buf_p = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ + YY_DO_BEFORE_ACTION; /* set up yytext again */ \ + } \ + while ( 0 ) +#define unput(c) yyunput( c, yyg->yytext_ptr , yyscanner ) + +#ifndef YY_STRUCT_YY_BUFFER_STATE +#define YY_STRUCT_YY_BUFFER_STATE +struct yy_buffer_state + { +/* %if-c-only */ + FILE *yy_input_file; +/* %endif */ + +/* %if-c++-only */ +/* %endif */ + + char *yy_ch_buf; /* input buffer */ + char *yy_buf_pos; /* current position in input buffer */ + + /* Size of input buffer in bytes, not including room for EOB + * characters. + */ + int yy_buf_size; + + /* Number of characters read into yy_ch_buf, not including EOB + * characters. + */ + int yy_n_chars; + + /* Whether we "own" the buffer - i.e., we know we created it, + * and can realloc() it to grow it, and should free() it to + * delete it. + */ + int yy_is_our_buffer; + + /* Whether this is an "interactive" input source; if so, and + * if we're using stdio for input, then we want to use getc() + * instead of fread(), to make sure we stop fetching input after + * each newline. + */ + int yy_is_interactive; + + /* Whether we're considered to be at the beginning of a line. + * If so, '^' rules will be active on the next match, otherwise + * not. + */ + int yy_at_bol; + + int yy_bs_lineno; /**< The line count. */ + int yy_bs_column; /**< The column count. */ + + /* Whether to try to fill the input buffer when we reach the + * end of it. + */ + int yy_fill_buffer; + + int yy_buffer_status; + +#define YY_BUFFER_NEW 0 +#define YY_BUFFER_NORMAL 1 + /* When an EOF's been seen but there's still some text to process + * then we mark the buffer as YY_EOF_PENDING, to indicate that we + * shouldn't try reading from the input source any more. We might + * still have a bunch of tokens to match, though, because of + * possible backing-up. + * + * When we actually see the EOF, we change the status to "new" + * (via yyrestart()), so that the user can continue scanning by + * just pointing yyin at a new input file. + */ +#define YY_BUFFER_EOF_PENDING 2 + + }; +#endif /* !YY_STRUCT_YY_BUFFER_STATE */ + +/* %if-c-only Standard (non-C++) definition */ +/* %not-for-header */ +/* %if-not-reentrant */ +/* %endif */ +/* %ok-for-header */ + +/* %endif */ + +/* We provide macros for accessing buffer states in case in the + * future we want to put the buffer states in a more general + * "scanner state". + * + * Returns the top of the stack, or NULL. + */ +#define YY_CURRENT_BUFFER ( yyg->yy_buffer_stack \ + ? yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] \ + : NULL) +/* Same as previous macro, but useful when we know that the buffer stack is not + * NULL or when we need an lvalue. For internal use only. + */ +#define YY_CURRENT_BUFFER_LVALUE yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] + +/* %if-c-only Standard (non-C++) definition */ + +/* %if-not-reentrant */ +/* %not-for-header */ +/* %ok-for-header */ + +/* %endif */ + +void yyrestart ( FILE *input_file , yyscan_t yyscanner ); +void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size , yyscan_t yyscanner ); +void yy_delete_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); +void yy_flush_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); +void yypush_buffer_state ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); +void yypop_buffer_state ( yyscan_t yyscanner ); + +static void yyensure_buffer_stack ( yyscan_t yyscanner ); +static void yy_load_buffer_state ( yyscan_t yyscanner ); +static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file , yyscan_t yyscanner ); +#define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER , yyscanner) + +YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_string ( const char *yy_str , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len , yyscan_t yyscanner ); + +/* %endif */ + +void *yyalloc ( yy_size_t , yyscan_t yyscanner ); +void *yyrealloc ( void *, yy_size_t , yyscan_t yyscanner ); +void yyfree ( void * , yyscan_t yyscanner ); + +#define yy_new_buffer yy_create_buffer +#define yy_set_interactive(is_interactive) \ + { \ + if ( ! YY_CURRENT_BUFFER ){ \ + yyensure_buffer_stack (yyscanner); \ + YY_CURRENT_BUFFER_LVALUE = \ + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); \ + } \ + YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ + } +#define yy_set_bol(at_bol) \ + { \ + if ( ! YY_CURRENT_BUFFER ){\ + yyensure_buffer_stack (yyscanner); \ + YY_CURRENT_BUFFER_LVALUE = \ + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); \ + } \ + YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ + } +#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) + +/* %% [1.0] yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here */ +/* Begin user sect3 */ + +#define yywrap(yyscanner) (/*CONSTCOND*/1) +#define YY_SKIP_YYWRAP + +#define FLEX_DEBUG +typedef flex_uint8_t YY_CHAR; + +typedef int yy_state_type; + +#define yytext_ptr yytext_r + +/* %% [1.5] DFA */ + +/* %if-c-only Standard (non-C++) definition */ + +static yy_state_type yy_get_previous_state ( yyscan_t yyscanner ); +static yy_state_type yy_try_NUL_trans ( yy_state_type current_state , yyscan_t yyscanner); +static int yy_get_next_buffer ( yyscan_t yyscanner ); +static void yynoreturn yy_fatal_error ( const char* msg , yyscan_t yyscanner ); + +/* %endif */ + +/* Done after the current pattern has been matched and before the + * corresponding action - sets up yytext. + */ +#define YY_DO_BEFORE_ACTION \ + yyg->yytext_ptr = yy_bp; \ +/* %% [2.0] code to fiddle yytext and yyleng for yymore() goes here \ */\ + yyleng = (int) (yy_cp - yy_bp); \ + yyg->yy_hold_char = *yy_cp; \ + *yy_cp = '\0'; \ +/* %% [3.0] code to copy yytext_ptr to yytext[] goes here, if %array \ */\ + yyg->yy_c_buf_p = yy_cp; +/* %% [4.0] data tables for the DFA and the user's section 1 definitions go here */ +#define YY_NUM_RULES 123 +#define YY_END_OF_BUFFER 124 +/* This struct is not used in this scanner, + but its presence is necessary. */ +struct yy_trans_info + { + flex_int32_t yy_verify; + flex_int32_t yy_nxt; + }; +static const flex_int16_t yy_accept[467] = + { 0, + 0, 0, 0, 0, 124, 122, 1, 2, 2, 122, + 122, 109, 108, 122, 98, 99, 105, 103, 101, 104, + 100, 106, 94, 94, 122, 102, 116, 112, 114, 96, + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + 89, 89, 122, 122, 110, 107, 122, 122, 122, 89, + 1, 2, 118, 0, 92, 0, 93, 3, 94, 4, + 94, 94, 0, 0, 97, 120, 117, 119, 113, 115, + 121, 96, 89, 89, 89, 89, 89, 11, 89, 0, + 0, 0, 89, 89, 89, 89, 89, 89, 89, 89, + + 89, 89, 89, 89, 89, 89, 89, 89, 89, 42, + 89, 89, 45, 49, 89, 89, 89, 54, 89, 58, + 59, 89, 89, 89, 89, 89, 89, 89, 89, 89, + 89, 89, 89, 89, 89, 89, 89, 89, 89, 0, + 0, 91, 0, 90, 111, 89, 0, 0, 89, 94, + 0, 94, 94, 96, 89, 89, 89, 6, 12, 89, + 0, 0, 89, 89, 89, 89, 89, 89, 89, 89, + 89, 89, 89, 89, 32, 89, 89, 89, 89, 89, + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + 51, 89, 89, 55, 89, 89, 89, 89, 89, 89, + + 89, 89, 89, 89, 89, 89, 89, 89, 74, 89, + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + 89, 95, 0, 0, 5, 89, 89, 89, 89, 0, + 89, 89, 15, 16, 89, 89, 89, 89, 89, 89, + 89, 89, 89, 29, 89, 31, 89, 89, 35, 89, + 89, 89, 89, 89, 41, 89, 89, 89, 89, 89, + 89, 52, 89, 89, 57, 60, 89, 89, 89, 89, + 89, 89, 89, 89, 89, 89, 89, 72, 89, 89, + 89, 77, 79, 80, 89, 89, 89, 89, 89, 86, + 89, 89, 8, 89, 89, 89, 89, 89, 17, 89, + + 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, + 36, 89, 89, 89, 89, 89, 89, 46, 89, 89, + 89, 53, 89, 89, 89, 89, 64, 65, 89, 89, + 89, 89, 89, 71, 89, 89, 76, 89, 89, 89, + 89, 84, 89, 87, 89, 9, 10, 89, 89, 89, + 89, 89, 89, 21, 89, 89, 89, 28, 89, 33, + 34, 37, 89, 89, 89, 43, 89, 89, 48, 50, + 89, 89, 89, 89, 89, 67, 89, 89, 89, 73, + 75, 89, 89, 82, 83, 89, 89, 89, 7, 14, + 18, 89, 89, 89, 25, 89, 89, 89, 89, 39, + + 89, 89, 89, 56, 89, 89, 63, 89, 68, 89, + 89, 89, 89, 85, 88, 89, 19, 89, 89, 89, + 27, 30, 89, 89, 89, 89, 89, 89, 89, 69, + 70, 89, 89, 89, 89, 89, 89, 89, 38, 40, + 44, 47, 61, 62, 89, 78, 81, 89, 20, 89, + 89, 26, 66, 89, 89, 89, 89, 22, 23, 13, + 89, 89, 89, 89, 24, 0 + } ; + +static const YY_CHAR yy_ec[256] = + { 0, + 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, + 1, 2, 4, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 2, 5, 6, 1, 1, 7, 8, 9, 10, + 11, 12, 13, 14, 15, 16, 17, 18, 19, 19, + 19, 19, 19, 19, 19, 19, 19, 20, 21, 22, + 23, 24, 25, 20, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, + 42, 43, 44, 45, 46, 47, 48, 49, 50, 35, + 51, 1, 52, 1, 53, 54, 55, 56, 57, 58, + + 59, 60, 61, 62, 63, 35, 64, 65, 66, 67, + 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, + 78, 35, 1, 79, 1, 80, 1, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, + 81, 1, 1, 82, 82, 82, 82, 82, 82, 82, + + 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, + 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, + 82, 82, 82, 83, 83, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 84, + 84, 84, 84, 84, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1 + } ; + +static const YY_CHAR yy_meta[85] = + { 0, + 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, + 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, + 1, 1, 1, 1, 1, 5, 5, 5, 5, 5, + 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, + 1, 1, 7, 1, 5, 5, 5, 5, 5, 5, + 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, + 6, 6, 6, 6, 6, 6, 6, 6, 1, 1, + 1, 7, 7, 7 + } ; + +static const flex_int16_t yy_base[475] = + { 0, + 0, 0, 59, 60, 283, 2424, 279, 84, 86, 255, + 260, 2424, 2424, 256, 2424, 2424, 2424, 2424, 2424, 244, + 73, 242, 77, 81, 0, 2424, 79, 229, 81, 229, + 128, 64, 187, 76, 124, 94, 157, 34, 241, 68, + 135, 98, 163, 221, 251, 227, 267, 311, 276, 141, + 294, 247, 192, 189, 159, 2424, 155, 153, 151, 369, + 227, 105, 2424, 222, 220, 212, 196, 2424, 111, 2424, + 232, 345, 366, 0, 0, 2424, 2424, 2424, 2424, 2424, + 2424, 94, 49, 306, 327, 338, 369, 355, 346, 118, + 116, 111, 372, 387, 402, 410, 405, 192, 435, 419, + + 432, 415, 439, 399, 471, 474, 494, 485, 480, 60, + 499, 504, 517, 535, 529, 508, 548, 551, 557, 216, + 285, 567, 571, 593, 581, 626, 623, 601, 629, 634, + 653, 642, 646, 687, 664, 446, 680, 672, 693, 181, + 136, 2424, 132, 129, 2424, 319, 98, 90, 675, 586, + 103, 119, 0, 196, 696, 710, 706, 443, 526, 700, + 85, 83, 724, 757, 753, 760, 773, 765, 779, 769, + 799, 803, 793, 829, 596, 838, 823, 789, 826, 844, + 832, 860, 864, 847, 856, 874, 895, 887, 904, 890, + 729, 907, 923, 914, 918, 932, 937, 956, 961, 950, + + 976, 965, 982, 986, 973, 989, 1018, 1023, 796, 992, + 1013, 1039, 1044, 1054, 1047, 1050, 1059, 1073, 1079, 1105, + 1083, 2424, 136, 44, 817, 1101, 1109, 1097, 1076, 38, + 1123, 1142, 946, 1035, 1134, 1145, 1149, 1128, 1157, 1160, + 1163, 1152, 1175, 1167, 1204, 1170, 1214, 1211, 1178, 1233, + 1240, 1236, 1243, 1229, 1182, 1258, 1249, 1226, 1271, 1278, + 1291, 1197, 1281, 1284, 1207, 1253, 1313, 1318, 1324, 1321, + 1327, 1301, 1310, 1343, 1346, 1363, 1383, 1331, 1392, 1340, + 1401, 1395, 1350, 1354, 1370, 1412, 1398, 1407, 1418, 1373, + 1429, 1447, 1415, 1454, 1460, 1466, 1476, 1481, 1425, 1472, + + 1484, 1491, 1494, 1502, 1514, 1509, 1531, 1542, 1552, 1545, + 1443, 1559, 1523, 1555, 1568, 1573, 1538, 1562, 1578, 1586, + 1582, 1589, 1611, 1604, 1624, 1620, 1596, 1601, 1637, 1640, + 1661, 1664, 1671, 1617, 1667, 1676, 1631, 1685, 1690, 1680, + 1702, 1653, 1715, 1693, 1706, 1699, 1709, 1737, 1740, 1757, + 1766, 1772, 1775, 1720, 1760, 1763, 1805, 1727, 1809, 1730, + 1744, 1769, 1798, 1795, 1822, 1786, 1839, 1834, 1790, 1801, + 1849, 1856, 1862, 1825, 1859, 1818, 1890, 1896, 1899, 1828, + 1846, 1908, 1918, 1853, 1868, 1921, 1912, 1926, 1877, 1882, + 1905, 1939, 1936, 1945, 1931, 1950, 1978, 1966, 1985, 1958, + + 1995, 1990, 2000, 1961, 2007, 2014, 1973, 2023, 2003, 2019, + 2030, 2033, 2040, 2026, 2036, 2070, 2043, 2054, 2099, 2093, + 2049, 2057, 2102, 2106, 2112, 2096, 2120, 2130, 2138, 2065, + 2083, 2123, 2141, 2160, 2155, 2185, 2182, 2188, 2126, 2147, + 2150, 2166, 2169, 2172, 2191, 2175, 2178, 2246, 2195, 2235, + 2243, 2200, 2203, 2249, 2261, 2264, 2267, 2213, 2270, 2216, + 2289, 2281, 2255, 2300, 2219, 2424, 2384, 2391, 2394, 2397, + 2404, 2411, 2415, 2418 + } ; + +static const flex_int16_t yy_def[475] = + { 0, + 466, 1, 1, 1, 466, 466, 466, 466, 466, 466, + 467, 466, 466, 468, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 469, 466, 466, 466, 466, 466, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 471, 472, 466, 466, 466, 466, 466, 35, + 466, 466, 466, 467, 466, 468, 466, 466, 466, 466, + 466, 466, 466, 473, 469, 466, 466, 466, 466, 466, + 466, 466, 470, 470, 470, 470, 470, 470, 470, 466, + 466, 466, 470, 470, 470, 470, 470, 470, 470, 470, + + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 474, + 471, 466, 472, 466, 466, 470, 466, 466, 470, 466, + 466, 466, 473, 466, 470, 470, 470, 470, 470, 470, + 466, 466, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 466, 474, 466, 470, 470, 470, 470, 470, 466, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, + 470, 470, 470, 470, 470, 0, 466, 466, 466, 466, + 466, 466, 466, 466 + } ; + +static const flex_int16_t yy_nxt[2509] = + { 0, + 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, + 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, + 36, 37, 38, 39, 38, 40, 41, 42, 43, 44, + 45, 38, 46, 47, 48, 49, 50, 51, 52, 38, + 53, 6, 38, 54, 31, 32, 33, 34, 35, 36, + 37, 38, 39, 40, 41, 42, 43, 44, 45, 38, + 46, 47, 48, 49, 50, 51, 52, 38, 55, 56, + 6, 57, 58, 59, 60, 60, 62, 62, 62, 62, + 69, 69, 71, 93, 72, 72, 71, 115, 72, 72, + + 76, 77, 78, 80, 81, 99, 73, 62, 62, 100, + 73, 154, 154, 60, 60, 90, 91, 92, 83, 105, + 152, 152, 93, 117, 146, 74, 115, 106, 69, 69, + 90, 91, 92, 107, 99, 73, 152, 152, 100, 73, + 73, 90, 91, 92, 222, 90, 91, 92, 105, 90, + 91, 92, 117, 74, 84, 85, 106, 90, 91, 92, + 101, 107, 102, 230, 86, 83, 87, 103, 116, 73, + 224, 88, 104, 89, 137, 90, 91, 92, 146, 90, + 91, 92, 143, 84, 85, 144, 108, 142, 101, 222, + 102, 162, 86, 109, 87, 103, 161, 116, 83, 88, + + 104, 89, 118, 137, 66, 90, 91, 92, 119, 90, + 91, 92, 94, 154, 154, 108, 90, 91, 92, 95, + 67, 109, 90, 91, 92, 64, 96, 65, 61, 97, + 118, 148, 98, 147, 169, 146, 119, 145, 90, 91, + 92, 94, 144, 142, 90, 91, 92, 82, 95, 150, + 150, 79, 125, 70, 96, 140, 126, 97, 68, 120, + 98, 73, 169, 121, 67, 65, 127, 122, 90, 91, + 92, 110, 111, 90, 91, 92, 123, 63, 112, 113, + 61, 125, 466, 466, 114, 126, 466, 120, 466, 466, + 73, 121, 466, 124, 127, 122, 128, 90, 91, 92, + + 110, 111, 90, 91, 92, 123, 112, 113, 90, 91, + 92, 129, 114, 466, 134, 466, 135, 466, 466, 136, + 466, 124, 90, 91, 92, 128, 138, 139, 90, 91, + 92, 466, 90, 91, 92, 466, 130, 466, 466, 129, + 131, 466, 134, 132, 135, 155, 466, 136, 90, 91, + 92, 466, 466, 133, 466, 138, 139, 90, 91, 92, + 71, 466, 72, 72, 466, 130, 90, 91, 92, 131, + 466, 156, 132, 155, 73, 90, 91, 92, 151, 466, + 151, 133, 159, 152, 152, 157, 466, 90, 91, 92, + 160, 466, 90, 91, 92, 84, 85, 158, 466, 156, + + 90, 91, 92, 73, 466, 86, 466, 149, 90, 91, + 92, 159, 88, 157, 89, 466, 163, 83, 160, 90, + 91, 92, 466, 466, 84, 85, 158, 90, 91, 92, + 164, 165, 177, 86, 168, 149, 90, 91, 92, 466, + 88, 466, 89, 175, 163, 83, 166, 466, 167, 466, + 90, 91, 92, 90, 91, 92, 466, 466, 164, 466, + 165, 177, 173, 168, 466, 170, 176, 466, 90, 91, + 92, 171, 175, 466, 166, 174, 167, 466, 172, 218, + 90, 91, 92, 90, 91, 92, 90, 91, 92, 466, + 173, 90, 91, 92, 170, 176, 90, 91, 92, 171, + + 90, 91, 92, 174, 178, 466, 172, 179, 218, 466, + 180, 466, 466, 90, 91, 92, 90, 91, 92, 184, + 90, 91, 92, 183, 90, 91, 92, 90, 91, 92, + 181, 466, 466, 178, 466, 179, 182, 185, 180, 466, + 466, 186, 466, 192, 466, 187, 466, 184, 466, 466, + 188, 183, 90, 91, 92, 90, 91, 92, 181, 466, + 189, 90, 91, 92, 182, 185, 90, 91, 92, 186, + 466, 192, 466, 190, 187, 90, 91, 92, 191, 188, + 90, 91, 92, 466, 466, 90, 91, 92, 189, 90, + 91, 92, 193, 195, 466, 194, 196, 466, 90, 91, + + 92, 190, 466, 150, 150, 466, 191, 90, 91, 92, + 90, 91, 92, 197, 200, 73, 90, 91, 92, 201, + 193, 195, 198, 194, 466, 196, 199, 466, 466, 90, + 91, 92, 90, 91, 92, 466, 466, 208, 90, 91, + 92, 197, 466, 200, 73, 209, 466, 201, 90, 91, + 92, 198, 90, 91, 92, 199, 202, 203, 466, 206, + 211, 466, 90, 91, 92, 208, 204, 466, 210, 205, + 207, 213, 466, 209, 90, 91, 92, 90, 91, 92, + 466, 466, 90, 91, 92, 202, 203, 206, 466, 211, + 212, 214, 217, 466, 204, 466, 210, 205, 207, 466, + + 213, 220, 466, 225, 90, 91, 92, 90, 91, 92, + 90, 91, 92, 215, 466, 90, 91, 92, 212, 214, + 216, 217, 219, 90, 91, 92, 466, 90, 91, 92, + 220, 228, 225, 466, 90, 91, 92, 221, 226, 229, + 466, 466, 215, 227, 466, 90, 91, 92, 466, 216, + 219, 466, 466, 90, 91, 92, 90, 91, 92, 466, + 228, 90, 91, 92, 466, 221, 226, 229, 90, 91, + 92, 231, 227, 466, 90, 91, 92, 90, 91, 92, + 235, 90, 91, 92, 232, 466, 233, 90, 91, 92, + 239, 90, 91, 92, 241, 466, 236, 466, 242, 231, + + 466, 234, 466, 237, 466, 90, 91, 92, 466, 235, + 90, 91, 92, 232, 466, 233, 238, 466, 466, 239, + 466, 240, 466, 241, 236, 249, 466, 242, 243, 234, + 244, 466, 237, 466, 90, 91, 92, 245, 90, 91, + 92, 90, 91, 92, 238, 466, 90, 91, 92, 240, + 90, 91, 92, 249, 90, 91, 92, 243, 246, 244, + 90, 91, 92, 247, 466, 245, 248, 466, 252, 250, + 90, 91, 92, 255, 90, 91, 92, 90, 91, 92, + 90, 91, 92, 466, 90, 91, 92, 246, 251, 253, + 466, 466, 247, 254, 248, 256, 252, 250, 90, 91, + + 92, 466, 255, 257, 90, 91, 92, 90, 91, 92, + 90, 91, 92, 90, 91, 92, 251, 466, 253, 90, + 91, 92, 254, 256, 258, 90, 91, 92, 90, 91, + 92, 259, 257, 260, 466, 261, 262, 90, 91, 92, + 466, 90, 91, 92, 466, 90, 91, 92, 466, 466, + 263, 466, 264, 258, 265, 90, 91, 92, 466, 259, + 466, 466, 260, 261, 466, 262, 466, 466, 90, 91, + 92, 90, 91, 92, 266, 466, 90, 91, 92, 263, + 264, 267, 265, 268, 466, 90, 91, 92, 90, 91, + 92, 466, 466, 270, 272, 90, 91, 92, 269, 90, + + 91, 92, 266, 466, 90, 91, 92, 271, 466, 267, + 466, 273, 268, 90, 91, 92, 466, 275, 90, 91, + 92, 270, 274, 272, 466, 276, 269, 90, 91, 92, + 466, 90, 91, 92, 280, 466, 271, 90, 91, 92, + 273, 466, 90, 91, 92, 275, 90, 91, 92, 281, + 274, 277, 279, 276, 90, 91, 92, 90, 91, 92, + 466, 278, 280, 90, 91, 92, 466, 90, 91, 92, + 90, 91, 92, 90, 91, 92, 466, 281, 466, 282, + 277, 279, 283, 284, 287, 466, 285, 466, 466, 278, + 466, 286, 466, 466, 90, 91, 92, 466, 466, 90, + + 91, 92, 466, 466, 90, 91, 92, 282, 466, 296, + 283, 288, 284, 287, 285, 292, 90, 91, 92, 286, + 90, 91, 92, 289, 466, 90, 91, 92, 90, 91, + 92, 90, 91, 92, 466, 90, 91, 92, 296, 288, + 90, 91, 92, 290, 292, 293, 295, 291, 294, 466, + 466, 289, 297, 466, 90, 91, 92, 90, 91, 92, + 90, 91, 92, 466, 90, 91, 92, 298, 466, 299, + 300, 290, 302, 293, 295, 291, 294, 466, 90, 91, + 92, 297, 90, 91, 92, 301, 90, 91, 92, 304, + 90, 91, 92, 466, 306, 466, 298, 299, 466, 300, + + 302, 303, 466, 466, 90, 91, 92, 466, 305, 90, + 91, 92, 466, 301, 466, 90, 91, 92, 304, 307, + 466, 466, 306, 90, 91, 92, 90, 91, 92, 303, + 90, 91, 92, 90, 91, 92, 305, 308, 90, 91, + 92, 90, 91, 92, 90, 91, 92, 307, 90, 91, + 92, 90, 91, 92, 309, 310, 90, 91, 92, 90, + 91, 92, 311, 90, 91, 92, 308, 466, 466, 312, + 466, 315, 466, 466, 318, 313, 314, 317, 90, 91, + 92, 466, 309, 310, 466, 90, 91, 92, 90, 91, + 92, 311, 90, 91, 92, 90, 91, 92, 312, 315, + + 316, 466, 318, 313, 319, 314, 317, 90, 91, 92, + 90, 91, 92, 322, 90, 91, 92, 90, 91, 92, + 320, 90, 91, 92, 90, 91, 92, 321, 316, 323, + 90, 91, 92, 319, 90, 91, 92, 466, 466, 90, + 91, 92, 322, 329, 466, 466, 324, 325, 320, 326, + 327, 466, 90, 91, 92, 321, 328, 323, 330, 90, + 91, 92, 90, 91, 92, 90, 91, 92, 331, 336, + 466, 329, 90, 91, 92, 324, 325, 466, 326, 327, + 466, 466, 90, 91, 92, 328, 330, 466, 332, 333, + 466, 90, 91, 92, 90, 91, 92, 331, 336, 90, + + 91, 92, 90, 91, 92, 90, 91, 92, 90, 91, + 92, 334, 90, 91, 92, 339, 332, 466, 333, 335, + 466, 90, 91, 92, 90, 91, 92, 90, 91, 92, + 337, 90, 91, 92, 338, 90, 91, 92, 342, 466, + 334, 466, 341, 339, 90, 91, 92, 466, 335, 466, + 466, 90, 91, 92, 90, 91, 92, 340, 344, 337, + 466, 466, 338, 343, 90, 91, 92, 342, 466, 466, + 341, 466, 466, 90, 91, 92, 90, 91, 92, 90, + 91, 92, 90, 91, 92, 340, 345, 344, 90, 91, + 92, 343, 346, 90, 91, 92, 90, 91, 92, 90, + + 91, 92, 466, 347, 348, 349, 90, 91, 92, 350, + 90, 91, 92, 466, 345, 466, 351, 352, 466, 466, + 346, 466, 466, 354, 90, 91, 92, 466, 90, 91, + 92, 347, 348, 353, 349, 90, 91, 92, 350, 466, + 355, 90, 91, 92, 351, 466, 352, 90, 91, 92, + 356, 357, 354, 90, 91, 92, 466, 90, 91, 92, + 358, 353, 90, 91, 92, 90, 91, 92, 355, 466, + 363, 367, 90, 91, 92, 90, 91, 92, 356, 357, + 359, 360, 466, 90, 91, 92, 364, 466, 361, 358, + 90, 91, 92, 365, 466, 90, 91, 92, 363, 466, + + 367, 362, 366, 368, 90, 91, 92, 466, 359, 466, + 360, 466, 90, 91, 92, 364, 361, 466, 370, 90, + 91, 92, 365, 90, 91, 92, 90, 91, 92, 362, + 369, 366, 368, 90, 91, 92, 90, 91, 92, 466, + 90, 91, 92, 90, 91, 92, 370, 371, 372, 90, + 91, 92, 373, 466, 90, 91, 92, 466, 369, 90, + 91, 92, 374, 90, 91, 92, 375, 90, 91, 92, + 90, 91, 92, 466, 466, 371, 372, 90, 91, 92, + 376, 373, 90, 91, 92, 90, 91, 92, 377, 466, + 374, 466, 90, 91, 92, 375, 379, 378, 90, 91, + + 92, 90, 91, 92, 381, 90, 91, 92, 376, 384, + 466, 380, 90, 91, 92, 466, 466, 377, 90, 91, + 92, 90, 91, 92, 466, 379, 378, 382, 383, 466, + 466, 385, 466, 381, 90, 91, 92, 466, 384, 380, + 386, 466, 90, 91, 92, 90, 91, 92, 90, 91, + 92, 387, 90, 91, 92, 382, 383, 90, 91, 92, + 385, 90, 91, 92, 388, 466, 90, 91, 92, 386, + 466, 90, 91, 92, 90, 91, 92, 466, 389, 387, + 90, 91, 92, 90, 91, 92, 390, 90, 91, 92, + 90, 91, 92, 388, 466, 391, 90, 91, 92, 392, + + 393, 90, 91, 92, 394, 466, 389, 395, 90, 91, + 92, 90, 91, 92, 466, 390, 466, 466, 90, 91, + 92, 90, 91, 92, 391, 90, 91, 92, 392, 393, + 396, 399, 394, 400, 397, 395, 398, 466, 90, 91, + 92, 90, 91, 92, 90, 91, 92, 90, 91, 92, + 90, 91, 92, 90, 91, 92, 90, 91, 92, 396, + 399, 400, 466, 397, 402, 398, 401, 90, 91, 92, + 403, 90, 91, 92, 407, 466, 90, 91, 92, 90, + 91, 92, 90, 91, 92, 404, 90, 91, 92, 405, + 90, 91, 92, 402, 401, 406, 466, 408, 403, 90, + + 91, 92, 407, 90, 91, 92, 90, 91, 92, 90, + 91, 92, 466, 404, 466, 90, 91, 92, 405, 409, + 90, 91, 92, 410, 406, 408, 411, 90, 91, 92, + 90, 91, 92, 412, 90, 91, 92, 90, 91, 92, + 90, 91, 92, 90, 91, 92, 413, 466, 409, 90, + 91, 92, 410, 466, 466, 411, 415, 414, 90, 91, + 92, 466, 412, 90, 91, 92, 466, 466, 416, 418, + 466, 90, 91, 92, 466, 413, 420, 90, 91, 92, + 90, 91, 92, 417, 415, 414, 90, 91, 92, 90, + 91, 92, 466, 90, 91, 92, 416, 419, 418, 90, + + 91, 92, 90, 91, 92, 420, 421, 90, 91, 92, + 422, 417, 90, 91, 92, 466, 466, 90, 91, 92, + 90, 91, 92, 423, 424, 466, 90, 91, 92, 466, + 466, 90, 91, 92, 425, 421, 426, 466, 422, 90, + 91, 92, 90, 91, 92, 466, 427, 90, 91, 92, + 429, 423, 428, 424, 90, 91, 92, 466, 466, 90, + 91, 92, 425, 430, 426, 431, 90, 91, 92, 433, + 466, 90, 91, 92, 427, 432, 90, 91, 92, 429, + 428, 90, 91, 92, 90, 91, 92, 466, 90, 91, + 92, 430, 435, 431, 466, 90, 91, 92, 433, 434, + + 90, 91, 92, 432, 90, 91, 92, 90, 91, 92, + 466, 90, 91, 92, 90, 91, 92, 90, 91, 92, + 435, 90, 91, 92, 90, 91, 92, 436, 434, 438, + 90, 91, 92, 439, 440, 90, 91, 92, 90, 91, + 92, 441, 466, 437, 466, 442, 90, 91, 92, 466, + 466, 90, 91, 92, 466, 466, 436, 438, 443, 466, + 466, 444, 439, 440, 90, 91, 92, 445, 466, 447, + 441, 437, 446, 442, 90, 91, 92, 90, 91, 92, + 90, 91, 92, 90, 91, 92, 443, 90, 91, 92, + 444, 466, 466, 90, 91, 92, 445, 448, 447, 449, + + 446, 90, 91, 92, 90, 91, 92, 90, 91, 92, + 450, 90, 91, 92, 466, 451, 466, 452, 466, 90, + 91, 92, 90, 91, 92, 448, 466, 449, 90, 91, + 92, 90, 91, 92, 453, 466, 90, 91, 92, 450, + 466, 90, 91, 92, 451, 466, 452, 90, 91, 92, + 90, 91, 92, 90, 91, 92, 90, 91, 92, 90, + 91, 92, 453, 90, 91, 92, 90, 91, 92, 90, + 91, 92, 90, 91, 92, 454, 90, 91, 92, 455, + 456, 90, 91, 92, 90, 91, 92, 457, 466, 466, + 458, 466, 464, 459, 90, 91, 92, 90, 91, 92, + + 90, 91, 92, 466, 454, 466, 463, 455, 456, 466, + 466, 460, 466, 461, 466, 457, 90, 91, 92, 458, + 464, 466, 459, 466, 90, 91, 92, 90, 91, 92, + 90, 91, 92, 462, 466, 463, 90, 91, 92, 460, + 465, 461, 90, 91, 92, 90, 91, 92, 90, 91, + 92, 90, 91, 92, 466, 466, 466, 466, 466, 466, + 466, 462, 90, 91, 92, 466, 466, 466, 465, 466, + 90, 91, 92, 466, 466, 466, 466, 466, 466, 466, + 466, 90, 91, 92, 64, 466, 64, 64, 64, 64, + 64, 66, 466, 66, 66, 66, 66, 66, 75, 75, + + 83, 83, 83, 83, 141, 466, 141, 141, 141, 141, + 141, 143, 466, 143, 143, 143, 143, 143, 153, 153, + 223, 223, 223, 5, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + + 466, 466, 466, 466, 466, 466, 466, 466 + } ; + +static const flex_int16_t yy_chk[2509] = + { 0, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 3, 4, 8, 8, 9, 9, + 21, 21, 23, 32, 23, 23, 24, 40, 24, 24, + + 27, 27, 27, 29, 29, 34, 23, 62, 62, 34, + 24, 82, 82, 3, 4, 38, 38, 38, 230, 36, + 151, 151, 32, 42, 224, 23, 40, 36, 69, 69, + 83, 83, 83, 36, 34, 23, 152, 152, 34, 24, + 69, 110, 110, 110, 223, 32, 32, 32, 36, 40, + 40, 40, 42, 23, 31, 31, 36, 34, 34, 34, + 35, 36, 35, 162, 31, 161, 31, 35, 41, 69, + 148, 31, 35, 31, 50, 36, 36, 36, 147, 42, + 42, 42, 144, 31, 31, 143, 37, 141, 35, 140, + 35, 92, 31, 37, 31, 35, 91, 41, 90, 31, + + 35, 31, 43, 50, 67, 35, 35, 35, 43, 31, + 31, 31, 33, 154, 154, 37, 41, 41, 41, 33, + 66, 37, 50, 50, 50, 65, 33, 64, 61, 33, + 43, 59, 33, 58, 98, 57, 43, 55, 37, 37, + 37, 33, 54, 53, 43, 43, 43, 30, 33, 71, + 71, 28, 46, 22, 33, 52, 46, 33, 20, 44, + 33, 71, 98, 44, 14, 11, 46, 44, 33, 33, + 33, 39, 39, 98, 98, 98, 45, 10, 39, 39, + 7, 46, 5, 0, 39, 46, 0, 44, 0, 0, + 71, 44, 0, 45, 46, 44, 47, 120, 120, 120, + + 39, 39, 44, 44, 44, 45, 39, 39, 46, 46, + 46, 47, 39, 0, 49, 0, 49, 0, 0, 49, + 0, 45, 39, 39, 39, 47, 51, 51, 52, 52, + 52, 0, 45, 45, 45, 0, 48, 0, 0, 47, + 48, 0, 49, 48, 49, 84, 0, 49, 47, 47, + 47, 0, 0, 48, 0, 51, 51, 49, 49, 49, + 72, 0, 72, 72, 0, 48, 121, 121, 121, 48, + 0, 85, 48, 84, 72, 51, 51, 51, 73, 0, + 73, 48, 88, 73, 73, 86, 0, 84, 84, 84, + 89, 0, 48, 48, 48, 60, 60, 87, 0, 85, + + 146, 146, 146, 72, 0, 60, 0, 60, 85, 85, + 85, 88, 60, 86, 60, 0, 93, 60, 89, 86, + 86, 86, 0, 0, 60, 60, 87, 89, 89, 89, + 94, 95, 104, 60, 97, 60, 88, 88, 88, 0, + 60, 0, 60, 102, 93, 60, 96, 0, 96, 0, + 87, 87, 87, 93, 93, 93, 0, 0, 94, 0, + 95, 104, 100, 97, 0, 99, 103, 0, 94, 94, + 94, 99, 102, 0, 96, 101, 96, 0, 99, 136, + 104, 104, 104, 95, 95, 95, 97, 97, 97, 0, + 100, 96, 96, 96, 99, 103, 102, 102, 102, 99, + + 100, 100, 100, 101, 105, 0, 99, 105, 136, 0, + 106, 0, 0, 101, 101, 101, 99, 99, 99, 109, + 103, 103, 103, 108, 158, 158, 158, 136, 136, 136, + 107, 0, 0, 105, 0, 105, 107, 111, 106, 0, + 0, 112, 0, 116, 0, 113, 0, 109, 0, 0, + 113, 108, 105, 105, 105, 106, 106, 106, 107, 0, + 113, 109, 109, 109, 107, 111, 108, 108, 108, 112, + 0, 116, 0, 114, 113, 107, 107, 107, 115, 113, + 111, 111, 111, 0, 0, 112, 112, 112, 113, 116, + 116, 116, 117, 119, 0, 118, 122, 0, 113, 113, + + 113, 114, 0, 150, 150, 0, 115, 159, 159, 159, + 115, 115, 115, 123, 125, 150, 114, 114, 114, 125, + 117, 119, 124, 118, 0, 122, 124, 0, 0, 117, + 117, 117, 118, 118, 118, 0, 0, 128, 119, 119, + 119, 123, 0, 125, 150, 128, 0, 125, 122, 122, + 122, 124, 123, 123, 123, 124, 126, 126, 0, 127, + 130, 0, 125, 125, 125, 128, 126, 0, 129, 126, + 127, 132, 0, 128, 124, 124, 124, 175, 175, 175, + 0, 0, 128, 128, 128, 126, 126, 127, 0, 130, + 131, 133, 135, 0, 126, 0, 129, 126, 127, 0, + + 132, 138, 0, 149, 127, 127, 127, 126, 126, 126, + 129, 129, 129, 134, 0, 130, 130, 130, 131, 133, + 134, 135, 137, 132, 132, 132, 0, 133, 133, 133, + 138, 157, 149, 0, 131, 131, 131, 139, 155, 160, + 0, 0, 134, 156, 0, 135, 135, 135, 0, 134, + 137, 0, 0, 138, 138, 138, 149, 149, 149, 0, + 157, 137, 137, 137, 0, 139, 155, 160, 134, 134, + 134, 163, 156, 0, 139, 139, 139, 155, 155, 155, + 165, 160, 160, 160, 164, 0, 164, 157, 157, 157, + 168, 156, 156, 156, 170, 0, 166, 0, 170, 163, + + 0, 164, 0, 167, 0, 163, 163, 163, 0, 165, + 191, 191, 191, 164, 0, 164, 167, 0, 0, 168, + 0, 169, 0, 170, 166, 178, 0, 170, 171, 164, + 172, 0, 167, 0, 165, 165, 165, 173, 164, 164, + 164, 166, 166, 166, 167, 0, 168, 168, 168, 169, + 170, 170, 170, 178, 167, 167, 167, 171, 174, 172, + 169, 169, 169, 176, 0, 173, 177, 0, 181, 179, + 178, 178, 178, 184, 173, 173, 173, 209, 209, 209, + 171, 171, 171, 0, 172, 172, 172, 174, 180, 182, + 0, 0, 176, 183, 177, 185, 181, 179, 225, 225, + + 225, 0, 184, 186, 177, 177, 177, 179, 179, 179, + 174, 174, 174, 181, 181, 181, 180, 0, 182, 176, + 176, 176, 183, 185, 187, 180, 180, 180, 184, 184, + 184, 188, 186, 189, 0, 190, 192, 185, 185, 185, + 0, 182, 182, 182, 0, 183, 183, 183, 0, 0, + 193, 0, 194, 187, 195, 186, 186, 186, 0, 188, + 0, 0, 189, 190, 0, 192, 0, 0, 188, 188, + 188, 190, 190, 190, 196, 0, 187, 187, 187, 193, + 194, 197, 195, 198, 0, 189, 189, 189, 192, 192, + 192, 0, 0, 200, 202, 194, 194, 194, 199, 195, + + 195, 195, 196, 0, 193, 193, 193, 201, 0, 197, + 0, 203, 198, 196, 196, 196, 0, 205, 197, 197, + 197, 200, 204, 202, 0, 206, 199, 233, 233, 233, + 0, 200, 200, 200, 210, 0, 201, 198, 198, 198, + 203, 0, 199, 199, 199, 205, 202, 202, 202, 211, + 204, 207, 208, 206, 205, 205, 205, 201, 201, 201, + 0, 207, 210, 203, 203, 203, 0, 204, 204, 204, + 206, 206, 206, 210, 210, 210, 0, 211, 0, 212, + 207, 208, 213, 214, 217, 0, 215, 0, 0, 207, + 0, 216, 0, 0, 211, 211, 211, 0, 0, 207, + + 207, 207, 0, 0, 208, 208, 208, 212, 0, 229, + 213, 218, 214, 217, 215, 221, 234, 234, 234, 216, + 212, 212, 212, 219, 0, 213, 213, 213, 215, 215, + 215, 216, 216, 216, 0, 214, 214, 214, 229, 218, + 217, 217, 217, 220, 221, 226, 228, 220, 227, 0, + 0, 219, 231, 0, 218, 218, 218, 229, 229, 229, + 219, 219, 219, 0, 221, 221, 221, 232, 0, 235, + 236, 220, 238, 226, 228, 220, 227, 0, 228, 228, + 228, 231, 226, 226, 226, 237, 220, 220, 220, 240, + 227, 227, 227, 0, 242, 0, 232, 235, 0, 236, + + 238, 239, 0, 0, 231, 231, 231, 0, 241, 238, + 238, 238, 0, 237, 0, 235, 235, 235, 240, 243, + 0, 0, 242, 232, 232, 232, 236, 236, 236, 239, + 237, 237, 237, 242, 242, 242, 241, 245, 239, 239, + 239, 240, 240, 240, 241, 241, 241, 243, 244, 244, + 244, 246, 246, 246, 247, 248, 243, 243, 243, 249, + 249, 249, 250, 255, 255, 255, 245, 0, 0, 251, + 0, 254, 0, 0, 258, 252, 253, 257, 262, 262, + 262, 0, 247, 248, 0, 245, 245, 245, 265, 265, + 265, 250, 248, 248, 248, 247, 247, 247, 251, 254, + + 256, 0, 258, 252, 259, 253, 257, 258, 258, 258, + 254, 254, 254, 263, 250, 250, 250, 252, 252, 252, + 260, 251, 251, 251, 253, 253, 253, 261, 256, 264, + 257, 257, 257, 259, 266, 266, 266, 0, 0, 256, + 256, 256, 263, 272, 0, 0, 267, 268, 260, 269, + 270, 0, 259, 259, 259, 261, 271, 264, 273, 260, + 260, 260, 263, 263, 263, 264, 264, 264, 274, 280, + 0, 272, 261, 261, 261, 267, 268, 0, 269, 270, + 0, 0, 272, 272, 272, 271, 273, 0, 275, 276, + 0, 273, 273, 273, 267, 267, 267, 274, 280, 268, + + 268, 268, 270, 270, 270, 269, 269, 269, 271, 271, + 271, 277, 278, 278, 278, 285, 275, 0, 276, 279, + 0, 280, 280, 280, 274, 274, 274, 275, 275, 275, + 281, 283, 283, 283, 282, 284, 284, 284, 288, 0, + 277, 0, 287, 285, 276, 276, 276, 0, 279, 0, + 0, 285, 285, 285, 290, 290, 290, 286, 291, 281, + 0, 0, 282, 289, 277, 277, 277, 288, 0, 0, + 287, 0, 0, 279, 279, 279, 282, 282, 282, 287, + 287, 287, 281, 281, 281, 286, 292, 291, 288, 288, + 288, 289, 294, 286, 286, 286, 293, 293, 293, 289, + + 289, 289, 0, 295, 296, 297, 299, 299, 299, 298, + 291, 291, 291, 0, 292, 0, 300, 301, 0, 0, + 294, 0, 0, 303, 311, 311, 311, 0, 292, 292, + 292, 295, 296, 302, 297, 294, 294, 294, 298, 0, + 304, 295, 295, 295, 300, 0, 301, 296, 296, 296, + 305, 306, 303, 300, 300, 300, 0, 297, 297, 297, + 307, 302, 298, 298, 298, 301, 301, 301, 304, 0, + 313, 317, 302, 302, 302, 303, 303, 303, 305, 306, + 308, 309, 0, 304, 304, 304, 314, 0, 310, 307, + 306, 306, 306, 315, 0, 305, 305, 305, 313, 0, + + 317, 312, 316, 319, 313, 313, 313, 0, 308, 0, + 309, 0, 307, 307, 307, 314, 310, 0, 321, 317, + 317, 317, 315, 308, 308, 308, 310, 310, 310, 312, + 320, 316, 319, 309, 309, 309, 314, 314, 314, 0, + 312, 312, 312, 318, 318, 318, 321, 323, 324, 315, + 315, 315, 325, 0, 316, 316, 316, 0, 320, 319, + 319, 319, 326, 321, 321, 321, 329, 320, 320, 320, + 322, 322, 322, 0, 0, 323, 324, 327, 327, 327, + 330, 325, 328, 328, 328, 324, 324, 324, 331, 0, + 326, 0, 323, 323, 323, 329, 333, 332, 334, 334, + + 334, 326, 326, 326, 336, 325, 325, 325, 330, 340, + 0, 335, 337, 337, 337, 0, 0, 331, 329, 329, + 329, 330, 330, 330, 0, 333, 332, 338, 339, 0, + 0, 341, 0, 336, 342, 342, 342, 0, 340, 335, + 343, 0, 331, 331, 331, 332, 332, 332, 335, 335, + 335, 345, 333, 333, 333, 338, 339, 336, 336, 336, + 341, 340, 340, 340, 348, 0, 338, 338, 338, 343, + 0, 339, 339, 339, 344, 344, 344, 0, 349, 345, + 346, 346, 346, 341, 341, 341, 350, 345, 345, 345, + 347, 347, 347, 348, 0, 351, 343, 343, 343, 352, + + 353, 354, 354, 354, 355, 0, 349, 356, 358, 358, + 358, 360, 360, 360, 0, 350, 0, 0, 348, 348, + 348, 349, 349, 349, 351, 361, 361, 361, 352, 353, + 357, 363, 355, 364, 357, 356, 359, 0, 350, 350, + 350, 355, 355, 355, 356, 356, 356, 351, 351, 351, + 362, 362, 362, 352, 352, 352, 353, 353, 353, 357, + 363, 364, 0, 357, 367, 359, 365, 366, 366, 366, + 368, 369, 369, 369, 374, 0, 364, 364, 364, 363, + 363, 363, 370, 370, 370, 371, 357, 357, 357, 372, + 359, 359, 359, 367, 365, 373, 0, 375, 368, 376, + + 376, 376, 374, 365, 365, 365, 374, 374, 374, 380, + 380, 380, 0, 371, 0, 368, 368, 368, 372, 377, + 367, 367, 367, 378, 373, 375, 379, 381, 381, 381, + 371, 371, 371, 382, 384, 384, 384, 372, 372, 372, + 375, 375, 375, 373, 373, 373, 383, 0, 377, 385, + 385, 385, 378, 0, 0, 379, 387, 386, 389, 389, + 389, 0, 382, 390, 390, 390, 0, 0, 388, 393, + 0, 377, 377, 377, 0, 383, 396, 378, 378, 378, + 379, 379, 379, 392, 387, 386, 391, 391, 391, 382, + 382, 382, 0, 387, 387, 387, 388, 394, 393, 383, + + 383, 383, 386, 386, 386, 396, 397, 388, 388, 388, + 398, 392, 395, 395, 395, 0, 0, 393, 393, 393, + 392, 392, 392, 399, 401, 0, 394, 394, 394, 0, + 0, 396, 396, 396, 402, 397, 403, 0, 398, 400, + 400, 400, 404, 404, 404, 0, 405, 398, 398, 398, + 408, 399, 406, 401, 407, 407, 407, 0, 0, 397, + 397, 397, 402, 410, 403, 411, 399, 399, 399, 413, + 0, 402, 402, 402, 405, 412, 401, 401, 401, 408, + 406, 403, 403, 403, 409, 409, 409, 0, 405, 405, + 405, 410, 418, 411, 0, 406, 406, 406, 413, 416, + + 410, 410, 410, 412, 408, 408, 408, 414, 414, 414, + 0, 411, 411, 411, 412, 412, 412, 415, 415, 415, + 418, 413, 413, 413, 417, 417, 417, 419, 416, 420, + 421, 421, 421, 423, 424, 418, 418, 418, 422, 422, + 422, 425, 0, 419, 0, 426, 430, 430, 430, 0, + 0, 416, 416, 416, 0, 0, 419, 420, 427, 0, + 0, 428, 423, 424, 431, 431, 431, 429, 0, 433, + 425, 419, 432, 426, 420, 420, 420, 426, 426, 426, + 419, 419, 419, 423, 423, 423, 427, 424, 424, 424, + 428, 0, 0, 425, 425, 425, 429, 434, 433, 435, + + 432, 427, 427, 427, 432, 432, 432, 439, 439, 439, + 436, 428, 428, 428, 0, 437, 0, 438, 0, 429, + 429, 429, 433, 433, 433, 434, 0, 435, 440, 440, + 440, 441, 441, 441, 445, 0, 435, 435, 435, 436, + 0, 434, 434, 434, 437, 0, 438, 442, 442, 442, + 443, 443, 443, 444, 444, 444, 446, 446, 446, 447, + 447, 447, 445, 437, 437, 437, 436, 436, 436, 438, + 438, 438, 445, 445, 445, 448, 449, 449, 449, 450, + 451, 452, 452, 452, 453, 453, 453, 454, 0, 0, + 455, 0, 463, 456, 458, 458, 458, 460, 460, 460, + + 465, 465, 465, 0, 448, 0, 462, 450, 451, 0, + 0, 457, 0, 459, 0, 454, 450, 450, 450, 455, + 463, 0, 456, 0, 451, 451, 451, 448, 448, 448, + 454, 454, 454, 461, 0, 462, 463, 463, 463, 457, + 464, 459, 455, 455, 455, 456, 456, 456, 457, 457, + 457, 459, 459, 459, 0, 0, 0, 0, 0, 0, + 0, 461, 462, 462, 462, 0, 0, 0, 464, 0, + 461, 461, 461, 0, 0, 0, 0, 0, 0, 0, + 0, 464, 464, 464, 467, 0, 467, 467, 467, 467, + 467, 468, 0, 468, 468, 468, 468, 468, 469, 469, + + 470, 470, 470, 470, 471, 0, 471, 471, 471, 471, + 471, 472, 0, 472, 472, 472, 472, 472, 473, 473, + 474, 474, 474, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, + + 466, 466, 466, 466, 466, 466, 466, 466 + } ; + +static const flex_int16_t yy_rule_linenum[123] = + { 0, + 80, 81, 83, 89, 113, 114, 115, 117, 118, 119, + 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, + 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, + 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, + 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, + 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, + 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, 191, 192, 193, 194, 195, 196, 197, 199, 200, + 201, 202, 203, 204, 205, 206, 207, 209, 210, 211, + + 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, + 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, + 232, 234 + } ; + +/* The intent behind this definition is that it'll catch + * any uses of REJECT which flex missed. + */ +#define REJECT reject_used_but_not_detected +#define yymore() yymore_used_but_not_detected +#define YY_MORE_ADJ 0 +#define YY_RESTORE_YY_MORE_OFFSET +#line 1 "sqlite3_lexer.ll" +#line 2 "sqlite3_lexer.ll" +#include +#include "ParserDriver.h" +#include "sqlite3_parser.hpp" +#line 1235 "sqlite3_lexer.cpp" +#define YY_NO_UNISTD_H 1 +#line 12 "sqlite3_lexer.ll" + #define TOKEN(n) sqlb::parser::parser::symbol_type(sqlb::parser::parser::token::TOK_##n, yytext, loc) + + std::string unquote_string(std::string s, char quote_char) + { + if(s.size() < 2) + return s; + + if(quote_char == '[') + { + if(s.front() == '[' && s.back() == ']') + s = s.substr(1, s.size()-2); + } else { + if(s.front() == quote_char && s.back() == quote_char) + { + s = s.substr(1, s.size()-2); + auto pos = s.npos; + while((pos = s.find(std::string(2, quote_char))) != s.npos) + s = s.replace(pos, 2, std::string(1, quote_char)); + } + } + + return s; + } +#line 1261 "sqlite3_lexer.cpp" +#line 55 "sqlite3_lexer.ll" + /* TODO Add $ bind parameters */ + // Code run each time a pattern is matched. + #define YY_USER_ACTION loc.columns(yyleng); +#line 1266 "sqlite3_lexer.cpp" + +#line 1268 "sqlite3_lexer.cpp" + +#define INITIAL 0 +#define BETWEEN_MODE 1 + +#ifndef YY_NO_UNISTD_H +/* Special case for "unistd.h", since it is non-ANSI. We include it way + * down here because we want the user's section 1 to have been scanned first. + * The user has a chance to override it with an option. + */ +/* %if-c-only */ +#include +/* %endif */ +/* %if-c++-only */ +/* %endif */ +#endif + +#ifndef YY_EXTRA_TYPE +#define YY_EXTRA_TYPE void * +#endif + +/* %if-c-only Reentrant structure and macros (non-C++). */ +/* %if-reentrant */ + +/* Holds the entire state of the reentrant scanner. */ +struct yyguts_t + { + + /* User-defined. Not touched by flex. */ + YY_EXTRA_TYPE yyextra_r; + + /* The rest are the same as the globals declared in the non-reentrant scanner. */ + FILE *yyin_r, *yyout_r; + size_t yy_buffer_stack_top; /**< index of top of stack. */ + size_t yy_buffer_stack_max; /**< capacity of stack. */ + YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */ + char yy_hold_char; + int yy_n_chars; + int yyleng_r; + char *yy_c_buf_p; + int yy_init; + int yy_start; + int yy_did_buffer_switch_on_eof; + int yy_start_stack_ptr; + int yy_start_stack_depth; + int *yy_start_stack; + yy_state_type yy_last_accepting_state; + char* yy_last_accepting_cpos; + + int yylineno_r; + int yy_flex_debug_r; + + char *yytext_r; + int yy_more_flag; + int yy_more_len; + + }; /* end struct yyguts_t */ + +/* %if-c-only */ + +static int yy_init_globals ( yyscan_t yyscanner ); + +/* %endif */ + +/* %if-reentrant */ + +int yylex_init (yyscan_t* scanner); + +int yylex_init_extra ( YY_EXTRA_TYPE user_defined, yyscan_t* scanner); + +/* %endif */ + +/* %endif End reentrant structures and macros. */ + +/* Accessor methods to globals. + These are made visible to non-reentrant scanners for convenience. */ + +int yylex_destroy ( yyscan_t yyscanner ); + +int yyget_debug ( yyscan_t yyscanner ); + +void yyset_debug ( int debug_flag , yyscan_t yyscanner ); + +YY_EXTRA_TYPE yyget_extra ( yyscan_t yyscanner ); + +void yyset_extra ( YY_EXTRA_TYPE user_defined , yyscan_t yyscanner ); + +FILE *yyget_in ( yyscan_t yyscanner ); + +void yyset_in ( FILE * _in_str , yyscan_t yyscanner ); + +FILE *yyget_out ( yyscan_t yyscanner ); + +void yyset_out ( FILE * _out_str , yyscan_t yyscanner ); + + int yyget_leng ( yyscan_t yyscanner ); + +char *yyget_text ( yyscan_t yyscanner ); + +int yyget_lineno ( yyscan_t yyscanner ); + +void yyset_lineno ( int _line_number , yyscan_t yyscanner ); + +int yyget_column ( yyscan_t yyscanner ); + +void yyset_column ( int _column_no , yyscan_t yyscanner ); + +/* %if-bison-bridge */ +/* %endif */ + +/* Macros after this point can all be overridden by user definitions in + * section 1. + */ + +#ifndef YY_SKIP_YYWRAP +#ifdef __cplusplus +extern "C" int yywrap ( yyscan_t yyscanner ); +#else +extern int yywrap ( yyscan_t yyscanner ); +#endif +#endif + +/* %not-for-header */ +#ifndef YY_NO_UNPUT + +#endif +/* %ok-for-header */ + +/* %endif */ + +#ifndef yytext_ptr +static void yy_flex_strncpy ( char *, const char *, int , yyscan_t yyscanner); +#endif + +#ifdef YY_NEED_STRLEN +static int yy_flex_strlen ( const char * , yyscan_t yyscanner); +#endif + +#ifndef YY_NO_INPUT +/* %if-c-only Standard (non-C++) definition */ +/* %not-for-header */ +#ifdef __cplusplus +static int yyinput ( yyscan_t yyscanner ); +#else +static int input ( yyscan_t yyscanner ); +#endif +/* %ok-for-header */ + +/* %endif */ +#endif + +/* %if-c-only */ + +/* %endif */ + +/* Amount of stuff to slurp up with each read. */ +#ifndef YY_READ_BUF_SIZE +#ifdef __ia64__ +/* On IA-64, the buffer size is 16k, not 8k */ +#define YY_READ_BUF_SIZE 16384 +#else +#define YY_READ_BUF_SIZE 8192 +#endif /* __ia64__ */ +#endif + +/* Copy whatever the last rule matched to the standard output. */ +#ifndef ECHO +/* %if-c-only Standard (non-C++) definition */ +/* This used to be an fputs(), but since the string might contain NUL's, + * we now use fwrite(). + */ +#define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0) +/* %endif */ +/* %if-c++-only C++ definition */ +/* %endif */ +#endif + +/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, + * is returned in "result". + */ +#ifndef YY_INPUT +#define YY_INPUT(buf,result,max_size) \ +/* %% [5.0] fread()/read() definition of YY_INPUT goes here unless we're doing C++ \ */\ + if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ + { \ + int c = '*'; \ + int n; \ + for ( n = 0; n < max_size && \ + (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ + buf[n] = (char) c; \ + if ( c == '\n' ) \ + buf[n++] = (char) c; \ + if ( c == EOF && ferror( yyin ) ) \ + YY_FATAL_ERROR( "input in flex scanner failed" ); \ + result = n; \ + } \ + else \ + { \ + errno=0; \ + while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \ + { \ + if( errno != EINTR) \ + { \ + YY_FATAL_ERROR( "input in flex scanner failed" ); \ + break; \ + } \ + errno=0; \ + clearerr(yyin); \ + } \ + }\ +\ +/* %if-c++-only C++ definition \ */\ +/* %endif */ + +#endif + +/* No semi-colon after return; correct usage is to write "yyterminate();" - + * we don't want an extra ';' after the "return" because that will cause + * some compilers to complain about unreachable statements. + */ +#ifndef yyterminate +#define yyterminate() return YY_NULL +#endif + +/* Number of entries by which start-condition stack grows. */ +#ifndef YY_START_STACK_INCR +#define YY_START_STACK_INCR 25 +#endif + +/* Report a fatal error. */ +#ifndef YY_FATAL_ERROR +/* %if-c-only */ +#define YY_FATAL_ERROR(msg) yy_fatal_error( msg , yyscanner) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +#endif + +/* %if-tables-serialization structures and prototypes */ +/* %not-for-header */ +/* %ok-for-header */ + +/* %not-for-header */ +/* %tables-yydmap generated elements */ +/* %endif */ +/* end tables serialization structures and prototypes */ + +/* %ok-for-header */ + +/* Default declaration of generated scanner - a define so the user can + * easily add parameters. + */ +#ifndef YY_DECL +#define YY_DECL_IS_OURS 1 +/* %if-c-only Standard (non-C++) definition */ + +extern int yylex (yyscan_t yyscanner); + +#define YY_DECL int yylex (yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only C++ definition */ +/* %endif */ +#endif /* !YY_DECL */ + +/* Code executed at the beginning of each rule, after yytext and yyleng + * have been set up. + */ +#ifndef YY_USER_ACTION +#define YY_USER_ACTION +#endif + +/* Code executed at the end of each rule. */ +#ifndef YY_BREAK +#define YY_BREAK /*LINTED*/break; +#endif + +/* %% [6.0] YY_RULE_SETUP definition goes here */ +#define YY_RULE_SETUP \ + YY_USER_ACTION + +/* %not-for-header */ +/** The main scanner function which does all the work. + */ +YY_DECL +{ + yy_state_type yy_current_state; + char *yy_cp, *yy_bp; + int yy_act; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + if ( !yyg->yy_init ) + { + yyg->yy_init = 1; + +#ifdef YY_USER_INIT + YY_USER_INIT; +#endif + + if ( ! yyg->yy_start ) + yyg->yy_start = 1; /* first start state */ + + if ( ! yyin ) +/* %if-c-only */ + yyin = stdin; +/* %endif */ +/* %if-c++-only */ +/* %endif */ + + if ( ! yyout ) +/* %if-c-only */ + yyout = stdout; +/* %endif */ +/* %if-c++-only */ +/* %endif */ + + if ( ! YY_CURRENT_BUFFER ) { + yyensure_buffer_stack (yyscanner); + YY_CURRENT_BUFFER_LVALUE = + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); + } + + yy_load_buffer_state( yyscanner ); + } + + { +/* %% [7.0] user's declarations go here */ +#line 69 "sqlite3_lexer.ll" + + + +#line 73 "sqlite3_lexer.ll" + // Shortcut to the location held by the driver + sqlb::parser::location& loc = drv.location; + + // Code run each time yylex is called. + loc.step(); + + +#line 1606 "sqlite3_lexer.cpp" + + while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ + { +/* %% [8.0] yymore()-related code goes here */ + yy_cp = yyg->yy_c_buf_p; + + /* Support of yytext. */ + *yy_cp = yyg->yy_hold_char; + + /* yy_bp points to the position in yy_ch_buf of the start of + * the current run. + */ + yy_bp = yy_cp; + +/* %% [9.0] code to set up and find next match goes here */ + yy_current_state = yyg->yy_start; +yy_match: + do + { + YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; + if ( yy_accept[yy_current_state] ) + { + yyg->yy_last_accepting_state = yy_current_state; + yyg->yy_last_accepting_cpos = yy_cp; + } + while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) + { + yy_current_state = (int) yy_def[yy_current_state]; + if ( yy_current_state >= 467 ) + yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + ++yy_cp; + } + while ( yy_current_state != 466 ); + yy_cp = yyg->yy_last_accepting_cpos; + yy_current_state = yyg->yy_last_accepting_state; + +yy_find_action: +/* %% [10.0] code to find the action number goes here */ + yy_act = yy_accept[yy_current_state]; + + YY_DO_BEFORE_ACTION; + +/* %% [11.0] code for yylineno update goes here */ + +do_action: /* This label is used only to access EOF actions. */ + +/* %% [12.0] debug code goes here */ + if ( yy_flex_debug ) + { + if ( yy_act == 0 ) + fprintf( stderr, "--scanner backing up\n" ); + else if ( yy_act < 123 ) + fprintf( stderr, "--accepting rule at line %ld (\"%s\")\n", + (long)yy_rule_linenum[yy_act], yytext ); + else if ( yy_act == 123 ) + fprintf( stderr, "--accepting default rule (\"%s\")\n", + yytext ); + else if ( yy_act == 124 ) + fprintf( stderr, "--(end of buffer or a NUL)\n" ); + else + fprintf( stderr, "--EOF (start condition %d)\n", YY_START ); + } + + switch ( yy_act ) + { /* beginning of action switch */ +/* %% [13.0] actions go here */ + case 0: /* must back up */ + /* undo the effects of YY_DO_BEFORE_ACTION */ + *yy_cp = yyg->yy_hold_char; + yy_cp = yyg->yy_last_accepting_cpos; + yy_current_state = yyg->yy_last_accepting_state; + goto yy_find_action; + +case 1: +YY_RULE_SETUP +#line 80 "sqlite3_lexer.ll" +loc.step(); + YY_BREAK +case 2: +/* rule 2 can match eol */ +YY_RULE_SETUP +#line 81 "sqlite3_lexer.ll" +loc.lines(yyleng); loc.step(); + YY_BREAK +case 3: +YY_RULE_SETUP +#line 83 "sqlite3_lexer.ll" +{ + int c; + while((c = yyinput(yyscanner)) != '\n' && c != EOF) + ; /* eat up text of comment */ + } + YY_BREAK +case 4: +YY_RULE_SETUP +#line 89 "sqlite3_lexer.ll" +{ + int c; + + for(;;) + { + while((c = yyinput(yyscanner)) != '*' && c != EOF) + ; /* eat up text of comment */ + + if(c == '*') + { + while((c = yyinput(yyscanner)) == '*') + ; + if(c == '/') + break; /* found the end */ + } + + if(c == EOF) + throw sqlb::parser::parser::syntax_error(loc, "EOF in comment"); + } + } + YY_BREAK +/* For lack of a better idea, we need this hack to avoid reduce/reduce conflicts in the rules for parsing BETWEEN expressions. + * What we do here is distinguish two types of AND operators: the regular one and the special case when the AND follows a BETWEEN keyword. + */ +case 5: +YY_RULE_SETUP +#line 113 "sqlite3_lexer.ll" +{ BEGIN INITIAL; return TOKEN(AND_BETWEEN); } + YY_BREAK +case 6: +YY_RULE_SETUP +#line 114 "sqlite3_lexer.ll" +return TOKEN(AND); + YY_BREAK +case 7: +YY_RULE_SETUP +#line 115 "sqlite3_lexer.ll" +{ BEGIN BETWEEN_MODE; return TOKEN(BETWEEN); } + YY_BREAK +case 8: +YY_RULE_SETUP +#line 117 "sqlite3_lexer.ll" +return TOKEN(ABORT); + YY_BREAK +case 9: +YY_RULE_SETUP +#line 118 "sqlite3_lexer.ll" +return TOKEN(ACTION); + YY_BREAK +case 10: +YY_RULE_SETUP +#line 119 "sqlite3_lexer.ll" +return TOKEN(ALWAYS); + YY_BREAK +case 11: +YY_RULE_SETUP +#line 120 "sqlite3_lexer.ll" +return TOKEN(AS); + YY_BREAK +case 12: +YY_RULE_SETUP +#line 121 "sqlite3_lexer.ll" +return TOKEN(ASC); + YY_BREAK +case 13: +YY_RULE_SETUP +#line 122 "sqlite3_lexer.ll" +return TOKEN(AUTOINCREMENT); + YY_BREAK +case 14: +YY_RULE_SETUP +#line 123 "sqlite3_lexer.ll" +return TOKEN(CASCADE); + YY_BREAK +case 15: +YY_RULE_SETUP +#line 124 "sqlite3_lexer.ll" +return TOKEN(CASE); + YY_BREAK +case 16: +YY_RULE_SETUP +#line 125 "sqlite3_lexer.ll" +return TOKEN(CAST); + YY_BREAK +case 17: +YY_RULE_SETUP +#line 126 "sqlite3_lexer.ll" +return TOKEN(CHECK); + YY_BREAK +case 18: +YY_RULE_SETUP +#line 127 "sqlite3_lexer.ll" +return TOKEN(COLLATE); + YY_BREAK +case 19: +YY_RULE_SETUP +#line 128 "sqlite3_lexer.ll" +return TOKEN(CONFLICT); + YY_BREAK +case 20: +YY_RULE_SETUP +#line 129 "sqlite3_lexer.ll" +return TOKEN(CONSTRAINT); + YY_BREAK +case 21: +YY_RULE_SETUP +#line 130 "sqlite3_lexer.ll" +return TOKEN(CREATE); + YY_BREAK +case 22: +YY_RULE_SETUP +#line 131 "sqlite3_lexer.ll" +return TOKEN(CURRENT_DATE); + YY_BREAK +case 23: +YY_RULE_SETUP +#line 132 "sqlite3_lexer.ll" +return TOKEN(CURRENT_TIME); + YY_BREAK +case 24: +YY_RULE_SETUP +#line 133 "sqlite3_lexer.ll" +return TOKEN(CURRENT_TIMESTAMP); + YY_BREAK +case 25: +YY_RULE_SETUP +#line 134 "sqlite3_lexer.ll" +return TOKEN(DEFAULT); + YY_BREAK +case 26: +YY_RULE_SETUP +#line 135 "sqlite3_lexer.ll" +return TOKEN(DEFERRABLE); + YY_BREAK +case 27: +YY_RULE_SETUP +#line 136 "sqlite3_lexer.ll" +return TOKEN(DEFERRED); + YY_BREAK +case 28: +YY_RULE_SETUP +#line 137 "sqlite3_lexer.ll" +return TOKEN(DELETE); + YY_BREAK +case 29: +YY_RULE_SETUP +#line 138 "sqlite3_lexer.ll" +return TOKEN(DESC); + YY_BREAK +case 30: +YY_RULE_SETUP +#line 139 "sqlite3_lexer.ll" +return TOKEN(DISTINCT); + YY_BREAK +case 31: +YY_RULE_SETUP +#line 140 "sqlite3_lexer.ll" +return TOKEN(ELSE); + YY_BREAK +case 32: +YY_RULE_SETUP +#line 141 "sqlite3_lexer.ll" +return TOKEN(END); + YY_BREAK +case 33: +YY_RULE_SETUP +#line 142 "sqlite3_lexer.ll" +return TOKEN(ESCAPE); + YY_BREAK +case 34: +YY_RULE_SETUP +#line 143 "sqlite3_lexer.ll" +return TOKEN(EXISTS); + YY_BREAK +case 35: +YY_RULE_SETUP +#line 144 "sqlite3_lexer.ll" +return TOKEN(FAIL); + YY_BREAK +case 36: +YY_RULE_SETUP +#line 145 "sqlite3_lexer.ll" +return TOKEN(FALSE); + YY_BREAK +case 37: +YY_RULE_SETUP +#line 146 "sqlite3_lexer.ll" +return TOKEN(FILTER); + YY_BREAK +case 38: +YY_RULE_SETUP +#line 147 "sqlite3_lexer.ll" +return TOKEN(FOLLOWING); + YY_BREAK +case 39: +YY_RULE_SETUP +#line 148 "sqlite3_lexer.ll" +return TOKEN(FOREIGN); + YY_BREAK +case 40: +YY_RULE_SETUP +#line 149 "sqlite3_lexer.ll" +return TOKEN(GENERATED); + YY_BREAK +case 41: +YY_RULE_SETUP +#line 150 "sqlite3_lexer.ll" +return TOKEN(GLOB); + YY_BREAK +case 42: +YY_RULE_SETUP +#line 151 "sqlite3_lexer.ll" +return TOKEN(IF); + YY_BREAK +case 43: +YY_RULE_SETUP +#line 152 "sqlite3_lexer.ll" +return TOKEN(IGNORE); + YY_BREAK +case 44: +YY_RULE_SETUP +#line 153 "sqlite3_lexer.ll" +return TOKEN(IMMEDIATE); + YY_BREAK +case 45: +YY_RULE_SETUP +#line 154 "sqlite3_lexer.ll" +return TOKEN(IN); + YY_BREAK +case 46: +YY_RULE_SETUP +#line 155 "sqlite3_lexer.ll" +return TOKEN(INDEX); + YY_BREAK +case 47: +YY_RULE_SETUP +#line 156 "sqlite3_lexer.ll" +return TOKEN(INITIALLY); + YY_BREAK +case 48: +YY_RULE_SETUP +#line 157 "sqlite3_lexer.ll" +return TOKEN(INSERT); + YY_BREAK +case 49: +YY_RULE_SETUP +#line 158 "sqlite3_lexer.ll" +return TOKEN(IS); + YY_BREAK +case 50: +YY_RULE_SETUP +#line 159 "sqlite3_lexer.ll" +return TOKEN(ISNULL); + YY_BREAK +case 51: +YY_RULE_SETUP +#line 160 "sqlite3_lexer.ll" +return TOKEN(KEY); + YY_BREAK +case 52: +YY_RULE_SETUP +#line 161 "sqlite3_lexer.ll" +return TOKEN(LIKE); + YY_BREAK +case 53: +YY_RULE_SETUP +#line 162 "sqlite3_lexer.ll" +return TOKEN(MATCH); + YY_BREAK +case 54: +YY_RULE_SETUP +#line 163 "sqlite3_lexer.ll" +return TOKEN(NO); + YY_BREAK +case 55: +YY_RULE_SETUP +#line 164 "sqlite3_lexer.ll" +return TOKEN(NOT); + YY_BREAK +case 56: +YY_RULE_SETUP +#line 165 "sqlite3_lexer.ll" +return TOKEN(NOTNULL); + YY_BREAK +case 57: +YY_RULE_SETUP +#line 166 "sqlite3_lexer.ll" +return TOKEN(NULL); + YY_BREAK +case 58: +YY_RULE_SETUP +#line 167 "sqlite3_lexer.ll" +return TOKEN(ON); + YY_BREAK +case 59: +YY_RULE_SETUP +#line 168 "sqlite3_lexer.ll" +return TOKEN(OR); + YY_BREAK +case 60: +YY_RULE_SETUP +#line 169 "sqlite3_lexer.ll" +return TOKEN(OVER); + YY_BREAK +case 61: +YY_RULE_SETUP +#line 170 "sqlite3_lexer.ll" +return TOKEN(PARTITION); + YY_BREAK +case 62: +YY_RULE_SETUP +#line 171 "sqlite3_lexer.ll" +return TOKEN(PRECEDING); + YY_BREAK +case 63: +YY_RULE_SETUP +#line 172 "sqlite3_lexer.ll" +return TOKEN(PRIMARY); + YY_BREAK +case 64: +YY_RULE_SETUP +#line 173 "sqlite3_lexer.ll" +return TOKEN(RAISE); + YY_BREAK +case 65: +YY_RULE_SETUP +#line 174 "sqlite3_lexer.ll" +return TOKEN(RANGE); + YY_BREAK +case 66: +YY_RULE_SETUP +#line 175 "sqlite3_lexer.ll" +return TOKEN(REFERENCES); + YY_BREAK +case 67: +YY_RULE_SETUP +#line 176 "sqlite3_lexer.ll" +return TOKEN(REGEXP); + YY_BREAK +case 68: +YY_RULE_SETUP +#line 177 "sqlite3_lexer.ll" +return TOKEN(REPLACE); + YY_BREAK +case 69: +YY_RULE_SETUP +#line 178 "sqlite3_lexer.ll" +return TOKEN(RESTRICT); + YY_BREAK +case 70: +YY_RULE_SETUP +#line 179 "sqlite3_lexer.ll" +return TOKEN(ROLLBACK); + YY_BREAK +case 71: +YY_RULE_SETUP +#line 180 "sqlite3_lexer.ll" +return TOKEN(ROWID); + YY_BREAK +case 72: +YY_RULE_SETUP +#line 181 "sqlite3_lexer.ll" +return TOKEN(ROWS); + YY_BREAK +case 73: +YY_RULE_SETUP +#line 182 "sqlite3_lexer.ll" +return TOKEN(SELECT); + YY_BREAK +case 74: +YY_RULE_SETUP +#line 183 "sqlite3_lexer.ll" +return TOKEN(SET); + YY_BREAK +case 75: +YY_RULE_SETUP +#line 184 "sqlite3_lexer.ll" +return TOKEN(STORED); + YY_BREAK +case 76: +YY_RULE_SETUP +#line 185 "sqlite3_lexer.ll" +return TOKEN(TABLE); + YY_BREAK +case 77: +YY_RULE_SETUP +#line 186 "sqlite3_lexer.ll" +return TOKEN(TEMP); + YY_BREAK +case 78: +YY_RULE_SETUP +#line 187 "sqlite3_lexer.ll" +return TOKEN(TEMPORARY); + YY_BREAK +case 79: +YY_RULE_SETUP +#line 188 "sqlite3_lexer.ll" +return TOKEN(THEN); + YY_BREAK +case 80: +YY_RULE_SETUP +#line 189 "sqlite3_lexer.ll" +return TOKEN(TRUE); + YY_BREAK +case 81: +YY_RULE_SETUP +#line 190 "sqlite3_lexer.ll" +return TOKEN(UNBOUNDED); + YY_BREAK +case 82: +YY_RULE_SETUP +#line 191 "sqlite3_lexer.ll" +return TOKEN(UNIQUE); + YY_BREAK +case 83: +YY_RULE_SETUP +#line 192 "sqlite3_lexer.ll" +return TOKEN(UPDATE); + YY_BREAK +case 84: +YY_RULE_SETUP +#line 193 "sqlite3_lexer.ll" +return TOKEN(USING); + YY_BREAK +case 85: +YY_RULE_SETUP +#line 194 "sqlite3_lexer.ll" +return TOKEN(VIRTUAL); + YY_BREAK +case 86: +YY_RULE_SETUP +#line 195 "sqlite3_lexer.ll" +return TOKEN(WHEN); + YY_BREAK +case 87: +YY_RULE_SETUP +#line 196 "sqlite3_lexer.ll" +return TOKEN(WHERE); + YY_BREAK +case 88: +YY_RULE_SETUP +#line 197 "sqlite3_lexer.ll" +return TOKEN(WITHOUT); + YY_BREAK +case 89: +YY_RULE_SETUP +#line 199 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_IDENTIFIER(yytext, loc); + YY_BREAK +case 90: +YY_RULE_SETUP +#line 200 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_IDENTIFIER(unquote_string(yytext, '`'), loc); + YY_BREAK +case 91: +YY_RULE_SETUP +#line 201 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_IDENTIFIER(unquote_string(yytext, '['), loc); + YY_BREAK +case 92: +YY_RULE_SETUP +#line 202 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_QUOTEDLITERAL(unquote_string(yytext, '"'), loc); + YY_BREAK +case 93: +YY_RULE_SETUP +#line 203 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_STRINGLITERAL(yytext, loc); + YY_BREAK +case 94: +YY_RULE_SETUP +#line 204 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_NUMERIC(yytext, loc); + YY_BREAK +case 95: +YY_RULE_SETUP +#line 205 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_BLOBLITERAL(yytext, loc); + YY_BREAK +case 96: +YY_RULE_SETUP +#line 206 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_BINDPARAMETER(yytext, loc); + YY_BREAK +case 97: +YY_RULE_SETUP +#line 207 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_BINDPARAMETER(yytext, loc); + YY_BREAK +case 98: +YY_RULE_SETUP +#line 209 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_LPAREN(loc); + YY_BREAK +case 99: +YY_RULE_SETUP +#line 210 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_RPAREN(loc); + YY_BREAK +case 100: +YY_RULE_SETUP +#line 211 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_DOT(loc); + YY_BREAK +case 101: +YY_RULE_SETUP +#line 212 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_COMMA(loc); + YY_BREAK +case 102: +YY_RULE_SETUP +#line 213 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_SEMI(loc); + YY_BREAK +case 103: +YY_RULE_SETUP +#line 214 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_PLUS(loc); + YY_BREAK +case 104: +YY_RULE_SETUP +#line 215 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_MINUS(loc); + YY_BREAK +case 105: +YY_RULE_SETUP +#line 216 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_STAR(loc); + YY_BREAK +case 106: +YY_RULE_SETUP +#line 217 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_SLASH(loc); + YY_BREAK +case 107: +YY_RULE_SETUP +#line 218 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_TILDE(loc); + YY_BREAK +case 108: +YY_RULE_SETUP +#line 219 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_AMPERSAND(loc); + YY_BREAK +case 109: +YY_RULE_SETUP +#line 220 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_PERCENT(loc); + YY_BREAK +case 110: +YY_RULE_SETUP +#line 221 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_BITOR(loc); + YY_BREAK +case 111: +YY_RULE_SETUP +#line 222 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_OROP(loc); + YY_BREAK +case 112: +YY_RULE_SETUP +#line 223 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_EQUAL(loc); + YY_BREAK +case 113: +YY_RULE_SETUP +#line 224 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_EQUAL2(loc); + YY_BREAK +case 114: +YY_RULE_SETUP +#line 225 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_GREATER(loc); + YY_BREAK +case 115: +YY_RULE_SETUP +#line 226 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_GREATEREQUAL(loc); + YY_BREAK +case 116: +YY_RULE_SETUP +#line 227 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_LOWER(loc); + YY_BREAK +case 117: +YY_RULE_SETUP +#line 228 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_LOWEREQUAL(loc); + YY_BREAK +case 118: +YY_RULE_SETUP +#line 229 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_UNEQUAL(loc); + YY_BREAK +case 119: +YY_RULE_SETUP +#line 230 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_UNEQUAL2(loc); + YY_BREAK +case 120: +YY_RULE_SETUP +#line 231 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_BITWISELEFT(loc); + YY_BREAK +case 121: +YY_RULE_SETUP +#line 232 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_BITWISERIGHT(loc); + YY_BREAK +case 122: +YY_RULE_SETUP +#line 234 "sqlite3_lexer.ll" +throw sqlb::parser::parser::syntax_error(loc, "Invalid character: " + std::string(yytext)); + YY_BREAK +case YY_STATE_EOF(INITIAL): +case YY_STATE_EOF(BETWEEN_MODE): +#line 236 "sqlite3_lexer.ll" +return sqlb::parser::parser::make_EOF(loc); + YY_BREAK +case 123: +YY_RULE_SETUP +#line 238 "sqlite3_lexer.ll" +YY_FATAL_ERROR( "flex scanner jammed" ); + YY_BREAK +#line 2329 "sqlite3_lexer.cpp" + + case YY_END_OF_BUFFER: + { + /* Amount of text matched not including the EOB char. */ + int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1; + + /* Undo the effects of YY_DO_BEFORE_ACTION. */ + *yy_cp = yyg->yy_hold_char; + YY_RESTORE_YY_MORE_OFFSET + + if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) + { + /* We're scanning a new file or input source. It's + * possible that this happened because the user + * just pointed yyin at a new source and called + * yylex(). If so, then we have to assure + * consistency between YY_CURRENT_BUFFER and our + * globals. Here is the right place to do so, because + * this is the first action (other than possibly a + * back-up) that will match for the new input source. + */ + yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; +/* %if-c-only */ + YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; +/* %endif */ +/* %if-c++-only */ +/* %endif */ + YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; + } + + /* Note that here we test for yy_c_buf_p "<=" to the position + * of the first EOB in the buffer, since yy_c_buf_p will + * already have been incremented past the NUL character + * (since all states make transitions on EOB to the + * end-of-buffer state). Contrast this with the test + * in input(). + */ + if ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) + { /* This was really a NUL. */ + yy_state_type yy_next_state; + + yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; + + yy_current_state = yy_get_previous_state( yyscanner ); + + /* Okay, we're now positioned to make the NUL + * transition. We couldn't have + * yy_get_previous_state() go ahead and do it + * for us because it doesn't know how to deal + * with the possibility of jamming (and we don't + * want to build jamming into it because then it + * will run more slowly). + */ + + yy_next_state = yy_try_NUL_trans( yy_current_state , yyscanner); + + yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; + + if ( yy_next_state ) + { + /* Consume the NUL. */ + yy_cp = ++yyg->yy_c_buf_p; + yy_current_state = yy_next_state; + goto yy_match; + } + + else + { +/* %% [14.0] code to do back-up for compressed tables and set up yy_cp goes here */ + yy_cp = yyg->yy_last_accepting_cpos; + yy_current_state = yyg->yy_last_accepting_state; + goto yy_find_action; + } + } + + else switch ( yy_get_next_buffer( yyscanner ) ) + { + case EOB_ACT_END_OF_FILE: + { + yyg->yy_did_buffer_switch_on_eof = 0; + + if ( yywrap( yyscanner ) ) + { + /* Note: because we've taken care in + * yy_get_next_buffer() to have set up + * yytext, we can now set up + * yy_c_buf_p so that if some total + * hoser (like flex itself) wants to + * call the scanner after we return the + * YY_NULL, it'll still work - another + * YY_NULL will get returned. + */ + yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ; + + yy_act = YY_STATE_EOF(YY_START); + goto do_action; + } + + else + { + if ( ! yyg->yy_did_buffer_switch_on_eof ) + YY_NEW_FILE; + } + break; + } + + case EOB_ACT_CONTINUE_SCAN: + yyg->yy_c_buf_p = + yyg->yytext_ptr + yy_amount_of_matched_text; + + yy_current_state = yy_get_previous_state( yyscanner ); + + yy_cp = yyg->yy_c_buf_p; + yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; + goto yy_match; + + case EOB_ACT_LAST_MATCH: + yyg->yy_c_buf_p = + &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars]; + + yy_current_state = yy_get_previous_state( yyscanner ); + + yy_cp = yyg->yy_c_buf_p; + yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; + goto yy_find_action; + } + break; + } + + default: + YY_FATAL_ERROR( + "fatal flex scanner internal error--no action found" ); + } /* end of action switch */ + } /* end of scanning one token */ + } /* end of user's declarations */ +} /* end of yylex */ +/* %ok-for-header */ + +/* %if-c++-only */ +/* %not-for-header */ +/* %ok-for-header */ + +/* %endif */ + +/* yy_get_next_buffer - try to read in a new buffer + * + * Returns a code representing an action: + * EOB_ACT_LAST_MATCH - + * EOB_ACT_CONTINUE_SCAN - continue scanning from current position + * EOB_ACT_END_OF_FILE - end of file + */ +/* %if-c-only */ +static int yy_get_next_buffer (yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; + char *source = yyg->yytext_ptr; + int number_to_move, i; + int ret_val; + + if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] ) + YY_FATAL_ERROR( + "fatal flex scanner internal error--end of buffer missed" ); + + if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) + { /* Don't try to fill the buffer, so this is an EOF. */ + if ( yyg->yy_c_buf_p - yyg->yytext_ptr - YY_MORE_ADJ == 1 ) + { + /* We matched a single character, the EOB, so + * treat this as a final EOF. + */ + return EOB_ACT_END_OF_FILE; + } + + else + { + /* We matched some text prior to the EOB, first + * process it. + */ + return EOB_ACT_LAST_MATCH; + } + } + + /* Try to read more data. */ + + /* First move last chars to start of buffer. */ + number_to_move = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr - 1); + + for ( i = 0; i < number_to_move; ++i ) + *(dest++) = *(source++); + + if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) + /* don't do the read, it's not guaranteed to return an EOF, + * just force an EOF + */ + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars = 0; + + else + { + int num_to_read = + YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; + + while ( num_to_read <= 0 ) + { /* Not enough room in the buffer - grow it. */ + + /* just a shorter name for the current buffer */ + YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; + + int yy_c_buf_p_offset = + (int) (yyg->yy_c_buf_p - b->yy_ch_buf); + + if ( b->yy_is_our_buffer ) + { + int new_size = b->yy_buf_size * 2; + + if ( new_size <= 0 ) + b->yy_buf_size += b->yy_buf_size / 8; + else + b->yy_buf_size *= 2; + + b->yy_ch_buf = (char *) + /* Include room in for 2 EOB chars. */ + yyrealloc( (void *) b->yy_ch_buf, + (yy_size_t) (b->yy_buf_size + 2) , yyscanner ); + } + else + /* Can't grow it, we don't own it. */ + b->yy_ch_buf = NULL; + + if ( ! b->yy_ch_buf ) + YY_FATAL_ERROR( + "fatal error - scanner input buffer overflow" ); + + yyg->yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; + + num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - + number_to_move - 1; + + } + + if ( num_to_read > YY_READ_BUF_SIZE ) + num_to_read = YY_READ_BUF_SIZE; + + /* Read in more data. */ + YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), + yyg->yy_n_chars, num_to_read ); + + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; + } + + if ( yyg->yy_n_chars == 0 ) + { + if ( number_to_move == YY_MORE_ADJ ) + { + ret_val = EOB_ACT_END_OF_FILE; + yyrestart( yyin , yyscanner); + } + + else + { + ret_val = EOB_ACT_LAST_MATCH; + YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = + YY_BUFFER_EOF_PENDING; + } + } + + else + ret_val = EOB_ACT_CONTINUE_SCAN; + + if ((yyg->yy_n_chars + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { + /* Extend the array by 50%, plus the number we really need. */ + int new_size = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1); + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc( + (void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size , yyscanner ); + if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) + YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); + /* "- 2" to take care of EOB's */ + YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2); + } + + yyg->yy_n_chars += number_to_move; + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR; + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; + + yyg->yytext_ptr = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; + + return ret_val; +} + +/* yy_get_previous_state - get the state just before the EOB char was reached */ + +/* %if-c-only */ +/* %not-for-header */ + static yy_state_type yy_get_previous_state (yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + yy_state_type yy_current_state; + char *yy_cp; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + +/* %% [15.0] code to get the start state into yy_current_state goes here */ + yy_current_state = yyg->yy_start; + + for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->yy_c_buf_p; ++yy_cp ) + { +/* %% [16.0] code to find the next state goes here */ + YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); + if ( yy_accept[yy_current_state] ) + { + yyg->yy_last_accepting_state = yy_current_state; + yyg->yy_last_accepting_cpos = yy_cp; + } + while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) + { + yy_current_state = (int) yy_def[yy_current_state]; + if ( yy_current_state >= 467 ) + yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + } + + return yy_current_state; +} + +/* yy_try_NUL_trans - try to make a transition on the NUL character + * + * synopsis + * next_state = yy_try_NUL_trans( current_state ); + */ +/* %if-c-only */ + static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state , yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + int yy_is_jam; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */ +/* %% [17.0] code to find the next state, and perhaps do backing up, goes here */ + char *yy_cp = yyg->yy_c_buf_p; + + YY_CHAR yy_c = 1; + if ( yy_accept[yy_current_state] ) + { + yyg->yy_last_accepting_state = yy_current_state; + yyg->yy_last_accepting_cpos = yy_cp; + } + while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) + { + yy_current_state = (int) yy_def[yy_current_state]; + if ( yy_current_state >= 467 ) + yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + yy_is_jam = (yy_current_state == 466); + + (void)yyg; + return yy_is_jam ? 0 : yy_current_state; +} + +#ifndef YY_NO_UNPUT +/* %if-c-only */ + +/* %endif */ +#endif + +/* %if-c-only */ +#ifndef YY_NO_INPUT +#ifdef __cplusplus + static int yyinput (yyscan_t yyscanner) +#else + static int input (yyscan_t yyscanner) +#endif + +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + int c; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + *yyg->yy_c_buf_p = yyg->yy_hold_char; + + if ( *yyg->yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) + { + /* yy_c_buf_p now points to the character we want to return. + * If this occurs *before* the EOB characters, then it's a + * valid NUL; if not, then we've hit the end of the buffer. + */ + if ( yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) + /* This was really a NUL. */ + *yyg->yy_c_buf_p = '\0'; + + else + { /* need more input */ + int offset = (int) (yyg->yy_c_buf_p - yyg->yytext_ptr); + ++yyg->yy_c_buf_p; + + switch ( yy_get_next_buffer( yyscanner ) ) + { + case EOB_ACT_LAST_MATCH: + /* This happens because yy_g_n_b() + * sees that we've accumulated a + * token and flags that we need to + * try matching the token before + * proceeding. But for input(), + * there's no matching to consider. + * So convert the EOB_ACT_LAST_MATCH + * to EOB_ACT_END_OF_FILE. + */ + + /* Reset buffer status. */ + yyrestart( yyin , yyscanner); + + /*FALLTHROUGH*/ + + case EOB_ACT_END_OF_FILE: + { + if ( yywrap( yyscanner ) ) + return 0; + + if ( ! yyg->yy_did_buffer_switch_on_eof ) + YY_NEW_FILE; +#ifdef __cplusplus + return yyinput(yyscanner); +#else + return input(yyscanner); +#endif + } + + case EOB_ACT_CONTINUE_SCAN: + yyg->yy_c_buf_p = yyg->yytext_ptr + offset; + break; + } + } + } + + c = *(unsigned char *) yyg->yy_c_buf_p; /* cast for 8-bit char's */ + *yyg->yy_c_buf_p = '\0'; /* preserve yytext */ + yyg->yy_hold_char = *++yyg->yy_c_buf_p; + +/* %% [19.0] update BOL and yylineno */ + + return c; +} +/* %if-c-only */ +#endif /* ifndef YY_NO_INPUT */ +/* %endif */ + +/** Immediately switch to a different input stream. + * @param input_file A readable stream. + * @param yyscanner The scanner object. + * @note This function does not reset the start condition to @c INITIAL . + */ +/* %if-c-only */ + void yyrestart (FILE * input_file , yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + if ( ! YY_CURRENT_BUFFER ){ + yyensure_buffer_stack (yyscanner); + YY_CURRENT_BUFFER_LVALUE = + yy_create_buffer( yyin, YY_BUF_SIZE , yyscanner); + } + + yy_init_buffer( YY_CURRENT_BUFFER, input_file , yyscanner); + yy_load_buffer_state( yyscanner ); +} + +/* %if-c++-only */ +/* %endif */ + +/** Switch to a different input buffer. + * @param new_buffer The new input buffer. + * @param yyscanner The scanner object. + */ +/* %if-c-only */ + void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + /* TODO. We should be able to replace this entire function body + * with + * yypop_buffer_state(); + * yypush_buffer_state(new_buffer); + */ + yyensure_buffer_stack (yyscanner); + if ( YY_CURRENT_BUFFER == new_buffer ) + return; + + if ( YY_CURRENT_BUFFER ) + { + /* Flush out information for old buffer. */ + *yyg->yy_c_buf_p = yyg->yy_hold_char; + YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; + } + + YY_CURRENT_BUFFER_LVALUE = new_buffer; + yy_load_buffer_state( yyscanner ); + + /* We don't actually know whether we did this switch during + * EOF (yywrap()) processing, but the only time this flag + * is looked at is after yywrap() is called, so it's safe + * to go ahead and always set it. + */ + yyg->yy_did_buffer_switch_on_eof = 1; +} + +/* %if-c-only */ +static void yy_load_buffer_state (yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; + yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; +/* %if-c-only */ + yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; +/* %endif */ +/* %if-c++-only */ +/* %endif */ + yyg->yy_hold_char = *yyg->yy_c_buf_p; +} + +/** Allocate and initialize an input buffer state. + * @param file A readable stream. + * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. + * @param yyscanner The scanner object. + * @return the allocated buffer state. + */ +/* %if-c-only */ + YY_BUFFER_STATE yy_create_buffer (FILE * file, int size , yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + YY_BUFFER_STATE b; + + b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) , yyscanner ); + if ( ! b ) + YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); + + b->yy_buf_size = size; + + /* yy_ch_buf has to be 2 characters longer than the size given because + * we need to put in 2 end-of-buffer characters. + */ + b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) , yyscanner ); + if ( ! b->yy_ch_buf ) + YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); + + b->yy_is_our_buffer = 1; + + yy_init_buffer( b, file , yyscanner); + + return b; +} + +/* %if-c++-only */ +/* %endif */ + +/** Destroy the buffer. + * @param b a buffer created with yy_create_buffer() + * @param yyscanner The scanner object. + */ +/* %if-c-only */ + void yy_delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + if ( ! b ) + return; + + if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ + YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; + + if ( b->yy_is_our_buffer ) + yyfree( (void *) b->yy_ch_buf , yyscanner ); + + yyfree( (void *) b , yyscanner ); +} + +/* Initializes or reinitializes a buffer. + * This function is sometimes called more than once on the same buffer, + * such as during a yyrestart() or at EOF. + */ +/* %if-c-only */ + static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only */ +/* %endif */ + +{ + int oerrno = errno; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + yy_flush_buffer( b , yyscanner); + +/* %if-c-only */ + b->yy_input_file = file; +/* %endif */ +/* %if-c++-only */ +/* %endif */ + b->yy_fill_buffer = 1; + + /* If b is the current buffer, then yy_init_buffer was _probably_ + * called from yyrestart() or through yy_get_next_buffer. + * In that case, we don't want to reset the lineno or column. + */ + if (b != YY_CURRENT_BUFFER){ + b->yy_bs_lineno = 1; + b->yy_bs_column = 0; + } + +/* %if-c-only */ + + b->yy_is_interactive = 0; + +/* %endif */ +/* %if-c++-only */ +/* %endif */ + errno = oerrno; +} + +/** Discard all buffered characters. On the next scan, YY_INPUT will be called. + * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. + * @param yyscanner The scanner object. + */ +/* %if-c-only */ + void yy_flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + if ( ! b ) + return; + + b->yy_n_chars = 0; + + /* We always need two end-of-buffer characters. The first causes + * a transition to the end-of-buffer state. The second causes + * a jam in that state. + */ + b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; + b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; + + b->yy_buf_pos = &b->yy_ch_buf[0]; + + b->yy_at_bol = 1; + b->yy_buffer_status = YY_BUFFER_NEW; + + if ( b == YY_CURRENT_BUFFER ) + yy_load_buffer_state( yyscanner ); +} + +/* %if-c-or-c++ */ +/** Pushes the new state onto the stack. The new state becomes + * the current state. This function will allocate the stack + * if necessary. + * @param new_buffer The new state. + * @param yyscanner The scanner object. + */ +/* %if-c-only */ +void yypush_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + if (new_buffer == NULL) + return; + + yyensure_buffer_stack(yyscanner); + + /* This block is copied from yy_switch_to_buffer. */ + if ( YY_CURRENT_BUFFER ) + { + /* Flush out information for old buffer. */ + *yyg->yy_c_buf_p = yyg->yy_hold_char; + YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; + } + + /* Only push if top exists. Otherwise, replace top. */ + if (YY_CURRENT_BUFFER) + yyg->yy_buffer_stack_top++; + YY_CURRENT_BUFFER_LVALUE = new_buffer; + + /* copied from yy_switch_to_buffer. */ + yy_load_buffer_state( yyscanner ); + yyg->yy_did_buffer_switch_on_eof = 1; +} +/* %endif */ + +/* %if-c-or-c++ */ +/** Removes and deletes the top of the stack, if present. + * The next element becomes the new top. + * @param yyscanner The scanner object. + */ +/* %if-c-only */ +void yypop_buffer_state (yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + if (!YY_CURRENT_BUFFER) + return; + + yy_delete_buffer(YY_CURRENT_BUFFER , yyscanner); + YY_CURRENT_BUFFER_LVALUE = NULL; + if (yyg->yy_buffer_stack_top > 0) + --yyg->yy_buffer_stack_top; + + if (YY_CURRENT_BUFFER) { + yy_load_buffer_state( yyscanner ); + yyg->yy_did_buffer_switch_on_eof = 1; + } +} +/* %endif */ + +/* %if-c-or-c++ */ +/* Allocates the stack if it does not exist. + * Guarantees space for at least one push. + */ +/* %if-c-only */ +static void yyensure_buffer_stack (yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + yy_size_t num_to_alloc; + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + if (!yyg->yy_buffer_stack) { + + /* First allocation is just for 2 elements, since we don't know if this + * scanner will even need a stack. We use 2 instead of 1 to avoid an + * immediate realloc on the next call. + */ + num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ + yyg->yy_buffer_stack = (struct yy_buffer_state**)yyalloc + (num_to_alloc * sizeof(struct yy_buffer_state*) + , yyscanner); + if ( ! yyg->yy_buffer_stack ) + YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); + + memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*)); + + yyg->yy_buffer_stack_max = num_to_alloc; + yyg->yy_buffer_stack_top = 0; + return; + } + + if (yyg->yy_buffer_stack_top >= (yyg->yy_buffer_stack_max) - 1){ + + /* Increase the buffer to prepare for a possible push. */ + yy_size_t grow_size = 8 /* arbitrary grow size */; + + num_to_alloc = yyg->yy_buffer_stack_max + grow_size; + yyg->yy_buffer_stack = (struct yy_buffer_state**)yyrealloc + (yyg->yy_buffer_stack, + num_to_alloc * sizeof(struct yy_buffer_state*) + , yyscanner); + if ( ! yyg->yy_buffer_stack ) + YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); + + /* zero only the new slots.*/ + memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*)); + yyg->yy_buffer_stack_max = num_to_alloc; + } +} +/* %endif */ + +/* %if-c-only */ +/** Setup the input buffer state to scan directly from a user-specified character buffer. + * @param base the character buffer + * @param size the size in bytes of the character buffer + * @param yyscanner The scanner object. + * @return the newly allocated buffer state object. + */ +YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner) +{ + YY_BUFFER_STATE b; + + if ( size < 2 || + base[size-2] != YY_END_OF_BUFFER_CHAR || + base[size-1] != YY_END_OF_BUFFER_CHAR ) + /* They forgot to leave room for the EOB's. */ + return NULL; + + b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) , yyscanner ); + if ( ! b ) + YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); + + b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */ + b->yy_buf_pos = b->yy_ch_buf = base; + b->yy_is_our_buffer = 0; + b->yy_input_file = NULL; + b->yy_n_chars = b->yy_buf_size; + b->yy_is_interactive = 0; + b->yy_at_bol = 1; + b->yy_fill_buffer = 0; + b->yy_buffer_status = YY_BUFFER_NEW; + + yy_switch_to_buffer( b , yyscanner ); + + return b; +} +/* %endif */ + +/* %if-c-only */ +/** Setup the input buffer state to scan a string. The next call to yylex() will + * scan from a @e copy of @a str. + * @param yystr a NUL-terminated string to scan + * @param yyscanner The scanner object. + * @return the newly allocated buffer state object. + * @note If you want to scan bytes that may contain NUL values, then use + * yy_scan_bytes() instead. + */ +YY_BUFFER_STATE yy_scan_string (const char * yystr , yyscan_t yyscanner) +{ + + return yy_scan_bytes( yystr, (int) strlen(yystr) , yyscanner); +} +/* %endif */ + +/* %if-c-only */ +/** Setup the input buffer state to scan the given bytes. The next call to yylex() will + * scan from a @e copy of @a bytes. + * @param yybytes the byte buffer to scan + * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. + * @param yyscanner The scanner object. + * @return the newly allocated buffer state object. + */ +YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len , yyscan_t yyscanner) +{ + YY_BUFFER_STATE b; + char *buf; + yy_size_t n; + int i; + + /* Get memory for full buffer, including space for trailing EOB's. */ + n = (yy_size_t) (_yybytes_len + 2); + buf = (char *) yyalloc( n , yyscanner ); + if ( ! buf ) + YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); + + for ( i = 0; i < _yybytes_len; ++i ) + buf[i] = yybytes[i]; + + buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; + + b = yy_scan_buffer( buf, n , yyscanner); + if ( ! b ) + YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); + + /* It's okay to grow etc. this buffer, and we should throw it + * away when we're done. + */ + b->yy_is_our_buffer = 1; + + return b; +} +/* %endif */ + +#ifndef YY_EXIT_FAILURE +#define YY_EXIT_FAILURE 2 +#endif + +/* %if-c-only */ +static void yynoreturn yy_fatal_error (const char* msg , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + fprintf( stderr, "%s\n", msg ); + exit( YY_EXIT_FAILURE ); +} +/* %endif */ +/* %if-c++-only */ +/* %endif */ + +/* Redefine yyless() so it works in section 3 code. */ + +#undef yyless +#define yyless(n) \ + do \ + { \ + /* Undo effects of setting up yytext. */ \ + int yyless_macro_arg = (n); \ + YY_LESS_LINENO(yyless_macro_arg);\ + yytext[yyleng] = yyg->yy_hold_char; \ + yyg->yy_c_buf_p = yytext + yyless_macro_arg; \ + yyg->yy_hold_char = *yyg->yy_c_buf_p; \ + *yyg->yy_c_buf_p = '\0'; \ + yyleng = yyless_macro_arg; \ + } \ + while ( 0 ) + +/* Accessor methods (get/set functions) to struct members. */ + +/* %if-c-only */ +/* %if-reentrant */ + +/** Get the user-defined data for this scanner. + * @param yyscanner The scanner object. + */ +YY_EXTRA_TYPE yyget_extra (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yyextra; +} + +/* %endif */ + +/** Get the current line number. + * @param yyscanner The scanner object. + */ +int yyget_lineno (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + if (! YY_CURRENT_BUFFER) + return 0; + + return yylineno; +} + +/** Get the current column number. + * @param yyscanner The scanner object. + */ +int yyget_column (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + if (! YY_CURRENT_BUFFER) + return 0; + + return yycolumn; +} + +/** Get the input stream. + * @param yyscanner The scanner object. + */ +FILE *yyget_in (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yyin; +} + +/** Get the output stream. + * @param yyscanner The scanner object. + */ +FILE *yyget_out (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yyout; +} + +/** Get the length of the current token. + * @param yyscanner The scanner object. + */ +int yyget_leng (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yyleng; +} + +/** Get the current token. + * @param yyscanner The scanner object. + */ + +char *yyget_text (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yytext; +} + +/* %if-reentrant */ + +/** Set the user-defined data. This data is never touched by the scanner. + * @param user_defined The data to be associated with this scanner. + * @param yyscanner The scanner object. + */ +void yyset_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yyextra = user_defined ; +} + +/* %endif */ + +/** Set the current line number. + * @param _line_number line number + * @param yyscanner The scanner object. + */ +void yyset_lineno (int _line_number , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + /* lineno is only valid if an input buffer exists. */ + if (! YY_CURRENT_BUFFER ) + YY_FATAL_ERROR( "yyset_lineno called with no buffer" ); + + yylineno = _line_number; +} + +/** Set the current column. + * @param _column_no column number + * @param yyscanner The scanner object. + */ +void yyset_column (int _column_no , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + /* column is only valid if an input buffer exists. */ + if (! YY_CURRENT_BUFFER ) + YY_FATAL_ERROR( "yyset_column called with no buffer" ); + + yycolumn = _column_no; +} + +/** Set the input stream. This does not discard the current + * input buffer. + * @param _in_str A readable stream. + * @param yyscanner The scanner object. + * @see yy_switch_to_buffer + */ +void yyset_in (FILE * _in_str , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yyin = _in_str ; +} + +void yyset_out (FILE * _out_str , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yyout = _out_str ; +} + +int yyget_debug (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + return yy_flex_debug; +} + +void yyset_debug (int _bdebug , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + yy_flex_debug = _bdebug ; +} + +/* %endif */ + +/* %if-reentrant */ +/* Accessor methods for yylval and yylloc */ + +/* %if-bison-bridge */ +/* %endif */ + +/* User-visible API */ + +/* yylex_init is special because it creates the scanner itself, so it is + * the ONLY reentrant function that doesn't take the scanner as the last argument. + * That's why we explicitly handle the declaration, instead of using our macros. + */ +int yylex_init(yyscan_t* ptr_yy_globals) +{ + if (ptr_yy_globals == NULL){ + errno = EINVAL; + return 1; + } + + *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), NULL ); + + if (*ptr_yy_globals == NULL){ + errno = ENOMEM; + return 1; + } + + /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ + memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); + + return yy_init_globals ( *ptr_yy_globals ); +} + +/* yylex_init_extra has the same functionality as yylex_init, but follows the + * convention of taking the scanner as the last argument. Note however, that + * this is a *pointer* to a scanner, as it will be allocated by this call (and + * is the reason, too, why this function also must handle its own declaration). + * The user defined value in the first argument will be available to yyalloc in + * the yyextra field. + */ +int yylex_init_extra( YY_EXTRA_TYPE yy_user_defined, yyscan_t* ptr_yy_globals ) +{ + struct yyguts_t dummy_yyguts; + + yyset_extra (yy_user_defined, &dummy_yyguts); + + if (ptr_yy_globals == NULL){ + errno = EINVAL; + return 1; + } + + *ptr_yy_globals = (yyscan_t) yyalloc ( sizeof( struct yyguts_t ), &dummy_yyguts ); + + if (*ptr_yy_globals == NULL){ + errno = ENOMEM; + return 1; + } + + /* By setting to 0xAA, we expose bugs in + yy_init_globals. Leave at 0x00 for releases. */ + memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); + + yyset_extra (yy_user_defined, *ptr_yy_globals); + + return yy_init_globals ( *ptr_yy_globals ); +} + +/* %endif if-c-only */ + +/* %if-c-only */ +static int yy_init_globals (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + /* Initialization is the same as for the non-reentrant scanner. + * This function is called from yylex_destroy(), so don't allocate here. + */ + + yyg->yy_buffer_stack = NULL; + yyg->yy_buffer_stack_top = 0; + yyg->yy_buffer_stack_max = 0; + yyg->yy_c_buf_p = NULL; + yyg->yy_init = 0; + yyg->yy_start = 0; + + yyg->yy_start_stack_ptr = 0; + yyg->yy_start_stack_depth = 0; + yyg->yy_start_stack = NULL; + +/* Defined in main.c */ +#ifdef YY_STDINIT + yyin = stdin; + yyout = stdout; +#else + yyin = NULL; + yyout = NULL; +#endif + + /* For future reference: Set errno on error, since we are called by + * yylex_init() + */ + return 0; +} +/* %endif */ + +/* %if-c-only SNIP! this currently causes conflicts with the c++ scanner */ +/* yylex_destroy is for both reentrant and non-reentrant scanners. */ +int yylex_destroy (yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + + /* Pop the buffer stack, destroying each element. */ + while(YY_CURRENT_BUFFER){ + yy_delete_buffer( YY_CURRENT_BUFFER , yyscanner ); + YY_CURRENT_BUFFER_LVALUE = NULL; + yypop_buffer_state(yyscanner); + } + + /* Destroy the stack itself. */ + yyfree(yyg->yy_buffer_stack , yyscanner); + yyg->yy_buffer_stack = NULL; + + /* Destroy the start condition stack. */ + yyfree( yyg->yy_start_stack , yyscanner ); + yyg->yy_start_stack = NULL; + + /* Reset the globals. This is important in a non-reentrant scanner so the next time + * yylex() is called, initialization will occur. */ + yy_init_globals( yyscanner); + +/* %if-reentrant */ + /* Destroy the main struct (reentrant only). */ + yyfree ( yyscanner , yyscanner ); + yyscanner = NULL; +/* %endif */ + return 0; +} +/* %endif */ + +/* + * Internal utility routines. + */ + +#ifndef yytext_ptr +static void yy_flex_strncpy (char* s1, const char * s2, int n , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + + int i; + for ( i = 0; i < n; ++i ) + s1[i] = s2[i]; +} +#endif + +#ifdef YY_NEED_STRLEN +static int yy_flex_strlen (const char * s , yyscan_t yyscanner) +{ + int n; + for ( n = 0; s[n]; ++n ) + ; + + return n; +} +#endif + +void *yyalloc (yy_size_t size , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + return malloc(size); +} + +void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + + /* The cast to (char *) in the following accommodates both + * implementations that use char* generic pointers, and those + * that use void* generic pointers. It works with the latter + * because both ANSI C and C++ allow castless assignment from + * any pointer type to void*, and deal with argument conversions + * as though doing an assignment. + */ + return realloc(ptr, size); +} + +void yyfree (void * ptr , yyscan_t yyscanner) +{ + struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; + (void)yyg; + free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ +} + +/* %if-tables-serialization definitions */ +/* %define-yytables The name for this specific scanner's tables. */ +#define YYTABLES_NAME "yytables" +/* %endif */ + +/* %ok-for-header */ + +#line 238 "sqlite3_lexer.ll" + + +namespace sqlb +{ +namespace parser +{ + +void ParserDriver::begin_scan() +{ + yylex_init(&scanner); + location.initialize(); + yyset_debug(trace_scanner, scanner); + buffer = yy_scan_string(source.c_str(), scanner); +} + +void ParserDriver::end_scan() +{ + yy_delete_buffer(buffer, scanner); + yylex_destroy(scanner); +} + +} +} + diff --git a/src/SqliteDBProcess/src/sql/parser/sqlite3_lexer.h b/src/SqliteDBProcess/src/sql/parser/sqlite3_lexer.h new file mode 100644 index 0000000..88d59cf --- /dev/null +++ b/src/SqliteDBProcess/src/sql/parser/sqlite3_lexer.h @@ -0,0 +1,610 @@ +#ifndef yyHEADER_H +#define yyHEADER_H 1 +#define yyIN_HEADER 1 + +#line 6 "sqlite3_lexer.h" + +#line 8 "sqlite3_lexer.h" + +#define YY_INT_ALIGNED short int + +/* A lexical scanner generated by flex */ + +/* %not-for-header */ + +#define FLEX_SCANNER +#define YY_FLEX_MAJOR_VERSION 2 +#define YY_FLEX_MINOR_VERSION 6 +#define YY_FLEX_SUBMINOR_VERSION 4 +#if YY_FLEX_SUBMINOR_VERSION > 0 +#define FLEX_BETA +#endif + +/* %if-c++-only */ +/* %endif */ + +/* %if-c-only */ + +/* %endif */ + +/* %if-c-only */ + +/* %endif */ + +/* First, we deal with platform-specific or compiler-specific issues. */ + +/* begin standard C headers. */ +/* %if-c-only */ +#include +#include +#include +#include +/* %endif */ + +/* %if-tables-serialization */ +/* %endif */ +/* end standard C headers. */ + +/* %if-c-or-c++ */ +/* flex integer type definitions */ + +#ifndef FLEXINT_H +#define FLEXINT_H + +/* C99 systems have . Non-C99 systems may or may not. */ + +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L + +/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, + * if you want the limit (max/min) macros for int types. + */ +#ifndef __STDC_LIMIT_MACROS +#define __STDC_LIMIT_MACROS 1 +#endif + +#include +typedef int8_t flex_int8_t; +typedef uint8_t flex_uint8_t; +typedef int16_t flex_int16_t; +typedef uint16_t flex_uint16_t; +typedef int32_t flex_int32_t; +typedef uint32_t flex_uint32_t; +#else +typedef signed char flex_int8_t; +typedef short int flex_int16_t; +typedef int flex_int32_t; +typedef unsigned char flex_uint8_t; +typedef unsigned short int flex_uint16_t; +typedef unsigned int flex_uint32_t; + +/* Limits of integral types. */ +#ifndef INT8_MIN +#define INT8_MIN (-128) +#endif +#ifndef INT16_MIN +#define INT16_MIN (-32767-1) +#endif +#ifndef INT32_MIN +#define INT32_MIN (-2147483647-1) +#endif +#ifndef INT8_MAX +#define INT8_MAX (127) +#endif +#ifndef INT16_MAX +#define INT16_MAX (32767) +#endif +#ifndef INT32_MAX +#define INT32_MAX (2147483647) +#endif +#ifndef UINT8_MAX +#define UINT8_MAX (255U) +#endif +#ifndef UINT16_MAX +#define UINT16_MAX (65535U) +#endif +#ifndef UINT32_MAX +#define UINT32_MAX (4294967295U) +#endif + +#ifndef SIZE_MAX +#define SIZE_MAX (~(size_t)0) +#endif + +#endif /* ! C99 */ + +#endif /* ! FLEXINT_H */ + +/* %endif */ + +/* begin standard C++ headers. */ +/* %if-c++-only */ +/* %endif */ + +/* TODO: this is always defined, so inline it */ +#define yyconst const + +#if defined(__GNUC__) && __GNUC__ >= 3 +#define yynoreturn __attribute__((__noreturn__)) +#else +#define yynoreturn +#endif + +/* %not-for-header */ + +/* %not-for-header */ + +/* %if-reentrant */ + +/* An opaque pointer. */ +#ifndef YY_TYPEDEF_YY_SCANNER_T +#define YY_TYPEDEF_YY_SCANNER_T +typedef void* yyscan_t; +#endif + +/* For convenience, these vars (plus the bison vars far below) + are macros in the reentrant scanner. */ +#define yyin yyg->yyin_r +#define yyout yyg->yyout_r +#define yyextra yyg->yyextra_r +#define yyleng yyg->yyleng_r +#define yytext yyg->yytext_r +#define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno) +#define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column) +#define yy_flex_debug yyg->yy_flex_debug_r + +/* %endif */ + +/* %if-not-reentrant */ +/* %endif */ + +/* Size of default input buffer. */ +#ifndef YY_BUF_SIZE +#ifdef __ia64__ +/* On IA-64, the buffer size is 16k, not 8k. + * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. + * Ditto for the __ia64__ case accordingly. + */ +#define YY_BUF_SIZE 32768 +#else +#define YY_BUF_SIZE 16384 +#endif /* __ia64__ */ +#endif + +#ifndef YY_TYPEDEF_YY_BUFFER_STATE +#define YY_TYPEDEF_YY_BUFFER_STATE +typedef struct yy_buffer_state *YY_BUFFER_STATE; +#endif + +#ifndef YY_TYPEDEF_YY_SIZE_T +#define YY_TYPEDEF_YY_SIZE_T +typedef size_t yy_size_t; +#endif + +/* %if-not-reentrant */ +/* %endif */ + +/* %if-c-only */ +/* %if-not-reentrant */ +/* %endif */ +/* %endif */ + +#ifndef YY_STRUCT_YY_BUFFER_STATE +#define YY_STRUCT_YY_BUFFER_STATE +struct yy_buffer_state + { +/* %if-c-only */ + FILE *yy_input_file; +/* %endif */ + +/* %if-c++-only */ +/* %endif */ + + char *yy_ch_buf; /* input buffer */ + char *yy_buf_pos; /* current position in input buffer */ + + /* Size of input buffer in bytes, not including room for EOB + * characters. + */ + int yy_buf_size; + + /* Number of characters read into yy_ch_buf, not including EOB + * characters. + */ + int yy_n_chars; + + /* Whether we "own" the buffer - i.e., we know we created it, + * and can realloc() it to grow it, and should free() it to + * delete it. + */ + int yy_is_our_buffer; + + /* Whether this is an "interactive" input source; if so, and + * if we're using stdio for input, then we want to use getc() + * instead of fread(), to make sure we stop fetching input after + * each newline. + */ + int yy_is_interactive; + + /* Whether we're considered to be at the beginning of a line. + * If so, '^' rules will be active on the next match, otherwise + * not. + */ + int yy_at_bol; + + int yy_bs_lineno; /**< The line count. */ + int yy_bs_column; /**< The column count. */ + + /* Whether to try to fill the input buffer when we reach the + * end of it. + */ + int yy_fill_buffer; + + int yy_buffer_status; + + }; +#endif /* !YY_STRUCT_YY_BUFFER_STATE */ + +/* %if-c-only Standard (non-C++) definition */ +/* %not-for-header */ + +/* %endif */ + +/* %if-c-only Standard (non-C++) definition */ + +/* %if-not-reentrant */ +/* %not-for-header */ + +/* %endif */ + +void yyrestart ( FILE *input_file , yyscan_t yyscanner ); +void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size , yyscan_t yyscanner ); +void yy_delete_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); +void yy_flush_buffer ( YY_BUFFER_STATE b , yyscan_t yyscanner ); +void yypush_buffer_state ( YY_BUFFER_STATE new_buffer , yyscan_t yyscanner ); +void yypop_buffer_state ( yyscan_t yyscanner ); + +YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_string ( const char *yy_str , yyscan_t yyscanner ); +YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len , yyscan_t yyscanner ); + +/* %endif */ + +void *yyalloc ( yy_size_t , yyscan_t yyscanner ); +void *yyrealloc ( void *, yy_size_t , yyscan_t yyscanner ); +void yyfree ( void * , yyscan_t yyscanner ); + +/* %% [1.0] yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here */ +/* Begin user sect3 */ + +#define yywrap(yyscanner) (/*CONSTCOND*/1) +#define YY_SKIP_YYWRAP + +#define FLEX_DEBUG + +#define yytext_ptr yytext_r + +/* %if-c-only Standard (non-C++) definition */ + +/* %endif */ + +#ifdef YY_HEADER_EXPORT_START_CONDITIONS +#define INITIAL 0 +#define BETWEEN_MODE 1 + +#endif + +#ifndef YY_NO_UNISTD_H +/* Special case for "unistd.h", since it is non-ANSI. We include it way + * down here because we want the user's section 1 to have been scanned first. + * The user has a chance to override it with an option. + */ +/* %if-c-only */ +#include +/* %endif */ +/* %if-c++-only */ +/* %endif */ +#endif + +#ifndef YY_EXTRA_TYPE +#define YY_EXTRA_TYPE void * +#endif + +/* %if-c-only Reentrant structure and macros (non-C++). */ +/* %if-reentrant */ + +/* %if-c-only */ + +/* %endif */ + +/* %if-reentrant */ + +int yylex_init (yyscan_t* scanner); + +int yylex_init_extra ( YY_EXTRA_TYPE user_defined, yyscan_t* scanner); + +/* %endif */ + +/* %endif End reentrant structures and macros. */ + +/* Accessor methods to globals. + These are made visible to non-reentrant scanners for convenience. */ + +int yylex_destroy ( yyscan_t yyscanner ); + +int yyget_debug ( yyscan_t yyscanner ); + +void yyset_debug ( int debug_flag , yyscan_t yyscanner ); + +YY_EXTRA_TYPE yyget_extra ( yyscan_t yyscanner ); + +void yyset_extra ( YY_EXTRA_TYPE user_defined , yyscan_t yyscanner ); + +FILE *yyget_in ( yyscan_t yyscanner ); + +void yyset_in ( FILE * _in_str , yyscan_t yyscanner ); + +FILE *yyget_out ( yyscan_t yyscanner ); + +void yyset_out ( FILE * _out_str , yyscan_t yyscanner ); + + int yyget_leng ( yyscan_t yyscanner ); + +char *yyget_text ( yyscan_t yyscanner ); + +int yyget_lineno ( yyscan_t yyscanner ); + +void yyset_lineno ( int _line_number , yyscan_t yyscanner ); + +int yyget_column ( yyscan_t yyscanner ); + +void yyset_column ( int _column_no , yyscan_t yyscanner ); + +/* %if-bison-bridge */ +/* %endif */ + +/* Macros after this point can all be overridden by user definitions in + * section 1. + */ + +#ifndef YY_SKIP_YYWRAP +#ifdef __cplusplus +extern "C" int yywrap ( yyscan_t yyscanner ); +#else +extern int yywrap ( yyscan_t yyscanner ); +#endif +#endif + +/* %not-for-header */ + +/* %endif */ + +#ifndef yytext_ptr +static void yy_flex_strncpy ( char *, const char *, int , yyscan_t yyscanner); +#endif + +#ifdef YY_NEED_STRLEN +static int yy_flex_strlen ( const char * , yyscan_t yyscanner); +#endif + +#ifndef YY_NO_INPUT +/* %if-c-only Standard (non-C++) definition */ +/* %not-for-header */ + +/* %endif */ +#endif + +/* %if-c-only */ + +/* %endif */ + +/* Amount of stuff to slurp up with each read. */ +#ifndef YY_READ_BUF_SIZE +#ifdef __ia64__ +/* On IA-64, the buffer size is 16k, not 8k */ +#define YY_READ_BUF_SIZE 16384 +#else +#define YY_READ_BUF_SIZE 8192 +#endif /* __ia64__ */ +#endif + +/* Number of entries by which start-condition stack grows. */ +#ifndef YY_START_STACK_INCR +#define YY_START_STACK_INCR 25 +#endif + +/* %if-tables-serialization structures and prototypes */ +/* %not-for-header */ + +/* %not-for-header */ + +/* Default declaration of generated scanner - a define so the user can + * easily add parameters. + */ +#ifndef YY_DECL +#define YY_DECL_IS_OURS 1 +/* %if-c-only Standard (non-C++) definition */ + +extern int yylex (yyscan_t yyscanner); + +#define YY_DECL int yylex (yyscan_t yyscanner) +/* %endif */ +/* %if-c++-only C++ definition */ +/* %endif */ +#endif /* !YY_DECL */ + +/* %not-for-header */ + +/* %if-c++-only */ +/* %not-for-header */ + +/* %endif */ + +/* yy_get_previous_state - get the state just before the EOB char was reached */ + +/* %if-c-only */ +/* %not-for-header */ + +#undef YY_NEW_FILE +#undef YY_FLUSH_BUFFER +#undef yy_set_bol +#undef yy_new_buffer +#undef yy_set_interactive +#undef YY_DO_BEFORE_ACTION + +#ifdef YY_DECL_IS_OURS +#undef YY_DECL_IS_OURS +#undef YY_DECL +#endif + +#ifndef yy_create_buffer_ALREADY_DEFINED +#undef yy_create_buffer +#endif +#ifndef yy_delete_buffer_ALREADY_DEFINED +#undef yy_delete_buffer +#endif +#ifndef yy_scan_buffer_ALREADY_DEFINED +#undef yy_scan_buffer +#endif +#ifndef yy_scan_string_ALREADY_DEFINED +#undef yy_scan_string +#endif +#ifndef yy_scan_bytes_ALREADY_DEFINED +#undef yy_scan_bytes +#endif +#ifndef yy_init_buffer_ALREADY_DEFINED +#undef yy_init_buffer +#endif +#ifndef yy_flush_buffer_ALREADY_DEFINED +#undef yy_flush_buffer +#endif +#ifndef yy_load_buffer_state_ALREADY_DEFINED +#undef yy_load_buffer_state +#endif +#ifndef yy_switch_to_buffer_ALREADY_DEFINED +#undef yy_switch_to_buffer +#endif +#ifndef yypush_buffer_state_ALREADY_DEFINED +#undef yypush_buffer_state +#endif +#ifndef yypop_buffer_state_ALREADY_DEFINED +#undef yypop_buffer_state +#endif +#ifndef yyensure_buffer_stack_ALREADY_DEFINED +#undef yyensure_buffer_stack +#endif +#ifndef yylex_ALREADY_DEFINED +#undef yylex +#endif +#ifndef yyrestart_ALREADY_DEFINED +#undef yyrestart +#endif +#ifndef yylex_init_ALREADY_DEFINED +#undef yylex_init +#endif +#ifndef yylex_init_extra_ALREADY_DEFINED +#undef yylex_init_extra +#endif +#ifndef yylex_destroy_ALREADY_DEFINED +#undef yylex_destroy +#endif +#ifndef yyget_debug_ALREADY_DEFINED +#undef yyget_debug +#endif +#ifndef yyset_debug_ALREADY_DEFINED +#undef yyset_debug +#endif +#ifndef yyget_extra_ALREADY_DEFINED +#undef yyget_extra +#endif +#ifndef yyset_extra_ALREADY_DEFINED +#undef yyset_extra +#endif +#ifndef yyget_in_ALREADY_DEFINED +#undef yyget_in +#endif +#ifndef yyset_in_ALREADY_DEFINED +#undef yyset_in +#endif +#ifndef yyget_out_ALREADY_DEFINED +#undef yyget_out +#endif +#ifndef yyset_out_ALREADY_DEFINED +#undef yyset_out +#endif +#ifndef yyget_leng_ALREADY_DEFINED +#undef yyget_leng +#endif +#ifndef yyget_text_ALREADY_DEFINED +#undef yyget_text +#endif +#ifndef yyget_lineno_ALREADY_DEFINED +#undef yyget_lineno +#endif +#ifndef yyset_lineno_ALREADY_DEFINED +#undef yyset_lineno +#endif +#ifndef yyget_column_ALREADY_DEFINED +#undef yyget_column +#endif +#ifndef yyset_column_ALREADY_DEFINED +#undef yyset_column +#endif +#ifndef yywrap_ALREADY_DEFINED +#undef yywrap +#endif +#ifndef yyget_lval_ALREADY_DEFINED +#undef yyget_lval +#endif +#ifndef yyset_lval_ALREADY_DEFINED +#undef yyset_lval +#endif +#ifndef yyget_lloc_ALREADY_DEFINED +#undef yyget_lloc +#endif +#ifndef yyset_lloc_ALREADY_DEFINED +#undef yyset_lloc +#endif +#ifndef yyalloc_ALREADY_DEFINED +#undef yyalloc +#endif +#ifndef yyrealloc_ALREADY_DEFINED +#undef yyrealloc +#endif +#ifndef yyfree_ALREADY_DEFINED +#undef yyfree +#endif +#ifndef yytext_ALREADY_DEFINED +#undef yytext +#endif +#ifndef yyleng_ALREADY_DEFINED +#undef yyleng +#endif +#ifndef yyin_ALREADY_DEFINED +#undef yyin +#endif +#ifndef yyout_ALREADY_DEFINED +#undef yyout +#endif +#ifndef yy_flex_debug_ALREADY_DEFINED +#undef yy_flex_debug +#endif +#ifndef yylineno_ALREADY_DEFINED +#undef yylineno +#endif +#ifndef yytables_fload_ALREADY_DEFINED +#undef yytables_fload +#endif +#ifndef yytables_destroy_ALREADY_DEFINED +#undef yytables_destroy +#endif +#ifndef yyTABLES_NAME_ALREADY_DEFINED +#undef yyTABLES_NAME +#endif + +#line 238 "sqlite3_lexer.ll" + + +#line 609 "sqlite3_lexer.h" +#undef yyIN_HEADER +#endif /* yyHEADER_H */ diff --git a/src/SqliteDBProcess/src/sql/parser/sqlite3_lexer.ll b/src/SqliteDBProcess/src/sql/parser/sqlite3_lexer.ll new file mode 100644 index 0000000..6c52487 --- /dev/null +++ b/src/SqliteDBProcess/src/sql/parser/sqlite3_lexer.ll @@ -0,0 +1,259 @@ +%{ +#include +#include "ParserDriver.h" +#include "sqlite3_parser.hpp" +%} + +%option noyywrap nounput batch debug case-insensitive 8bit never-interactive nodefault nounistd reentrant warn +%option header-file="sqlite3_lexer.h" +%option outfile="sqlite3_lexer.cpp" + +%{ + #define TOKEN(n) sqlb::parser::parser::symbol_type(sqlb::parser::parser::token::TOK_##n, yytext, loc) + + std::string unquote_string(std::string s, char quote_char) + { + if(s.size() < 2) + return s; + + if(quote_char == '[') + { + if(s.front() == '[' && s.back() == ']') + s = s.substr(1, s.size()-2); + } else { + if(s.front() == quote_char && s.back() == quote_char) + { + s = s.substr(1, s.size()-2); + auto pos = s.npos; + while((pos = s.find(std::string(2, quote_char))) != s.npos) + s = s.replace(pos, 2, std::string(1, quote_char)); + } + } + + return s; + } +%} + +U [\x80-\xbf] +U2 [\xc2-\xdf] +U3 [\xe0-\xef] +U4 [\xf0-\xf4] +UNICODE {U2}{U}|{U3}{U}{U}|{U4}{U}{U}{U} + +ID ([a-z_]|{UNICODE})([a-z0-9_]|{UNICODE})* + +GRAVEQUOTEDID `([^\n`]|(``))*` +SQUAREBRACKETID \[([^\n\]])*\] + +QUOTEDLITERAL \"([^\n\"]|(\"\"))*\" +STRINGLITERAL \'([^\n\']|(\'\'))*\' +BLOBLITERAL X\'[0-9a-f]*\' + +BINDPARAMETER_NUM \?([1-9]{DIGIT}*)? +BINDPARAMETER_STR [:@][a-z]+ + /* TODO Add $ bind parameters */ + +DIGIT [0-9] +NUMERIC (({DIGIT}+(\.{DIGIT}*)?|(\.{DIGIT}+))(e[\+\-]?{DIGIT}+)?)|(0x[0-9a-f]+) + +NL [\r\n] +WS [ \t\f] + +%{ + // Code run each time a pattern is matched. + #define YY_USER_ACTION loc.columns(yyleng); +%} + +%s BETWEEN_MODE + +%% + +%{ + // Shortcut to the location held by the driver + sqlb::parser::location& loc = drv.location; + + // Code run each time yylex is called. + loc.step(); +%} + +{WS}+ loc.step(); +{NL}+ loc.lines(yyleng); loc.step(); + +"--" { + int c; + while((c = yyinput(yyscanner)) != '\n' && c != EOF) + ; /* eat up text of comment */ + } + +"/*" { + int c; + + for(;;) + { + while((c = yyinput(yyscanner)) != '*' && c != EOF) + ; /* eat up text of comment */ + + if(c == '*') + { + while((c = yyinput(yyscanner)) == '*') + ; + if(c == '/') + break; /* found the end */ + } + + if(c == EOF) + throw sqlb::parser::parser::syntax_error(loc, "EOF in comment"); + } + } + + /* For lack of a better idea, we need this hack to avoid reduce/reduce conflicts in the rules for parsing BETWEEN expressions. + * What we do here is distinguish two types of AND operators: the regular one and the special case when the AND follows a BETWEEN keyword. + */ +"AND" { BEGIN INITIAL; return TOKEN(AND_BETWEEN); } +"AND" return TOKEN(AND); +"BETWEEN" { BEGIN BETWEEN_MODE; return TOKEN(BETWEEN); } + +"ABORT" return TOKEN(ABORT); +"ACTION" return TOKEN(ACTION); +"ALWAYS" return TOKEN(ALWAYS); +"AS" return TOKEN(AS); +"ASC" return TOKEN(ASC); +"AUTOINCREMENT" return TOKEN(AUTOINCREMENT); +"CASCADE" return TOKEN(CASCADE); +"CASE" return TOKEN(CASE); +"CAST" return TOKEN(CAST); +"CHECK" return TOKEN(CHECK); +"COLLATE" return TOKEN(COLLATE); +"CONFLICT" return TOKEN(CONFLICT); +"CONSTRAINT" return TOKEN(CONSTRAINT); +"CREATE" return TOKEN(CREATE); +"CURRENT_DATE" return TOKEN(CURRENT_DATE); +"CURRENT_TIME" return TOKEN(CURRENT_TIME); +"CURRENT_TIMESTAMP" return TOKEN(CURRENT_TIMESTAMP); +"DEFAULT" return TOKEN(DEFAULT); +"DEFERRABLE" return TOKEN(DEFERRABLE); +"DEFERRED" return TOKEN(DEFERRED); +"DELETE" return TOKEN(DELETE); +"DESC" return TOKEN(DESC); +"DISTINCT" return TOKEN(DISTINCT); +"ELSE" return TOKEN(ELSE); +"END" return TOKEN(END); +"ESCAPE" return TOKEN(ESCAPE); +"EXISTS" return TOKEN(EXISTS); +"FAIL" return TOKEN(FAIL); +"FALSE" return TOKEN(FALSE); +"FILTER" return TOKEN(FILTER); +"FOLLOWING" return TOKEN(FOLLOWING); +"FOREIGN" return TOKEN(FOREIGN); +"GENERATED" return TOKEN(GENERATED); +"GLOB" return TOKEN(GLOB); +"IF" return TOKEN(IF); +"IGNORE" return TOKEN(IGNORE); +"IMMEDIATE" return TOKEN(IMMEDIATE); +"IN" return TOKEN(IN); +"INDEX" return TOKEN(INDEX); +"INITIALLY" return TOKEN(INITIALLY); +"INSERT" return TOKEN(INSERT); +"IS" return TOKEN(IS); +"ISNULL" return TOKEN(ISNULL); +"KEY" return TOKEN(KEY); +"LIKE" return TOKEN(LIKE); +"MATCH" return TOKEN(MATCH); +"NO" return TOKEN(NO); +"NOT" return TOKEN(NOT); +"NOTNULL" return TOKEN(NOTNULL); +"NULL" return TOKEN(NULL); +"ON" return TOKEN(ON); +"OR" return TOKEN(OR); +"OVER" return TOKEN(OVER); +"PARTITION" return TOKEN(PARTITION); +"PRECEDING" return TOKEN(PRECEDING); +"PRIMARY" return TOKEN(PRIMARY); +"RAISE" return TOKEN(RAISE); +"RANGE" return TOKEN(RANGE); +"REFERENCES" return TOKEN(REFERENCES); +"REGEXP" return TOKEN(REGEXP); +"REPLACE" return TOKEN(REPLACE); +"RESTRICT" return TOKEN(RESTRICT); +"ROLLBACK" return TOKEN(ROLLBACK); +"ROWID" return TOKEN(ROWID); +"ROWS" return TOKEN(ROWS); +"SELECT" return TOKEN(SELECT); +"SET" return TOKEN(SET); +"STORED" return TOKEN(STORED); +"TABLE" return TOKEN(TABLE); +"TEMP" return TOKEN(TEMP); +"TEMPORARY" return TOKEN(TEMPORARY); +"THEN" return TOKEN(THEN); +"TRUE" return TOKEN(TRUE); +"UNBOUNDED" return TOKEN(UNBOUNDED); +"UNIQUE" return TOKEN(UNIQUE); +"UPDATE" return TOKEN(UPDATE); +"USING" return TOKEN(USING); +"VIRTUAL" return TOKEN(VIRTUAL); +"WHEN" return TOKEN(WHEN); +"WHERE" return TOKEN(WHERE); +"WITHOUT" return TOKEN(WITHOUT); + +{ID} return sqlb::parser::parser::make_IDENTIFIER(yytext, loc); +{GRAVEQUOTEDID} return sqlb::parser::parser::make_IDENTIFIER(unquote_string(yytext, '`'), loc); +{SQUAREBRACKETID} return sqlb::parser::parser::make_IDENTIFIER(unquote_string(yytext, '['), loc); +{QUOTEDLITERAL} return sqlb::parser::parser::make_QUOTEDLITERAL(unquote_string(yytext, '"'), loc); +{STRINGLITERAL} return sqlb::parser::parser::make_STRINGLITERAL(yytext, loc); +{NUMERIC} return sqlb::parser::parser::make_NUMERIC(yytext, loc); +{BLOBLITERAL} return sqlb::parser::parser::make_BLOBLITERAL(yytext, loc); +{BINDPARAMETER_NUM} return sqlb::parser::parser::make_BINDPARAMETER(yytext, loc); +{BINDPARAMETER_STR} return sqlb::parser::parser::make_BINDPARAMETER(yytext, loc); + +"(" return sqlb::parser::parser::make_LPAREN(loc); +")" return sqlb::parser::parser::make_RPAREN(loc); +"." return sqlb::parser::parser::make_DOT(loc); +"," return sqlb::parser::parser::make_COMMA(loc); +";" return sqlb::parser::parser::make_SEMI(loc); +"+" return sqlb::parser::parser::make_PLUS(loc); +"-" return sqlb::parser::parser::make_MINUS(loc); +"*" return sqlb::parser::parser::make_STAR(loc); +"/" return sqlb::parser::parser::make_SLASH(loc); +"~" return sqlb::parser::parser::make_TILDE(loc); +"&" return sqlb::parser::parser::make_AMPERSAND(loc); +"%" return sqlb::parser::parser::make_PERCENT(loc); +"|" return sqlb::parser::parser::make_BITOR(loc); +"||" return sqlb::parser::parser::make_OROP(loc); +"=" return sqlb::parser::parser::make_EQUAL(loc); +"==" return sqlb::parser::parser::make_EQUAL2(loc); +">" return sqlb::parser::parser::make_GREATER(loc); +">=" return sqlb::parser::parser::make_GREATEREQUAL(loc); +"<" return sqlb::parser::parser::make_LOWER(loc); +"<=" return sqlb::parser::parser::make_LOWEREQUAL(loc); +"!=" return sqlb::parser::parser::make_UNEQUAL(loc); +"<>" return sqlb::parser::parser::make_UNEQUAL2(loc); +"<<" return sqlb::parser::parser::make_BITWISELEFT(loc); +">>" return sqlb::parser::parser::make_BITWISERIGHT(loc); + +. throw sqlb::parser::parser::syntax_error(loc, "Invalid character: " + std::string(yytext)); + +<> return sqlb::parser::parser::make_EOF(loc); + +%% + +namespace sqlb +{ +namespace parser +{ + +void ParserDriver::begin_scan() +{ + yylex_init(&scanner); + location.initialize(); + yyset_debug(trace_scanner, scanner); + buffer = yy_scan_string(source.c_str(), scanner); +} + +void ParserDriver::end_scan() +{ + yy_delete_buffer(buffer, scanner); + yylex_destroy(scanner); +} + +} +} diff --git a/src/SqliteDBProcess/src/sql/parser/sqlite3_location.h b/src/SqliteDBProcess/src/sql/parser/sqlite3_location.h new file mode 100644 index 0000000..ecfeb72 --- /dev/null +++ b/src/SqliteDBProcess/src/sql/parser/sqlite3_location.h @@ -0,0 +1,334 @@ +// A Bison parser, made by GNU Bison 3.5.1. + +// Locations for Bison parsers in C++ + +// Copyright (C) 2002-2015, 2018-2020 Free Software Foundation, Inc. + +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +// As a special exception, you may create a larger work that contains +// part or all of the Bison parser skeleton and distribute that work +// under terms of your choice, so long as that work isn't itself a +// parser generator using the skeleton or a modified version thereof +// as a parser skeleton. Alternatively, if you modify or redistribute +// the parser skeleton itself, you may (at your option) remove this +// special exception, which will cause the skeleton and the resulting +// Bison output files to be licensed under the GNU General Public +// License without this special exception. + +// This special exception was added by the Free Software Foundation in +// version 2.2 of Bison. + +/** + ** \file sqlite3_location.h + ** Define the sqlb::parser ::location class. + */ + +#ifndef YY_YY_SQLITE3_LOCATION_H_INCLUDED +# define YY_YY_SQLITE3_LOCATION_H_INCLUDED + +# include +# include + +# ifndef YY_NULLPTR +# if defined __cplusplus +# if 201103L <= __cplusplus +# define YY_NULLPTR nullptr +# else +# define YY_NULLPTR 0 +# endif +# else +# define YY_NULLPTR ((void*)0) +# endif +# endif + +#line 10 "sqlite3_parser.yy" +namespace sqlb { namespace parser { +#line 59 "sqlite3_location.h" + + /// A point in a source file. + class position + { + public: + /// Type for line and column numbers. + typedef int counter_type; + + /// Construct a position. + explicit position (std::string* f = YY_NULLPTR, + counter_type l = 1, + counter_type c = 1) + : filename (f) + , line (l) + , column (c) + {} + + + /// Initialization. + void initialize (std::string* fn = YY_NULLPTR, + counter_type l = 1, + counter_type c = 1) + { + filename = fn; + line = l; + column = c; + } + + /** \name Line and Column related manipulators + ** \{ */ + /// (line related) Advance to the COUNT next lines. + void lines (counter_type count = 1) + { + if (count) + { + column = 1; + line = add_ (line, count, 1); + } + } + + /// (column related) Advance to the COUNT next columns. + void columns (counter_type count = 1) + { + column = add_ (column, count, 1); + } + /** \} */ + + /// File name to which this position refers. + std::string* filename; + /// Current line number. + counter_type line; + /// Current column number. + counter_type column; + + private: + /// Compute max (min, lhs+rhs). + static counter_type add_ (counter_type lhs, counter_type rhs, counter_type min) + { + return lhs + rhs < min ? min : lhs + rhs; + } + }; + + /// Add \a width columns, in place. + inline position& + operator+= (position& res, position::counter_type width) + { + res.columns (width); + return res; + } + + /// Add \a width columns. + inline position + operator+ (position res, position::counter_type width) + { + return res += width; + } + + /// Subtract \a width columns, in place. + inline position& + operator-= (position& res, position::counter_type width) + { + return res += -width; + } + + /// Subtract \a width columns. + inline position + operator- (position res, position::counter_type width) + { + return res -= width; + } + + /// Compare two position objects. + inline bool + operator== (const position& pos1, const position& pos2) + { + return (pos1.line == pos2.line + && pos1.column == pos2.column + && (pos1.filename == pos2.filename + || (pos1.filename && pos2.filename + && *pos1.filename == *pos2.filename))); + } + + /// Compare two position objects. + inline bool + operator!= (const position& pos1, const position& pos2) + { + return !(pos1 == pos2); + } + + /** \brief Intercept output stream redirection. + ** \param ostr the destination output stream + ** \param pos a reference to the position to redirect + */ + template + std::basic_ostream& + operator<< (std::basic_ostream& ostr, const position& pos) + { + if (pos.filename) + ostr << *pos.filename << ':'; + return ostr << pos.line << '.' << pos.column; + } + + /// Two points in a source file. + class location + { + public: + /// Type for line and column numbers. + typedef position::counter_type counter_type; + + /// Construct a location from \a b to \a e. + location (const position& b, const position& e) + : begin (b) + , end (e) + {} + + /// Construct a 0-width location in \a p. + explicit location (const position& p = position ()) + : begin (p) + , end (p) + {} + + /// Construct a 0-width location in \a f, \a l, \a c. + explicit location (std::string* f, + counter_type l = 1, + counter_type c = 1) + : begin (f, l, c) + , end (f, l, c) + {} + + + /// Initialization. + void initialize (std::string* f = YY_NULLPTR, + counter_type l = 1, + counter_type c = 1) + { + begin.initialize (f, l, c); + end = begin; + } + + /** \name Line and Column related manipulators + ** \{ */ + public: + /// Reset initial location to final location. + void step () + { + begin = end; + } + + /// Extend the current location to the COUNT next columns. + void columns (counter_type count = 1) + { + end += count; + } + + /// Extend the current location to the COUNT next lines. + void lines (counter_type count = 1) + { + end.lines (count); + } + /** \} */ + + + public: + /// Beginning of the located region. + position begin; + /// End of the located region. + position end; + }; + + /// Join two locations, in place. + inline location& + operator+= (location& res, const location& end) + { + res.end = end.end; + return res; + } + + /// Join two locations. + inline location + operator+ (location res, const location& end) + { + return res += end; + } + + /// Add \a width columns to the end position, in place. + inline location& + operator+= (location& res, location::counter_type width) + { + res.columns (width); + return res; + } + + /// Add \a width columns to the end position. + inline location + operator+ (location res, location::counter_type width) + { + return res += width; + } + + /// Subtract \a width columns to the end position, in place. + inline location& + operator-= (location& res, location::counter_type width) + { + return res += -width; + } + + /// Subtract \a width columns to the end position. + inline location + operator- (location res, location::counter_type width) + { + return res -= width; + } + + /// Compare two location objects. + inline bool + operator== (const location& loc1, const location& loc2) + { + return loc1.begin == loc2.begin && loc1.end == loc2.end; + } + + /// Compare two location objects. + inline bool + operator!= (const location& loc1, const location& loc2) + { + return !(loc1 == loc2); + } + + /** \brief Intercept output stream redirection. + ** \param ostr the destination output stream + ** \param loc a reference to the location to redirect + ** + ** Avoid duplicate information. + */ + template + std::basic_ostream& + operator<< (std::basic_ostream& ostr, const location& loc) + { + location::counter_type end_col + = 0 < loc.end.column ? loc.end.column - 1 : 0; + ostr << loc.begin; + if (loc.end.filename + && (!loc.begin.filename + || *loc.begin.filename != *loc.end.filename)) + ostr << '-' << loc.end.filename << ':' << loc.end.line << '.' << end_col; + else if (loc.begin.line < loc.end.line) + ostr << '-' << loc.end.line << '.' << end_col; + else if (loc.begin.column < end_col) + ostr << '-' << end_col; + return ostr; + } + +#line 10 "sqlite3_parser.yy" +} } // sqlb::parser +#line 333 "sqlite3_location.h" + +#endif // !YY_YY_SQLITE3_LOCATION_H_INCLUDED diff --git a/src/SqliteDBProcess/src/sql/parser/sqlite3_parser.cpp b/src/SqliteDBProcess/src/sql/parser/sqlite3_parser.cpp new file mode 100644 index 0000000..f6d1328 --- /dev/null +++ b/src/SqliteDBProcess/src/sql/parser/sqlite3_parser.cpp @@ -0,0 +1,4726 @@ +// A Bison parser, made by GNU Bison 3.5.1. + +// Skeleton implementation for Bison LALR(1) parsers in C++ + +// Copyright (C) 2002-2015, 2018-2020 Free Software Foundation, Inc. + +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +// As a special exception, you may create a larger work that contains +// part or all of the Bison parser skeleton and distribute that work +// under terms of your choice, so long as that work isn't itself a +// parser generator using the skeleton or a modified version thereof +// as a parser skeleton. Alternatively, if you modify or redistribute +// the parser skeleton itself, you may (at your option) remove this +// special exception, which will cause the skeleton and the resulting +// Bison output files to be licensed under the GNU General Public +// License without this special exception. + +// This special exception was added by the Free Software Foundation in +// version 2.2 of Bison. + +// Undocumented macros, especially those whose name start with YY_, +// are private implementation details. Do not rely on them. + + + + + +#include "sqlite3_parser.hpp" + + +// Unqualified %code blocks. +#line 88 "sqlite3_parser.yy" + + #include "ParserDriver.h" + + static std::string unquote_text(std::string str, char quote_char) + { + if(str.front() != quote_char || str.back() != quote_char) + return str; + + str = str.substr(1, str.size()-2); + + std::string quote(2, quote_char); + + size_t pos = 0; + while((pos = str.find(quote, pos)) != std::string::npos) + { + str.erase(pos, 1); + pos += 1; // Don't remove the other quote char too + } + return str; + } + +#line 67 "sqlite3_parser.cpp" + + +#ifndef YY_ +# if defined YYENABLE_NLS && YYENABLE_NLS +# if ENABLE_NLS +# include // FIXME: INFRINGES ON USER NAME SPACE. +# define YY_(msgid) dgettext ("bison-runtime", msgid) +# endif +# endif +# ifndef YY_ +# define YY_(msgid) msgid +# endif +#endif + +// Whether we are compiled with exception support. +#ifndef YY_EXCEPTIONS +# if defined __GNUC__ && !defined __EXCEPTIONS +# define YY_EXCEPTIONS 0 +# else +# define YY_EXCEPTIONS 1 +# endif +#endif + +#define YYRHSLOC(Rhs, K) ((Rhs)[K].location) +/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. + If N is 0, then set CURRENT to the empty location which ends + the previous symbol: RHS[0] (always defined). */ + +# ifndef YYLLOC_DEFAULT +# define YYLLOC_DEFAULT(Current, Rhs, N) \ + do \ + if (N) \ + { \ + (Current).begin = YYRHSLOC (Rhs, 1).begin; \ + (Current).end = YYRHSLOC (Rhs, N).end; \ + } \ + else \ + { \ + (Current).begin = (Current).end = YYRHSLOC (Rhs, 0).end; \ + } \ + while (false) +# endif + + +// Enable debugging if requested. +#if YYDEBUG + +// A pseudo ostream that takes yydebug_ into account. +# define YYCDEBUG if (yydebug_) (*yycdebug_) + +# define YY_SYMBOL_PRINT(Title, Symbol) \ + do { \ + if (yydebug_) \ + { \ + *yycdebug_ << Title << ' '; \ + yy_print_ (*yycdebug_, Symbol); \ + *yycdebug_ << '\n'; \ + } \ + } while (false) + +# define YY_REDUCE_PRINT(Rule) \ + do { \ + if (yydebug_) \ + yy_reduce_print_ (Rule); \ + } while (false) + +# define YY_STACK_PRINT() \ + do { \ + if (yydebug_) \ + yystack_print_ (); \ + } while (false) + +#else // !YYDEBUG + +# define YYCDEBUG if (false) std::cerr +# define YY_SYMBOL_PRINT(Title, Symbol) YYUSE (Symbol) +# define YY_REDUCE_PRINT(Rule) static_cast (0) +# define YY_STACK_PRINT() static_cast (0) + +#endif // !YYDEBUG + +#define yyerrok (yyerrstatus_ = 0) +#define yyclearin (yyla.clear ()) + +#define YYACCEPT goto yyacceptlab +#define YYABORT goto yyabortlab +#define YYERROR goto yyerrorlab +#define YYRECOVERING() (!!yyerrstatus_) + +#line 10 "sqlite3_parser.yy" +namespace sqlb { namespace parser { +#line 159 "sqlite3_parser.cpp" + + + /* Return YYSTR after stripping away unnecessary quotes and + backslashes, so that it's suitable for yyerror. The heuristic is + that double-quoting is unnecessary unless the string contains an + apostrophe, a comma, or backslash (other than backslash-backslash). + YYSTR is taken from yytname. */ + std::string + parser::yytnamerr_ (const char *yystr) + { + if (*yystr == '"') + { + std::string yyr; + char const *yyp = yystr; + + for (;;) + switch (*++yyp) + { + case '\'': + case ',': + goto do_not_strip_quotes; + + case '\\': + if (*++yyp != '\\') + goto do_not_strip_quotes; + else + goto append; + + append: + default: + yyr += *yyp; + break; + + case '"': + return yyr; + } + do_not_strip_quotes: ; + } + + return yystr; + } + + + /// Build a parser object. + parser::parser (yyscan_t yyscanner_yyarg, ParserDriver& drv_yyarg) +#if YYDEBUG + : yydebug_ (false), + yycdebug_ (&std::cerr), +#else + : +#endif + yyscanner (yyscanner_yyarg), + drv (drv_yyarg) + {} + + parser::~parser () + {} + + parser::syntax_error::~syntax_error () YY_NOEXCEPT YY_NOTHROW + {} + + /*---------------. + | Symbol types. | + `---------------*/ + + + + // by_state. + parser::by_state::by_state () YY_NOEXCEPT + : state (empty_state) + {} + + parser::by_state::by_state (const by_state& that) YY_NOEXCEPT + : state (that.state) + {} + + void + parser::by_state::clear () YY_NOEXCEPT + { + state = empty_state; + } + + void + parser::by_state::move (by_state& that) + { + state = that.state; + that.clear (); + } + + parser::by_state::by_state (state_type s) YY_NOEXCEPT + : state (s) + {} + + parser::symbol_number_type + parser::by_state::type_get () const YY_NOEXCEPT + { + if (state == empty_state) + return empty_symbol; + else + return yystos_[+state]; + } + + parser::stack_symbol_type::stack_symbol_type () + {} + + parser::stack_symbol_type::stack_symbol_type (YY_RVREF (stack_symbol_type) that) + : super_type (YY_MOVE (that.state), YY_MOVE (that.location)) + { + switch (that.type_get ()) + { + case 158: // columnconstraint + value.YY_MOVE_OR_COPY< ColumnConstraintInfo > (YY_MOVE (that.value)); + break; + + case 159: // columnconstraint_list + value.YY_MOVE_OR_COPY< ColumnConstraintInfoVector > (YY_MOVE (that.value)); + break; + + case 160: // columndef + value.YY_MOVE_OR_COPY< ColumndefData > (YY_MOVE (that.value)); + break; + + case 142: // optional_if_not_exists + case 144: // optional_unique + case 152: // optional_temporary + case 153: // optional_withoutrowid + case 157: // optional_always_generated + value.YY_MOVE_OR_COPY< bool > (YY_MOVE (that.value)); + break; + + case 168: // tableconstraint + value.YY_MOVE_OR_COPY< sqlb::ConstraintPtr > (YY_MOVE (that.value)); + break; + + case 169: // tableconstraint_list + case 170: // optional_tableconstraint_list + value.YY_MOVE_OR_COPY< sqlb::ConstraintSet > (YY_MOVE (that.value)); + break; + + case 149: // createindex_stmt + value.YY_MOVE_OR_COPY< sqlb::IndexPtr > (YY_MOVE (that.value)); + break; + + case 147: // indexed_column + value.YY_MOVE_OR_COPY< sqlb::IndexedColumn > (YY_MOVE (that.value)); + break; + + case 148: // indexed_column_list + value.YY_MOVE_OR_COPY< sqlb::IndexedColumnVector > (YY_MOVE (that.value)); + break; + + case 163: // columnid_list + case 164: // optional_columnid_with_paren_list + value.YY_MOVE_OR_COPY< sqlb::StringVector > (YY_MOVE (that.value)); + break; + + case 151: // createvirtualtable_stmt + case 171: // createtable_stmt + value.YY_MOVE_OR_COPY< sqlb::TablePtr > (YY_MOVE (that.value)); + break; + + case 27: // "ABORT" + case 28: // "ACTION" + case 29: // "ALWAYS" + case 30: // "AND" + case 31: // "AND BETWEEN" + case 32: // "AS" + case 33: // "ASC" + case 34: // "AUTOINCREMENT" + case 35: // "BETWEEN" + case 36: // "CASCADE" + case 37: // "CASE" + case 38: // "CAST" + case 39: // "CHECK" + case 40: // "COLLATE" + case 41: // "CONFLICT" + case 42: // "CONSTRAINT" + case 43: // "CREATE" + case 44: // "CURRENT_DATE" + case 45: // "CURRENT_TIME" + case 46: // "CURRENT_TIMESTAMP" + case 47: // "DEFAULT" + case 48: // "DEFERRABLE" + case 49: // "DEFERRED" + case 50: // "DELETE" + case 51: // "DESC" + case 52: // "DISTINCT" + case 53: // "ELSE" + case 54: // "END" + case 55: // "ESCAPE" + case 56: // "EXISTS" + case 57: // "FAIL" + case 58: // "FALSE" + case 59: // "FILTER" + case 60: // "FOLLOWING" + case 61: // "FOREIGN" + case 62: // "GENERATED" + case 63: // "GLOB" + case 64: // "IF" + case 65: // "IGNORE" + case 66: // "IMMEDIATE" + case 67: // "IN" + case 68: // "INDEX" + case 69: // "INITIALLY" + case 70: // "INSERT" + case 71: // "IS" + case 72: // "ISNULL" + case 73: // "KEY" + case 74: // "LIKE" + case 75: // "MATCH" + case 76: // "NO" + case 77: // "NOT" + case 78: // "NOTNULL" + case 79: // "NULL" + case 80: // "ON" + case 81: // "OR" + case 82: // "OVER" + case 83: // "PARTITION" + case 84: // "PRECEDING" + case 85: // "PRIMARY" + case 86: // "RAISE" + case 87: // "RANGE" + case 88: // "REFERENCES" + case 89: // "REGEXP" + case 90: // "REPLACE" + case 91: // "RESTRICT" + case 92: // "ROLLBACK" + case 93: // "ROWID" + case 94: // "ROWS" + case 95: // "SELECT" + case 96: // "SET" + case 97: // "STORED" + case 98: // "TABLE" + case 99: // "TEMP" + case 100: // "TEMPORARY" + case 101: // "THEN" + case 102: // "TRUE" + case 103: // "UNBOUNDED" + case 104: // "UNIQUE" + case 105: // "UPDATE" + case 106: // "USING" + case 107: // "VIRTUAL" + case 108: // "WHEN" + case 109: // "WHERE" + case 110: // "WITHOUT" + case 111: // "identifier" + case 112: // "numeric" + case 113: // "string literal" + case 114: // "quoted literal" + case 115: // "blob literal" + case 116: // "bind parameter" + case 120: // literalvalue + case 121: // id + case 122: // allowed_keywords_as_identifier + case 123: // tableid + case 124: // columnid + case 125: // signednumber + case 126: // signednumber_or_numeric + case 127: // typename_namelist + case 128: // type_name + case 129: // unary_expr + case 130: // binary_expr + case 131: // like_expr + case 132: // exprlist_expr + case 133: // function_expr + case 134: // isnull_expr + case 135: // between_expr + case 136: // in_expr + case 137: // whenthenlist_expr + case 138: // case_expr + case 139: // raise_expr + case 140: // expr + case 141: // select_stmt + case 143: // optional_sort_order + case 145: // optional_where + case 146: // tableid_with_uninteresting_schema + case 150: // optional_exprlist_with_paren + case 154: // optional_conflictclause + case 155: // optional_typename + case 156: // optional_storage_identifier + case 162: // optional_constraintname + case 165: // fk_clause_part + case 166: // fk_clause_part_list + case 167: // optional_fk_clause + value.YY_MOVE_OR_COPY< std::string > (YY_MOVE (that.value)); + break; + + case 161: // columndef_list + value.YY_MOVE_OR_COPY< std::vector > (YY_MOVE (that.value)); + break; + + default: + break; + } + +#if 201103L <= YY_CPLUSPLUS + // that is emptied. + that.state = empty_state; +#endif + } + + parser::stack_symbol_type::stack_symbol_type (state_type s, YY_MOVE_REF (symbol_type) that) + : super_type (s, YY_MOVE (that.location)) + { + switch (that.type_get ()) + { + case 158: // columnconstraint + value.move< ColumnConstraintInfo > (YY_MOVE (that.value)); + break; + + case 159: // columnconstraint_list + value.move< ColumnConstraintInfoVector > (YY_MOVE (that.value)); + break; + + case 160: // columndef + value.move< ColumndefData > (YY_MOVE (that.value)); + break; + + case 142: // optional_if_not_exists + case 144: // optional_unique + case 152: // optional_temporary + case 153: // optional_withoutrowid + case 157: // optional_always_generated + value.move< bool > (YY_MOVE (that.value)); + break; + + case 168: // tableconstraint + value.move< sqlb::ConstraintPtr > (YY_MOVE (that.value)); + break; + + case 169: // tableconstraint_list + case 170: // optional_tableconstraint_list + value.move< sqlb::ConstraintSet > (YY_MOVE (that.value)); + break; + + case 149: // createindex_stmt + value.move< sqlb::IndexPtr > (YY_MOVE (that.value)); + break; + + case 147: // indexed_column + value.move< sqlb::IndexedColumn > (YY_MOVE (that.value)); + break; + + case 148: // indexed_column_list + value.move< sqlb::IndexedColumnVector > (YY_MOVE (that.value)); + break; + + case 163: // columnid_list + case 164: // optional_columnid_with_paren_list + value.move< sqlb::StringVector > (YY_MOVE (that.value)); + break; + + case 151: // createvirtualtable_stmt + case 171: // createtable_stmt + value.move< sqlb::TablePtr > (YY_MOVE (that.value)); + break; + + case 27: // "ABORT" + case 28: // "ACTION" + case 29: // "ALWAYS" + case 30: // "AND" + case 31: // "AND BETWEEN" + case 32: // "AS" + case 33: // "ASC" + case 34: // "AUTOINCREMENT" + case 35: // "BETWEEN" + case 36: // "CASCADE" + case 37: // "CASE" + case 38: // "CAST" + case 39: // "CHECK" + case 40: // "COLLATE" + case 41: // "CONFLICT" + case 42: // "CONSTRAINT" + case 43: // "CREATE" + case 44: // "CURRENT_DATE" + case 45: // "CURRENT_TIME" + case 46: // "CURRENT_TIMESTAMP" + case 47: // "DEFAULT" + case 48: // "DEFERRABLE" + case 49: // "DEFERRED" + case 50: // "DELETE" + case 51: // "DESC" + case 52: // "DISTINCT" + case 53: // "ELSE" + case 54: // "END" + case 55: // "ESCAPE" + case 56: // "EXISTS" + case 57: // "FAIL" + case 58: // "FALSE" + case 59: // "FILTER" + case 60: // "FOLLOWING" + case 61: // "FOREIGN" + case 62: // "GENERATED" + case 63: // "GLOB" + case 64: // "IF" + case 65: // "IGNORE" + case 66: // "IMMEDIATE" + case 67: // "IN" + case 68: // "INDEX" + case 69: // "INITIALLY" + case 70: // "INSERT" + case 71: // "IS" + case 72: // "ISNULL" + case 73: // "KEY" + case 74: // "LIKE" + case 75: // "MATCH" + case 76: // "NO" + case 77: // "NOT" + case 78: // "NOTNULL" + case 79: // "NULL" + case 80: // "ON" + case 81: // "OR" + case 82: // "OVER" + case 83: // "PARTITION" + case 84: // "PRECEDING" + case 85: // "PRIMARY" + case 86: // "RAISE" + case 87: // "RANGE" + case 88: // "REFERENCES" + case 89: // "REGEXP" + case 90: // "REPLACE" + case 91: // "RESTRICT" + case 92: // "ROLLBACK" + case 93: // "ROWID" + case 94: // "ROWS" + case 95: // "SELECT" + case 96: // "SET" + case 97: // "STORED" + case 98: // "TABLE" + case 99: // "TEMP" + case 100: // "TEMPORARY" + case 101: // "THEN" + case 102: // "TRUE" + case 103: // "UNBOUNDED" + case 104: // "UNIQUE" + case 105: // "UPDATE" + case 106: // "USING" + case 107: // "VIRTUAL" + case 108: // "WHEN" + case 109: // "WHERE" + case 110: // "WITHOUT" + case 111: // "identifier" + case 112: // "numeric" + case 113: // "string literal" + case 114: // "quoted literal" + case 115: // "blob literal" + case 116: // "bind parameter" + case 120: // literalvalue + case 121: // id + case 122: // allowed_keywords_as_identifier + case 123: // tableid + case 124: // columnid + case 125: // signednumber + case 126: // signednumber_or_numeric + case 127: // typename_namelist + case 128: // type_name + case 129: // unary_expr + case 130: // binary_expr + case 131: // like_expr + case 132: // exprlist_expr + case 133: // function_expr + case 134: // isnull_expr + case 135: // between_expr + case 136: // in_expr + case 137: // whenthenlist_expr + case 138: // case_expr + case 139: // raise_expr + case 140: // expr + case 141: // select_stmt + case 143: // optional_sort_order + case 145: // optional_where + case 146: // tableid_with_uninteresting_schema + case 150: // optional_exprlist_with_paren + case 154: // optional_conflictclause + case 155: // optional_typename + case 156: // optional_storage_identifier + case 162: // optional_constraintname + case 165: // fk_clause_part + case 166: // fk_clause_part_list + case 167: // optional_fk_clause + value.move< std::string > (YY_MOVE (that.value)); + break; + + case 161: // columndef_list + value.move< std::vector > (YY_MOVE (that.value)); + break; + + default: + break; + } + + // that is emptied. + that.type = empty_symbol; + } + +#if YY_CPLUSPLUS < 201103L + parser::stack_symbol_type& + parser::stack_symbol_type::operator= (const stack_symbol_type& that) + { + state = that.state; + switch (that.type_get ()) + { + case 158: // columnconstraint + value.copy< ColumnConstraintInfo > (that.value); + break; + + case 159: // columnconstraint_list + value.copy< ColumnConstraintInfoVector > (that.value); + break; + + case 160: // columndef + value.copy< ColumndefData > (that.value); + break; + + case 142: // optional_if_not_exists + case 144: // optional_unique + case 152: // optional_temporary + case 153: // optional_withoutrowid + case 157: // optional_always_generated + value.copy< bool > (that.value); + break; + + case 168: // tableconstraint + value.copy< sqlb::ConstraintPtr > (that.value); + break; + + case 169: // tableconstraint_list + case 170: // optional_tableconstraint_list + value.copy< sqlb::ConstraintSet > (that.value); + break; + + case 149: // createindex_stmt + value.copy< sqlb::IndexPtr > (that.value); + break; + + case 147: // indexed_column + value.copy< sqlb::IndexedColumn > (that.value); + break; + + case 148: // indexed_column_list + value.copy< sqlb::IndexedColumnVector > (that.value); + break; + + case 163: // columnid_list + case 164: // optional_columnid_with_paren_list + value.copy< sqlb::StringVector > (that.value); + break; + + case 151: // createvirtualtable_stmt + case 171: // createtable_stmt + value.copy< sqlb::TablePtr > (that.value); + break; + + case 27: // "ABORT" + case 28: // "ACTION" + case 29: // "ALWAYS" + case 30: // "AND" + case 31: // "AND BETWEEN" + case 32: // "AS" + case 33: // "ASC" + case 34: // "AUTOINCREMENT" + case 35: // "BETWEEN" + case 36: // "CASCADE" + case 37: // "CASE" + case 38: // "CAST" + case 39: // "CHECK" + case 40: // "COLLATE" + case 41: // "CONFLICT" + case 42: // "CONSTRAINT" + case 43: // "CREATE" + case 44: // "CURRENT_DATE" + case 45: // "CURRENT_TIME" + case 46: // "CURRENT_TIMESTAMP" + case 47: // "DEFAULT" + case 48: // "DEFERRABLE" + case 49: // "DEFERRED" + case 50: // "DELETE" + case 51: // "DESC" + case 52: // "DISTINCT" + case 53: // "ELSE" + case 54: // "END" + case 55: // "ESCAPE" + case 56: // "EXISTS" + case 57: // "FAIL" + case 58: // "FALSE" + case 59: // "FILTER" + case 60: // "FOLLOWING" + case 61: // "FOREIGN" + case 62: // "GENERATED" + case 63: // "GLOB" + case 64: // "IF" + case 65: // "IGNORE" + case 66: // "IMMEDIATE" + case 67: // "IN" + case 68: // "INDEX" + case 69: // "INITIALLY" + case 70: // "INSERT" + case 71: // "IS" + case 72: // "ISNULL" + case 73: // "KEY" + case 74: // "LIKE" + case 75: // "MATCH" + case 76: // "NO" + case 77: // "NOT" + case 78: // "NOTNULL" + case 79: // "NULL" + case 80: // "ON" + case 81: // "OR" + case 82: // "OVER" + case 83: // "PARTITION" + case 84: // "PRECEDING" + case 85: // "PRIMARY" + case 86: // "RAISE" + case 87: // "RANGE" + case 88: // "REFERENCES" + case 89: // "REGEXP" + case 90: // "REPLACE" + case 91: // "RESTRICT" + case 92: // "ROLLBACK" + case 93: // "ROWID" + case 94: // "ROWS" + case 95: // "SELECT" + case 96: // "SET" + case 97: // "STORED" + case 98: // "TABLE" + case 99: // "TEMP" + case 100: // "TEMPORARY" + case 101: // "THEN" + case 102: // "TRUE" + case 103: // "UNBOUNDED" + case 104: // "UNIQUE" + case 105: // "UPDATE" + case 106: // "USING" + case 107: // "VIRTUAL" + case 108: // "WHEN" + case 109: // "WHERE" + case 110: // "WITHOUT" + case 111: // "identifier" + case 112: // "numeric" + case 113: // "string literal" + case 114: // "quoted literal" + case 115: // "blob literal" + case 116: // "bind parameter" + case 120: // literalvalue + case 121: // id + case 122: // allowed_keywords_as_identifier + case 123: // tableid + case 124: // columnid + case 125: // signednumber + case 126: // signednumber_or_numeric + case 127: // typename_namelist + case 128: // type_name + case 129: // unary_expr + case 130: // binary_expr + case 131: // like_expr + case 132: // exprlist_expr + case 133: // function_expr + case 134: // isnull_expr + case 135: // between_expr + case 136: // in_expr + case 137: // whenthenlist_expr + case 138: // case_expr + case 139: // raise_expr + case 140: // expr + case 141: // select_stmt + case 143: // optional_sort_order + case 145: // optional_where + case 146: // tableid_with_uninteresting_schema + case 150: // optional_exprlist_with_paren + case 154: // optional_conflictclause + case 155: // optional_typename + case 156: // optional_storage_identifier + case 162: // optional_constraintname + case 165: // fk_clause_part + case 166: // fk_clause_part_list + case 167: // optional_fk_clause + value.copy< std::string > (that.value); + break; + + case 161: // columndef_list + value.copy< std::vector > (that.value); + break; + + default: + break; + } + + location = that.location; + return *this; + } + + parser::stack_symbol_type& + parser::stack_symbol_type::operator= (stack_symbol_type& that) + { + state = that.state; + switch (that.type_get ()) + { + case 158: // columnconstraint + value.move< ColumnConstraintInfo > (that.value); + break; + + case 159: // columnconstraint_list + value.move< ColumnConstraintInfoVector > (that.value); + break; + + case 160: // columndef + value.move< ColumndefData > (that.value); + break; + + case 142: // optional_if_not_exists + case 144: // optional_unique + case 152: // optional_temporary + case 153: // optional_withoutrowid + case 157: // optional_always_generated + value.move< bool > (that.value); + break; + + case 168: // tableconstraint + value.move< sqlb::ConstraintPtr > (that.value); + break; + + case 169: // tableconstraint_list + case 170: // optional_tableconstraint_list + value.move< sqlb::ConstraintSet > (that.value); + break; + + case 149: // createindex_stmt + value.move< sqlb::IndexPtr > (that.value); + break; + + case 147: // indexed_column + value.move< sqlb::IndexedColumn > (that.value); + break; + + case 148: // indexed_column_list + value.move< sqlb::IndexedColumnVector > (that.value); + break; + + case 163: // columnid_list + case 164: // optional_columnid_with_paren_list + value.move< sqlb::StringVector > (that.value); + break; + + case 151: // createvirtualtable_stmt + case 171: // createtable_stmt + value.move< sqlb::TablePtr > (that.value); + break; + + case 27: // "ABORT" + case 28: // "ACTION" + case 29: // "ALWAYS" + case 30: // "AND" + case 31: // "AND BETWEEN" + case 32: // "AS" + case 33: // "ASC" + case 34: // "AUTOINCREMENT" + case 35: // "BETWEEN" + case 36: // "CASCADE" + case 37: // "CASE" + case 38: // "CAST" + case 39: // "CHECK" + case 40: // "COLLATE" + case 41: // "CONFLICT" + case 42: // "CONSTRAINT" + case 43: // "CREATE" + case 44: // "CURRENT_DATE" + case 45: // "CURRENT_TIME" + case 46: // "CURRENT_TIMESTAMP" + case 47: // "DEFAULT" + case 48: // "DEFERRABLE" + case 49: // "DEFERRED" + case 50: // "DELETE" + case 51: // "DESC" + case 52: // "DISTINCT" + case 53: // "ELSE" + case 54: // "END" + case 55: // "ESCAPE" + case 56: // "EXISTS" + case 57: // "FAIL" + case 58: // "FALSE" + case 59: // "FILTER" + case 60: // "FOLLOWING" + case 61: // "FOREIGN" + case 62: // "GENERATED" + case 63: // "GLOB" + case 64: // "IF" + case 65: // "IGNORE" + case 66: // "IMMEDIATE" + case 67: // "IN" + case 68: // "INDEX" + case 69: // "INITIALLY" + case 70: // "INSERT" + case 71: // "IS" + case 72: // "ISNULL" + case 73: // "KEY" + case 74: // "LIKE" + case 75: // "MATCH" + case 76: // "NO" + case 77: // "NOT" + case 78: // "NOTNULL" + case 79: // "NULL" + case 80: // "ON" + case 81: // "OR" + case 82: // "OVER" + case 83: // "PARTITION" + case 84: // "PRECEDING" + case 85: // "PRIMARY" + case 86: // "RAISE" + case 87: // "RANGE" + case 88: // "REFERENCES" + case 89: // "REGEXP" + case 90: // "REPLACE" + case 91: // "RESTRICT" + case 92: // "ROLLBACK" + case 93: // "ROWID" + case 94: // "ROWS" + case 95: // "SELECT" + case 96: // "SET" + case 97: // "STORED" + case 98: // "TABLE" + case 99: // "TEMP" + case 100: // "TEMPORARY" + case 101: // "THEN" + case 102: // "TRUE" + case 103: // "UNBOUNDED" + case 104: // "UNIQUE" + case 105: // "UPDATE" + case 106: // "USING" + case 107: // "VIRTUAL" + case 108: // "WHEN" + case 109: // "WHERE" + case 110: // "WITHOUT" + case 111: // "identifier" + case 112: // "numeric" + case 113: // "string literal" + case 114: // "quoted literal" + case 115: // "blob literal" + case 116: // "bind parameter" + case 120: // literalvalue + case 121: // id + case 122: // allowed_keywords_as_identifier + case 123: // tableid + case 124: // columnid + case 125: // signednumber + case 126: // signednumber_or_numeric + case 127: // typename_namelist + case 128: // type_name + case 129: // unary_expr + case 130: // binary_expr + case 131: // like_expr + case 132: // exprlist_expr + case 133: // function_expr + case 134: // isnull_expr + case 135: // between_expr + case 136: // in_expr + case 137: // whenthenlist_expr + case 138: // case_expr + case 139: // raise_expr + case 140: // expr + case 141: // select_stmt + case 143: // optional_sort_order + case 145: // optional_where + case 146: // tableid_with_uninteresting_schema + case 150: // optional_exprlist_with_paren + case 154: // optional_conflictclause + case 155: // optional_typename + case 156: // optional_storage_identifier + case 162: // optional_constraintname + case 165: // fk_clause_part + case 166: // fk_clause_part_list + case 167: // optional_fk_clause + value.move< std::string > (that.value); + break; + + case 161: // columndef_list + value.move< std::vector > (that.value); + break; + + default: + break; + } + + location = that.location; + // that is emptied. + that.state = empty_state; + return *this; + } +#endif + + template + void + parser::yy_destroy_ (const char* yymsg, basic_symbol& yysym) const + { + if (yymsg) + YY_SYMBOL_PRINT (yymsg, yysym); + } + +#if YYDEBUG + template + void + parser::yy_print_ (std::ostream& yyo, + const basic_symbol& yysym) const + { + std::ostream& yyoutput = yyo; + YYUSE (yyoutput); + symbol_number_type yytype = yysym.type_get (); +#if defined __GNUC__ && ! defined __clang__ && ! defined __ICC && __GNUC__ * 100 + __GNUC_MINOR__ <= 408 + // Avoid a (spurious) G++ 4.8 warning about "array subscript is + // below array bounds". + if (yysym.empty ()) + std::abort (); +#endif + yyo << (yytype < yyntokens_ ? "token" : "nterm") + << ' ' << yytname_[yytype] << " (" + << yysym.location << ": "; + YYUSE (yytype); + yyo << ')'; + } +#endif + + void + parser::yypush_ (const char* m, YY_MOVE_REF (stack_symbol_type) sym) + { + if (m) + YY_SYMBOL_PRINT (m, sym); + yystack_.push (YY_MOVE (sym)); + } + + void + parser::yypush_ (const char* m, state_type s, YY_MOVE_REF (symbol_type) sym) + { +#if 201103L <= YY_CPLUSPLUS + yypush_ (m, stack_symbol_type (s, std::move (sym))); +#else + stack_symbol_type ss (s, sym); + yypush_ (m, ss); +#endif + } + + void + parser::yypop_ (int n) + { + yystack_.pop (n); + } + +#if YYDEBUG + std::ostream& + parser::debug_stream () const + { + return *yycdebug_; + } + + void + parser::set_debug_stream (std::ostream& o) + { + yycdebug_ = &o; + } + + + parser::debug_level_type + parser::debug_level () const + { + return yydebug_; + } + + void + parser::set_debug_level (debug_level_type l) + { + yydebug_ = l; + } +#endif // YYDEBUG + + parser::state_type + parser::yy_lr_goto_state_ (state_type yystate, int yysym) + { + int yyr = yypgoto_[yysym - yyntokens_] + yystate; + if (0 <= yyr && yyr <= yylast_ && yycheck_[yyr] == yystate) + return yytable_[yyr]; + else + return yydefgoto_[yysym - yyntokens_]; + } + + bool + parser::yy_pact_value_is_default_ (int yyvalue) + { + return yyvalue == yypact_ninf_; + } + + bool + parser::yy_table_value_is_error_ (int yyvalue) + { + return yyvalue == yytable_ninf_; + } + + int + parser::operator() () + { + return parse (); + } + + int + parser::parse () + { + int yyn; + /// Length of the RHS of the rule being reduced. + int yylen = 0; + + // Error handling. + int yynerrs_ = 0; + int yyerrstatus_ = 0; + + /// The lookahead symbol. + symbol_type yyla; + + /// The locations where the error started and ended. + stack_symbol_type yyerror_range[3]; + + /// The return value of parse (). + int yyresult; + +#if YY_EXCEPTIONS + try +#endif // YY_EXCEPTIONS + { + YYCDEBUG << "Starting parse\n"; + + + /* Initialize the stack. The initial state will be set in + yynewstate, since the latter expects the semantical and the + location values to have been already stored, initialize these + stacks with a primary value. */ + yystack_.clear (); + yypush_ (YY_NULLPTR, 0, YY_MOVE (yyla)); + + /*-----------------------------------------------. + | yynewstate -- push a new symbol on the stack. | + `-----------------------------------------------*/ + yynewstate: + YYCDEBUG << "Entering state " << int (yystack_[0].state) << '\n'; + + // Accept? + if (yystack_[0].state == yyfinal_) + YYACCEPT; + + goto yybackup; + + + /*-----------. + | yybackup. | + `-----------*/ + yybackup: + // Try to take a decision without lookahead. + yyn = yypact_[+yystack_[0].state]; + if (yy_pact_value_is_default_ (yyn)) + goto yydefault; + + // Read a lookahead token. + if (yyla.empty ()) + { + YYCDEBUG << "Reading a token: "; +#if YY_EXCEPTIONS + try +#endif // YY_EXCEPTIONS + { + symbol_type yylookahead (yylex (yyscanner, drv)); + yyla.move (yylookahead); + } +#if YY_EXCEPTIONS + catch (const syntax_error& yyexc) + { + YYCDEBUG << "Caught exception: " << yyexc.what() << '\n'; + error (yyexc); + goto yyerrlab1; + } +#endif // YY_EXCEPTIONS + } + YY_SYMBOL_PRINT ("Next token is", yyla); + + /* If the proper action on seeing token YYLA.TYPE is to reduce or + to detect an error, take that action. */ + yyn += yyla.type_get (); + if (yyn < 0 || yylast_ < yyn || yycheck_[yyn] != yyla.type_get ()) + { + goto yydefault; + } + + // Reduce or error. + yyn = yytable_[yyn]; + if (yyn <= 0) + { + if (yy_table_value_is_error_ (yyn)) + goto yyerrlab; + yyn = -yyn; + goto yyreduce; + } + + // Count tokens shifted since error; after three, turn off error status. + if (yyerrstatus_) + --yyerrstatus_; + + // Shift the lookahead token. + yypush_ ("Shifting", state_type (yyn), YY_MOVE (yyla)); + goto yynewstate; + + + /*-----------------------------------------------------------. + | yydefault -- do the default action for the current state. | + `-----------------------------------------------------------*/ + yydefault: + yyn = yydefact_[+yystack_[0].state]; + if (yyn == 0) + goto yyerrlab; + goto yyreduce; + + + /*-----------------------------. + | yyreduce -- do a reduction. | + `-----------------------------*/ + yyreduce: + yylen = yyr2_[yyn]; + { + stack_symbol_type yylhs; + yylhs.state = yy_lr_goto_state_ (yystack_[yylen].state, yyr1_[yyn]); + /* Variants are always initialized to an empty instance of the + correct type. The default '$$ = $1' action is NOT applied + when using variants. */ + switch (yyr1_[yyn]) + { + case 158: // columnconstraint + yylhs.value.emplace< ColumnConstraintInfo > (); + break; + + case 159: // columnconstraint_list + yylhs.value.emplace< ColumnConstraintInfoVector > (); + break; + + case 160: // columndef + yylhs.value.emplace< ColumndefData > (); + break; + + case 142: // optional_if_not_exists + case 144: // optional_unique + case 152: // optional_temporary + case 153: // optional_withoutrowid + case 157: // optional_always_generated + yylhs.value.emplace< bool > (); + break; + + case 168: // tableconstraint + yylhs.value.emplace< sqlb::ConstraintPtr > (); + break; + + case 169: // tableconstraint_list + case 170: // optional_tableconstraint_list + yylhs.value.emplace< sqlb::ConstraintSet > (); + break; + + case 149: // createindex_stmt + yylhs.value.emplace< sqlb::IndexPtr > (); + break; + + case 147: // indexed_column + yylhs.value.emplace< sqlb::IndexedColumn > (); + break; + + case 148: // indexed_column_list + yylhs.value.emplace< sqlb::IndexedColumnVector > (); + break; + + case 163: // columnid_list + case 164: // optional_columnid_with_paren_list + yylhs.value.emplace< sqlb::StringVector > (); + break; + + case 151: // createvirtualtable_stmt + case 171: // createtable_stmt + yylhs.value.emplace< sqlb::TablePtr > (); + break; + + case 27: // "ABORT" + case 28: // "ACTION" + case 29: // "ALWAYS" + case 30: // "AND" + case 31: // "AND BETWEEN" + case 32: // "AS" + case 33: // "ASC" + case 34: // "AUTOINCREMENT" + case 35: // "BETWEEN" + case 36: // "CASCADE" + case 37: // "CASE" + case 38: // "CAST" + case 39: // "CHECK" + case 40: // "COLLATE" + case 41: // "CONFLICT" + case 42: // "CONSTRAINT" + case 43: // "CREATE" + case 44: // "CURRENT_DATE" + case 45: // "CURRENT_TIME" + case 46: // "CURRENT_TIMESTAMP" + case 47: // "DEFAULT" + case 48: // "DEFERRABLE" + case 49: // "DEFERRED" + case 50: // "DELETE" + case 51: // "DESC" + case 52: // "DISTINCT" + case 53: // "ELSE" + case 54: // "END" + case 55: // "ESCAPE" + case 56: // "EXISTS" + case 57: // "FAIL" + case 58: // "FALSE" + case 59: // "FILTER" + case 60: // "FOLLOWING" + case 61: // "FOREIGN" + case 62: // "GENERATED" + case 63: // "GLOB" + case 64: // "IF" + case 65: // "IGNORE" + case 66: // "IMMEDIATE" + case 67: // "IN" + case 68: // "INDEX" + case 69: // "INITIALLY" + case 70: // "INSERT" + case 71: // "IS" + case 72: // "ISNULL" + case 73: // "KEY" + case 74: // "LIKE" + case 75: // "MATCH" + case 76: // "NO" + case 77: // "NOT" + case 78: // "NOTNULL" + case 79: // "NULL" + case 80: // "ON" + case 81: // "OR" + case 82: // "OVER" + case 83: // "PARTITION" + case 84: // "PRECEDING" + case 85: // "PRIMARY" + case 86: // "RAISE" + case 87: // "RANGE" + case 88: // "REFERENCES" + case 89: // "REGEXP" + case 90: // "REPLACE" + case 91: // "RESTRICT" + case 92: // "ROLLBACK" + case 93: // "ROWID" + case 94: // "ROWS" + case 95: // "SELECT" + case 96: // "SET" + case 97: // "STORED" + case 98: // "TABLE" + case 99: // "TEMP" + case 100: // "TEMPORARY" + case 101: // "THEN" + case 102: // "TRUE" + case 103: // "UNBOUNDED" + case 104: // "UNIQUE" + case 105: // "UPDATE" + case 106: // "USING" + case 107: // "VIRTUAL" + case 108: // "WHEN" + case 109: // "WHERE" + case 110: // "WITHOUT" + case 111: // "identifier" + case 112: // "numeric" + case 113: // "string literal" + case 114: // "quoted literal" + case 115: // "blob literal" + case 116: // "bind parameter" + case 120: // literalvalue + case 121: // id + case 122: // allowed_keywords_as_identifier + case 123: // tableid + case 124: // columnid + case 125: // signednumber + case 126: // signednumber_or_numeric + case 127: // typename_namelist + case 128: // type_name + case 129: // unary_expr + case 130: // binary_expr + case 131: // like_expr + case 132: // exprlist_expr + case 133: // function_expr + case 134: // isnull_expr + case 135: // between_expr + case 136: // in_expr + case 137: // whenthenlist_expr + case 138: // case_expr + case 139: // raise_expr + case 140: // expr + case 141: // select_stmt + case 143: // optional_sort_order + case 145: // optional_where + case 146: // tableid_with_uninteresting_schema + case 150: // optional_exprlist_with_paren + case 154: // optional_conflictclause + case 155: // optional_typename + case 156: // optional_storage_identifier + case 162: // optional_constraintname + case 165: // fk_clause_part + case 166: // fk_clause_part_list + case 167: // optional_fk_clause + yylhs.value.emplace< std::string > (); + break; + + case 161: // columndef_list + yylhs.value.emplace< std::vector > (); + break; + + default: + break; + } + + + // Default location. + { + stack_type::slice range (yystack_, yylen); + YYLLOC_DEFAULT (yylhs.location, range, yylen); + yyerror_range[1].location = yylhs.location; + } + + // Perform the reduction. + YY_REDUCE_PRINT (yyn); +#if YY_EXCEPTIONS + try +#endif // YY_EXCEPTIONS + { + switch (yyn) + { + case 4: +#line 314 "sqlite3_parser.yy" + { drv.result = yystack_[0].value.as < sqlb::IndexPtr > (); } +#line 1492 "sqlite3_parser.cpp" + break; + + case 5: +#line 315 "sqlite3_parser.yy" + { drv.result = yystack_[0].value.as < sqlb::TablePtr > (); } +#line 1498 "sqlite3_parser.cpp" + break; + + case 6: +#line 316 "sqlite3_parser.yy" + { drv.result = yystack_[0].value.as < sqlb::TablePtr > (); } +#line 1504 "sqlite3_parser.cpp" + break; + + case 7: +#line 324 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1510 "sqlite3_parser.cpp" + break; + + case 8: +#line 325 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1516 "sqlite3_parser.cpp" + break; + + case 9: +#line 326 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1522 "sqlite3_parser.cpp" + break; + + case 10: +#line 327 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1528 "sqlite3_parser.cpp" + break; + + case 11: +#line 328 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1534 "sqlite3_parser.cpp" + break; + + case 12: +#line 329 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1540 "sqlite3_parser.cpp" + break; + + case 13: +#line 330 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1546 "sqlite3_parser.cpp" + break; + + case 14: +#line 331 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1552 "sqlite3_parser.cpp" + break; + + case 15: +#line 332 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1558 "sqlite3_parser.cpp" + break; + + case 16: +#line 336 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1564 "sqlite3_parser.cpp" + break; + + case 17: +#line 337 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1570 "sqlite3_parser.cpp" + break; + + case 18: +#line 342 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1576 "sqlite3_parser.cpp" + break; + + case 19: +#line 343 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1582 "sqlite3_parser.cpp" + break; + + case 20: +#line 344 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1588 "sqlite3_parser.cpp" + break; + + case 21: +#line 345 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1594 "sqlite3_parser.cpp" + break; + + case 22: +#line 346 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1600 "sqlite3_parser.cpp" + break; + + case 23: +#line 347 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1606 "sqlite3_parser.cpp" + break; + + case 24: +#line 348 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1612 "sqlite3_parser.cpp" + break; + + case 25: +#line 349 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1618 "sqlite3_parser.cpp" + break; + + case 26: +#line 350 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1624 "sqlite3_parser.cpp" + break; + + case 27: +#line 351 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1630 "sqlite3_parser.cpp" + break; + + case 28: +#line 352 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1636 "sqlite3_parser.cpp" + break; + + case 29: +#line 353 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1642 "sqlite3_parser.cpp" + break; + + case 30: +#line 354 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1648 "sqlite3_parser.cpp" + break; + + case 31: +#line 355 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1654 "sqlite3_parser.cpp" + break; + + case 32: +#line 356 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1660 "sqlite3_parser.cpp" + break; + + case 33: +#line 357 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1666 "sqlite3_parser.cpp" + break; + + case 34: +#line 358 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1672 "sqlite3_parser.cpp" + break; + + case 35: +#line 359 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1678 "sqlite3_parser.cpp" + break; + + case 36: +#line 360 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1684 "sqlite3_parser.cpp" + break; + + case 37: +#line 361 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1690 "sqlite3_parser.cpp" + break; + + case 38: +#line 362 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1696 "sqlite3_parser.cpp" + break; + + case 39: +#line 363 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1702 "sqlite3_parser.cpp" + break; + + case 40: +#line 364 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1708 "sqlite3_parser.cpp" + break; + + case 41: +#line 365 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1714 "sqlite3_parser.cpp" + break; + + case 42: +#line 366 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1720 "sqlite3_parser.cpp" + break; + + case 43: +#line 367 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1726 "sqlite3_parser.cpp" + break; + + case 44: +#line 368 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1732 "sqlite3_parser.cpp" + break; + + case 45: +#line 369 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1738 "sqlite3_parser.cpp" + break; + + case 46: +#line 370 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1744 "sqlite3_parser.cpp" + break; + + case 47: +#line 371 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1750 "sqlite3_parser.cpp" + break; + + case 48: +#line 372 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1756 "sqlite3_parser.cpp" + break; + + case 49: +#line 373 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1762 "sqlite3_parser.cpp" + break; + + case 50: +#line 374 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1768 "sqlite3_parser.cpp" + break; + + case 51: +#line 375 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1774 "sqlite3_parser.cpp" + break; + + case 52: +#line 376 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1780 "sqlite3_parser.cpp" + break; + + case 53: +#line 377 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1786 "sqlite3_parser.cpp" + break; + + case 54: +#line 378 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1792 "sqlite3_parser.cpp" + break; + + case 55: +#line 379 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1798 "sqlite3_parser.cpp" + break; + + case 56: +#line 380 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1804 "sqlite3_parser.cpp" + break; + + case 57: +#line 384 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1810 "sqlite3_parser.cpp" + break; + + case 58: +#line 385 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1816 "sqlite3_parser.cpp" + break; + + case 59: +#line 386 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1822 "sqlite3_parser.cpp" + break; + + case 60: +#line 387 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1828 "sqlite3_parser.cpp" + break; + + case 61: +#line 388 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1834 "sqlite3_parser.cpp" + break; + + case 62: +#line 389 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = unquote_text(yystack_[0].value.as < std::string > (), '\''); } +#line 1840 "sqlite3_parser.cpp" + break; + + case 63: +#line 393 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1846 "sqlite3_parser.cpp" + break; + + case 64: +#line 394 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1852 "sqlite3_parser.cpp" + break; + + case 65: +#line 395 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1858 "sqlite3_parser.cpp" + break; + + case 66: +#line 396 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1864 "sqlite3_parser.cpp" + break; + + case 67: +#line 397 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1870 "sqlite3_parser.cpp" + break; + + case 68: +#line 398 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1876 "sqlite3_parser.cpp" + break; + + case 69: +#line 399 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = unquote_text(yystack_[0].value.as < std::string > (), '\''); } +#line 1882 "sqlite3_parser.cpp" + break; + + case 70: +#line 403 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "+" + yystack_[0].value.as < std::string > (); } +#line 1888 "sqlite3_parser.cpp" + break; + + case 71: +#line 404 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "-" + yystack_[0].value.as < std::string > (); } +#line 1894 "sqlite3_parser.cpp" + break; + + case 72: +#line 408 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1900 "sqlite3_parser.cpp" + break; + + case 73: +#line 409 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1906 "sqlite3_parser.cpp" + break; + + case 74: +#line 413 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1912 "sqlite3_parser.cpp" + break; + + case 75: +#line 414 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 1918 "sqlite3_parser.cpp" + break; + + case 76: +#line 418 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 1924 "sqlite3_parser.cpp" + break; + + case 77: +#line 419 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + "(" + yystack_[1].value.as < std::string > () + ")"; } +#line 1930 "sqlite3_parser.cpp" + break; + + case 78: +#line 420 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[5].value.as < std::string > () + "(" + yystack_[3].value.as < std::string > () + ", " + yystack_[1].value.as < std::string > () + ")"; } +#line 1936 "sqlite3_parser.cpp" + break; + + case 79: +#line 424 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "-" + yystack_[0].value.as < std::string > (); } +#line 1942 "sqlite3_parser.cpp" + break; + + case 80: +#line 425 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "+" + yystack_[0].value.as < std::string > (); } +#line 1948 "sqlite3_parser.cpp" + break; + + case 81: +#line 426 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "~" + yystack_[0].value.as < std::string > (); } +#line 1954 "sqlite3_parser.cpp" + break; + + case 82: +#line 427 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "NOT " + yystack_[0].value.as < std::string > (); } +#line 1960 "sqlite3_parser.cpp" + break; + + case 83: +#line 431 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " || " + yystack_[0].value.as < std::string > (); } +#line 1966 "sqlite3_parser.cpp" + break; + + case 84: +#line 432 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " * " + yystack_[0].value.as < std::string > (); } +#line 1972 "sqlite3_parser.cpp" + break; + + case 85: +#line 433 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " / " + yystack_[0].value.as < std::string > (); } +#line 1978 "sqlite3_parser.cpp" + break; + + case 86: +#line 434 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " % " + yystack_[0].value.as < std::string > (); } +#line 1984 "sqlite3_parser.cpp" + break; + + case 87: +#line 435 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " + " + yystack_[0].value.as < std::string > (); } +#line 1990 "sqlite3_parser.cpp" + break; + + case 88: +#line 436 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " - " + yystack_[0].value.as < std::string > (); } +#line 1996 "sqlite3_parser.cpp" + break; + + case 89: +#line 437 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " << " + yystack_[0].value.as < std::string > (); } +#line 2002 "sqlite3_parser.cpp" + break; + + case 90: +#line 438 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " >> " + yystack_[0].value.as < std::string > (); } +#line 2008 "sqlite3_parser.cpp" + break; + + case 91: +#line 439 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " & " + yystack_[0].value.as < std::string > (); } +#line 2014 "sqlite3_parser.cpp" + break; + + case 92: +#line 440 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " | " + yystack_[0].value.as < std::string > (); } +#line 2020 "sqlite3_parser.cpp" + break; + + case 93: +#line 441 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " < " + yystack_[0].value.as < std::string > (); } +#line 2026 "sqlite3_parser.cpp" + break; + + case 94: +#line 442 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " <= " + yystack_[0].value.as < std::string > (); } +#line 2032 "sqlite3_parser.cpp" + break; + + case 95: +#line 443 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " > " + yystack_[0].value.as < std::string > (); } +#line 2038 "sqlite3_parser.cpp" + break; + + case 96: +#line 444 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " >= " + yystack_[0].value.as < std::string > (); } +#line 2044 "sqlite3_parser.cpp" + break; + + case 97: +#line 445 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " = " + yystack_[0].value.as < std::string > (); } +#line 2050 "sqlite3_parser.cpp" + break; + + case 98: +#line 446 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " == " + yystack_[0].value.as < std::string > (); } +#line 2056 "sqlite3_parser.cpp" + break; + + case 99: +#line 447 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " != " + yystack_[0].value.as < std::string > (); } +#line 2062 "sqlite3_parser.cpp" + break; + + case 100: +#line 448 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " <> " + yystack_[0].value.as < std::string > (); } +#line 2068 "sqlite3_parser.cpp" + break; + + case 101: +#line 449 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " IS " + yystack_[0].value.as < std::string > (); } +#line 2074 "sqlite3_parser.cpp" + break; + + case 102: +#line 450 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " AND " + yystack_[0].value.as < std::string > (); } +#line 2080 "sqlite3_parser.cpp" + break; + + case 103: +#line 451 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " OR " + yystack_[0].value.as < std::string > (); } +#line 2086 "sqlite3_parser.cpp" + break; + + case 104: +#line 455 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " LIKE " + yystack_[0].value.as < std::string > (); } +#line 2092 "sqlite3_parser.cpp" + break; + + case 105: +#line 456 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " GLOB " + yystack_[0].value.as < std::string > (); } +#line 2098 "sqlite3_parser.cpp" + break; + + case 106: +#line 457 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " MATCH " + yystack_[0].value.as < std::string > (); } +#line 2104 "sqlite3_parser.cpp" + break; + + case 107: +#line 458 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " REGEXP " + yystack_[0].value.as < std::string > (); } +#line 2110 "sqlite3_parser.cpp" + break; + + case 108: +#line 459 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " NOT LIKE " + yystack_[0].value.as < std::string > (); } +#line 2116 "sqlite3_parser.cpp" + break; + + case 109: +#line 460 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " NOT GLOB " + yystack_[0].value.as < std::string > (); } +#line 2122 "sqlite3_parser.cpp" + break; + + case 110: +#line 461 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " NOT MATCH " + yystack_[0].value.as < std::string > (); } +#line 2128 "sqlite3_parser.cpp" + break; + + case 111: +#line 462 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " NOT REGEXP " + yystack_[0].value.as < std::string > (); } +#line 2134 "sqlite3_parser.cpp" + break; + + case 112: +#line 463 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[4].value.as < std::string > () + " LIKE " + yystack_[2].value.as < std::string > () + " ESCAPE " + yystack_[0].value.as < std::string > (); } +#line 2140 "sqlite3_parser.cpp" + break; + + case 113: +#line 464 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[4].value.as < std::string > () + " GLOB " + yystack_[2].value.as < std::string > () + " ESCAPE " + yystack_[0].value.as < std::string > (); } +#line 2146 "sqlite3_parser.cpp" + break; + + case 114: +#line 465 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[4].value.as < std::string > () + " MATCH " + yystack_[2].value.as < std::string > () + " ESCAPE " + yystack_[0].value.as < std::string > (); } +#line 2152 "sqlite3_parser.cpp" + break; + + case 115: +#line 466 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[4].value.as < std::string > () + " REGEXP " + yystack_[2].value.as < std::string > () + " ESCAPE " + yystack_[0].value.as < std::string > (); } +#line 2158 "sqlite3_parser.cpp" + break; + + case 116: +#line 467 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[5].value.as < std::string > () + " NOT LIKE " + yystack_[3].value.as < std::string > () + " ESCAPE " + yystack_[0].value.as < std::string > (); } +#line 2164 "sqlite3_parser.cpp" + break; + + case 117: +#line 468 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[5].value.as < std::string > () + " NOT GLOB " + yystack_[3].value.as < std::string > () + " ESCAPE " + yystack_[0].value.as < std::string > (); } +#line 2170 "sqlite3_parser.cpp" + break; + + case 118: +#line 469 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[5].value.as < std::string > () + " NOT MATCH " + yystack_[3].value.as < std::string > () + " ESCAPE " + yystack_[0].value.as < std::string > (); } +#line 2176 "sqlite3_parser.cpp" + break; + + case 119: +#line 470 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[5].value.as < std::string > () + " NOT REGEXP " + yystack_[3].value.as < std::string > () + " ESCAPE " + yystack_[0].value.as < std::string > (); } +#line 2182 "sqlite3_parser.cpp" + break; + + case 120: +#line 474 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2188 "sqlite3_parser.cpp" + break; + + case 121: +#line 475 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + ", " + yystack_[0].value.as < std::string > (); } +#line 2194 "sqlite3_parser.cpp" + break; + + case 122: +#line 479 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + "(" + yystack_[1].value.as < std::string > () + ")"; } +#line 2200 "sqlite3_parser.cpp" + break; + + case 123: +#line 480 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[4].value.as < std::string > () + "(DISTINCT " + yystack_[1].value.as < std::string > () + ")"; } +#line 2206 "sqlite3_parser.cpp" + break; + + case 124: +#line 481 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + "()"; } +#line 2212 "sqlite3_parser.cpp" + break; + + case 125: +#line 482 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + "(*)"; } +#line 2218 "sqlite3_parser.cpp" + break; + + case 126: +#line 486 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[1].value.as < std::string > () + " ISNULL"; } +#line 2224 "sqlite3_parser.cpp" + break; + + case 127: +#line 487 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[1].value.as < std::string > () + " NOTNULL"; } +#line 2230 "sqlite3_parser.cpp" + break; + + case 128: +#line 488 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " NOT NULL"; } +#line 2236 "sqlite3_parser.cpp" + break; + + case 129: +#line 492 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[4].value.as < std::string > () + " BETWEEN " + yystack_[2].value.as < std::string > () + " AND " + yystack_[0].value.as < std::string > (); } +#line 2242 "sqlite3_parser.cpp" + break; + + case 130: +#line 493 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[5].value.as < std::string > () + " NOT BETWEEN " + yystack_[2].value.as < std::string > () + " AND " + yystack_[0].value.as < std::string > (); } +#line 2248 "sqlite3_parser.cpp" + break; + + case 131: +#line 497 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " IN ()"; } +#line 2254 "sqlite3_parser.cpp" + break; + + case 132: +#line 498 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[4].value.as < std::string > () + " IN (" + yystack_[1].value.as < std::string > () + ")"; } +#line 2260 "sqlite3_parser.cpp" + break; + + case 133: +#line 499 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[4].value.as < std::string > () + " IN (" + yystack_[1].value.as < std::string > () + ")"; } +#line 2266 "sqlite3_parser.cpp" + break; + + case 134: +#line 500 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[4].value.as < std::string > () + " IN " + sqlb::escapeIdentifier(yystack_[2].value.as < std::string > ()) + "." + sqlb::escapeIdentifier(yystack_[0].value.as < std::string > ()); } +#line 2272 "sqlite3_parser.cpp" + break; + + case 135: +#line 501 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " IN " + sqlb::escapeIdentifier(yystack_[0].value.as < std::string > ()); } +#line 2278 "sqlite3_parser.cpp" + break; + + case 136: +#line 502 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[6].value.as < std::string > () + " IN " + sqlb::escapeIdentifier(yystack_[4].value.as < std::string > ()) + "." + yystack_[2].value.as < std::string > () + "()"; } +#line 2284 "sqlite3_parser.cpp" + break; + + case 137: +#line 503 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[7].value.as < std::string > () + " IN " + sqlb::escapeIdentifier(yystack_[5].value.as < std::string > ()) + "." + yystack_[3].value.as < std::string > () + "(" + yystack_[1].value.as < std::string > () + ")"; } +#line 2290 "sqlite3_parser.cpp" + break; + + case 138: +#line 504 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[5].value.as < std::string > () + " IN " + yystack_[3].value.as < std::string > () + "(" + yystack_[1].value.as < std::string > () + ")"; } +#line 2296 "sqlite3_parser.cpp" + break; + + case 139: +#line 505 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[4].value.as < std::string > () + " NOT IN ()"; } +#line 2302 "sqlite3_parser.cpp" + break; + + case 140: +#line 506 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[5].value.as < std::string > () + " NOT IN (" + yystack_[1].value.as < std::string > () + ")"; } +#line 2308 "sqlite3_parser.cpp" + break; + + case 141: +#line 507 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[5].value.as < std::string > () + " NOT IN (" + yystack_[1].value.as < std::string > () + ")"; } +#line 2314 "sqlite3_parser.cpp" + break; + + case 142: +#line 508 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[5].value.as < std::string > () + " NOT IN " + sqlb::escapeIdentifier(yystack_[2].value.as < std::string > ()) + "." + sqlb::escapeIdentifier(yystack_[0].value.as < std::string > ()); } +#line 2320 "sqlite3_parser.cpp" + break; + + case 143: +#line 509 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " NOT IN " + sqlb::escapeIdentifier(yystack_[0].value.as < std::string > ()); } +#line 2326 "sqlite3_parser.cpp" + break; + + case 144: +#line 510 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[7].value.as < std::string > () + " NOT IN " + sqlb::escapeIdentifier(yystack_[4].value.as < std::string > ()) + "." + yystack_[2].value.as < std::string > () + "()"; } +#line 2332 "sqlite3_parser.cpp" + break; + + case 145: +#line 511 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[8].value.as < std::string > () + " NOT IN " + sqlb::escapeIdentifier(yystack_[5].value.as < std::string > ()) + "." + yystack_[3].value.as < std::string > () + "(" + yystack_[1].value.as < std::string > () + ")"; } +#line 2338 "sqlite3_parser.cpp" + break; + + case 146: +#line 512 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[6].value.as < std::string > () + " NOT IN " + yystack_[3].value.as < std::string > () + "(" + yystack_[1].value.as < std::string > () + ")"; } +#line 2344 "sqlite3_parser.cpp" + break; + + case 147: +#line 516 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "WHEN " + yystack_[2].value.as < std::string > () + " THEN " + yystack_[0].value.as < std::string > (); } +#line 2350 "sqlite3_parser.cpp" + break; + + case 148: +#line 517 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[4].value.as < std::string > () + " WHEN" + yystack_[2].value.as < std::string > () + " THEN " + yystack_[0].value.as < std::string > (); } +#line 2356 "sqlite3_parser.cpp" + break; + + case 149: +#line 521 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "CASE " + yystack_[4].value.as < std::string > () + " " + yystack_[3].value.as < std::string > () + " ELSE " + yystack_[1].value.as < std::string > () + " END"; } +#line 2362 "sqlite3_parser.cpp" + break; + + case 150: +#line 522 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "CASE " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " END"; } +#line 2368 "sqlite3_parser.cpp" + break; + + case 151: +#line 523 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "CASE " + yystack_[3].value.as < std::string > () + " ELSE " + yystack_[1].value.as < std::string > () + " END"; } +#line 2374 "sqlite3_parser.cpp" + break; + + case 152: +#line 524 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "CASE " + yystack_[1].value.as < std::string > () + " END"; } +#line 2380 "sqlite3_parser.cpp" + break; + + case 153: +#line 528 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "RAISE(IGNORE)"; } +#line 2386 "sqlite3_parser.cpp" + break; + + case 154: +#line 529 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "RAISE(ROLLBACK, " + yystack_[1].value.as < std::string > () + ")"; } +#line 2392 "sqlite3_parser.cpp" + break; + + case 155: +#line 530 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "RAISE(ABORT, " + yystack_[1].value.as < std::string > () + ")"; } +#line 2398 "sqlite3_parser.cpp" + break; + + case 156: +#line 531 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "RAISE(FAIL, " + yystack_[1].value.as < std::string > () + ")"; } +#line 2404 "sqlite3_parser.cpp" + break; + + case 157: +#line 535 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2410 "sqlite3_parser.cpp" + break; + + case 158: +#line 536 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = sqlb::escapeIdentifier(yystack_[0].value.as < std::string > ()); } +#line 2416 "sqlite3_parser.cpp" + break; + + case 159: +#line 537 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2422 "sqlite3_parser.cpp" + break; + + case 160: +#line 538 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = sqlb::escapeIdentifier(yystack_[4].value.as < std::string > ()) + "." + sqlb::escapeIdentifier(yystack_[2].value.as < std::string > ()) + "." + sqlb::escapeIdentifier(yystack_[0].value.as < std::string > ()); } +#line 2428 "sqlite3_parser.cpp" + break; + + case 161: +#line 539 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = sqlb::escapeIdentifier(yystack_[2].value.as < std::string > ()) + "." + sqlb::escapeIdentifier(yystack_[0].value.as < std::string > ()); } +#line 2434 "sqlite3_parser.cpp" + break; + + case 162: +#line 540 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = sqlb::escapeIdentifier(yystack_[0].value.as < std::string > ()); } +#line 2440 "sqlite3_parser.cpp" + break; + + case 163: +#line 541 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2446 "sqlite3_parser.cpp" + break; + + case 164: +#line 542 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2452 "sqlite3_parser.cpp" + break; + + case 165: +#line 543 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2458 "sqlite3_parser.cpp" + break; + + case 166: +#line 544 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "(" + yystack_[1].value.as < std::string > () + ")"; } +#line 2464 "sqlite3_parser.cpp" + break; + + case 167: +#line 545 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "CAST(" + yystack_[3].value.as < std::string > () + " AS " + yystack_[1].value.as < std::string > () + ")"; } +#line 2470 "sqlite3_parser.cpp" + break; + + case 168: +#line 546 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " COLLATE " + yystack_[0].value.as < std::string > (); } +#line 2476 "sqlite3_parser.cpp" + break; + + case 169: +#line 547 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2482 "sqlite3_parser.cpp" + break; + + case 170: +#line 548 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2488 "sqlite3_parser.cpp" + break; + + case 171: +#line 549 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2494 "sqlite3_parser.cpp" + break; + + case 172: +#line 550 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2500 "sqlite3_parser.cpp" + break; + + case 173: +#line 551 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2506 "sqlite3_parser.cpp" + break; + + case 174: +#line 552 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2512 "sqlite3_parser.cpp" + break; + + case 175: +#line 561 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "SELECT"; } +#line 2518 "sqlite3_parser.cpp" + break; + + case 176: +#line 569 "sqlite3_parser.yy" + { yylhs.value.as < bool > () = false; } +#line 2524 "sqlite3_parser.cpp" + break; + + case 177: +#line 570 "sqlite3_parser.yy" + { yylhs.value.as < bool > () = true; } +#line 2530 "sqlite3_parser.cpp" + break; + + case 178: +#line 574 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = ""; } +#line 2536 "sqlite3_parser.cpp" + break; + + case 179: +#line 575 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "ASC"; } +#line 2542 "sqlite3_parser.cpp" + break; + + case 180: +#line 576 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "DESC"; } +#line 2548 "sqlite3_parser.cpp" + break; + + case 181: +#line 584 "sqlite3_parser.yy" + { yylhs.value.as < bool > () = false; } +#line 2554 "sqlite3_parser.cpp" + break; + + case 182: +#line 585 "sqlite3_parser.yy" + { yylhs.value.as < bool > () = true; } +#line 2560 "sqlite3_parser.cpp" + break; + + case 183: +#line 589 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = ""; } +#line 2566 "sqlite3_parser.cpp" + break; + + case 184: +#line 590 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2572 "sqlite3_parser.cpp" + break; + + case 185: +#line 594 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2578 "sqlite3_parser.cpp" + break; + + case 186: +#line 595 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2584 "sqlite3_parser.cpp" + break; + + case 187: +#line 596 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2590 "sqlite3_parser.cpp" + break; + + case 188: +#line 600 "sqlite3_parser.yy" + { + // If the expression is only one column name and nothing else, treat it as a column name; otherwise as an expression. + char quote = getIdentifierQuoteChar(); + if((quote == '[' && std::count(yystack_[1].value.as < std::string > ().begin(), yystack_[1].value.as < std::string > ().end(), quote) == 1 && yystack_[1].value.as < std::string > ().front() == '[' && yystack_[1].value.as < std::string > ().back() == ']') || + (quote != '[' && std::count(yystack_[1].value.as < std::string > ().begin(), yystack_[1].value.as < std::string > ().end(), quote) == 2 && yystack_[1].value.as < std::string > ().front() == quote && yystack_[1].value.as < std::string > ().back() == quote)) + { + yylhs.value.as < sqlb::IndexedColumn > () = sqlb::IndexedColumn(unquote_text(yystack_[1].value.as < std::string > (), quote), false, yystack_[0].value.as < std::string > ()); + } else { + yylhs.value.as < sqlb::IndexedColumn > () = sqlb::IndexedColumn(yystack_[1].value.as < std::string > (), true, yystack_[0].value.as < std::string > ()); + } + } +#line 2606 "sqlite3_parser.cpp" + break; + + case 189: +#line 614 "sqlite3_parser.yy" + { yylhs.value.as < sqlb::IndexedColumnVector > () = sqlb::IndexedColumnVector(1, yystack_[0].value.as < sqlb::IndexedColumn > ()); } +#line 2612 "sqlite3_parser.cpp" + break; + + case 190: +#line 615 "sqlite3_parser.yy" + { yylhs.value.as < sqlb::IndexedColumnVector > () = yystack_[2].value.as < sqlb::IndexedColumnVector > (); yylhs.value.as < sqlb::IndexedColumnVector > ().push_back(yystack_[0].value.as < sqlb::IndexedColumn > ()); } +#line 2618 "sqlite3_parser.cpp" + break; + + case 191: +#line 619 "sqlite3_parser.yy" + { + yylhs.value.as < sqlb::IndexPtr > () = sqlb::IndexPtr(new sqlb::Index(yystack_[6].value.as < std::string > ())); + yylhs.value.as < sqlb::IndexPtr > ()->setTable(yystack_[4].value.as < std::string > ()); + yylhs.value.as < sqlb::IndexPtr > ()->setUnique(yystack_[9].value.as < bool > ()); + yylhs.value.as < sqlb::IndexPtr > ()->setWhereExpr(yystack_[0].value.as < std::string > ()); + yylhs.value.as < sqlb::IndexPtr > ()->fields = yystack_[2].value.as < sqlb::IndexedColumnVector > (); + yylhs.value.as < sqlb::IndexPtr > ()->setFullyParsed(true); + } +#line 2631 "sqlite3_parser.cpp" + break; + + case 192: +#line 634 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = {}; } +#line 2637 "sqlite3_parser.cpp" + break; + + case 193: +#line 635 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = {}; } +#line 2643 "sqlite3_parser.cpp" + break; + + case 194: +#line 636 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[1].value.as < std::string > (); } +#line 2649 "sqlite3_parser.cpp" + break; + + case 195: +#line 640 "sqlite3_parser.yy" + { + yylhs.value.as < sqlb::TablePtr > () = sqlb::TablePtr(new sqlb::Table(yystack_[3].value.as < std::string > ())); + yylhs.value.as < sqlb::TablePtr > ()->setVirtualUsing(yystack_[1].value.as < std::string > ()); + yylhs.value.as < sqlb::TablePtr > ()->setFullyParsed(false); + } +#line 2659 "sqlite3_parser.cpp" + break; + + case 196: +#line 652 "sqlite3_parser.yy" + { yylhs.value.as < bool > () = false; } +#line 2665 "sqlite3_parser.cpp" + break; + + case 197: +#line 653 "sqlite3_parser.yy" + { yylhs.value.as < bool > () = true; } +#line 2671 "sqlite3_parser.cpp" + break; + + case 198: +#line 654 "sqlite3_parser.yy" + { yylhs.value.as < bool > () = true; } +#line 2677 "sqlite3_parser.cpp" + break; + + case 199: +#line 658 "sqlite3_parser.yy" + { yylhs.value.as < bool > () = false; } +#line 2683 "sqlite3_parser.cpp" + break; + + case 200: +#line 659 "sqlite3_parser.yy" + { yylhs.value.as < bool > () = true; } +#line 2689 "sqlite3_parser.cpp" + break; + + case 201: +#line 663 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = ""; } +#line 2695 "sqlite3_parser.cpp" + break; + + case 202: +#line 664 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2701 "sqlite3_parser.cpp" + break; + + case 203: +#line 665 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2707 "sqlite3_parser.cpp" + break; + + case 204: +#line 666 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2713 "sqlite3_parser.cpp" + break; + + case 205: +#line 667 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2719 "sqlite3_parser.cpp" + break; + + case 206: +#line 668 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2725 "sqlite3_parser.cpp" + break; + + case 207: +#line 672 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = ""; } +#line 2731 "sqlite3_parser.cpp" + break; + + case 208: +#line 673 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 2737 "sqlite3_parser.cpp" + break; + + case 209: +#line 677 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "VIRTUAL"; } +#line 2743 "sqlite3_parser.cpp" + break; + + case 210: +#line 678 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "STORED"; } +#line 2749 "sqlite3_parser.cpp" + break; + + case 211: +#line 679 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = "VIRTUAL"; } +#line 2755 "sqlite3_parser.cpp" + break; + + case 212: +#line 683 "sqlite3_parser.yy" + { yylhs.value.as < bool > () = false; } +#line 2761 "sqlite3_parser.cpp" + break; + + case 213: +#line 684 "sqlite3_parser.yy" + { yylhs.value.as < bool > () = true; } +#line 2767 "sqlite3_parser.cpp" + break; + + case 214: +#line 688 "sqlite3_parser.yy" + { + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::PrimaryKey; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = true; + sqlb::PrimaryKeyConstraint* pk = new sqlb::PrimaryKeyConstraint({sqlb::IndexedColumn("", false, yystack_[1].value.as < std::string > ())}); + pk->setName(yystack_[4].value.as < std::string > ()); + pk->setConflictAction(yystack_[0].value.as < std::string > ()); + yylhs.value.as < ColumnConstraintInfo > ().table_constraint = sqlb::ConstraintPtr(pk); + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = true; + } +#line 2781 "sqlite3_parser.cpp" + break; + + case 215: +#line 697 "sqlite3_parser.yy" + { + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::PrimaryKey; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = true; + sqlb::PrimaryKeyConstraint* pk = new sqlb::PrimaryKeyConstraint({sqlb::IndexedColumn("", false, yystack_[2].value.as < std::string > ())}); + pk->setName(yystack_[5].value.as < std::string > ()); + pk->setConflictAction(yystack_[1].value.as < std::string > ()); + pk->setAutoIncrement(true); + yylhs.value.as < ColumnConstraintInfo > ().table_constraint = sqlb::ConstraintPtr(pk); + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = true; + } +#line 2796 "sqlite3_parser.cpp" + break; + + case 216: +#line 707 "sqlite3_parser.yy" + { + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::NotNull; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = false; + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = (yystack_[3].value.as < std::string > () == "" && yystack_[0].value.as < std::string > () == ""); + } +#line 2806 "sqlite3_parser.cpp" + break; + + case 217: +#line 712 "sqlite3_parser.yy" + { + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::None; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = false; + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = true; + } +#line 2816 "sqlite3_parser.cpp" + break; + + case 218: +#line 717 "sqlite3_parser.yy" + { + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::Unique; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = false; + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = (yystack_[2].value.as < std::string > () == "" && yystack_[0].value.as < std::string > () == ""); + } +#line 2826 "sqlite3_parser.cpp" + break; + + case 219: +#line 722 "sqlite3_parser.yy" + { + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::Check; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = false; + yylhs.value.as < ColumnConstraintInfo > ().text = yystack_[1].value.as < std::string > (); + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = (yystack_[4].value.as < std::string > () == ""); + } +#line 2837 "sqlite3_parser.cpp" + break; + + case 220: +#line 728 "sqlite3_parser.yy" + { + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::Default; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = false; + yylhs.value.as < ColumnConstraintInfo > ().text = yystack_[0].value.as < std::string > (); + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = (yystack_[2].value.as < std::string > () == ""); + } +#line 2848 "sqlite3_parser.cpp" + break; + + case 221: +#line 734 "sqlite3_parser.yy" + { + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::Default; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = false; + yylhs.value.as < ColumnConstraintInfo > ().text = yystack_[0].value.as < std::string > (); + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = (yystack_[2].value.as < std::string > () == ""); + } +#line 2859 "sqlite3_parser.cpp" + break; + + case 222: +#line 740 "sqlite3_parser.yy" + { + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::Default; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = false; + yylhs.value.as < ColumnConstraintInfo > ().text = yystack_[0].value.as < std::string > (); + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = (yystack_[2].value.as < std::string > () == ""); + } +#line 2870 "sqlite3_parser.cpp" + break; + + case 223: +#line 746 "sqlite3_parser.yy" + { // We must allow the same keywords as unquoted default values as in the columnid context. + // But we do not use columnid here in order to avoid reduce/reduce conflicts. + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::Default; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = false; + yylhs.value.as < ColumnConstraintInfo > ().text = yystack_[0].value.as < std::string > (); + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = (yystack_[2].value.as < std::string > () == ""); + } +#line 2882 "sqlite3_parser.cpp" + break; + + case 224: +#line 753 "sqlite3_parser.yy" + { // Same as above. + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::Default; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = false; + yylhs.value.as < ColumnConstraintInfo > ().text = yystack_[0].value.as < std::string > (); + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = (yystack_[2].value.as < std::string > () == ""); + } +#line 2893 "sqlite3_parser.cpp" + break; + + case 225: +#line 759 "sqlite3_parser.yy" + { + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::Default; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = false; + yylhs.value.as < ColumnConstraintInfo > ().text = "(" + yystack_[1].value.as < std::string > () + ")"; + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = (yystack_[4].value.as < std::string > () == ""); + } +#line 2904 "sqlite3_parser.cpp" + break; + + case 226: +#line 765 "sqlite3_parser.yy" + { + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::Collate; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = false; + yylhs.value.as < ColumnConstraintInfo > ().text = yystack_[0].value.as < std::string > (); + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = (yystack_[2].value.as < std::string > () == ""); + } +#line 2915 "sqlite3_parser.cpp" + break; + + case 227: +#line 771 "sqlite3_parser.yy" + { // TODO Solve shift/reduce conflict. It is not super important though as shifting seems to be right here. + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::ForeignKey; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = true; + sqlb::ForeignKeyClause* fk = new sqlb::ForeignKeyClause(); + fk->setName(yystack_[4].value.as < std::string > ()); + fk->setTable(yystack_[2].value.as < std::string > ()); + fk->setColumns(yystack_[1].value.as < sqlb::StringVector > ()); + fk->setConstraint(yystack_[0].value.as < std::string > ()); + yylhs.value.as < ColumnConstraintInfo > ().table_constraint = sqlb::ConstraintPtr(fk); + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = true; + } +#line 2931 "sqlite3_parser.cpp" + break; + + case 228: +#line 782 "sqlite3_parser.yy" + { // TODO Solve shift/reduce conflict. + yylhs.value.as < ColumnConstraintInfo > ().type = ColumnConstraintInfo::Generated; + yylhs.value.as < ColumnConstraintInfo > ().is_table_constraint = false; + yylhs.value.as < ColumnConstraintInfo > ().generated_constraint.setExpression(yystack_[2].value.as < std::string > ()); + yylhs.value.as < ColumnConstraintInfo > ().generated_constraint.setStorage(yystack_[0].value.as < std::string > ()); + yylhs.value.as < ColumnConstraintInfo > ().generated_constraint.setName(yystack_[6].value.as < std::string > ()); + yylhs.value.as < ColumnConstraintInfo > ().fully_parsed = true; + } +#line 2944 "sqlite3_parser.cpp" + break; + + case 229: +#line 793 "sqlite3_parser.yy" + { yylhs.value.as < ColumnConstraintInfoVector > () = { yystack_[0].value.as < ColumnConstraintInfo > () }; } +#line 2950 "sqlite3_parser.cpp" + break; + + case 230: +#line 794 "sqlite3_parser.yy" + { yylhs.value.as < ColumnConstraintInfoVector > () = yystack_[1].value.as < ColumnConstraintInfoVector > (); yylhs.value.as < ColumnConstraintInfoVector > ().push_back(yystack_[0].value.as < ColumnConstraintInfo > ()); } +#line 2956 "sqlite3_parser.cpp" + break; + + case 231: +#line 798 "sqlite3_parser.yy" + { + sqlb::Field f(yystack_[2].value.as < std::string > (), yystack_[1].value.as < std::string > ()); + bool fully_parsed = true; + sqlb::ConstraintSet table_constraints{}; + for(auto c : yystack_[0].value.as < ColumnConstraintInfoVector > ()) + { + if(c.fully_parsed == false) + fully_parsed = false; + + if(c.type == ColumnConstraintInfo::None) + continue; + + if(c.is_table_constraint) + { + if(c.table_constraint->columnList().empty()) + c.table_constraint->setColumnList({yystack_[2].value.as < std::string > ()}); + else + c.table_constraint->replaceInColumnList("", yystack_[2].value.as < std::string > ()); + table_constraints.insert(c.table_constraint); + } else { + if(c.type == ColumnConstraintInfo::NotNull) { + f.setNotNull(true); + } else if(c.type == ColumnConstraintInfo::Unique) { + f.setUnique(true); + } else if(c.type == ColumnConstraintInfo::Check) { + f.setCheck(c.text); + } else if(c.type == ColumnConstraintInfo::Default) { + f.setDefaultValue(c.text); + } else if(c.type == ColumnConstraintInfo::Collate) { + f.setCollation(c.text); + } else if(c.type == ColumnConstraintInfo::Generated) { + f.setGenerated(c.generated_constraint); + + // This is a hack which removes any "GENERATED ALWAYS" from the end of the type name. + // As of now these are shifted to the type instead of reducing the type when seeing the GENERATED identifier. + // TODO Remove this once the grammar is conflict free + const std::string generated_always = "GENERATED ALWAYS"; + if(f.type().size() >= generated_always.size() && f.type().compare(f.type().size() - generated_always.size(), generated_always.size(), generated_always) == 0) + { + std::string type = f.type().substr(0, f.type().size()-generated_always.size()); + if(type.back() == ' ') + type.pop_back(); + f.setType(type); + } + } else { + fully_parsed = false; + } + } + } + + yylhs.value.as < ColumndefData > () = std::make_tuple(f, table_constraints, fully_parsed); + } +#line 3013 "sqlite3_parser.cpp" + break; + + case 232: +#line 850 "sqlite3_parser.yy" + { yylhs.value.as < ColumndefData > () = std::make_tuple(sqlb::Field(yystack_[1].value.as < std::string > (), yystack_[0].value.as < std::string > ()), sqlb::ConstraintSet{}, true); } +#line 3019 "sqlite3_parser.cpp" + break; + + case 233: +#line 854 "sqlite3_parser.yy" + { yylhs.value.as < std::vector > () = {yystack_[0].value.as < ColumndefData > ()}; } +#line 3025 "sqlite3_parser.cpp" + break; + + case 234: +#line 855 "sqlite3_parser.yy" + { yylhs.value.as < std::vector > () = yystack_[2].value.as < std::vector > (); yylhs.value.as < std::vector > ().push_back(yystack_[0].value.as < ColumndefData > ()); } +#line 3031 "sqlite3_parser.cpp" + break; + + case 235: +#line 859 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = ""; } +#line 3037 "sqlite3_parser.cpp" + break; + + case 236: +#line 860 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 3043 "sqlite3_parser.cpp" + break; + + case 237: +#line 864 "sqlite3_parser.yy" + { yylhs.value.as < sqlb::StringVector > () = sqlb::StringVector(1, yystack_[0].value.as < std::string > ()); } +#line 3049 "sqlite3_parser.cpp" + break; + + case 238: +#line 865 "sqlite3_parser.yy" + { yylhs.value.as < sqlb::StringVector > () = yystack_[2].value.as < sqlb::StringVector > (); yylhs.value.as < sqlb::StringVector > ().push_back(yystack_[0].value.as < std::string > ()); } +#line 3055 "sqlite3_parser.cpp" + break; + + case 239: +#line 869 "sqlite3_parser.yy" + { yylhs.value.as < sqlb::StringVector > () = sqlb::StringVector(); } +#line 3061 "sqlite3_parser.cpp" + break; + + case 240: +#line 870 "sqlite3_parser.yy" + { yylhs.value.as < sqlb::StringVector > () = yystack_[1].value.as < sqlb::StringVector > (); } +#line 3067 "sqlite3_parser.cpp" + break; + + case 241: +#line 874 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3073 "sqlite3_parser.cpp" + break; + + case 242: +#line 875 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3079 "sqlite3_parser.cpp" + break; + + case 243: +#line 876 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3085 "sqlite3_parser.cpp" + break; + + case 244: +#line 877 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3091 "sqlite3_parser.cpp" + break; + + case 245: +#line 878 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3097 "sqlite3_parser.cpp" + break; + + case 246: +#line 879 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3103 "sqlite3_parser.cpp" + break; + + case 247: +#line 880 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3109 "sqlite3_parser.cpp" + break; + + case 248: +#line 881 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3115 "sqlite3_parser.cpp" + break; + + case 249: +#line 882 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3121 "sqlite3_parser.cpp" + break; + + case 250: +#line 883 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3127 "sqlite3_parser.cpp" + break; + + case 251: +#line 884 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3133 "sqlite3_parser.cpp" + break; + + case 252: +#line 885 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3139 "sqlite3_parser.cpp" + break; + + case 253: +#line 886 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3145 "sqlite3_parser.cpp" + break; + + case 254: +#line 887 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3151 "sqlite3_parser.cpp" + break; + + case 255: +#line 888 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3157 "sqlite3_parser.cpp" + break; + + case 256: +#line 889 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3163 "sqlite3_parser.cpp" + break; + + case 257: +#line 893 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 3169 "sqlite3_parser.cpp" + break; + + case 258: +#line 894 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3175 "sqlite3_parser.cpp" + break; + + case 259: +#line 898 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = ""; } +#line 3181 "sqlite3_parser.cpp" + break; + + case 260: +#line 899 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 3187 "sqlite3_parser.cpp" + break; + + case 261: +#line 900 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3193 "sqlite3_parser.cpp" + break; + + case 262: +#line 901 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3199 "sqlite3_parser.cpp" + break; + + case 263: +#line 902 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3205 "sqlite3_parser.cpp" + break; + + case 264: +#line 903 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[4].value.as < std::string > () + " " + yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3211 "sqlite3_parser.cpp" + break; + + case 265: +#line 904 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[4].value.as < std::string > () + " " + yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3217 "sqlite3_parser.cpp" + break; + + case 266: +#line 905 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3223 "sqlite3_parser.cpp" + break; + + case 267: +#line 906 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3229 "sqlite3_parser.cpp" + break; + + case 268: +#line 907 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3235 "sqlite3_parser.cpp" + break; + + case 269: +#line 908 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[0].value.as < std::string > (); } +#line 3241 "sqlite3_parser.cpp" + break; + + case 270: +#line 909 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3247 "sqlite3_parser.cpp" + break; + + case 271: +#line 910 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[3].value.as < std::string > () + " " + yystack_[2].value.as < std::string > () + " " + yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3253 "sqlite3_parser.cpp" + break; + + case 272: +#line 911 "sqlite3_parser.yy" + { yylhs.value.as < std::string > () = yystack_[1].value.as < std::string > () + " " + yystack_[0].value.as < std::string > (); } +#line 3259 "sqlite3_parser.cpp" + break; + + case 273: +#line 915 "sqlite3_parser.yy" + { + sqlb::PrimaryKeyConstraint* pk = new sqlb::PrimaryKeyConstraint(yystack_[2].value.as < sqlb::IndexedColumnVector > ()); + pk->setName(yystack_[6].value.as < std::string > ()); + pk->setConflictAction(yystack_[0].value.as < std::string > ()); + yylhs.value.as < sqlb::ConstraintPtr > () = sqlb::ConstraintPtr(pk); + } +#line 3270 "sqlite3_parser.cpp" + break; + + case 274: +#line 921 "sqlite3_parser.yy" + { + sqlb::PrimaryKeyConstraint* pk = new sqlb::PrimaryKeyConstraint(yystack_[3].value.as < sqlb::IndexedColumnVector > ()); + pk->setName(yystack_[7].value.as < std::string > ()); + pk->setConflictAction(yystack_[0].value.as < std::string > ()); + pk->setAutoIncrement(true); + yylhs.value.as < sqlb::ConstraintPtr > () = sqlb::ConstraintPtr(pk); + } +#line 3282 "sqlite3_parser.cpp" + break; + + case 275: +#line 928 "sqlite3_parser.yy" + { + sqlb::UniqueConstraint* u = new sqlb::UniqueConstraint(yystack_[2].value.as < sqlb::IndexedColumnVector > ()); + u->setName(yystack_[5].value.as < std::string > ()); + u->setConflictAction(yystack_[0].value.as < std::string > ()); + yylhs.value.as < sqlb::ConstraintPtr > () = sqlb::ConstraintPtr(u); + } +#line 3293 "sqlite3_parser.cpp" + break; + + case 276: +#line 934 "sqlite3_parser.yy" + { + yylhs.value.as < sqlb::ConstraintPtr > () = sqlb::ConstraintPtr(new sqlb::CheckConstraint(yystack_[1].value.as < std::string > ())); + yylhs.value.as < sqlb::ConstraintPtr > ()->setName(yystack_[4].value.as < std::string > ()); + } +#line 3302 "sqlite3_parser.cpp" + break; + + case 277: +#line 938 "sqlite3_parser.yy" + { + yylhs.value.as < sqlb::ConstraintPtr > () = sqlb::ConstraintPtr(new sqlb::ForeignKeyClause(yystack_[2].value.as < std::string > (), yystack_[1].value.as < sqlb::StringVector > (), yystack_[0].value.as < std::string > ())); + yylhs.value.as < sqlb::ConstraintPtr > ()->setColumnList(yystack_[5].value.as < sqlb::StringVector > ()); + yylhs.value.as < sqlb::ConstraintPtr > ()->setName(yystack_[9].value.as < std::string > ()); + } +#line 3312 "sqlite3_parser.cpp" + break; + + case 278: +#line 946 "sqlite3_parser.yy" + { yylhs.value.as < sqlb::ConstraintSet > () = {yystack_[0].value.as < sqlb::ConstraintPtr > ()}; } +#line 3318 "sqlite3_parser.cpp" + break; + + case 279: +#line 947 "sqlite3_parser.yy" + { yylhs.value.as < sqlb::ConstraintSet > () = yystack_[2].value.as < sqlb::ConstraintSet > (); yylhs.value.as < sqlb::ConstraintSet > ().insert(yystack_[0].value.as < sqlb::ConstraintPtr > ()); } +#line 3324 "sqlite3_parser.cpp" + break; + + case 280: +#line 948 "sqlite3_parser.yy" + { yylhs.value.as < sqlb::ConstraintSet > () = yystack_[1].value.as < sqlb::ConstraintSet > (); yylhs.value.as < sqlb::ConstraintSet > ().insert(yystack_[0].value.as < sqlb::ConstraintPtr > ()); } +#line 3330 "sqlite3_parser.cpp" + break; + + case 281: +#line 952 "sqlite3_parser.yy" + { yylhs.value.as < sqlb::ConstraintSet > () = {}; } +#line 3336 "sqlite3_parser.cpp" + break; + + case 282: +#line 953 "sqlite3_parser.yy" + { yylhs.value.as < sqlb::ConstraintSet > () = yystack_[0].value.as < sqlb::ConstraintSet > (); } +#line 3342 "sqlite3_parser.cpp" + break; + + case 283: +#line 957 "sqlite3_parser.yy" + { + yylhs.value.as < sqlb::TablePtr > () = sqlb::TablePtr(new sqlb::Table(yystack_[2].value.as < std::string > ())); + yylhs.value.as < sqlb::TablePtr > ()->setFullyParsed(false); + } +#line 3351 "sqlite3_parser.cpp" + break; + + case 284: +#line 961 "sqlite3_parser.yy" + { + yylhs.value.as < sqlb::TablePtr > () = sqlb::TablePtr(new sqlb::Table(yystack_[5].value.as < std::string > ())); + yylhs.value.as < sqlb::TablePtr > ()->setWithoutRowidTable(yystack_[0].value.as < bool > ()); + yylhs.value.as < sqlb::TablePtr > ()->setConstraints(yystack_[2].value.as < sqlb::ConstraintSet > ()); + yylhs.value.as < sqlb::TablePtr > ()->setFullyParsed(true); + + for(const auto& column : yystack_[3].value.as < std::vector > ()) + { + sqlb::Field f; + sqlb::ConstraintSet c; + bool fully_parsed; + std::tie(f, c, fully_parsed) = column; + + if(fully_parsed == false) + yylhs.value.as < sqlb::TablePtr > ()->setFullyParsed(false); + yylhs.value.as < sqlb::TablePtr > ()->fields.push_back(f); + for(const auto& i : c) + yylhs.value.as < sqlb::TablePtr > ()->addConstraint(i); + } + } +#line 3376 "sqlite3_parser.cpp" + break; + + +#line 3380 "sqlite3_parser.cpp" + + default: + break; + } + } +#if YY_EXCEPTIONS + catch (const syntax_error& yyexc) + { + YYCDEBUG << "Caught exception: " << yyexc.what() << '\n'; + error (yyexc); + YYERROR; + } +#endif // YY_EXCEPTIONS + YY_SYMBOL_PRINT ("-> $$ =", yylhs); + yypop_ (yylen); + yylen = 0; + YY_STACK_PRINT (); + + // Shift the result of the reduction. + yypush_ (YY_NULLPTR, YY_MOVE (yylhs)); + } + goto yynewstate; + + + /*--------------------------------------. + | yyerrlab -- here on detecting error. | + `--------------------------------------*/ + yyerrlab: + // If not already recovering from an error, report this error. + if (!yyerrstatus_) + { + ++yynerrs_; + error (yyla.location, yysyntax_error_ (yystack_[0].state, yyla)); + } + + + yyerror_range[1].location = yyla.location; + if (yyerrstatus_ == 3) + { + /* If just tried and failed to reuse lookahead token after an + error, discard it. */ + + // Return failure if at end of input. + if (yyla.type_get () == yyeof_) + YYABORT; + else if (!yyla.empty ()) + { + yy_destroy_ ("Error: discarding", yyla); + yyla.clear (); + } + } + + // Else will try to reuse lookahead token after shifting the error token. + goto yyerrlab1; + + + /*---------------------------------------------------. + | yyerrorlab -- error raised explicitly by YYERROR. | + `---------------------------------------------------*/ + yyerrorlab: + /* Pacify compilers when the user code never invokes YYERROR and + the label yyerrorlab therefore never appears in user code. */ + if (false) + YYERROR; + + /* Do not reclaim the symbols of the rule whose action triggered + this YYERROR. */ + yypop_ (yylen); + yylen = 0; + goto yyerrlab1; + + + /*-------------------------------------------------------------. + | yyerrlab1 -- common code for both syntax error and YYERROR. | + `-------------------------------------------------------------*/ + yyerrlab1: + yyerrstatus_ = 3; // Each real token shifted decrements this. + { + stack_symbol_type error_token; + for (;;) + { + yyn = yypact_[+yystack_[0].state]; + if (!yy_pact_value_is_default_ (yyn)) + { + yyn += yy_error_token_; + if (0 <= yyn && yyn <= yylast_ && yycheck_[yyn] == yy_error_token_) + { + yyn = yytable_[yyn]; + if (0 < yyn) + break; + } + } + + // Pop the current state because it cannot handle the error token. + if (yystack_.size () == 1) + YYABORT; + + yyerror_range[1].location = yystack_[0].location; + yy_destroy_ ("Error: popping", yystack_[0]); + yypop_ (); + YY_STACK_PRINT (); + } + + yyerror_range[2].location = yyla.location; + YYLLOC_DEFAULT (error_token.location, yyerror_range, 2); + + // Shift the error token. + error_token.state = state_type (yyn); + yypush_ ("Shifting", YY_MOVE (error_token)); + } + goto yynewstate; + + + /*-------------------------------------. + | yyacceptlab -- YYACCEPT comes here. | + `-------------------------------------*/ + yyacceptlab: + yyresult = 0; + goto yyreturn; + + + /*-----------------------------------. + | yyabortlab -- YYABORT comes here. | + `-----------------------------------*/ + yyabortlab: + yyresult = 1; + goto yyreturn; + + + /*-----------------------------------------------------. + | yyreturn -- parsing is finished, return the result. | + `-----------------------------------------------------*/ + yyreturn: + if (!yyla.empty ()) + yy_destroy_ ("Cleanup: discarding lookahead", yyla); + + /* Do not reclaim the symbols of the rule whose action triggered + this YYABORT or YYACCEPT. */ + yypop_ (yylen); + while (1 < yystack_.size ()) + { + yy_destroy_ ("Cleanup: popping", yystack_[0]); + yypop_ (); + } + + return yyresult; + } +#if YY_EXCEPTIONS + catch (...) + { + YYCDEBUG << "Exception caught: cleaning lookahead and stack\n"; + // Do not try to display the values of the reclaimed symbols, + // as their printers might throw an exception. + if (!yyla.empty ()) + yy_destroy_ (YY_NULLPTR, yyla); + + while (1 < yystack_.size ()) + { + yy_destroy_ (YY_NULLPTR, yystack_[0]); + yypop_ (); + } + throw; + } +#endif // YY_EXCEPTIONS + } + + void + parser::error (const syntax_error& yyexc) + { + error (yyexc.location, yyexc.what ()); + } + + // Generate an error message. + std::string + parser::yysyntax_error_ (state_type yystate, const symbol_type& yyla) const + { + // Number of reported tokens (one for the "unexpected", one per + // "expected"). + std::ptrdiff_t yycount = 0; + // Its maximum. + enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; + // Arguments of yyformat. + char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; + + /* There are many possibilities here to consider: + - If this state is a consistent state with a default action, then + the only way this function was invoked is if the default action + is an error action. In that case, don't check for expected + tokens because there are none. + - The only way there can be no lookahead present (in yyla) is + if this state is a consistent state with a default action. + Thus, detecting the absence of a lookahead is sufficient to + determine that there is no unexpected or expected token to + report. In that case, just report a simple "syntax error". + - Don't assume there isn't a lookahead just because this state is + a consistent state with a default action. There might have + been a previous inconsistent state, consistent state with a + non-default action, or user semantic action that manipulated + yyla. (However, yyla is currently not documented for users.) + - Of course, the expected token list depends on states to have + correct lookahead information, and it depends on the parser not + to perform extra reductions after fetching a lookahead from the + scanner and before detecting a syntax error. Thus, state merging + (from LALR or IELR) and default reductions corrupt the expected + token list. However, the list is correct for canonical LR with + one exception: it will still contain any token that will not be + accepted due to an error action in a later state. + */ + if (!yyla.empty ()) + { + symbol_number_type yytoken = yyla.type_get (); + yyarg[yycount++] = yytname_[yytoken]; + + int yyn = yypact_[+yystate]; + if (!yy_pact_value_is_default_ (yyn)) + { + /* Start YYX at -YYN if negative to avoid negative indexes in + YYCHECK. In other words, skip the first -YYN actions for + this state because they are default actions. */ + int yyxbegin = yyn < 0 ? -yyn : 0; + // Stay within bounds of both yycheck and yytname. + int yychecklim = yylast_ - yyn + 1; + int yyxend = yychecklim < yyntokens_ ? yychecklim : yyntokens_; + for (int yyx = yyxbegin; yyx < yyxend; ++yyx) + if (yycheck_[yyx + yyn] == yyx && yyx != yy_error_token_ + && !yy_table_value_is_error_ (yytable_[yyx + yyn])) + { + if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) + { + yycount = 1; + break; + } + else + yyarg[yycount++] = yytname_[yyx]; + } + } + } + + char const* yyformat = YY_NULLPTR; + switch (yycount) + { +#define YYCASE_(N, S) \ + case N: \ + yyformat = S; \ + break + default: // Avoid compiler warnings. + YYCASE_ (0, YY_("syntax error")); + YYCASE_ (1, YY_("syntax error, unexpected %s")); + YYCASE_ (2, YY_("syntax error, unexpected %s, expecting %s")); + YYCASE_ (3, YY_("syntax error, unexpected %s, expecting %s or %s")); + YYCASE_ (4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); + YYCASE_ (5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); +#undef YYCASE_ + } + + std::string yyres; + // Argument number. + std::ptrdiff_t yyi = 0; + for (char const* yyp = yyformat; *yyp; ++yyp) + if (yyp[0] == '%' && yyp[1] == 's' && yyi < yycount) + { + yyres += yytnamerr_ (yyarg[yyi++]); + ++yyp; + } + else + yyres += *yyp; + return yyres; + } + + + const short parser::yypact_ninf_ = -340; + + const short parser::yytable_ninf_ = -283; + + const short + parser::yypact_[] = + { + -8, 189, 39, 91, -340, -340, -340, -340, -340, -340, + 17, 53, 43, -340, -340, 73, 73, 73, 30, 2227, + 2227, 2227, 108, -340, -340, -340, -340, -340, -340, -340, + -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, + -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, + -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, + 169, -340, -340, -340, -340, -340, -340, -340, 174, -340, + -340, 83, 112, 22, -340, 2315, 2315, -78, 2315, 2139, + 103, -340, -340, -340, -340, 209, 229, -340, -340, -340, + -340, -340, -340, -340, 2315, -340, 212, -340, -340, 951, + -340, 1407, -340, 1613, -340, 90, 2051, 235, 1407, -340, + 1407, 1407, 1407, 1065, 250, -340, -340, -340, -340, 1407, + -340, 274, -340, -340, -340, -340, -340, -340, 37, -340, + -340, -340, -340, 165, -340, -340, -340, -340, -340, -340, + 3208, 2746, -340, 171, 5, -340, -78, -340, 106, -9, + -340, -18, -340, 116, 134, 176, -340, -340, -340, 1407, + -35, 482, 1407, 3318, 7, 609, -78, -340, 1407, 1407, + 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, + 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, -78, + 1407, 1705, 1407, -340, 1407, 1407, 56, -340, 1407, 1407, + -340, -340, -340, 175, 1407, 179, 182, -340, -340, 193, + -340, -340, 280, -78, 1521, 273, 228, -340, 236, 2315, + 230, 276, 308, 239, 243, 315, 278, -340, 237, -340, + -340, 1904, 1407, -340, 1407, -31, 2823, 319, 334, 337, + 338, -340, 339, 1407, 231, 341, 3208, 232, 232, 4, + 4, 177, 4, 177, 307, 313, 313, 215, 215, 215, + 215, 313, 313, 177, 177, 3318, 2900, -340, 141, 723, + 233, -340, 313, 194, 260, 1407, 1407, 1797, 1407, 1407, + -340, 1407, 3285, 454, 1407, -340, -340, -340, -340, -340, + 5, 1407, -340, 1407, -340, -340, -340, -340, -340, -340, + 230, -1, 345, 309, -340, 346, 1407, 348, 349, 1407, + -340, -340, 1407, 2977, 1993, 1407, -340, 2315, 242, 244, + -340, 245, -340, 241, -340, -78, 1407, 1407, -340, 246, + 350, 1407, 2315, 1407, 1407, 3054, 1932, 837, 251, -340, + 2021, 2451, 2533, 1407, 3208, 355, 2423, 2505, -340, 230, + 2139, 49, -10, 1407, 2587, 2139, 1407, 253, 3208, -340, + 1407, 3131, 356, 357, 358, 359, -340, -340, 313, 313, + -340, -340, 256, 366, -340, 313, 313, 1407, 1407, -340, + 257, 367, 1407, 2315, 1407, 1407, 1407, 313, -340, -340, + -340, 343, -340, 261, 303, -78, 325, 1, -340, 63, + -340, -340, -340, -340, -340, -340, 2669, -340, 286, 110, + 230, 3208, -340, -340, -340, -340, -340, -340, 1179, 313, + 313, -340, -340, 291, 372, -340, 313, 313, 313, -340, + -340, 2139, -25, -340, 310, 9, 12, 13, 311, 330, + -340, 21, 293, 230, 378, -340, -340, 295, -340, 1293, + -340, -340, -340, -20, -340, 360, -340, 54, -340, 361, + -340, 55, -340, 362, -340, 89, 93, 314, -340, -340, + -340, 2315, -340, 230, -340, -340, 299, -340, -340, -340, + -340, -340, -340, -340, -340, -340, -340, -340, -340, -340, + 124, 345, -340, -340, -340, -340, 49, -340 + }; + + const short + parser::yydefact_[] = + { + 0, 181, 0, 2, 4, 5, 6, 197, 198, 182, + 0, 0, 0, 1, 3, 176, 176, 176, 0, 0, + 0, 0, 0, 18, 19, 20, 21, 22, 23, 24, + 59, 58, 60, 25, 26, 27, 28, 29, 30, 31, + 32, 35, 37, 36, 33, 34, 38, 39, 40, 41, + 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, + 53, 52, 54, 55, 56, 16, 62, 17, 61, 57, + 187, 0, 0, 0, 177, 0, 0, 0, 0, 0, + 0, 53, 61, 186, 185, 192, 0, 65, 64, 66, + 67, 69, 68, 63, 207, 233, 281, 175, 283, 0, + 195, 0, 74, 76, 208, 235, 235, 0, 0, 193, + 0, 0, 0, 0, 23, 14, 13, 15, 12, 0, + 10, 43, 11, 7, 8, 9, 159, 157, 162, 158, + 163, 164, 169, 0, 165, 170, 171, 172, 173, 174, + 120, 178, 189, 0, 0, 75, 0, 229, 235, 212, + 234, 0, 278, 235, 199, 0, 80, 79, 81, 0, + 0, 0, 0, 82, 0, 0, 0, 194, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 126, 0, 0, 0, 127, 0, 0, + 179, 180, 188, 183, 0, 0, 0, 73, 72, 0, + 236, 230, 0, 0, 0, 0, 0, 217, 0, 0, + 201, 0, 0, 0, 0, 0, 235, 280, 0, 284, + 166, 0, 0, 152, 0, 0, 0, 0, 0, 0, + 0, 124, 0, 0, 0, 161, 121, 87, 88, 84, + 85, 91, 86, 92, 83, 97, 98, 95, 96, 93, + 94, 99, 100, 89, 90, 102, 0, 168, 105, 0, + 61, 135, 101, 104, 106, 0, 0, 0, 0, 0, + 128, 0, 103, 107, 0, 191, 190, 70, 71, 77, + 0, 0, 226, 0, 224, 221, 222, 223, 220, 213, + 201, 178, 239, 0, 218, 0, 0, 0, 0, 0, + 279, 200, 0, 0, 0, 0, 150, 0, 0, 0, + 153, 0, 125, 0, 122, 0, 0, 0, 131, 0, + 0, 0, 0, 0, 0, 0, 109, 0, 61, 143, + 108, 110, 111, 0, 184, 0, 0, 0, 216, 201, + 0, 259, 0, 0, 0, 0, 0, 0, 147, 151, + 0, 0, 0, 0, 0, 0, 123, 160, 129, 113, + 133, 132, 0, 61, 134, 112, 114, 0, 0, 139, + 0, 0, 0, 0, 0, 0, 0, 115, 78, 219, + 225, 214, 237, 0, 269, 0, 0, 0, 257, 260, + 227, 203, 204, 205, 206, 202, 0, 276, 0, 0, + 201, 148, 149, 167, 155, 156, 154, 138, 0, 130, + 117, 141, 140, 0, 61, 142, 116, 118, 119, 215, + 240, 0, 0, 256, 272, 0, 0, 0, 263, 0, + 258, 209, 0, 201, 0, 275, 136, 0, 146, 0, + 238, 267, 268, 0, 243, 0, 244, 0, 253, 0, + 254, 0, 248, 0, 249, 0, 0, 266, 210, 211, + 228, 0, 273, 201, 137, 144, 0, 270, 271, 245, + 242, 241, 255, 252, 251, 250, 247, 246, 261, 262, + 0, 239, 274, 145, 264, 265, 259, 277 + }; + + const short + parser::yypgoto_[] = + { + -340, -340, -340, 170, -19, -13, -66, -339, 172, 95, + -340, 70, -340, -340, -340, -104, -340, -340, -340, -340, + 234, -340, -340, 255, -254, 167, 92, -340, -340, 201, + 187, -282, -340, -340, -340, -340, -340, -297, -340, -340, + -340, 248, -340, 288, -340, -79, 42, -99, 0, -340, + -98, -148, -340, -340, -340 + }; + + const short + parser::yydefgoto_[] = + { + -1, 2, 3, 127, 128, 129, 70, 94, 208, 209, + 103, 104, 130, 131, 132, 133, 134, 135, 136, 137, + 160, 138, 139, 140, 98, 19, 202, 11, 285, 71, + 142, 143, 4, 100, 5, 12, 229, 304, 105, 470, + 221, 147, 148, 95, 96, 151, 393, 351, 398, 399, + 400, 152, 153, 107, 6 + }; + + const short + parser::yytable_[] = + { + 68, 68, 68, 348, 155, 227, 69, 69, 69, 83, + 84, 392, 86, 205, 206, 330, 392, 401, 232, 233, + 176, 222, 315, 316, 451, 79, 149, 357, 102, 477, + 212, 213, 200, 65, 237, 1, 67, 145, 214, 13, + 165, 452, 166, 223, 189, 454, 478, 402, 458, 462, + 201, 435, 391, 215, 80, 403, 82, 82, 85, 82, + 92, 244, 69, 69, 238, 69, 93, 224, 216, 149, + 217, 436, 239, 234, 409, 82, 218, 234, 310, 219, + 404, 69, 405, 381, 82, 455, 225, 92, 459, 463, + 69, 275, 450, 93, -232, 220, -232, 394, 14, 240, + 456, 480, 483, 460, 464, 457, 437, 22, 461, 465, + -231, 438, -231, 445, 443, 15, 204, 207, 468, 276, + -282, 16, 226, 277, 395, 271, 396, 210, 469, 397, + 278, 279, 146, 481, 484, 280, 486, 18, 395, 323, + 439, 17, 488, 397, 444, 281, 472, 245, 146, 169, + 170, 171, 172, 302, 173, 174, 175, 176, 146, 489, + 179, 180, 181, 182, 74, 329, 185, 186, 487, 167, + 267, 168, 270, 494, 75, 203, 492, 204, 69, 76, + 230, 189, 168, 20, 21, 169, 170, 171, 172, 77, + 495, 174, 78, 176, 292, 296, 327, 289, 97, 290, + 82, 297, 169, 170, 171, 172, 69, 173, 174, 175, + 176, 339, 99, 179, 180, 181, 182, 189, 106, 185, + 186, 72, 73, 169, 170, 171, 172, 372, 173, 174, + 175, 176, 101, 380, 189, 324, 331, 168, 332, 154, + 185, 186, 171, 172, 228, 366, 174, 168, 176, 333, + 370, 102, 168, 162, 382, 189, 383, 410, 338, 204, + 417, 421, 168, 168, 69, 430, 374, 431, 169, 170, + 171, 172, 189, 173, 174, 175, 176, 164, 423, 179, + 180, 181, 182, 291, 284, 185, 186, -196, 7, 8, + 442, 287, 431, 9, 288, 448, 10, 168, 82, 474, + 189, 168, 299, 493, 69, 168, 367, 300, 305, 301, + 303, 306, 307, 373, 447, 334, 308, 425, 309, 69, + 146, 169, 170, 171, 172, 318, 173, 174, 175, 176, + 311, 92, 179, 180, 181, 182, 92, 93, 185, 186, + 319, 320, 93, 322, 321, 476, 325, 189, 350, 353, + 352, 355, 356, 189, 371, 363, 141, 364, 365, 388, + 413, 414, 415, 416, 424, 156, 157, 158, 161, 418, + 69, 422, 432, 434, 163, 449, 433, 429, 467, 453, + 466, 471, 473, 490, 295, 345, 298, 362, 479, 482, + 485, 286, 496, 349, 150, 235, 211, 408, 497, 440, + 0, 0, 0, 0, 0, 491, 0, 0, 0, 0, + 0, 0, 92, 0, 231, 0, 0, 236, 93, 0, + 0, 0, 0, 246, 247, 248, 249, 250, 251, 252, + 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, + 263, 264, 265, 266, 0, 268, 0, 272, 0, 273, + 274, 0, 82, 282, 283, 0, 0, 0, 69, 141, + 0, 0, 169, 170, 171, 172, 0, 173, 174, 175, + 176, 0, 0, 179, 180, 181, 182, 0, 0, 185, + 186, 0, 0, 0, 0, 0, 0, 313, 0, 314, + 169, 170, 171, 172, 189, 173, 174, 175, 176, 177, + 178, 179, 180, 181, 182, 183, 184, 185, 186, 343, + 0, 0, 187, 0, 0, 0, 0, 188, 0, 0, + 0, 0, 189, 0, 0, 0, 0, 0, 0, 0, + 335, 336, 0, 340, 341, 0, 342, 0, 0, 344, + 0, 0, 0, 0, 0, 190, 346, 0, 347, 191, + 0, 0, 0, 192, 193, 0, 194, 195, 0, 196, + 197, 354, 0, 198, 141, 0, 0, 358, 0, 0, + 361, 199, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 368, 369, 0, 0, 0, 0, 0, 375, 376, + 159, 0, 0, 0, 0, 0, 0, 0, 387, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 406, 0, + 0, 141, 108, 241, 0, 411, 0, 110, 111, 242, + 0, 112, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 419, 420, 0, 0, 23, 24, 25, 426, + 427, 428, 26, 0, 0, 27, 113, 114, 0, 0, + 29, 0, 0, 115, 116, 117, 0, 0, 33, 0, + 34, 243, 0, 35, 0, 0, 36, 118, 37, 38, + 0, 39, 40, 0, 41, 42, 0, 0, 43, 0, + 0, 0, 44, 45, 46, 47, 119, 0, 120, 0, + 0, 48, 49, 50, 0, 121, 52, 0, 53, 54, + 55, 56, 57, 58, 0, 0, 59, 0, 81, 61, + 0, 122, 62, 0, 0, 0, 63, 0, 0, 64, + 65, 123, 124, 67, 125, 126, 108, 328, 0, 0, + 0, 110, 111, 0, 0, 112, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 23, 24, 25, 0, 0, 0, 26, 0, 0, 27, + 113, 114, 0, 0, 29, 0, 0, 115, 116, 117, + 0, 0, 33, 0, 34, 0, 0, 35, 0, 0, + 36, 118, 37, 38, 0, 39, 40, 0, 41, 42, + 0, 0, 43, 0, 0, 0, 44, 45, 46, 47, + 119, 0, 120, 0, 0, 48, 49, 50, 0, 121, + 52, 0, 53, 54, 55, 56, 57, 58, 97, 0, + 59, 0, 81, 61, 0, 122, 62, 0, 0, 0, + 63, 0, 0, 64, 65, 123, 124, 67, 125, 126, + 108, 379, 0, 0, 0, 110, 111, 0, 0, 112, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 23, 24, 25, 0, 0, 0, + 26, 0, 0, 27, 113, 114, 0, 0, 29, 0, + 0, 115, 116, 117, 0, 0, 33, 0, 34, 0, + 0, 35, 0, 0, 36, 118, 37, 38, 0, 39, + 40, 0, 41, 42, 0, 0, 43, 0, 0, 0, + 44, 45, 46, 47, 119, 0, 120, 0, 0, 48, + 49, 50, 0, 121, 52, 0, 53, 54, 55, 56, + 57, 58, 97, 0, 59, 0, 81, 61, 0, 122, + 62, 0, 0, 0, 63, 0, 0, 64, 65, 123, + 124, 67, 125, 126, 108, 109, 0, 0, 0, 110, + 111, 0, 0, 112, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, + 25, 0, 0, 0, 26, 0, 0, 27, 113, 114, + 0, 0, 29, 0, 0, 115, 116, 117, 0, 0, + 33, 0, 34, 0, 0, 35, 0, 0, 36, 118, + 37, 38, 0, 39, 40, 0, 41, 42, 0, 0, + 43, 0, 0, 0, 44, 45, 46, 47, 119, 0, + 120, 0, 0, 48, 49, 50, 0, 121, 52, 0, + 53, 54, 55, 56, 57, 58, 0, 0, 59, 0, + 81, 61, 0, 122, 62, 0, 0, 0, 63, 0, + 0, 64, 65, 123, 124, 67, 125, 126, 108, 0, + 0, 0, 0, 110, 111, 0, 0, 112, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 23, 24, 25, 0, 0, 0, 26, 0, + 0, 27, 113, 114, 0, 0, 29, 0, 0, 115, + 116, 117, 0, 0, 33, 0, 34, 0, 0, 35, + 0, 0, 36, 118, 37, 38, 0, 39, 40, 0, + 41, 42, 0, 0, 43, 0, 0, 0, 44, 45, + 46, 47, 119, 0, 120, 0, 0, 48, 49, 50, + 0, 121, 52, 0, 53, 54, 55, 56, 57, 58, + 0, 0, 59, 0, 81, 61, 0, 122, 62, 0, + 0, 0, 63, 159, 0, 64, 65, 123, 124, 67, + 125, 126, 108, 446, 0, 0, 0, 110, 111, 0, + 0, 112, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 23, 24, 25, 0, + 0, 0, 26, 0, 0, 27, 113, 114, 0, 0, + 29, 0, 0, 115, 116, 117, 0, 0, 33, 0, + 34, 0, 0, 35, 0, 0, 36, 118, 37, 38, + 0, 39, 40, 0, 41, 42, 0, 0, 43, 0, + 0, 0, 44, 45, 46, 47, 119, 0, 120, 0, + 0, 48, 49, 50, 0, 121, 52, 0, 53, 54, + 55, 56, 57, 58, 0, 0, 59, 0, 81, 61, + 0, 122, 62, 0, 0, 0, 63, 0, 0, 64, + 65, 123, 124, 67, 125, 126, 108, 475, 0, 0, + 0, 110, 111, 0, 0, 112, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 23, 24, 25, 0, 0, 0, 26, 0, 0, 27, + 113, 114, 0, 0, 29, 0, 0, 115, 116, 117, + 0, 0, 33, 0, 34, 0, 0, 35, 0, 0, + 36, 118, 37, 38, 0, 39, 40, 0, 41, 42, + 0, 0, 43, 0, 0, 0, 44, 45, 46, 47, + 119, 0, 120, 0, 0, 48, 49, 50, 0, 121, + 52, 0, 53, 54, 55, 56, 57, 58, 0, 0, + 59, 0, 81, 61, 0, 122, 62, 0, 0, 0, + 63, 0, 0, 64, 65, 123, 124, 67, 125, 126, + 108, 0, 0, 0, 0, 110, 111, 0, 0, 112, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 23, 24, 25, 0, 0, 0, + 26, 0, 0, 27, 113, 114, 0, 0, 29, 0, + 0, 115, 116, 117, 0, 0, 33, 0, 34, 0, + 0, 35, 0, 0, 36, 118, 37, 38, 0, 39, + 40, 0, 41, 42, 0, 0, 43, 0, 0, 0, + 44, 45, 46, 47, 119, 0, 120, 0, 0, 48, + 49, 50, 0, 121, 52, 0, 53, 54, 55, 56, + 57, 58, 0, 0, 59, 0, 81, 61, 0, 122, + 62, 0, 0, 0, 63, 0, 0, 64, 65, 123, + 124, 67, 125, 126, 293, 0, 0, 0, 0, 205, + 206, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, + 25, 0, 0, 0, 26, 0, 0, 27, 0, 28, + 0, 0, 29, 0, 0, 115, 116, 117, 0, 0, + 33, 0, 34, 0, 0, 35, 0, 0, 36, 118, + 37, 38, 0, 39, 40, 294, 41, 42, 0, 0, + 43, 0, 0, 0, 44, 45, 46, 47, 0, 0, + 120, 0, 0, 48, 49, 50, 0, 51, 52, 0, + 53, 54, 55, 56, 57, 58, 144, 0, 59, 0, + 81, 61, 0, 122, 62, 0, 0, 0, 63, 0, + 0, 64, 65, 123, 124, 67, 125, 0, 0, 0, + 23, 24, 25, 0, 0, 0, 26, 0, 0, 27, + 0, 28, 0, 0, 29, 0, 0, 30, 31, 32, + 0, 0, 33, 0, 34, 0, 0, 35, 0, 0, + 36, 0, 37, 38, 0, 39, 40, 0, 41, 42, + 0, 0, 43, 0, 0, 0, 44, 45, 46, 47, + 0, 0, 0, 0, 0, 48, 49, 50, 0, 51, + 52, 0, 53, 54, 55, 56, 57, 58, 269, 0, + 59, 0, 81, 61, 0, 0, 62, 0, 0, 0, + 63, 0, 0, 64, 65, 0, 66, 67, 0, 0, + 0, 0, 23, 24, 25, 0, 0, 0, 26, 0, + 0, 27, 0, 28, 0, 0, 29, 0, 0, 30, + 31, 32, 0, 0, 33, 0, 34, 0, 0, 35, + 0, 0, 36, 0, 37, 38, 0, 39, 40, 0, + 41, 42, 0, 0, 43, 0, 0, 0, 44, 45, + 46, 47, 0, 0, 0, 0, 0, 48, 49, 50, + 0, 51, 52, 0, 53, 54, 55, 56, 57, 58, + 337, 0, 59, 0, 81, 61, 0, 0, 62, 0, + 0, 0, 63, 0, 0, 64, 65, 0, 66, 67, + 0, 0, 0, 0, 23, 24, 25, 0, 0, 0, + 26, 0, 0, 27, 0, 28, 0, 0, 29, 0, + 0, 30, 31, 32, 0, 0, 33, 0, 34, 0, + 0, 35, 0, 0, 36, 0, 37, 38, 0, 39, + 40, 0, 41, 42, 0, 0, 43, 0, 0, 0, + 44, 45, 46, 47, 0, 0, 0, 0, 0, 48, + 49, 50, 0, 51, 52, 0, 53, 54, 55, 56, + 57, 58, 0, 0, 59, 0, 81, 61, 0, 0, + 62, 0, 0, 0, 63, 0, 0, 64, 65, 0, + 66, 67, 169, 170, 171, 172, 0, 173, 174, 175, + 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 0, 0, 0, 187, 0, 0, 0, 0, 188, + 169, 170, 171, 172, 189, 173, 174, 175, 176, 0, + 0, 179, 180, 181, 182, 0, 0, 185, 186, 0, + 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, + 0, 191, 189, 0, 0, 192, 193, 0, 194, 195, + 0, 196, 197, 0, 0, 198, 0, 378, 0, 0, + 0, 0, 0, 199, 0, 0, 0, 0, 0, 0, + 0, 169, 170, 171, 172, 312, 173, 174, 175, 176, + 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, + 0, 0, 0, 187, 0, 0, 0, 0, 188, 169, + 170, 171, 172, 189, 173, 174, 175, 176, 0, 0, + 179, 180, 181, 182, 0, 0, 185, 186, 0, 0, + 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, + 191, 189, 0, 0, 192, 193, 0, 194, 195, 0, + 196, 197, 0, 0, 198, 0, 384, 0, 23, 24, + 25, 0, 199, 0, 26, 0, 0, 27, 0, 28, + 0, 0, 29, 146, 360, 87, 88, 89, 0, 0, + 33, 0, 34, 0, 0, 35, 0, 0, 36, 0, + 37, 38, 0, 39, 40, 90, 41, 42, 0, 0, + 43, 0, 0, 0, 44, 45, 46, 47, 0, 0, + 0, 0, 0, 48, 49, 50, 0, 51, 52, 0, + 53, 54, 55, 56, 57, 58, 0, 0, 59, 0, + 81, 61, 0, 0, 62, 0, 0, 0, 63, 0, + 0, 64, 65, 0, 91, 67, 23, 24, 25, 0, + 0, 0, 26, 0, 0, 27, 0, 28, 0, 0, + 29, 0, 0, 87, 88, 89, 0, 0, 33, 0, + 34, 0, 0, 35, 0, 0, 36, 0, 37, 38, + 0, 39, 40, 90, 41, 42, 0, 0, 43, 0, + 0, 0, 44, 45, 46, 47, 0, 0, 0, 0, + 0, 48, 49, 50, 0, 51, 52, 0, 53, 54, + 55, 56, 57, 58, 0, 0, 59, 0, 81, 61, + 0, 0, 62, 0, 0, 0, 63, 0, 0, 64, + 65, 0, 91, 67, 23, 24, 25, 0, 0, 0, + 26, 0, 0, 27, 0, 28, 0, 0, 29, 0, + 0, 30, 31, 32, 0, 0, 33, 0, 34, 0, + 0, 35, 0, 0, 36, 0, 37, 38, 0, 39, + 40, 0, 41, 42, 0, 0, 43, 0, 0, 0, + 44, 45, 46, 47, 0, 0, 0, 0, 0, 48, + 49, 50, 0, 51, 52, 0, 53, 54, 55, 56, + 57, 58, 0, 0, 59, 0, 60, 61, 0, 0, + 62, 0, 0, 0, 63, 0, 0, 64, 65, 0, + 66, 67, 23, 24, 25, 0, 0, 0, 26, 0, + 0, 27, 0, 28, 0, 0, 29, 0, 0, 30, + 31, 32, 0, 0, 33, 0, 34, 0, 0, 35, + 0, 0, 36, 0, 37, 38, 0, 39, 40, 0, + 41, 42, 0, 0, 43, 0, 0, 0, 44, 45, + 46, 47, 0, 0, 0, 0, 0, 48, 49, 50, + 0, 51, 52, 0, 53, 54, 55, 56, 57, 58, + 0, 0, 59, 0, 81, 61, 0, 0, 62, 0, + 0, 0, 63, 0, 0, 64, 65, 389, 66, 67, + 0, 169, 170, 171, 172, 0, 173, 174, 175, 176, + 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, + 0, 0, 0, 187, 0, 0, 0, 0, 188, 169, + 170, 171, 172, 189, 173, 174, 175, 176, 0, 0, + 179, 180, 181, 182, 0, 0, 185, 186, 0, 0, + 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, + 191, 189, 0, 0, 192, 193, 0, 194, 195, 0, + 196, 197, 0, 0, 198, 0, 385, 0, 0, 390, + 0, 0, 199, 169, 170, 171, 172, 0, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 0, 0, 0, 187, 0, 0, 0, 0, + 188, 169, 170, 171, 172, 189, 173, 174, 175, 176, + 0, 0, 179, 180, 181, 182, 0, 0, 185, 186, + 0, 0, 0, 0, 0, 0, 0, 0, 190, 0, + 0, 0, 191, 189, 0, 0, 192, 193, 0, 194, + 195, 0, 196, 197, 0, 0, 198, 0, 386, 0, + 0, 407, 0, 0, 199, 169, 170, 171, 172, 0, + 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 0, 0, 0, 187, 0, 0, + 0, 0, 188, 0, 0, 0, 0, 189, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 190, 0, 0, 0, 191, 0, 0, 0, 192, 193, + 0, 194, 195, 0, 196, 197, 0, 0, 198, 0, + 0, 0, 0, 441, 0, 0, 199, 169, 170, 171, + 172, 0, 173, 174, 175, 176, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 0, 0, 0, 187, + 0, 0, 0, 0, 188, 0, 0, 0, 0, 189, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 190, 0, 0, 0, 191, 0, 0, 0, + 192, 193, 0, 194, 195, 0, 196, 197, 0, 0, + 198, 0, 0, 0, 169, 170, 171, 172, 199, 173, + 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 0, 0, 0, 187, 0, 0, 200, + 0, 188, 0, 0, 0, 0, 189, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 201, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, + 0, 0, 0, 191, 0, 0, 0, 192, 193, 0, + 194, 195, 0, 196, 197, 0, 0, 198, 0, 0, + 0, 169, 170, 171, 172, 199, 173, 174, 175, 176, + 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, + 0, 0, 0, 187, 0, 317, 0, 0, 188, 0, + 0, 0, 0, 189, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 190, 0, 0, 0, + 191, 0, 0, 0, 192, 193, 0, 194, 195, 0, + 196, 197, 0, 0, 198, 0, 0, 0, 169, 170, + 171, 172, 199, 173, 174, 175, 176, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 0, 0, 0, + 187, 326, 0, 0, 0, 188, 0, 0, 0, 0, + 189, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 190, 0, 0, 0, 191, 0, 0, + 0, 192, 193, 0, 194, 195, 0, 196, 197, 0, + 0, 198, 0, 0, 0, 169, 170, 171, 172, 199, + 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 0, 0, 0, 187, 0, 0, + 0, 0, 188, 0, 0, 0, 0, 189, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 359, 0, 0, 0, 0, 0, 0, 0, 0, + 190, 0, 0, 0, 191, 0, 0, 0, 192, 193, + 0, 194, 195, 0, 196, 197, 0, 0, 198, 0, + 0, 0, 169, 170, 171, 172, 199, 173, 174, 175, + 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 0, 0, 0, 187, 377, 0, 0, 0, 188, + 0, 0, 0, 0, 189, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 190, 0, 0, + 0, 191, 0, 0, 0, 192, 193, 0, 194, 195, + 0, 196, 197, 0, 0, 198, 0, 0, 0, 169, + 170, 171, 172, 199, 173, 174, 175, 176, 177, 178, + 179, 180, 181, 182, 183, 184, 185, 186, 0, 0, + 0, 187, 0, 0, 0, 0, 188, 0, 0, 0, + 0, 189, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 412, 0, 0, 0, 0, + 0, 0, 0, 0, 190, 0, 0, 0, 191, 0, + 0, 0, 192, 193, 0, 194, 195, 0, 196, 197, + 0, 0, 198, 0, 0, 0, 169, 170, 171, 172, + 199, 173, 174, 175, 176, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 0, 0, 0, 187, 0, + 0, 0, 0, 188, 0, 0, 0, 0, 189, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 190, 0, 0, 0, 191, 0, 0, 0, 192, + 193, 0, 194, 195, 0, 196, 197, 0, 0, 198, + 0, 0, 0, 169, 170, 171, 172, 199, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 0, 0, 0, 187, 0, 0, 0, 0, + 188, 0, 0, 0, 0, 189, 169, 170, 171, 172, + 0, 173, 174, 175, 176, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 0, 0, 0, 190, 0, + 0, 0, 191, 188, 0, 0, 192, 193, 189, 194, + 195, 0, 196, 197, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 199, 0, 0, 0, 0, 0, + 0, 190, 0, 0, 0, 191, 0, 0, 0, 192, + 193, 0, 194, 195, 0, 196, 197, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 199 + }; + + const short + parser::yycheck_[] = + { + 19, 20, 21, 300, 108, 153, 19, 20, 21, 75, + 76, 350, 78, 8, 9, 269, 355, 27, 53, 54, + 16, 39, 53, 54, 49, 3, 105, 309, 94, 49, + 39, 40, 33, 111, 27, 43, 114, 103, 47, 0, + 3, 66, 5, 61, 40, 36, 66, 57, 36, 36, + 51, 50, 349, 62, 32, 65, 75, 76, 77, 78, + 79, 165, 75, 76, 57, 78, 79, 85, 77, 148, + 79, 70, 65, 108, 356, 94, 85, 108, 226, 88, + 90, 94, 92, 337, 103, 76, 104, 106, 76, 76, + 103, 35, 431, 106, 4, 104, 6, 48, 7, 92, + 91, 47, 47, 91, 91, 96, 105, 77, 96, 96, + 4, 48, 6, 410, 4, 98, 6, 112, 97, 63, + 4, 68, 6, 67, 75, 191, 77, 146, 107, 80, + 74, 75, 42, 79, 79, 79, 47, 64, 75, 243, + 77, 98, 49, 80, 34, 89, 443, 166, 42, 8, + 9, 10, 11, 219, 13, 14, 15, 16, 42, 66, + 19, 20, 21, 22, 56, 269, 25, 26, 79, 4, + 189, 6, 191, 49, 5, 4, 473, 6, 191, 5, + 4, 40, 6, 16, 17, 8, 9, 10, 11, 106, + 66, 14, 80, 16, 213, 214, 55, 4, 95, 6, + 219, 214, 8, 9, 10, 11, 219, 13, 14, 15, + 16, 277, 3, 19, 20, 21, 22, 40, 6, 25, + 26, 20, 21, 8, 9, 10, 11, 331, 13, 14, + 15, 16, 3, 337, 40, 4, 3, 6, 5, 4, + 25, 26, 10, 11, 110, 4, 14, 6, 16, 55, + 4, 317, 6, 3, 3, 40, 5, 4, 277, 6, + 4, 4, 6, 6, 277, 4, 332, 6, 8, 9, + 10, 11, 40, 13, 14, 15, 16, 3, 382, 19, + 20, 21, 22, 3, 109, 25, 26, 98, 99, 100, + 4, 112, 6, 104, 112, 4, 107, 6, 317, 4, + 40, 6, 29, 4, 317, 6, 325, 79, 32, 73, + 80, 3, 73, 332, 418, 55, 73, 383, 3, 332, + 42, 8, 9, 10, 11, 6, 13, 14, 15, 16, + 93, 350, 19, 20, 21, 22, 355, 350, 25, 26, + 6, 4, 355, 4, 6, 449, 5, 40, 3, 3, + 41, 3, 3, 40, 4, 113, 101, 113, 113, 4, + 4, 4, 4, 4, 383, 110, 111, 112, 113, 3, + 383, 4, 69, 48, 119, 3, 395, 34, 48, 69, + 69, 88, 4, 69, 214, 290, 214, 317, 28, 28, + 28, 204, 491, 301, 106, 161, 148, 355, 496, 399, + -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, + -1, -1, 431, -1, 159, -1, -1, 162, 431, -1, + -1, -1, -1, 168, 169, 170, 171, 172, 173, 174, + 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, -1, 190, -1, 192, -1, 194, + 195, -1, 471, 198, 199, -1, -1, -1, 471, 204, + -1, -1, 8, 9, 10, 11, -1, 13, 14, 15, + 16, -1, -1, 19, 20, 21, 22, -1, -1, 25, + 26, -1, -1, -1, -1, -1, -1, 232, -1, 234, + 8, 9, 10, 11, 40, 13, 14, 15, 16, 17, + 18, 19, 20, 21, 22, 23, 24, 25, 26, 55, + -1, -1, 30, -1, -1, -1, -1, 35, -1, -1, + -1, -1, 40, -1, -1, -1, -1, -1, -1, -1, + 275, 276, -1, 278, 279, -1, 281, -1, -1, 284, + -1, -1, -1, -1, -1, 63, 291, -1, 293, 67, + -1, -1, -1, 71, 72, -1, 74, 75, -1, 77, + 78, 306, -1, 81, 309, -1, -1, 312, -1, -1, + 315, 89, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 326, 327, -1, -1, -1, -1, -1, 333, 334, + 108, -1, -1, -1, -1, -1, -1, -1, 343, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 353, -1, + -1, 356, 3, 4, -1, 360, -1, 8, 9, 10, + -1, 12, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 377, 378, -1, -1, 27, 28, 29, 384, + 385, 386, 33, -1, -1, 36, 37, 38, -1, -1, + 41, -1, -1, 44, 45, 46, -1, -1, 49, -1, + 51, 52, -1, 54, -1, -1, 57, 58, 59, 60, + -1, 62, 63, -1, 65, 66, -1, -1, 69, -1, + -1, -1, 73, 74, 75, 76, 77, -1, 79, -1, + -1, 82, 83, 84, -1, 86, 87, -1, 89, 90, + 91, 92, 93, 94, -1, -1, 97, -1, 99, 100, + -1, 102, 103, -1, -1, -1, 107, -1, -1, 110, + 111, 112, 113, 114, 115, 116, 3, 4, -1, -1, + -1, 8, 9, -1, -1, 12, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 27, 28, 29, -1, -1, -1, 33, -1, -1, 36, + 37, 38, -1, -1, 41, -1, -1, 44, 45, 46, + -1, -1, 49, -1, 51, -1, -1, 54, -1, -1, + 57, 58, 59, 60, -1, 62, 63, -1, 65, 66, + -1, -1, 69, -1, -1, -1, 73, 74, 75, 76, + 77, -1, 79, -1, -1, 82, 83, 84, -1, 86, + 87, -1, 89, 90, 91, 92, 93, 94, 95, -1, + 97, -1, 99, 100, -1, 102, 103, -1, -1, -1, + 107, -1, -1, 110, 111, 112, 113, 114, 115, 116, + 3, 4, -1, -1, -1, 8, 9, -1, -1, 12, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 27, 28, 29, -1, -1, -1, + 33, -1, -1, 36, 37, 38, -1, -1, 41, -1, + -1, 44, 45, 46, -1, -1, 49, -1, 51, -1, + -1, 54, -1, -1, 57, 58, 59, 60, -1, 62, + 63, -1, 65, 66, -1, -1, 69, -1, -1, -1, + 73, 74, 75, 76, 77, -1, 79, -1, -1, 82, + 83, 84, -1, 86, 87, -1, 89, 90, 91, 92, + 93, 94, 95, -1, 97, -1, 99, 100, -1, 102, + 103, -1, -1, -1, 107, -1, -1, 110, 111, 112, + 113, 114, 115, 116, 3, 4, -1, -1, -1, 8, + 9, -1, -1, 12, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 27, 28, + 29, -1, -1, -1, 33, -1, -1, 36, 37, 38, + -1, -1, 41, -1, -1, 44, 45, 46, -1, -1, + 49, -1, 51, -1, -1, 54, -1, -1, 57, 58, + 59, 60, -1, 62, 63, -1, 65, 66, -1, -1, + 69, -1, -1, -1, 73, 74, 75, 76, 77, -1, + 79, -1, -1, 82, 83, 84, -1, 86, 87, -1, + 89, 90, 91, 92, 93, 94, -1, -1, 97, -1, + 99, 100, -1, 102, 103, -1, -1, -1, 107, -1, + -1, 110, 111, 112, 113, 114, 115, 116, 3, -1, + -1, -1, -1, 8, 9, -1, -1, 12, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 27, 28, 29, -1, -1, -1, 33, -1, + -1, 36, 37, 38, -1, -1, 41, -1, -1, 44, + 45, 46, -1, -1, 49, -1, 51, -1, -1, 54, + -1, -1, 57, 58, 59, 60, -1, 62, 63, -1, + 65, 66, -1, -1, 69, -1, -1, -1, 73, 74, + 75, 76, 77, -1, 79, -1, -1, 82, 83, 84, + -1, 86, 87, -1, 89, 90, 91, 92, 93, 94, + -1, -1, 97, -1, 99, 100, -1, 102, 103, -1, + -1, -1, 107, 108, -1, 110, 111, 112, 113, 114, + 115, 116, 3, 4, -1, -1, -1, 8, 9, -1, + -1, 12, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 27, 28, 29, -1, + -1, -1, 33, -1, -1, 36, 37, 38, -1, -1, + 41, -1, -1, 44, 45, 46, -1, -1, 49, -1, + 51, -1, -1, 54, -1, -1, 57, 58, 59, 60, + -1, 62, 63, -1, 65, 66, -1, -1, 69, -1, + -1, -1, 73, 74, 75, 76, 77, -1, 79, -1, + -1, 82, 83, 84, -1, 86, 87, -1, 89, 90, + 91, 92, 93, 94, -1, -1, 97, -1, 99, 100, + -1, 102, 103, -1, -1, -1, 107, -1, -1, 110, + 111, 112, 113, 114, 115, 116, 3, 4, -1, -1, + -1, 8, 9, -1, -1, 12, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 27, 28, 29, -1, -1, -1, 33, -1, -1, 36, + 37, 38, -1, -1, 41, -1, -1, 44, 45, 46, + -1, -1, 49, -1, 51, -1, -1, 54, -1, -1, + 57, 58, 59, 60, -1, 62, 63, -1, 65, 66, + -1, -1, 69, -1, -1, -1, 73, 74, 75, 76, + 77, -1, 79, -1, -1, 82, 83, 84, -1, 86, + 87, -1, 89, 90, 91, 92, 93, 94, -1, -1, + 97, -1, 99, 100, -1, 102, 103, -1, -1, -1, + 107, -1, -1, 110, 111, 112, 113, 114, 115, 116, + 3, -1, -1, -1, -1, 8, 9, -1, -1, 12, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 27, 28, 29, -1, -1, -1, + 33, -1, -1, 36, 37, 38, -1, -1, 41, -1, + -1, 44, 45, 46, -1, -1, 49, -1, 51, -1, + -1, 54, -1, -1, 57, 58, 59, 60, -1, 62, + 63, -1, 65, 66, -1, -1, 69, -1, -1, -1, + 73, 74, 75, 76, 77, -1, 79, -1, -1, 82, + 83, 84, -1, 86, 87, -1, 89, 90, 91, 92, + 93, 94, -1, -1, 97, -1, 99, 100, -1, 102, + 103, -1, -1, -1, 107, -1, -1, 110, 111, 112, + 113, 114, 115, 116, 3, -1, -1, -1, -1, 8, + 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 27, 28, + 29, -1, -1, -1, 33, -1, -1, 36, -1, 38, + -1, -1, 41, -1, -1, 44, 45, 46, -1, -1, + 49, -1, 51, -1, -1, 54, -1, -1, 57, 58, + 59, 60, -1, 62, 63, 64, 65, 66, -1, -1, + 69, -1, -1, -1, 73, 74, 75, 76, -1, -1, + 79, -1, -1, 82, 83, 84, -1, 86, 87, -1, + 89, 90, 91, 92, 93, 94, 3, -1, 97, -1, + 99, 100, -1, 102, 103, -1, -1, -1, 107, -1, + -1, 110, 111, 112, 113, 114, 115, -1, -1, -1, + 27, 28, 29, -1, -1, -1, 33, -1, -1, 36, + -1, 38, -1, -1, 41, -1, -1, 44, 45, 46, + -1, -1, 49, -1, 51, -1, -1, 54, -1, -1, + 57, -1, 59, 60, -1, 62, 63, -1, 65, 66, + -1, -1, 69, -1, -1, -1, 73, 74, 75, 76, + -1, -1, -1, -1, -1, 82, 83, 84, -1, 86, + 87, -1, 89, 90, 91, 92, 93, 94, 3, -1, + 97, -1, 99, 100, -1, -1, 103, -1, -1, -1, + 107, -1, -1, 110, 111, -1, 113, 114, -1, -1, + -1, -1, 27, 28, 29, -1, -1, -1, 33, -1, + -1, 36, -1, 38, -1, -1, 41, -1, -1, 44, + 45, 46, -1, -1, 49, -1, 51, -1, -1, 54, + -1, -1, 57, -1, 59, 60, -1, 62, 63, -1, + 65, 66, -1, -1, 69, -1, -1, -1, 73, 74, + 75, 76, -1, -1, -1, -1, -1, 82, 83, 84, + -1, 86, 87, -1, 89, 90, 91, 92, 93, 94, + 3, -1, 97, -1, 99, 100, -1, -1, 103, -1, + -1, -1, 107, -1, -1, 110, 111, -1, 113, 114, + -1, -1, -1, -1, 27, 28, 29, -1, -1, -1, + 33, -1, -1, 36, -1, 38, -1, -1, 41, -1, + -1, 44, 45, 46, -1, -1, 49, -1, 51, -1, + -1, 54, -1, -1, 57, -1, 59, 60, -1, 62, + 63, -1, 65, 66, -1, -1, 69, -1, -1, -1, + 73, 74, 75, 76, -1, -1, -1, -1, -1, 82, + 83, 84, -1, 86, 87, -1, 89, 90, 91, 92, + 93, 94, -1, -1, 97, -1, 99, 100, -1, -1, + 103, -1, -1, -1, 107, -1, -1, 110, 111, -1, + 113, 114, 8, 9, 10, 11, -1, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, + 26, -1, -1, -1, 30, -1, -1, -1, -1, 35, + 8, 9, 10, 11, 40, 13, 14, 15, 16, -1, + -1, 19, 20, 21, 22, -1, -1, 25, 26, -1, + -1, -1, -1, -1, -1, -1, -1, 63, -1, -1, + -1, 67, 40, -1, -1, 71, 72, -1, 74, 75, + -1, 77, 78, -1, -1, 81, -1, 55, -1, -1, + -1, -1, -1, 89, -1, -1, -1, -1, -1, -1, + -1, 8, 9, 10, 11, 101, 13, 14, 15, 16, + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, + -1, -1, -1, 30, -1, -1, -1, -1, 35, 8, + 9, 10, 11, 40, 13, 14, 15, 16, -1, -1, + 19, 20, 21, 22, -1, -1, 25, 26, -1, -1, + -1, -1, -1, -1, -1, -1, 63, -1, -1, -1, + 67, 40, -1, -1, 71, 72, -1, 74, 75, -1, + 77, 78, -1, -1, 81, -1, 55, -1, 27, 28, + 29, -1, 89, -1, 33, -1, -1, 36, -1, 38, + -1, -1, 41, 42, 101, 44, 45, 46, -1, -1, + 49, -1, 51, -1, -1, 54, -1, -1, 57, -1, + 59, 60, -1, 62, 63, 64, 65, 66, -1, -1, + 69, -1, -1, -1, 73, 74, 75, 76, -1, -1, + -1, -1, -1, 82, 83, 84, -1, 86, 87, -1, + 89, 90, 91, 92, 93, 94, -1, -1, 97, -1, + 99, 100, -1, -1, 103, -1, -1, -1, 107, -1, + -1, 110, 111, -1, 113, 114, 27, 28, 29, -1, + -1, -1, 33, -1, -1, 36, -1, 38, -1, -1, + 41, -1, -1, 44, 45, 46, -1, -1, 49, -1, + 51, -1, -1, 54, -1, -1, 57, -1, 59, 60, + -1, 62, 63, 64, 65, 66, -1, -1, 69, -1, + -1, -1, 73, 74, 75, 76, -1, -1, -1, -1, + -1, 82, 83, 84, -1, 86, 87, -1, 89, 90, + 91, 92, 93, 94, -1, -1, 97, -1, 99, 100, + -1, -1, 103, -1, -1, -1, 107, -1, -1, 110, + 111, -1, 113, 114, 27, 28, 29, -1, -1, -1, + 33, -1, -1, 36, -1, 38, -1, -1, 41, -1, + -1, 44, 45, 46, -1, -1, 49, -1, 51, -1, + -1, 54, -1, -1, 57, -1, 59, 60, -1, 62, + 63, -1, 65, 66, -1, -1, 69, -1, -1, -1, + 73, 74, 75, 76, -1, -1, -1, -1, -1, 82, + 83, 84, -1, 86, 87, -1, 89, 90, 91, 92, + 93, 94, -1, -1, 97, -1, 99, 100, -1, -1, + 103, -1, -1, -1, 107, -1, -1, 110, 111, -1, + 113, 114, 27, 28, 29, -1, -1, -1, 33, -1, + -1, 36, -1, 38, -1, -1, 41, -1, -1, 44, + 45, 46, -1, -1, 49, -1, 51, -1, -1, 54, + -1, -1, 57, -1, 59, 60, -1, 62, 63, -1, + 65, 66, -1, -1, 69, -1, -1, -1, 73, 74, + 75, 76, -1, -1, -1, -1, -1, 82, 83, 84, + -1, 86, 87, -1, 89, 90, 91, 92, 93, 94, + -1, -1, 97, -1, 99, 100, -1, -1, 103, -1, + -1, -1, 107, -1, -1, 110, 111, 4, 113, 114, + -1, 8, 9, 10, 11, -1, 13, 14, 15, 16, + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, + -1, -1, -1, 30, -1, -1, -1, -1, 35, 8, + 9, 10, 11, 40, 13, 14, 15, 16, -1, -1, + 19, 20, 21, 22, -1, -1, 25, 26, -1, -1, + -1, -1, -1, -1, -1, -1, 63, -1, -1, -1, + 67, 40, -1, -1, 71, 72, -1, 74, 75, -1, + 77, 78, -1, -1, 81, -1, 55, -1, -1, 4, + -1, -1, 89, 8, 9, 10, 11, -1, 13, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, -1, -1, -1, 30, -1, -1, -1, -1, + 35, 8, 9, 10, 11, 40, 13, 14, 15, 16, + -1, -1, 19, 20, 21, 22, -1, -1, 25, 26, + -1, -1, -1, -1, -1, -1, -1, -1, 63, -1, + -1, -1, 67, 40, -1, -1, 71, 72, -1, 74, + 75, -1, 77, 78, -1, -1, 81, -1, 55, -1, + -1, 4, -1, -1, 89, 8, 9, 10, 11, -1, + 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, + 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, + -1, -1, 35, -1, -1, -1, -1, 40, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 63, -1, -1, -1, 67, -1, -1, -1, 71, 72, + -1, 74, 75, -1, 77, 78, -1, -1, 81, -1, + -1, -1, -1, 4, -1, -1, 89, 8, 9, 10, + 11, -1, 13, 14, 15, 16, 17, 18, 19, 20, + 21, 22, 23, 24, 25, 26, -1, -1, -1, 30, + -1, -1, -1, -1, 35, -1, -1, -1, -1, 40, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 63, -1, -1, -1, 67, -1, -1, -1, + 71, 72, -1, 74, 75, -1, 77, 78, -1, -1, + 81, -1, -1, -1, 8, 9, 10, 11, 89, 13, + 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, + 24, 25, 26, -1, -1, -1, 30, -1, -1, 33, + -1, 35, -1, -1, -1, -1, 40, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 51, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 63, + -1, -1, -1, 67, -1, -1, -1, 71, 72, -1, + 74, 75, -1, 77, 78, -1, -1, 81, -1, -1, + -1, 8, 9, 10, 11, 89, 13, 14, 15, 16, + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, + -1, -1, -1, 30, -1, 32, -1, -1, 35, -1, + -1, -1, -1, 40, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 63, -1, -1, -1, + 67, -1, -1, -1, 71, 72, -1, 74, 75, -1, + 77, 78, -1, -1, 81, -1, -1, -1, 8, 9, + 10, 11, 89, 13, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, + 30, 31, -1, -1, -1, 35, -1, -1, -1, -1, + 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 63, -1, -1, -1, 67, -1, -1, + -1, 71, 72, -1, 74, 75, -1, 77, 78, -1, + -1, 81, -1, -1, -1, 8, 9, 10, 11, 89, + 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, + 23, 24, 25, 26, -1, -1, -1, 30, -1, -1, + -1, -1, 35, -1, -1, -1, -1, 40, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 54, -1, -1, -1, -1, -1, -1, -1, -1, + 63, -1, -1, -1, 67, -1, -1, -1, 71, 72, + -1, 74, 75, -1, 77, 78, -1, -1, 81, -1, + -1, -1, 8, 9, 10, 11, 89, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, + 26, -1, -1, -1, 30, 31, -1, -1, -1, 35, + -1, -1, -1, -1, 40, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 63, -1, -1, + -1, 67, -1, -1, -1, 71, 72, -1, 74, 75, + -1, 77, 78, -1, -1, 81, -1, -1, -1, 8, + 9, 10, 11, 89, 13, 14, 15, 16, 17, 18, + 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, + -1, 30, -1, -1, -1, -1, 35, -1, -1, -1, + -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 54, -1, -1, -1, -1, + -1, -1, -1, -1, 63, -1, -1, -1, 67, -1, + -1, -1, 71, 72, -1, 74, 75, -1, 77, 78, + -1, -1, 81, -1, -1, -1, 8, 9, 10, 11, + 89, 13, 14, 15, 16, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 26, -1, -1, -1, 30, -1, + -1, -1, -1, 35, -1, -1, -1, -1, 40, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 63, -1, -1, -1, 67, -1, -1, -1, 71, + 72, -1, 74, 75, -1, 77, 78, -1, -1, 81, + -1, -1, -1, 8, 9, 10, 11, 89, 13, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, -1, -1, -1, 30, -1, -1, -1, -1, + 35, -1, -1, -1, -1, 40, 8, 9, 10, 11, + -1, 13, 14, 15, 16, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 26, -1, -1, -1, 63, -1, + -1, -1, 67, 35, -1, -1, 71, 72, 40, 74, + 75, -1, 77, 78, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 89, -1, -1, -1, -1, -1, + -1, 63, -1, -1, -1, 67, -1, -1, -1, 71, + 72, -1, 74, 75, -1, 77, 78, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 89 + }; + + const unsigned char + parser::yystos_[] = + { + 0, 43, 118, 119, 149, 151, 171, 99, 100, 104, + 107, 144, 152, 0, 7, 98, 68, 98, 64, 142, + 142, 142, 77, 27, 28, 29, 33, 36, 38, 41, + 44, 45, 46, 49, 51, 54, 57, 59, 60, 62, + 63, 65, 66, 69, 73, 74, 75, 76, 82, 83, + 84, 86, 87, 89, 90, 91, 92, 93, 94, 97, + 99, 100, 103, 107, 110, 111, 113, 114, 121, 122, + 123, 146, 146, 146, 56, 5, 5, 106, 80, 3, + 32, 99, 121, 123, 123, 121, 123, 44, 45, 46, + 64, 113, 121, 122, 124, 160, 161, 95, 141, 3, + 150, 3, 123, 127, 128, 155, 6, 170, 3, 4, + 8, 9, 12, 37, 38, 44, 45, 46, 58, 77, + 79, 86, 102, 112, 113, 115, 116, 120, 121, 122, + 129, 130, 131, 132, 133, 134, 135, 136, 138, 139, + 140, 140, 147, 148, 3, 123, 42, 158, 159, 162, + 160, 162, 168, 169, 4, 132, 140, 140, 140, 108, + 137, 140, 3, 140, 3, 3, 5, 4, 6, 8, + 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 30, 35, 40, + 63, 67, 71, 72, 74, 75, 77, 78, 81, 89, + 33, 51, 143, 4, 6, 8, 9, 112, 125, 126, + 121, 158, 39, 40, 47, 62, 77, 79, 85, 88, + 104, 157, 39, 61, 85, 104, 6, 168, 110, 153, + 4, 140, 53, 54, 108, 137, 140, 27, 57, 65, + 92, 4, 10, 52, 132, 121, 140, 140, 140, 140, + 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 140, 140, 140, 140, 121, 140, 3, + 121, 123, 140, 140, 140, 35, 63, 67, 74, 75, + 79, 89, 140, 140, 109, 145, 147, 112, 112, 4, + 6, 3, 121, 3, 64, 120, 121, 122, 125, 29, + 79, 73, 123, 80, 154, 32, 3, 73, 73, 3, + 168, 93, 101, 140, 140, 53, 54, 32, 6, 6, + 4, 6, 4, 132, 4, 5, 31, 55, 4, 132, + 141, 3, 5, 55, 55, 140, 140, 3, 121, 123, + 140, 140, 140, 55, 140, 126, 140, 140, 154, 143, + 3, 164, 41, 3, 140, 3, 3, 148, 140, 54, + 101, 140, 128, 113, 113, 113, 4, 121, 140, 140, + 4, 4, 132, 121, 123, 140, 140, 31, 55, 4, + 132, 141, 3, 5, 55, 55, 55, 140, 4, 4, + 4, 154, 124, 163, 48, 75, 77, 80, 165, 166, + 167, 27, 57, 65, 90, 92, 140, 4, 163, 148, + 4, 140, 54, 4, 4, 4, 4, 4, 3, 140, + 140, 4, 4, 132, 121, 123, 140, 140, 140, 34, + 4, 6, 69, 121, 48, 50, 70, 105, 48, 77, + 165, 4, 4, 4, 34, 154, 4, 132, 4, 3, + 124, 49, 66, 69, 36, 76, 91, 96, 36, 76, + 91, 96, 36, 76, 91, 96, 69, 48, 97, 107, + 156, 88, 154, 4, 4, 4, 132, 49, 66, 28, + 47, 79, 28, 47, 79, 28, 47, 79, 49, 66, + 69, 123, 154, 4, 49, 66, 164, 167 + }; + + const unsigned char + parser::yyr1_[] = + { + 0, 117, 118, 118, 119, 119, 119, 120, 120, 120, + 120, 120, 120, 120, 120, 120, 121, 121, 122, 122, + 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, + 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, + 122, 122, 122, 122, 122, 122, 122, 122, 122, 122, + 122, 122, 122, 122, 122, 122, 122, 123, 123, 123, + 123, 123, 123, 124, 124, 124, 124, 124, 124, 124, + 125, 125, 126, 126, 127, 127, 128, 128, 128, 129, + 129, 129, 129, 130, 130, 130, 130, 130, 130, 130, + 130, 130, 130, 130, 130, 130, 130, 130, 130, 130, + 130, 130, 130, 130, 131, 131, 131, 131, 131, 131, + 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, + 132, 132, 133, 133, 133, 133, 134, 134, 134, 135, + 135, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 136, 136, 136, 136, 136, 136, 137, 137, 138, + 138, 138, 138, 139, 139, 139, 139, 140, 140, 140, + 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, + 140, 140, 140, 140, 140, 141, 142, 142, 143, 143, + 143, 144, 144, 145, 145, 146, 146, 146, 147, 148, + 148, 149, 150, 150, 150, 151, 152, 152, 152, 153, + 153, 154, 154, 154, 154, 154, 154, 155, 155, 156, + 156, 156, 157, 157, 158, 158, 158, 158, 158, 158, + 158, 158, 158, 158, 158, 158, 158, 158, 158, 159, + 159, 160, 160, 161, 161, 162, 162, 163, 163, 164, + 164, 165, 165, 165, 165, 165, 165, 165, 165, 165, + 165, 165, 165, 165, 165, 165, 165, 166, 166, 167, + 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, + 167, 167, 167, 168, 168, 168, 168, 168, 169, 169, + 169, 170, 170, 171, 171 + }; + + const signed char + parser::yyr2_[] = + { + 0, 2, 1, 2, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 2, 2, 1, 1, 1, 2, 1, 4, 6, 2, + 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, + 4, 4, 5, 5, 5, 5, 6, 6, 6, 6, + 1, 3, 4, 5, 3, 4, 2, 2, 3, 5, + 6, 4, 5, 5, 5, 3, 7, 8, 6, 5, + 6, 6, 6, 4, 8, 9, 7, 4, 5, 6, + 4, 5, 3, 4, 6, 6, 6, 1, 1, 1, + 5, 3, 1, 1, 1, 1, 3, 6, 3, 1, + 1, 1, 1, 1, 1, 1, 0, 3, 0, 1, + 1, 0, 1, 0, 2, 3, 3, 1, 2, 1, + 3, 11, 0, 2, 3, 8, 0, 1, 1, 0, + 2, 0, 3, 3, 3, 3, 3, 0, 1, 0, + 1, 1, 0, 2, 5, 6, 4, 2, 3, 5, + 3, 3, 3, 3, 3, 5, 3, 5, 7, 1, + 2, 3, 2, 1, 3, 0, 2, 1, 3, 0, + 3, 4, 4, 3, 3, 4, 4, 4, 3, 3, + 4, 4, 4, 3, 3, 4, 2, 1, 2, 0, + 1, 4, 4, 2, 5, 5, 3, 3, 3, 1, + 4, 4, 2, 7, 8, 6, 5, 10, 1, 3, + 2, 0, 2, 7, 10 + }; + + + + // YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. + // First, the terminals, then, starting at \a yyntokens_, nonterminals. + const char* + const parser::yytname_[] = + { + "\"end of file\"", "error", "$undefined", "\"(\"", "\")\"", "\".\"", + "\",\"", "\";\"", "\"+\"", "\"-\"", "\"*\"", "\"/\"", "\"~\"", "\"&\"", + "\"%\"", "\"|\"", "\"||\"", "\"=\"", "\"==\"", "\">\"", "\">=\"", + "\"<\"", "\"<=\"", "\"!=\"", "\"<>\"", "\"<<\"", "\">>\"", "\"ABORT\"", + "\"ACTION\"", "\"ALWAYS\"", "\"AND\"", "\"AND BETWEEN\"", "\"AS\"", + "\"ASC\"", "\"AUTOINCREMENT\"", "\"BETWEEN\"", "\"CASCADE\"", "\"CASE\"", + "\"CAST\"", "\"CHECK\"", "\"COLLATE\"", "\"CONFLICT\"", "\"CONSTRAINT\"", + "\"CREATE\"", "\"CURRENT_DATE\"", "\"CURRENT_TIME\"", + "\"CURRENT_TIMESTAMP\"", "\"DEFAULT\"", "\"DEFERRABLE\"", "\"DEFERRED\"", + "\"DELETE\"", "\"DESC\"", "\"DISTINCT\"", "\"ELSE\"", "\"END\"", + "\"ESCAPE\"", "\"EXISTS\"", "\"FAIL\"", "\"FALSE\"", "\"FILTER\"", + "\"FOLLOWING\"", "\"FOREIGN\"", "\"GENERATED\"", "\"GLOB\"", "\"IF\"", + "\"IGNORE\"", "\"IMMEDIATE\"", "\"IN\"", "\"INDEX\"", "\"INITIALLY\"", + "\"INSERT\"", "\"IS\"", "\"ISNULL\"", "\"KEY\"", "\"LIKE\"", "\"MATCH\"", + "\"NO\"", "\"NOT\"", "\"NOTNULL\"", "\"NULL\"", "\"ON\"", "\"OR\"", + "\"OVER\"", "\"PARTITION\"", "\"PRECEDING\"", "\"PRIMARY\"", "\"RAISE\"", + "\"RANGE\"", "\"REFERENCES\"", "\"REGEXP\"", "\"REPLACE\"", + "\"RESTRICT\"", "\"ROLLBACK\"", "\"ROWID\"", "\"ROWS\"", "\"SELECT\"", + "\"SET\"", "\"STORED\"", "\"TABLE\"", "\"TEMP\"", "\"TEMPORARY\"", + "\"THEN\"", "\"TRUE\"", "\"UNBOUNDED\"", "\"UNIQUE\"", "\"UPDATE\"", + "\"USING\"", "\"VIRTUAL\"", "\"WHEN\"", "\"WHERE\"", "\"WITHOUT\"", + "\"identifier\"", "\"numeric\"", "\"string literal\"", + "\"quoted literal\"", "\"blob literal\"", "\"bind parameter\"", + "$accept", "sql", "statement", "literalvalue", "id", + "allowed_keywords_as_identifier", "tableid", "columnid", "signednumber", + "signednumber_or_numeric", "typename_namelist", "type_name", + "unary_expr", "binary_expr", "like_expr", "exprlist_expr", + "function_expr", "isnull_expr", "between_expr", "in_expr", + "whenthenlist_expr", "case_expr", "raise_expr", "expr", "select_stmt", + "optional_if_not_exists", "optional_sort_order", "optional_unique", + "optional_where", "tableid_with_uninteresting_schema", "indexed_column", + "indexed_column_list", "createindex_stmt", + "optional_exprlist_with_paren", "createvirtualtable_stmt", + "optional_temporary", "optional_withoutrowid", "optional_conflictclause", + "optional_typename", "optional_storage_identifier", + "optional_always_generated", "columnconstraint", "columnconstraint_list", + "columndef", "columndef_list", "optional_constraintname", + "columnid_list", "optional_columnid_with_paren_list", "fk_clause_part", + "fk_clause_part_list", "optional_fk_clause", "tableconstraint", + "tableconstraint_list", "optional_tableconstraint_list", + "createtable_stmt", YY_NULLPTR + }; + +#if YYDEBUG + const short + parser::yyrline_[] = + { + 0, 309, 309, 310, 314, 315, 316, 324, 325, 326, + 327, 328, 329, 330, 331, 332, 336, 337, 342, 343, + 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, + 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, + 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, + 374, 375, 376, 377, 378, 379, 380, 384, 385, 386, + 387, 388, 389, 393, 394, 395, 396, 397, 398, 399, + 403, 404, 408, 409, 413, 414, 418, 419, 420, 424, + 425, 426, 427, 431, 432, 433, 434, 435, 436, 437, + 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, + 448, 449, 450, 451, 455, 456, 457, 458, 459, 460, + 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, + 474, 475, 479, 480, 481, 482, 486, 487, 488, 492, + 493, 497, 498, 499, 500, 501, 502, 503, 504, 505, + 506, 507, 508, 509, 510, 511, 512, 516, 517, 521, + 522, 523, 524, 528, 529, 530, 531, 535, 536, 537, + 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, + 548, 549, 550, 551, 552, 561, 569, 570, 574, 575, + 576, 584, 585, 589, 590, 594, 595, 596, 600, 614, + 615, 619, 634, 635, 636, 640, 652, 653, 654, 658, + 659, 663, 664, 665, 666, 667, 668, 672, 673, 677, + 678, 679, 683, 684, 688, 697, 707, 712, 717, 722, + 728, 734, 740, 746, 753, 759, 765, 771, 782, 793, + 794, 798, 850, 854, 855, 859, 860, 864, 865, 869, + 870, 874, 875, 876, 877, 878, 879, 880, 881, 882, + 883, 884, 885, 886, 887, 888, 889, 893, 894, 898, + 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, + 909, 910, 911, 915, 921, 928, 934, 938, 946, 947, + 948, 952, 953, 957, 961 + }; + + // Print the state stack on the debug stream. + void + parser::yystack_print_ () + { + *yycdebug_ << "Stack now"; + for (stack_type::const_iterator + i = yystack_.begin (), + i_end = yystack_.end (); + i != i_end; ++i) + *yycdebug_ << ' ' << int (i->state); + *yycdebug_ << '\n'; + } + + // Report on the debug stream that the rule \a yyrule is going to be reduced. + void + parser::yy_reduce_print_ (int yyrule) + { + int yylno = yyrline_[yyrule]; + int yynrhs = yyr2_[yyrule]; + // Print the symbols being reduced, and their result. + *yycdebug_ << "Reducing stack by rule " << yyrule - 1 + << " (line " << yylno << "):\n"; + // The symbols being reduced. + for (int yyi = 0; yyi < yynrhs; yyi++) + YY_SYMBOL_PRINT (" $" << yyi + 1 << " =", + yystack_[(yynrhs) - (yyi + 1)]); + } +#endif // YYDEBUG + + +#line 10 "sqlite3_parser.yy" +} } // sqlb::parser +#line 4719 "sqlite3_parser.cpp" + +#line 983 "sqlite3_parser.yy" + + +void sqlb::parser::parser::error(const location_type& l, const std::string& m) +{ + std::cerr << l << ": " << m << std::endl; +} diff --git a/src/SqliteDBProcess/src/sql/parser/sqlite3_parser.hpp b/src/SqliteDBProcess/src/sql/parser/sqlite3_parser.hpp new file mode 100644 index 0000000..db3f690 --- /dev/null +++ b/src/SqliteDBProcess/src/sql/parser/sqlite3_parser.hpp @@ -0,0 +1,4097 @@ +// A Bison parser, made by GNU Bison 3.5.1. + +// Skeleton interface for Bison LALR(1) parsers in C++ + +// Copyright (C) 2002-2015, 2018-2020 Free Software Foundation, Inc. + +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . + +// As a special exception, you may create a larger work that contains +// part or all of the Bison parser skeleton and distribute that work +// under terms of your choice, so long as that work isn't itself a +// parser generator using the skeleton or a modified version thereof +// as a parser skeleton. Alternatively, if you modify or redistribute +// the parser skeleton itself, you may (at your option) remove this +// special exception, which will cause the skeleton and the resulting +// Bison output files to be licensed under the GNU General Public +// License without this special exception. + +// This special exception was added by the Free Software Foundation in +// version 2.2 of Bison. + + +/** + ** \file sqlite3_parser.hpp + ** Define the sqlb::parser ::parser class. + */ + +// C++ LALR(1) parser skeleton written by Akim Demaille. + +// Undocumented macros, especially those whose name start with YY_, +// are private implementation details. Do not rely on them. + +#ifndef YY_YY_SQLITE3_PARSER_HPP_INCLUDED +# define YY_YY_SQLITE3_PARSER_HPP_INCLUDED +// "%code requires" blocks. +#line 12 "sqlite3_parser.yy" + + #include + #include + #include "../sqlitetypes.h" + #include "../ObjectIdentifier.h" + namespace sqlb { namespace parser { class ParserDriver; } } + typedef void* yyscan_t; + + // Unfortunately we do not store column constraints in a systematic manner yet. + // Instead there is a variable for most column constraints directly inside the + // sqlb::Field class. This means that when parsing a column constraint we cannot + // just build a column constraint object with all the information and insert that + // into the Field object. Instead, the information needs to be passed upwards in + // some other way. This is what these declarations are for. We need to be able + // to pass information to the Field object as well as to the Table object too + // because some column constraints need to be transformed into Table constraints + // with our current layout. + class ColumnConstraintInfo + { + public: + ColumnConstraintInfo() : is_table_constraint(false), fully_parsed(false) {} + ~ColumnConstraintInfo() {} + ColumnConstraintInfo& operator=(const ColumnConstraintInfo& other) + { + type = other.type; + is_table_constraint = other.is_table_constraint; + fully_parsed = other.fully_parsed; + if(is_table_constraint) + table_constraint = other.table_constraint; + text = other.text; + generated_constraint = other.generated_constraint; + + return *this; + } + ColumnConstraintInfo(const ColumnConstraintInfo& other) + { + *this = other; + } + + enum ConstraintType + { + None, + AutoIncrement, + PrimaryKey, + NotNull, + Unique, + Check, + Default, + Collate, + ForeignKey, + Generated, + }; + + ConstraintType type; + bool is_table_constraint; + bool fully_parsed; + + sqlb::ConstraintPtr table_constraint; + std::string text; + sqlb::GeneratedColumnConstraint generated_constraint; + }; + using ColumnConstraintInfoVector = std::vector; + + // Colum definitions are a tuple of three elements: the Field object, a set of table constraints, and a bool to indicate whether parsing was complete + using ColumndefData = std::tuple; + +#line 115 "sqlite3_parser.hpp" + +# include +# include // std::abort +# include +# include +# include +# include + +#if defined __cplusplus +# define YY_CPLUSPLUS __cplusplus +#else +# define YY_CPLUSPLUS 199711L +#endif + +// Support move semantics when possible. +#if 201103L <= YY_CPLUSPLUS +# define YY_MOVE std::move +# define YY_MOVE_OR_COPY move +# define YY_MOVE_REF(Type) Type&& +# define YY_RVREF(Type) Type&& +# define YY_COPY(Type) Type +#else +# define YY_MOVE +# define YY_MOVE_OR_COPY copy +# define YY_MOVE_REF(Type) Type& +# define YY_RVREF(Type) const Type& +# define YY_COPY(Type) const Type& +#endif + +// Support noexcept when possible. +#if 201103L <= YY_CPLUSPLUS +# define YY_NOEXCEPT noexcept +# define YY_NOTHROW +#else +# define YY_NOEXCEPT +# define YY_NOTHROW throw () +#endif + +// Support constexpr when possible. +#if 201703 <= YY_CPLUSPLUS +# define YY_CONSTEXPR constexpr +#else +# define YY_CONSTEXPR +#endif +# include "sqlite3_location.h" +#include +#ifndef YY_ASSERT +# include +# define YY_ASSERT assert +#endif + + +#ifndef YY_ATTRIBUTE_PURE +# if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__) +# define YY_ATTRIBUTE_PURE __attribute__ ((__pure__)) +# else +# define YY_ATTRIBUTE_PURE +# endif +#endif + +#ifndef YY_ATTRIBUTE_UNUSED +# if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__) +# define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__)) +# else +# define YY_ATTRIBUTE_UNUSED +# endif +#endif + +/* Suppress unused-variable warnings by "using" E. */ +#if ! defined lint || defined __GNUC__ +# define YYUSE(E) ((void) (E)) +#else +# define YYUSE(E) /* empty */ +#endif + +#if defined __GNUC__ && ! defined __ICC && 407 <= __GNUC__ * 100 + __GNUC_MINOR__ +/* Suppress an incorrect diagnostic about yylval being uninitialized. */ +# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ + _Pragma ("GCC diagnostic push") \ + _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") \ + _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"") +# define YY_IGNORE_MAYBE_UNINITIALIZED_END \ + _Pragma ("GCC diagnostic pop") +#else +# define YY_INITIAL_VALUE(Value) Value +#endif +#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN +# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN +# define YY_IGNORE_MAYBE_UNINITIALIZED_END +#endif +#ifndef YY_INITIAL_VALUE +# define YY_INITIAL_VALUE(Value) /* Nothing. */ +#endif + +#if defined __cplusplus && defined __GNUC__ && ! defined __ICC && 6 <= __GNUC__ +# define YY_IGNORE_USELESS_CAST_BEGIN \ + _Pragma ("GCC diagnostic push") \ + _Pragma ("GCC diagnostic ignored \"-Wuseless-cast\"") +# define YY_IGNORE_USELESS_CAST_END \ + _Pragma ("GCC diagnostic pop") +#endif +#ifndef YY_IGNORE_USELESS_CAST_BEGIN +# define YY_IGNORE_USELESS_CAST_BEGIN +# define YY_IGNORE_USELESS_CAST_END +#endif + +# ifndef YY_CAST +# ifdef __cplusplus +# define YY_CAST(Type, Val) static_cast (Val) +# define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast (Val) +# else +# define YY_CAST(Type, Val) ((Type) (Val)) +# define YY_REINTERPRET_CAST(Type, Val) ((Type) (Val)) +# endif +# endif +# ifndef YY_NULLPTR +# if defined __cplusplus +# if 201103L <= __cplusplus +# define YY_NULLPTR nullptr +# else +# define YY_NULLPTR 0 +# endif +# else +# define YY_NULLPTR ((void*)0) +# endif +# endif + +/* Debug traces. */ +#ifndef YYDEBUG +# define YYDEBUG 1 +#endif + +#line 10 "sqlite3_parser.yy" +namespace sqlb { namespace parser { +#line 250 "sqlite3_parser.hpp" + + + + + /// A Bison parser. + class parser + { + public: +#ifndef YYSTYPE + /// A buffer to store and retrieve objects. + /// + /// Sort of a variant, but does not keep track of the nature + /// of the stored data, since that knowledge is available + /// via the current parser state. + class semantic_type + { + public: + /// Type of *this. + typedef semantic_type self_type; + + /// Empty construction. + semantic_type () YY_NOEXCEPT + : yybuffer_ () + , yytypeid_ (YY_NULLPTR) + {} + + /// Construct and fill. + template + semantic_type (YY_RVREF (T) t) + : yytypeid_ (&typeid (T)) + { + YY_ASSERT (sizeof (T) <= size); + new (yyas_ ()) T (YY_MOVE (t)); + } + + /// Destruction, allowed only if empty. + ~semantic_type () YY_NOEXCEPT + { + YY_ASSERT (!yytypeid_); + } + +# if 201103L <= YY_CPLUSPLUS + /// Instantiate a \a T in here from \a t. + template + T& + emplace (U&&... u) + { + YY_ASSERT (!yytypeid_); + YY_ASSERT (sizeof (T) <= size); + yytypeid_ = & typeid (T); + return *new (yyas_ ()) T (std::forward (u)...); + } +# else + /// Instantiate an empty \a T in here. + template + T& + emplace () + { + YY_ASSERT (!yytypeid_); + YY_ASSERT (sizeof (T) <= size); + yytypeid_ = & typeid (T); + return *new (yyas_ ()) T (); + } + + /// Instantiate a \a T in here from \a t. + template + T& + emplace (const T& t) + { + YY_ASSERT (!yytypeid_); + YY_ASSERT (sizeof (T) <= size); + yytypeid_ = & typeid (T); + return *new (yyas_ ()) T (t); + } +# endif + + /// Instantiate an empty \a T in here. + /// Obsolete, use emplace. + template + T& + build () + { + return emplace (); + } + + /// Instantiate a \a T in here from \a t. + /// Obsolete, use emplace. + template + T& + build (const T& t) + { + return emplace (t); + } + + /// Accessor to a built \a T. + template + T& + as () YY_NOEXCEPT + { + YY_ASSERT (yytypeid_); + YY_ASSERT (*yytypeid_ == typeid (T)); + YY_ASSERT (sizeof (T) <= size); + return *yyas_ (); + } + + /// Const accessor to a built \a T (for %printer). + template + const T& + as () const YY_NOEXCEPT + { + YY_ASSERT (yytypeid_); + YY_ASSERT (*yytypeid_ == typeid (T)); + YY_ASSERT (sizeof (T) <= size); + return *yyas_ (); + } + + /// Swap the content with \a that, of same type. + /// + /// Both variants must be built beforehand, because swapping the actual + /// data requires reading it (with as()), and this is not possible on + /// unconstructed variants: it would require some dynamic testing, which + /// should not be the variant's responsibility. + /// Swapping between built and (possibly) non-built is done with + /// self_type::move (). + template + void + swap (self_type& that) YY_NOEXCEPT + { + YY_ASSERT (yytypeid_); + YY_ASSERT (*yytypeid_ == *that.yytypeid_); + std::swap (as (), that.as ()); + } + + /// Move the content of \a that to this. + /// + /// Destroys \a that. + template + void + move (self_type& that) + { +# if 201103L <= YY_CPLUSPLUS + emplace (std::move (that.as ())); +# else + emplace (); + swap (that); +# endif + that.destroy (); + } + +# if 201103L <= YY_CPLUSPLUS + /// Move the content of \a that to this. + template + void + move (self_type&& that) + { + emplace (std::move (that.as ())); + that.destroy (); + } +#endif + + /// Copy the content of \a that to this. + template + void + copy (const self_type& that) + { + emplace (that.as ()); + } + + /// Destroy the stored \a T. + template + void + destroy () + { + as ().~T (); + yytypeid_ = YY_NULLPTR; + } + + private: + /// Prohibit blind copies. + self_type& operator= (const self_type&); + semantic_type (const self_type&); + + /// Accessor to raw memory as \a T. + template + T* + yyas_ () YY_NOEXCEPT + { + void *yyp = yybuffer_.yyraw; + return static_cast (yyp); + } + + /// Const accessor to raw memory as \a T. + template + const T* + yyas_ () const YY_NOEXCEPT + { + const void *yyp = yybuffer_.yyraw; + return static_cast (yyp); + } + + /// An auxiliary type to compute the largest semantic type. + union union_type + { + // columnconstraint + char dummy1[sizeof (ColumnConstraintInfo)]; + + // columnconstraint_list + char dummy2[sizeof (ColumnConstraintInfoVector)]; + + // columndef + char dummy3[sizeof (ColumndefData)]; + + // optional_if_not_exists + // optional_unique + // optional_temporary + // optional_withoutrowid + // optional_always_generated + char dummy4[sizeof (bool)]; + + // tableconstraint + char dummy5[sizeof (sqlb::ConstraintPtr)]; + + // tableconstraint_list + // optional_tableconstraint_list + char dummy6[sizeof (sqlb::ConstraintSet)]; + + // createindex_stmt + char dummy7[sizeof (sqlb::IndexPtr)]; + + // indexed_column + char dummy8[sizeof (sqlb::IndexedColumn)]; + + // indexed_column_list + char dummy9[sizeof (sqlb::IndexedColumnVector)]; + + // columnid_list + // optional_columnid_with_paren_list + char dummy10[sizeof (sqlb::StringVector)]; + + // createvirtualtable_stmt + // createtable_stmt + char dummy11[sizeof (sqlb::TablePtr)]; + + // "ABORT" + // "ACTION" + // "ALWAYS" + // "AND" + // "AND BETWEEN" + // "AS" + // "ASC" + // "AUTOINCREMENT" + // "BETWEEN" + // "CASCADE" + // "CASE" + // "CAST" + // "CHECK" + // "COLLATE" + // "CONFLICT" + // "CONSTRAINT" + // "CREATE" + // "CURRENT_DATE" + // "CURRENT_TIME" + // "CURRENT_TIMESTAMP" + // "DEFAULT" + // "DEFERRABLE" + // "DEFERRED" + // "DELETE" + // "DESC" + // "DISTINCT" + // "ELSE" + // "END" + // "ESCAPE" + // "EXISTS" + // "FAIL" + // "FALSE" + // "FILTER" + // "FOLLOWING" + // "FOREIGN" + // "GENERATED" + // "GLOB" + // "IF" + // "IGNORE" + // "IMMEDIATE" + // "IN" + // "INDEX" + // "INITIALLY" + // "INSERT" + // "IS" + // "ISNULL" + // "KEY" + // "LIKE" + // "MATCH" + // "NO" + // "NOT" + // "NOTNULL" + // "NULL" + // "ON" + // "OR" + // "OVER" + // "PARTITION" + // "PRECEDING" + // "PRIMARY" + // "RAISE" + // "RANGE" + // "REFERENCES" + // "REGEXP" + // "REPLACE" + // "RESTRICT" + // "ROLLBACK" + // "ROWID" + // "ROWS" + // "SELECT" + // "SET" + // "STORED" + // "TABLE" + // "TEMP" + // "TEMPORARY" + // "THEN" + // "TRUE" + // "UNBOUNDED" + // "UNIQUE" + // "UPDATE" + // "USING" + // "VIRTUAL" + // "WHEN" + // "WHERE" + // "WITHOUT" + // "identifier" + // "numeric" + // "string literal" + // "quoted literal" + // "blob literal" + // "bind parameter" + // literalvalue + // id + // allowed_keywords_as_identifier + // tableid + // columnid + // signednumber + // signednumber_or_numeric + // typename_namelist + // type_name + // unary_expr + // binary_expr + // like_expr + // exprlist_expr + // function_expr + // isnull_expr + // between_expr + // in_expr + // whenthenlist_expr + // case_expr + // raise_expr + // expr + // select_stmt + // optional_sort_order + // optional_where + // tableid_with_uninteresting_schema + // optional_exprlist_with_paren + // optional_conflictclause + // optional_typename + // optional_storage_identifier + // optional_constraintname + // fk_clause_part + // fk_clause_part_list + // optional_fk_clause + char dummy12[sizeof (std::string)]; + + // columndef_list + char dummy13[sizeof (std::vector)]; + }; + + /// The size of the largest semantic type. + enum { size = sizeof (union_type) }; + + /// A buffer to store semantic values. + union + { + /// Strongest alignment constraints. + long double yyalign_me; + /// A buffer large enough to store any of the semantic values. + char yyraw[size]; + } yybuffer_; + + /// Whether the content is built: if defined, the name of the stored type. + const std::type_info *yytypeid_; + }; + +#else + typedef YYSTYPE semantic_type; +#endif + /// Symbol locations. + typedef location location_type; + + /// Syntax errors thrown from user actions. + struct syntax_error : std::runtime_error + { + syntax_error (const location_type& l, const std::string& m) + : std::runtime_error (m) + , location (l) + {} + + syntax_error (const syntax_error& s) + : std::runtime_error (s.what ()) + , location (s.location) + {} + + ~syntax_error () YY_NOEXCEPT YY_NOTHROW; + + location_type location; + }; + + /// Tokens. + struct token + { + enum yytokentype + { + TOK_EOF = 0, + TOK_LPAREN = 258, + TOK_RPAREN = 259, + TOK_DOT = 260, + TOK_COMMA = 261, + TOK_SEMI = 262, + TOK_PLUS = 263, + TOK_MINUS = 264, + TOK_STAR = 265, + TOK_SLASH = 266, + TOK_TILDE = 267, + TOK_AMPERSAND = 268, + TOK_PERCENT = 269, + TOK_BITOR = 270, + TOK_OROP = 271, + TOK_EQUAL = 272, + TOK_EQUAL2 = 273, + TOK_GREATER = 274, + TOK_GREATEREQUAL = 275, + TOK_LOWER = 276, + TOK_LOWEREQUAL = 277, + TOK_UNEQUAL = 278, + TOK_UNEQUAL2 = 279, + TOK_BITWISELEFT = 280, + TOK_BITWISERIGHT = 281, + TOK_ABORT = 282, + TOK_ACTION = 283, + TOK_ALWAYS = 284, + TOK_AND = 285, + TOK_AND_BETWEEN = 286, + TOK_AS = 287, + TOK_ASC = 288, + TOK_AUTOINCREMENT = 289, + TOK_BETWEEN = 290, + TOK_CASCADE = 291, + TOK_CASE = 292, + TOK_CAST = 293, + TOK_CHECK = 294, + TOK_COLLATE = 295, + TOK_CONFLICT = 296, + TOK_CONSTRAINT = 297, + TOK_CREATE = 298, + TOK_CURRENT_DATE = 299, + TOK_CURRENT_TIME = 300, + TOK_CURRENT_TIMESTAMP = 301, + TOK_DEFAULT = 302, + TOK_DEFERRABLE = 303, + TOK_DEFERRED = 304, + TOK_DELETE = 305, + TOK_DESC = 306, + TOK_DISTINCT = 307, + TOK_ELSE = 308, + TOK_END = 309, + TOK_ESCAPE = 310, + TOK_EXISTS = 311, + TOK_FAIL = 312, + TOK_FALSE = 313, + TOK_FILTER = 314, + TOK_FOLLOWING = 315, + TOK_FOREIGN = 316, + TOK_GENERATED = 317, + TOK_GLOB = 318, + TOK_IF = 319, + TOK_IGNORE = 320, + TOK_IMMEDIATE = 321, + TOK_IN = 322, + TOK_INDEX = 323, + TOK_INITIALLY = 324, + TOK_INSERT = 325, + TOK_IS = 326, + TOK_ISNULL = 327, + TOK_KEY = 328, + TOK_LIKE = 329, + TOK_MATCH = 330, + TOK_NO = 331, + TOK_NOT = 332, + TOK_NOTNULL = 333, + TOK_NULL = 334, + TOK_ON = 335, + TOK_OR = 336, + TOK_OVER = 337, + TOK_PARTITION = 338, + TOK_PRECEDING = 339, + TOK_PRIMARY = 340, + TOK_RAISE = 341, + TOK_RANGE = 342, + TOK_REFERENCES = 343, + TOK_REGEXP = 344, + TOK_REPLACE = 345, + TOK_RESTRICT = 346, + TOK_ROLLBACK = 347, + TOK_ROWID = 348, + TOK_ROWS = 349, + TOK_SELECT = 350, + TOK_SET = 351, + TOK_STORED = 352, + TOK_TABLE = 353, + TOK_TEMP = 354, + TOK_TEMPORARY = 355, + TOK_THEN = 356, + TOK_TRUE = 357, + TOK_UNBOUNDED = 358, + TOK_UNIQUE = 359, + TOK_UPDATE = 360, + TOK_USING = 361, + TOK_VIRTUAL = 362, + TOK_WHEN = 363, + TOK_WHERE = 364, + TOK_WITHOUT = 365, + TOK_IDENTIFIER = 366, + TOK_NUMERIC = 367, + TOK_STRINGLITERAL = 368, + TOK_QUOTEDLITERAL = 369, + TOK_BLOBLITERAL = 370, + TOK_BINDPARAMETER = 371 + }; + }; + + /// (External) token type, as returned by yylex. + typedef token::yytokentype token_type; + + /// Symbol type: an internal symbol number. + typedef int symbol_number_type; + + /// The symbol type number to denote an empty symbol. + enum { empty_symbol = -2 }; + + /// Internal symbol number for tokens (subsumed by symbol_number_type). + typedef signed char token_number_type; + + /// A complete symbol. + /// + /// Expects its Base type to provide access to the symbol type + /// via type_get (). + /// + /// Provide access to semantic value and location. + template + struct basic_symbol : Base + { + /// Alias to Base. + typedef Base super_type; + + /// Default constructor. + basic_symbol () + : value () + , location () + {} + +#if 201103L <= YY_CPLUSPLUS + /// Move constructor. + basic_symbol (basic_symbol&& that); +#endif + + /// Copy constructor. + basic_symbol (const basic_symbol& that); + + /// Constructor for valueless symbols, and symbols from each type. +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, location_type&& l) + : Base (t) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const location_type& l) + : Base (t) + , location (l) + {} +#endif +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, ColumnConstraintInfo&& v, location_type&& l) + : Base (t) + , value (std::move (v)) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const ColumnConstraintInfo& v, const location_type& l) + : Base (t) + , value (v) + , location (l) + {} +#endif +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, ColumnConstraintInfoVector&& v, location_type&& l) + : Base (t) + , value (std::move (v)) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const ColumnConstraintInfoVector& v, const location_type& l) + : Base (t) + , value (v) + , location (l) + {} +#endif +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, ColumndefData&& v, location_type&& l) + : Base (t) + , value (std::move (v)) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const ColumndefData& v, const location_type& l) + : Base (t) + , value (v) + , location (l) + {} +#endif +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, bool&& v, location_type&& l) + : Base (t) + , value (std::move (v)) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const bool& v, const location_type& l) + : Base (t) + , value (v) + , location (l) + {} +#endif +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, sqlb::ConstraintPtr&& v, location_type&& l) + : Base (t) + , value (std::move (v)) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const sqlb::ConstraintPtr& v, const location_type& l) + : Base (t) + , value (v) + , location (l) + {} +#endif +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, sqlb::ConstraintSet&& v, location_type&& l) + : Base (t) + , value (std::move (v)) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const sqlb::ConstraintSet& v, const location_type& l) + : Base (t) + , value (v) + , location (l) + {} +#endif +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, sqlb::IndexPtr&& v, location_type&& l) + : Base (t) + , value (std::move (v)) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const sqlb::IndexPtr& v, const location_type& l) + : Base (t) + , value (v) + , location (l) + {} +#endif +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, sqlb::IndexedColumn&& v, location_type&& l) + : Base (t) + , value (std::move (v)) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const sqlb::IndexedColumn& v, const location_type& l) + : Base (t) + , value (v) + , location (l) + {} +#endif +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, sqlb::IndexedColumnVector&& v, location_type&& l) + : Base (t) + , value (std::move (v)) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const sqlb::IndexedColumnVector& v, const location_type& l) + : Base (t) + , value (v) + , location (l) + {} +#endif +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, sqlb::StringVector&& v, location_type&& l) + : Base (t) + , value (std::move (v)) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const sqlb::StringVector& v, const location_type& l) + : Base (t) + , value (v) + , location (l) + {} +#endif +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, sqlb::TablePtr&& v, location_type&& l) + : Base (t) + , value (std::move (v)) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const sqlb::TablePtr& v, const location_type& l) + : Base (t) + , value (v) + , location (l) + {} +#endif +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, std::string&& v, location_type&& l) + : Base (t) + , value (std::move (v)) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const std::string& v, const location_type& l) + : Base (t) + , value (v) + , location (l) + {} +#endif +#if 201103L <= YY_CPLUSPLUS + basic_symbol (typename Base::kind_type t, std::vector&& v, location_type&& l) + : Base (t) + , value (std::move (v)) + , location (std::move (l)) + {} +#else + basic_symbol (typename Base::kind_type t, const std::vector& v, const location_type& l) + : Base (t) + , value (v) + , location (l) + {} +#endif + + /// Destroy the symbol. + ~basic_symbol () + { + clear (); + } + + /// Destroy contents, and record that is empty. + void clear () + { + // User destructor. + symbol_number_type yytype = this->type_get (); + basic_symbol& yysym = *this; + (void) yysym; + switch (yytype) + { + default: + break; + } + + // Type destructor. +switch (yytype) + { + case 158: // columnconstraint + value.template destroy< ColumnConstraintInfo > (); + break; + + case 159: // columnconstraint_list + value.template destroy< ColumnConstraintInfoVector > (); + break; + + case 160: // columndef + value.template destroy< ColumndefData > (); + break; + + case 142: // optional_if_not_exists + case 144: // optional_unique + case 152: // optional_temporary + case 153: // optional_withoutrowid + case 157: // optional_always_generated + value.template destroy< bool > (); + break; + + case 168: // tableconstraint + value.template destroy< sqlb::ConstraintPtr > (); + break; + + case 169: // tableconstraint_list + case 170: // optional_tableconstraint_list + value.template destroy< sqlb::ConstraintSet > (); + break; + + case 149: // createindex_stmt + value.template destroy< sqlb::IndexPtr > (); + break; + + case 147: // indexed_column + value.template destroy< sqlb::IndexedColumn > (); + break; + + case 148: // indexed_column_list + value.template destroy< sqlb::IndexedColumnVector > (); + break; + + case 163: // columnid_list + case 164: // optional_columnid_with_paren_list + value.template destroy< sqlb::StringVector > (); + break; + + case 151: // createvirtualtable_stmt + case 171: // createtable_stmt + value.template destroy< sqlb::TablePtr > (); + break; + + case 27: // "ABORT" + case 28: // "ACTION" + case 29: // "ALWAYS" + case 30: // "AND" + case 31: // "AND BETWEEN" + case 32: // "AS" + case 33: // "ASC" + case 34: // "AUTOINCREMENT" + case 35: // "BETWEEN" + case 36: // "CASCADE" + case 37: // "CASE" + case 38: // "CAST" + case 39: // "CHECK" + case 40: // "COLLATE" + case 41: // "CONFLICT" + case 42: // "CONSTRAINT" + case 43: // "CREATE" + case 44: // "CURRENT_DATE" + case 45: // "CURRENT_TIME" + case 46: // "CURRENT_TIMESTAMP" + case 47: // "DEFAULT" + case 48: // "DEFERRABLE" + case 49: // "DEFERRED" + case 50: // "DELETE" + case 51: // "DESC" + case 52: // "DISTINCT" + case 53: // "ELSE" + case 54: // "END" + case 55: // "ESCAPE" + case 56: // "EXISTS" + case 57: // "FAIL" + case 58: // "FALSE" + case 59: // "FILTER" + case 60: // "FOLLOWING" + case 61: // "FOREIGN" + case 62: // "GENERATED" + case 63: // "GLOB" + case 64: // "IF" + case 65: // "IGNORE" + case 66: // "IMMEDIATE" + case 67: // "IN" + case 68: // "INDEX" + case 69: // "INITIALLY" + case 70: // "INSERT" + case 71: // "IS" + case 72: // "ISNULL" + case 73: // "KEY" + case 74: // "LIKE" + case 75: // "MATCH" + case 76: // "NO" + case 77: // "NOT" + case 78: // "NOTNULL" + case 79: // "NULL" + case 80: // "ON" + case 81: // "OR" + case 82: // "OVER" + case 83: // "PARTITION" + case 84: // "PRECEDING" + case 85: // "PRIMARY" + case 86: // "RAISE" + case 87: // "RANGE" + case 88: // "REFERENCES" + case 89: // "REGEXP" + case 90: // "REPLACE" + case 91: // "RESTRICT" + case 92: // "ROLLBACK" + case 93: // "ROWID" + case 94: // "ROWS" + case 95: // "SELECT" + case 96: // "SET" + case 97: // "STORED" + case 98: // "TABLE" + case 99: // "TEMP" + case 100: // "TEMPORARY" + case 101: // "THEN" + case 102: // "TRUE" + case 103: // "UNBOUNDED" + case 104: // "UNIQUE" + case 105: // "UPDATE" + case 106: // "USING" + case 107: // "VIRTUAL" + case 108: // "WHEN" + case 109: // "WHERE" + case 110: // "WITHOUT" + case 111: // "identifier" + case 112: // "numeric" + case 113: // "string literal" + case 114: // "quoted literal" + case 115: // "blob literal" + case 116: // "bind parameter" + case 120: // literalvalue + case 121: // id + case 122: // allowed_keywords_as_identifier + case 123: // tableid + case 124: // columnid + case 125: // signednumber + case 126: // signednumber_or_numeric + case 127: // typename_namelist + case 128: // type_name + case 129: // unary_expr + case 130: // binary_expr + case 131: // like_expr + case 132: // exprlist_expr + case 133: // function_expr + case 134: // isnull_expr + case 135: // between_expr + case 136: // in_expr + case 137: // whenthenlist_expr + case 138: // case_expr + case 139: // raise_expr + case 140: // expr + case 141: // select_stmt + case 143: // optional_sort_order + case 145: // optional_where + case 146: // tableid_with_uninteresting_schema + case 150: // optional_exprlist_with_paren + case 154: // optional_conflictclause + case 155: // optional_typename + case 156: // optional_storage_identifier + case 162: // optional_constraintname + case 165: // fk_clause_part + case 166: // fk_clause_part_list + case 167: // optional_fk_clause + value.template destroy< std::string > (); + break; + + case 161: // columndef_list + value.template destroy< std::vector > (); + break; + + default: + break; + } + + Base::clear (); + } + + /// Whether empty. + bool empty () const YY_NOEXCEPT; + + /// Destructive move, \a s is emptied into this. + void move (basic_symbol& s); + + /// The semantic value. + semantic_type value; + + /// The location. + location_type location; + + private: +#if YY_CPLUSPLUS < 201103L + /// Assignment operator. + basic_symbol& operator= (const basic_symbol& that); +#endif + }; + + /// Type access provider for token (enum) based symbols. + struct by_type + { + /// Default constructor. + by_type (); + +#if 201103L <= YY_CPLUSPLUS + /// Move constructor. + by_type (by_type&& that); +#endif + + /// Copy constructor. + by_type (const by_type& that); + + /// The symbol type as needed by the constructor. + typedef token_type kind_type; + + /// Constructor from (external) token numbers. + by_type (kind_type t); + + /// Record that this symbol is empty. + void clear (); + + /// Steal the symbol type from \a that. + void move (by_type& that); + + /// The (internal) type number (corresponding to \a type). + /// \a empty when empty. + symbol_number_type type_get () const YY_NOEXCEPT; + + /// The symbol type. + /// \a empty_symbol when empty. + /// An int, not token_number_type, to be able to store empty_symbol. + int type; + }; + + /// "External" symbols: returned by the scanner. + struct symbol_type : basic_symbol + { + /// Superclass. + typedef basic_symbol super_type; + + /// Empty symbol. + symbol_type () {} + + /// Constructor for valueless symbols, and symbols from each type. +#if 201103L <= YY_CPLUSPLUS + symbol_type (int tok, location_type l) + : super_type(token_type (tok), std::move (l)) + { + YY_ASSERT (tok == token::TOK_EOF || tok == token::TOK_LPAREN || tok == token::TOK_RPAREN || tok == token::TOK_DOT || tok == token::TOK_COMMA || tok == token::TOK_SEMI || tok == token::TOK_PLUS || tok == token::TOK_MINUS || tok == token::TOK_STAR || tok == token::TOK_SLASH || tok == token::TOK_TILDE || tok == token::TOK_AMPERSAND || tok == token::TOK_PERCENT || tok == token::TOK_BITOR || tok == token::TOK_OROP || tok == token::TOK_EQUAL || tok == token::TOK_EQUAL2 || tok == token::TOK_GREATER || tok == token::TOK_GREATEREQUAL || tok == token::TOK_LOWER || tok == token::TOK_LOWEREQUAL || tok == token::TOK_UNEQUAL || tok == token::TOK_UNEQUAL2 || tok == token::TOK_BITWISELEFT || tok == token::TOK_BITWISERIGHT); + } +#else + symbol_type (int tok, const location_type& l) + : super_type(token_type (tok), l) + { + YY_ASSERT (tok == token::TOK_EOF || tok == token::TOK_LPAREN || tok == token::TOK_RPAREN || tok == token::TOK_DOT || tok == token::TOK_COMMA || tok == token::TOK_SEMI || tok == token::TOK_PLUS || tok == token::TOK_MINUS || tok == token::TOK_STAR || tok == token::TOK_SLASH || tok == token::TOK_TILDE || tok == token::TOK_AMPERSAND || tok == token::TOK_PERCENT || tok == token::TOK_BITOR || tok == token::TOK_OROP || tok == token::TOK_EQUAL || tok == token::TOK_EQUAL2 || tok == token::TOK_GREATER || tok == token::TOK_GREATEREQUAL || tok == token::TOK_LOWER || tok == token::TOK_LOWEREQUAL || tok == token::TOK_UNEQUAL || tok == token::TOK_UNEQUAL2 || tok == token::TOK_BITWISELEFT || tok == token::TOK_BITWISERIGHT); + } +#endif +#if 201103L <= YY_CPLUSPLUS + symbol_type (int tok, std::string v, location_type l) + : super_type(token_type (tok), std::move (v), std::move (l)) + { + YY_ASSERT (tok == token::TOK_ABORT || tok == token::TOK_ACTION || tok == token::TOK_ALWAYS || tok == token::TOK_AND || tok == token::TOK_AND_BETWEEN || tok == token::TOK_AS || tok == token::TOK_ASC || tok == token::TOK_AUTOINCREMENT || tok == token::TOK_BETWEEN || tok == token::TOK_CASCADE || tok == token::TOK_CASE || tok == token::TOK_CAST || tok == token::TOK_CHECK || tok == token::TOK_COLLATE || tok == token::TOK_CONFLICT || tok == token::TOK_CONSTRAINT || tok == token::TOK_CREATE || tok == token::TOK_CURRENT_DATE || tok == token::TOK_CURRENT_TIME || tok == token::TOK_CURRENT_TIMESTAMP || tok == token::TOK_DEFAULT || tok == token::TOK_DEFERRABLE || tok == token::TOK_DEFERRED || tok == token::TOK_DELETE || tok == token::TOK_DESC || tok == token::TOK_DISTINCT || tok == token::TOK_ELSE || tok == token::TOK_END || tok == token::TOK_ESCAPE || tok == token::TOK_EXISTS || tok == token::TOK_FAIL || tok == token::TOK_FALSE || tok == token::TOK_FILTER || tok == token::TOK_FOLLOWING || tok == token::TOK_FOREIGN || tok == token::TOK_GENERATED || tok == token::TOK_GLOB || tok == token::TOK_IF || tok == token::TOK_IGNORE || tok == token::TOK_IMMEDIATE || tok == token::TOK_IN || tok == token::TOK_INDEX || tok == token::TOK_INITIALLY || tok == token::TOK_INSERT || tok == token::TOK_IS || tok == token::TOK_ISNULL || tok == token::TOK_KEY || tok == token::TOK_LIKE || tok == token::TOK_MATCH || tok == token::TOK_NO || tok == token::TOK_NOT || tok == token::TOK_NOTNULL || tok == token::TOK_NULL || tok == token::TOK_ON || tok == token::TOK_OR || tok == token::TOK_OVER || tok == token::TOK_PARTITION || tok == token::TOK_PRECEDING || tok == token::TOK_PRIMARY || tok == token::TOK_RAISE || tok == token::TOK_RANGE || tok == token::TOK_REFERENCES || tok == token::TOK_REGEXP || tok == token::TOK_REPLACE || tok == token::TOK_RESTRICT || tok == token::TOK_ROLLBACK || tok == token::TOK_ROWID || tok == token::TOK_ROWS || tok == token::TOK_SELECT || tok == token::TOK_SET || tok == token::TOK_STORED || tok == token::TOK_TABLE || tok == token::TOK_TEMP || tok == token::TOK_TEMPORARY || tok == token::TOK_THEN || tok == token::TOK_TRUE || tok == token::TOK_UNBOUNDED || tok == token::TOK_UNIQUE || tok == token::TOK_UPDATE || tok == token::TOK_USING || tok == token::TOK_VIRTUAL || tok == token::TOK_WHEN || tok == token::TOK_WHERE || tok == token::TOK_WITHOUT || tok == token::TOK_IDENTIFIER || tok == token::TOK_NUMERIC || tok == token::TOK_STRINGLITERAL || tok == token::TOK_QUOTEDLITERAL || tok == token::TOK_BLOBLITERAL || tok == token::TOK_BINDPARAMETER); + } +#else + symbol_type (int tok, const std::string& v, const location_type& l) + : super_type(token_type (tok), v, l) + { + YY_ASSERT (tok == token::TOK_ABORT || tok == token::TOK_ACTION || tok == token::TOK_ALWAYS || tok == token::TOK_AND || tok == token::TOK_AND_BETWEEN || tok == token::TOK_AS || tok == token::TOK_ASC || tok == token::TOK_AUTOINCREMENT || tok == token::TOK_BETWEEN || tok == token::TOK_CASCADE || tok == token::TOK_CASE || tok == token::TOK_CAST || tok == token::TOK_CHECK || tok == token::TOK_COLLATE || tok == token::TOK_CONFLICT || tok == token::TOK_CONSTRAINT || tok == token::TOK_CREATE || tok == token::TOK_CURRENT_DATE || tok == token::TOK_CURRENT_TIME || tok == token::TOK_CURRENT_TIMESTAMP || tok == token::TOK_DEFAULT || tok == token::TOK_DEFERRABLE || tok == token::TOK_DEFERRED || tok == token::TOK_DELETE || tok == token::TOK_DESC || tok == token::TOK_DISTINCT || tok == token::TOK_ELSE || tok == token::TOK_END || tok == token::TOK_ESCAPE || tok == token::TOK_EXISTS || tok == token::TOK_FAIL || tok == token::TOK_FALSE || tok == token::TOK_FILTER || tok == token::TOK_FOLLOWING || tok == token::TOK_FOREIGN || tok == token::TOK_GENERATED || tok == token::TOK_GLOB || tok == token::TOK_IF || tok == token::TOK_IGNORE || tok == token::TOK_IMMEDIATE || tok == token::TOK_IN || tok == token::TOK_INDEX || tok == token::TOK_INITIALLY || tok == token::TOK_INSERT || tok == token::TOK_IS || tok == token::TOK_ISNULL || tok == token::TOK_KEY || tok == token::TOK_LIKE || tok == token::TOK_MATCH || tok == token::TOK_NO || tok == token::TOK_NOT || tok == token::TOK_NOTNULL || tok == token::TOK_NULL || tok == token::TOK_ON || tok == token::TOK_OR || tok == token::TOK_OVER || tok == token::TOK_PARTITION || tok == token::TOK_PRECEDING || tok == token::TOK_PRIMARY || tok == token::TOK_RAISE || tok == token::TOK_RANGE || tok == token::TOK_REFERENCES || tok == token::TOK_REGEXP || tok == token::TOK_REPLACE || tok == token::TOK_RESTRICT || tok == token::TOK_ROLLBACK || tok == token::TOK_ROWID || tok == token::TOK_ROWS || tok == token::TOK_SELECT || tok == token::TOK_SET || tok == token::TOK_STORED || tok == token::TOK_TABLE || tok == token::TOK_TEMP || tok == token::TOK_TEMPORARY || tok == token::TOK_THEN || tok == token::TOK_TRUE || tok == token::TOK_UNBOUNDED || tok == token::TOK_UNIQUE || tok == token::TOK_UPDATE || tok == token::TOK_USING || tok == token::TOK_VIRTUAL || tok == token::TOK_WHEN || tok == token::TOK_WHERE || tok == token::TOK_WITHOUT || tok == token::TOK_IDENTIFIER || tok == token::TOK_NUMERIC || tok == token::TOK_STRINGLITERAL || tok == token::TOK_QUOTEDLITERAL || tok == token::TOK_BLOBLITERAL || tok == token::TOK_BINDPARAMETER); + } +#endif + }; + + /// Build a parser object. + parser (yyscan_t yyscanner_yyarg, ParserDriver& drv_yyarg); + virtual ~parser (); + + /// Parse. An alias for parse (). + /// \returns 0 iff parsing succeeded. + int operator() (); + + /// Parse. + /// \returns 0 iff parsing succeeded. + virtual int parse (); + +#if YYDEBUG + /// The current debugging stream. + std::ostream& debug_stream () const YY_ATTRIBUTE_PURE; + /// Set the current debugging stream. + void set_debug_stream (std::ostream &); + + /// Type for debugging levels. + typedef int debug_level_type; + /// The current debugging level. + debug_level_type debug_level () const YY_ATTRIBUTE_PURE; + /// Set the current debugging level. + void set_debug_level (debug_level_type l); +#endif + + /// Report a syntax error. + /// \param loc where the syntax error is found. + /// \param msg a description of the syntax error. + virtual void error (const location_type& loc, const std::string& msg); + + /// Report a syntax error. + void error (const syntax_error& err); + + // Implementation of make_symbol for each symbol type. +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_EOF (location_type l) + { + return symbol_type (token::TOK_EOF, std::move (l)); + } +#else + static + symbol_type + make_EOF (const location_type& l) + { + return symbol_type (token::TOK_EOF, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_LPAREN (location_type l) + { + return symbol_type (token::TOK_LPAREN, std::move (l)); + } +#else + static + symbol_type + make_LPAREN (const location_type& l) + { + return symbol_type (token::TOK_LPAREN, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_RPAREN (location_type l) + { + return symbol_type (token::TOK_RPAREN, std::move (l)); + } +#else + static + symbol_type + make_RPAREN (const location_type& l) + { + return symbol_type (token::TOK_RPAREN, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_DOT (location_type l) + { + return symbol_type (token::TOK_DOT, std::move (l)); + } +#else + static + symbol_type + make_DOT (const location_type& l) + { + return symbol_type (token::TOK_DOT, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_COMMA (location_type l) + { + return symbol_type (token::TOK_COMMA, std::move (l)); + } +#else + static + symbol_type + make_COMMA (const location_type& l) + { + return symbol_type (token::TOK_COMMA, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_SEMI (location_type l) + { + return symbol_type (token::TOK_SEMI, std::move (l)); + } +#else + static + symbol_type + make_SEMI (const location_type& l) + { + return symbol_type (token::TOK_SEMI, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_PLUS (location_type l) + { + return symbol_type (token::TOK_PLUS, std::move (l)); + } +#else + static + symbol_type + make_PLUS (const location_type& l) + { + return symbol_type (token::TOK_PLUS, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_MINUS (location_type l) + { + return symbol_type (token::TOK_MINUS, std::move (l)); + } +#else + static + symbol_type + make_MINUS (const location_type& l) + { + return symbol_type (token::TOK_MINUS, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_STAR (location_type l) + { + return symbol_type (token::TOK_STAR, std::move (l)); + } +#else + static + symbol_type + make_STAR (const location_type& l) + { + return symbol_type (token::TOK_STAR, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_SLASH (location_type l) + { + return symbol_type (token::TOK_SLASH, std::move (l)); + } +#else + static + symbol_type + make_SLASH (const location_type& l) + { + return symbol_type (token::TOK_SLASH, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_TILDE (location_type l) + { + return symbol_type (token::TOK_TILDE, std::move (l)); + } +#else + static + symbol_type + make_TILDE (const location_type& l) + { + return symbol_type (token::TOK_TILDE, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_AMPERSAND (location_type l) + { + return symbol_type (token::TOK_AMPERSAND, std::move (l)); + } +#else + static + symbol_type + make_AMPERSAND (const location_type& l) + { + return symbol_type (token::TOK_AMPERSAND, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_PERCENT (location_type l) + { + return symbol_type (token::TOK_PERCENT, std::move (l)); + } +#else + static + symbol_type + make_PERCENT (const location_type& l) + { + return symbol_type (token::TOK_PERCENT, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_BITOR (location_type l) + { + return symbol_type (token::TOK_BITOR, std::move (l)); + } +#else + static + symbol_type + make_BITOR (const location_type& l) + { + return symbol_type (token::TOK_BITOR, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_OROP (location_type l) + { + return symbol_type (token::TOK_OROP, std::move (l)); + } +#else + static + symbol_type + make_OROP (const location_type& l) + { + return symbol_type (token::TOK_OROP, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_EQUAL (location_type l) + { + return symbol_type (token::TOK_EQUAL, std::move (l)); + } +#else + static + symbol_type + make_EQUAL (const location_type& l) + { + return symbol_type (token::TOK_EQUAL, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_EQUAL2 (location_type l) + { + return symbol_type (token::TOK_EQUAL2, std::move (l)); + } +#else + static + symbol_type + make_EQUAL2 (const location_type& l) + { + return symbol_type (token::TOK_EQUAL2, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_GREATER (location_type l) + { + return symbol_type (token::TOK_GREATER, std::move (l)); + } +#else + static + symbol_type + make_GREATER (const location_type& l) + { + return symbol_type (token::TOK_GREATER, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_GREATEREQUAL (location_type l) + { + return symbol_type (token::TOK_GREATEREQUAL, std::move (l)); + } +#else + static + symbol_type + make_GREATEREQUAL (const location_type& l) + { + return symbol_type (token::TOK_GREATEREQUAL, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_LOWER (location_type l) + { + return symbol_type (token::TOK_LOWER, std::move (l)); + } +#else + static + symbol_type + make_LOWER (const location_type& l) + { + return symbol_type (token::TOK_LOWER, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_LOWEREQUAL (location_type l) + { + return symbol_type (token::TOK_LOWEREQUAL, std::move (l)); + } +#else + static + symbol_type + make_LOWEREQUAL (const location_type& l) + { + return symbol_type (token::TOK_LOWEREQUAL, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_UNEQUAL (location_type l) + { + return symbol_type (token::TOK_UNEQUAL, std::move (l)); + } +#else + static + symbol_type + make_UNEQUAL (const location_type& l) + { + return symbol_type (token::TOK_UNEQUAL, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_UNEQUAL2 (location_type l) + { + return symbol_type (token::TOK_UNEQUAL2, std::move (l)); + } +#else + static + symbol_type + make_UNEQUAL2 (const location_type& l) + { + return symbol_type (token::TOK_UNEQUAL2, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_BITWISELEFT (location_type l) + { + return symbol_type (token::TOK_BITWISELEFT, std::move (l)); + } +#else + static + symbol_type + make_BITWISELEFT (const location_type& l) + { + return symbol_type (token::TOK_BITWISELEFT, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_BITWISERIGHT (location_type l) + { + return symbol_type (token::TOK_BITWISERIGHT, std::move (l)); + } +#else + static + symbol_type + make_BITWISERIGHT (const location_type& l) + { + return symbol_type (token::TOK_BITWISERIGHT, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_ABORT (std::string v, location_type l) + { + return symbol_type (token::TOK_ABORT, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_ABORT (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_ABORT, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_ACTION (std::string v, location_type l) + { + return symbol_type (token::TOK_ACTION, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_ACTION (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_ACTION, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_ALWAYS (std::string v, location_type l) + { + return symbol_type (token::TOK_ALWAYS, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_ALWAYS (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_ALWAYS, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_AND (std::string v, location_type l) + { + return symbol_type (token::TOK_AND, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_AND (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_AND, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_AND_BETWEEN (std::string v, location_type l) + { + return symbol_type (token::TOK_AND_BETWEEN, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_AND_BETWEEN (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_AND_BETWEEN, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_AS (std::string v, location_type l) + { + return symbol_type (token::TOK_AS, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_AS (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_AS, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_ASC (std::string v, location_type l) + { + return symbol_type (token::TOK_ASC, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_ASC (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_ASC, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_AUTOINCREMENT (std::string v, location_type l) + { + return symbol_type (token::TOK_AUTOINCREMENT, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_AUTOINCREMENT (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_AUTOINCREMENT, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_BETWEEN (std::string v, location_type l) + { + return symbol_type (token::TOK_BETWEEN, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_BETWEEN (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_BETWEEN, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_CASCADE (std::string v, location_type l) + { + return symbol_type (token::TOK_CASCADE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_CASCADE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_CASCADE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_CASE (std::string v, location_type l) + { + return symbol_type (token::TOK_CASE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_CASE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_CASE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_CAST (std::string v, location_type l) + { + return symbol_type (token::TOK_CAST, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_CAST (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_CAST, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_CHECK (std::string v, location_type l) + { + return symbol_type (token::TOK_CHECK, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_CHECK (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_CHECK, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_COLLATE (std::string v, location_type l) + { + return symbol_type (token::TOK_COLLATE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_COLLATE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_COLLATE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_CONFLICT (std::string v, location_type l) + { + return symbol_type (token::TOK_CONFLICT, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_CONFLICT (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_CONFLICT, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_CONSTRAINT (std::string v, location_type l) + { + return symbol_type (token::TOK_CONSTRAINT, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_CONSTRAINT (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_CONSTRAINT, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_CREATE (std::string v, location_type l) + { + return symbol_type (token::TOK_CREATE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_CREATE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_CREATE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_CURRENT_DATE (std::string v, location_type l) + { + return symbol_type (token::TOK_CURRENT_DATE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_CURRENT_DATE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_CURRENT_DATE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_CURRENT_TIME (std::string v, location_type l) + { + return symbol_type (token::TOK_CURRENT_TIME, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_CURRENT_TIME (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_CURRENT_TIME, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_CURRENT_TIMESTAMP (std::string v, location_type l) + { + return symbol_type (token::TOK_CURRENT_TIMESTAMP, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_CURRENT_TIMESTAMP (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_CURRENT_TIMESTAMP, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_DEFAULT (std::string v, location_type l) + { + return symbol_type (token::TOK_DEFAULT, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_DEFAULT (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_DEFAULT, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_DEFERRABLE (std::string v, location_type l) + { + return symbol_type (token::TOK_DEFERRABLE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_DEFERRABLE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_DEFERRABLE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_DEFERRED (std::string v, location_type l) + { + return symbol_type (token::TOK_DEFERRED, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_DEFERRED (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_DEFERRED, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_DELETE (std::string v, location_type l) + { + return symbol_type (token::TOK_DELETE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_DELETE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_DELETE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_DESC (std::string v, location_type l) + { + return symbol_type (token::TOK_DESC, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_DESC (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_DESC, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_DISTINCT (std::string v, location_type l) + { + return symbol_type (token::TOK_DISTINCT, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_DISTINCT (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_DISTINCT, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_ELSE (std::string v, location_type l) + { + return symbol_type (token::TOK_ELSE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_ELSE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_ELSE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_END (std::string v, location_type l) + { + return symbol_type (token::TOK_END, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_END (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_END, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_ESCAPE (std::string v, location_type l) + { + return symbol_type (token::TOK_ESCAPE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_ESCAPE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_ESCAPE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_EXISTS (std::string v, location_type l) + { + return symbol_type (token::TOK_EXISTS, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_EXISTS (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_EXISTS, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_FAIL (std::string v, location_type l) + { + return symbol_type (token::TOK_FAIL, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_FAIL (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_FAIL, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_FALSE (std::string v, location_type l) + { + return symbol_type (token::TOK_FALSE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_FALSE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_FALSE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_FILTER (std::string v, location_type l) + { + return symbol_type (token::TOK_FILTER, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_FILTER (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_FILTER, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_FOLLOWING (std::string v, location_type l) + { + return symbol_type (token::TOK_FOLLOWING, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_FOLLOWING (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_FOLLOWING, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_FOREIGN (std::string v, location_type l) + { + return symbol_type (token::TOK_FOREIGN, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_FOREIGN (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_FOREIGN, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_GENERATED (std::string v, location_type l) + { + return symbol_type (token::TOK_GENERATED, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_GENERATED (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_GENERATED, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_GLOB (std::string v, location_type l) + { + return symbol_type (token::TOK_GLOB, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_GLOB (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_GLOB, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_IF (std::string v, location_type l) + { + return symbol_type (token::TOK_IF, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_IF (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_IF, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_IGNORE (std::string v, location_type l) + { + return symbol_type (token::TOK_IGNORE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_IGNORE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_IGNORE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_IMMEDIATE (std::string v, location_type l) + { + return symbol_type (token::TOK_IMMEDIATE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_IMMEDIATE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_IMMEDIATE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_IN (std::string v, location_type l) + { + return symbol_type (token::TOK_IN, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_IN (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_IN, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_INDEX (std::string v, location_type l) + { + return symbol_type (token::TOK_INDEX, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_INDEX (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_INDEX, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_INITIALLY (std::string v, location_type l) + { + return symbol_type (token::TOK_INITIALLY, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_INITIALLY (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_INITIALLY, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_INSERT (std::string v, location_type l) + { + return symbol_type (token::TOK_INSERT, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_INSERT (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_INSERT, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_IS (std::string v, location_type l) + { + return symbol_type (token::TOK_IS, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_IS (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_IS, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_ISNULL (std::string v, location_type l) + { + return symbol_type (token::TOK_ISNULL, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_ISNULL (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_ISNULL, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_KEY (std::string v, location_type l) + { + return symbol_type (token::TOK_KEY, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_KEY (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_KEY, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_LIKE (std::string v, location_type l) + { + return symbol_type (token::TOK_LIKE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_LIKE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_LIKE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_MATCH (std::string v, location_type l) + { + return symbol_type (token::TOK_MATCH, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_MATCH (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_MATCH, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_NO (std::string v, location_type l) + { + return symbol_type (token::TOK_NO, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_NO (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_NO, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_NOT (std::string v, location_type l) + { + return symbol_type (token::TOK_NOT, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_NOT (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_NOT, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_NOTNULL (std::string v, location_type l) + { + return symbol_type (token::TOK_NOTNULL, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_NOTNULL (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_NOTNULL, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_NULL (std::string v, location_type l) + { + return symbol_type (token::TOK_NULL, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_NULL (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_NULL, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_ON (std::string v, location_type l) + { + return symbol_type (token::TOK_ON, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_ON (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_ON, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_OR (std::string v, location_type l) + { + return symbol_type (token::TOK_OR, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_OR (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_OR, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_OVER (std::string v, location_type l) + { + return symbol_type (token::TOK_OVER, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_OVER (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_OVER, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_PARTITION (std::string v, location_type l) + { + return symbol_type (token::TOK_PARTITION, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_PARTITION (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_PARTITION, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_PRECEDING (std::string v, location_type l) + { + return symbol_type (token::TOK_PRECEDING, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_PRECEDING (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_PRECEDING, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_PRIMARY (std::string v, location_type l) + { + return symbol_type (token::TOK_PRIMARY, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_PRIMARY (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_PRIMARY, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_RAISE (std::string v, location_type l) + { + return symbol_type (token::TOK_RAISE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_RAISE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_RAISE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_RANGE (std::string v, location_type l) + { + return symbol_type (token::TOK_RANGE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_RANGE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_RANGE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_REFERENCES (std::string v, location_type l) + { + return symbol_type (token::TOK_REFERENCES, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_REFERENCES (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_REFERENCES, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_REGEXP (std::string v, location_type l) + { + return symbol_type (token::TOK_REGEXP, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_REGEXP (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_REGEXP, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_REPLACE (std::string v, location_type l) + { + return symbol_type (token::TOK_REPLACE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_REPLACE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_REPLACE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_RESTRICT (std::string v, location_type l) + { + return symbol_type (token::TOK_RESTRICT, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_RESTRICT (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_RESTRICT, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_ROLLBACK (std::string v, location_type l) + { + return symbol_type (token::TOK_ROLLBACK, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_ROLLBACK (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_ROLLBACK, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_ROWID (std::string v, location_type l) + { + return symbol_type (token::TOK_ROWID, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_ROWID (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_ROWID, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_ROWS (std::string v, location_type l) + { + return symbol_type (token::TOK_ROWS, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_ROWS (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_ROWS, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_SELECT (std::string v, location_type l) + { + return symbol_type (token::TOK_SELECT, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_SELECT (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_SELECT, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_SET (std::string v, location_type l) + { + return symbol_type (token::TOK_SET, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_SET (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_SET, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_STORED (std::string v, location_type l) + { + return symbol_type (token::TOK_STORED, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_STORED (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_STORED, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_TABLE (std::string v, location_type l) + { + return symbol_type (token::TOK_TABLE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_TABLE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_TABLE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_TEMP (std::string v, location_type l) + { + return symbol_type (token::TOK_TEMP, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_TEMP (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_TEMP, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_TEMPORARY (std::string v, location_type l) + { + return symbol_type (token::TOK_TEMPORARY, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_TEMPORARY (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_TEMPORARY, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_THEN (std::string v, location_type l) + { + return symbol_type (token::TOK_THEN, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_THEN (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_THEN, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_TRUE (std::string v, location_type l) + { + return symbol_type (token::TOK_TRUE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_TRUE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_TRUE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_UNBOUNDED (std::string v, location_type l) + { + return symbol_type (token::TOK_UNBOUNDED, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_UNBOUNDED (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_UNBOUNDED, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_UNIQUE (std::string v, location_type l) + { + return symbol_type (token::TOK_UNIQUE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_UNIQUE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_UNIQUE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_UPDATE (std::string v, location_type l) + { + return symbol_type (token::TOK_UPDATE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_UPDATE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_UPDATE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_USING (std::string v, location_type l) + { + return symbol_type (token::TOK_USING, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_USING (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_USING, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_VIRTUAL (std::string v, location_type l) + { + return symbol_type (token::TOK_VIRTUAL, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_VIRTUAL (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_VIRTUAL, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_WHEN (std::string v, location_type l) + { + return symbol_type (token::TOK_WHEN, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_WHEN (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_WHEN, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_WHERE (std::string v, location_type l) + { + return symbol_type (token::TOK_WHERE, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_WHERE (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_WHERE, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_WITHOUT (std::string v, location_type l) + { + return symbol_type (token::TOK_WITHOUT, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_WITHOUT (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_WITHOUT, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_IDENTIFIER (std::string v, location_type l) + { + return symbol_type (token::TOK_IDENTIFIER, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_IDENTIFIER (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_IDENTIFIER, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_NUMERIC (std::string v, location_type l) + { + return symbol_type (token::TOK_NUMERIC, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_NUMERIC (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_NUMERIC, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_STRINGLITERAL (std::string v, location_type l) + { + return symbol_type (token::TOK_STRINGLITERAL, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_STRINGLITERAL (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_STRINGLITERAL, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_QUOTEDLITERAL (std::string v, location_type l) + { + return symbol_type (token::TOK_QUOTEDLITERAL, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_QUOTEDLITERAL (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_QUOTEDLITERAL, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_BLOBLITERAL (std::string v, location_type l) + { + return symbol_type (token::TOK_BLOBLITERAL, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_BLOBLITERAL (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_BLOBLITERAL, v, l); + } +#endif +#if 201103L <= YY_CPLUSPLUS + static + symbol_type + make_BINDPARAMETER (std::string v, location_type l) + { + return symbol_type (token::TOK_BINDPARAMETER, std::move (v), std::move (l)); + } +#else + static + symbol_type + make_BINDPARAMETER (const std::string& v, const location_type& l) + { + return symbol_type (token::TOK_BINDPARAMETER, v, l); + } +#endif + + + private: + /// This class is not copyable. + parser (const parser&); + parser& operator= (const parser&); + + /// Stored state numbers (used for stacks). + typedef short state_type; + + /// Generate an error message. + /// \param yystate the state where the error occurred. + /// \param yyla the lookahead token. + virtual std::string yysyntax_error_ (state_type yystate, + const symbol_type& yyla) const; + + /// Compute post-reduction state. + /// \param yystate the current state + /// \param yysym the nonterminal to push on the stack + static state_type yy_lr_goto_state_ (state_type yystate, int yysym); + + /// Whether the given \c yypact_ value indicates a defaulted state. + /// \param yyvalue the value to check + static bool yy_pact_value_is_default_ (int yyvalue); + + /// Whether the given \c yytable_ value indicates a syntax error. + /// \param yyvalue the value to check + static bool yy_table_value_is_error_ (int yyvalue); + + static const short yypact_ninf_; + static const short yytable_ninf_; + + /// Convert a scanner token number \a t to a symbol number. + /// In theory \a t should be a token_type, but character literals + /// are valid, yet not members of the token_type enum. + static token_number_type yytranslate_ (int t); + + // Tables. + // YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing + // STATE-NUM. + static const short yypact_[]; + + // YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. + // Performed when YYTABLE does not specify something else to do. Zero + // means the default is an error. + static const short yydefact_[]; + + // YYPGOTO[NTERM-NUM]. + static const short yypgoto_[]; + + // YYDEFGOTO[NTERM-NUM]. + static const short yydefgoto_[]; + + // YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If + // positive, shift that token. If negative, reduce the rule whose + // number is the opposite. If YYTABLE_NINF, syntax error. + static const short yytable_[]; + + static const short yycheck_[]; + + // YYSTOS[STATE-NUM] -- The (internal number of the) accessing + // symbol of state STATE-NUM. + static const unsigned char yystos_[]; + + // YYR1[YYN] -- Symbol number of symbol that rule YYN derives. + static const unsigned char yyr1_[]; + + // YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. + static const signed char yyr2_[]; + + + /// Convert the symbol name \a n to a form suitable for a diagnostic. + static std::string yytnamerr_ (const char *n); + + + /// For a symbol, its name in clear. + static const char* const yytname_[]; +#if YYDEBUG + // YYRLINE[YYN] -- Source line where rule number YYN was defined. + static const short yyrline_[]; + /// Report on the debug stream that the rule \a r is going to be reduced. + virtual void yy_reduce_print_ (int r); + /// Print the state stack on the debug stream. + virtual void yystack_print_ (); + + /// Debugging level. + int yydebug_; + /// Debug stream. + std::ostream* yycdebug_; + + /// \brief Display a symbol type, value and location. + /// \param yyo The output stream. + /// \param yysym The symbol. + template + void yy_print_ (std::ostream& yyo, const basic_symbol& yysym) const; +#endif + + /// \brief Reclaim the memory associated to a symbol. + /// \param yymsg Why this token is reclaimed. + /// If null, print nothing. + /// \param yysym The symbol. + template + void yy_destroy_ (const char* yymsg, basic_symbol& yysym) const; + + private: + /// Type access provider for state based symbols. + struct by_state + { + /// Default constructor. + by_state () YY_NOEXCEPT; + + /// The symbol type as needed by the constructor. + typedef state_type kind_type; + + /// Constructor. + by_state (kind_type s) YY_NOEXCEPT; + + /// Copy constructor. + by_state (const by_state& that) YY_NOEXCEPT; + + /// Record that this symbol is empty. + void clear () YY_NOEXCEPT; + + /// Steal the symbol type from \a that. + void move (by_state& that); + + /// The (internal) type number (corresponding to \a state). + /// \a empty_symbol when empty. + symbol_number_type type_get () const YY_NOEXCEPT; + + /// The state number used to denote an empty symbol. + /// We use the initial state, as it does not have a value. + enum { empty_state = 0 }; + + /// The state. + /// \a empty when empty. + state_type state; + }; + + /// "Internal" symbol: element of the stack. + struct stack_symbol_type : basic_symbol + { + /// Superclass. + typedef basic_symbol super_type; + /// Construct an empty symbol. + stack_symbol_type (); + /// Move or copy construction. + stack_symbol_type (YY_RVREF (stack_symbol_type) that); + /// Steal the contents from \a sym to build this. + stack_symbol_type (state_type s, YY_MOVE_REF (symbol_type) sym); +#if YY_CPLUSPLUS < 201103L + /// Assignment, needed by push_back by some old implementations. + /// Moves the contents of that. + stack_symbol_type& operator= (stack_symbol_type& that); + + /// Assignment, needed by push_back by other implementations. + /// Needed by some other old implementations. + stack_symbol_type& operator= (const stack_symbol_type& that); +#endif + }; + + /// A stack with random access from its top. + template > + class stack + { + public: + // Hide our reversed order. + typedef typename S::reverse_iterator iterator; + typedef typename S::const_reverse_iterator const_iterator; + typedef typename S::size_type size_type; + typedef typename std::ptrdiff_t index_type; + + stack (size_type n = 200) + : seq_ (n) + {} + + /// Random access. + /// + /// Index 0 returns the topmost element. + const T& + operator[] (index_type i) const + { + return seq_[size_type (size () - 1 - i)]; + } + + /// Random access. + /// + /// Index 0 returns the topmost element. + T& + operator[] (index_type i) + { + return seq_[size_type (size () - 1 - i)]; + } + + /// Steal the contents of \a t. + /// + /// Close to move-semantics. + void + push (YY_MOVE_REF (T) t) + { + seq_.push_back (T ()); + operator[] (0).move (t); + } + + /// Pop elements from the stack. + void + pop (std::ptrdiff_t n = 1) YY_NOEXCEPT + { + for (; 0 < n; --n) + seq_.pop_back (); + } + + /// Pop all elements from the stack. + void + clear () YY_NOEXCEPT + { + seq_.clear (); + } + + /// Number of elements on the stack. + index_type + size () const YY_NOEXCEPT + { + return index_type (seq_.size ()); + } + + std::ptrdiff_t + ssize () const YY_NOEXCEPT + { + return std::ptrdiff_t (size ()); + } + + /// Iterator on top of the stack (going downwards). + const_iterator + begin () const YY_NOEXCEPT + { + return seq_.rbegin (); + } + + /// Bottom of the stack. + const_iterator + end () const YY_NOEXCEPT + { + return seq_.rend (); + } + + /// Present a slice of the top of a stack. + class slice + { + public: + slice (const stack& stack, index_type range) + : stack_ (stack) + , range_ (range) + {} + + const T& + operator[] (index_type i) const + { + return stack_[range_ - i]; + } + + private: + const stack& stack_; + index_type range_; + }; + + private: + stack (const stack&); + stack& operator= (const stack&); + /// The wrapped container. + S seq_; + }; + + + /// Stack type. + typedef stack stack_type; + + /// The stack. + stack_type yystack_; + + /// Push a new state on the stack. + /// \param m a debug message to display + /// if null, no trace is output. + /// \param sym the symbol + /// \warning the contents of \a s.value is stolen. + void yypush_ (const char* m, YY_MOVE_REF (stack_symbol_type) sym); + + /// Push a new look ahead token on the state on the stack. + /// \param m a debug message to display + /// if null, no trace is output. + /// \param s the state + /// \param sym the symbol (for its value and location). + /// \warning the contents of \a sym.value is stolen. + void yypush_ (const char* m, state_type s, YY_MOVE_REF (symbol_type) sym); + + /// Pop \a n symbols from the stack. + void yypop_ (int n = 1); + + /// Some specific tokens. + static const token_number_type yy_error_token_ = 1; + static const token_number_type yy_undef_token_ = 2; + + /// Constants. + enum + { + yyeof_ = 0, + yylast_ = 3407, ///< Last index in yytable_. + yynnts_ = 55, ///< Number of nonterminal symbols. + yyfinal_ = 13, ///< Termination state number. + yyntokens_ = 117 ///< Number of tokens. + }; + + + // User arguments. + yyscan_t yyscanner; + ParserDriver& drv; + }; + + inline + parser::token_number_type + parser::yytranslate_ (int t) + { + // YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to + // TOKEN-NUM as returned by yylex. + static + const token_number_type + translate_table[] = + { + 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, + 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, + 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, + 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, + 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, + 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, + 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, + 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, + 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, + 115, 116 + }; + const int user_token_number_max_ = 371; + + if (t <= 0) + return yyeof_; + else if (t <= user_token_number_max_) + return translate_table[t]; + else + return yy_undef_token_; + } + + // basic_symbol. +#if 201103L <= YY_CPLUSPLUS + template + parser::basic_symbol::basic_symbol (basic_symbol&& that) + : Base (std::move (that)) + , value () + , location (std::move (that.location)) + { + switch (this->type_get ()) + { + case 158: // columnconstraint + value.move< ColumnConstraintInfo > (std::move (that.value)); + break; + + case 159: // columnconstraint_list + value.move< ColumnConstraintInfoVector > (std::move (that.value)); + break; + + case 160: // columndef + value.move< ColumndefData > (std::move (that.value)); + break; + + case 142: // optional_if_not_exists + case 144: // optional_unique + case 152: // optional_temporary + case 153: // optional_withoutrowid + case 157: // optional_always_generated + value.move< bool > (std::move (that.value)); + break; + + case 168: // tableconstraint + value.move< sqlb::ConstraintPtr > (std::move (that.value)); + break; + + case 169: // tableconstraint_list + case 170: // optional_tableconstraint_list + value.move< sqlb::ConstraintSet > (std::move (that.value)); + break; + + case 149: // createindex_stmt + value.move< sqlb::IndexPtr > (std::move (that.value)); + break; + + case 147: // indexed_column + value.move< sqlb::IndexedColumn > (std::move (that.value)); + break; + + case 148: // indexed_column_list + value.move< sqlb::IndexedColumnVector > (std::move (that.value)); + break; + + case 163: // columnid_list + case 164: // optional_columnid_with_paren_list + value.move< sqlb::StringVector > (std::move (that.value)); + break; + + case 151: // createvirtualtable_stmt + case 171: // createtable_stmt + value.move< sqlb::TablePtr > (std::move (that.value)); + break; + + case 27: // "ABORT" + case 28: // "ACTION" + case 29: // "ALWAYS" + case 30: // "AND" + case 31: // "AND BETWEEN" + case 32: // "AS" + case 33: // "ASC" + case 34: // "AUTOINCREMENT" + case 35: // "BETWEEN" + case 36: // "CASCADE" + case 37: // "CASE" + case 38: // "CAST" + case 39: // "CHECK" + case 40: // "COLLATE" + case 41: // "CONFLICT" + case 42: // "CONSTRAINT" + case 43: // "CREATE" + case 44: // "CURRENT_DATE" + case 45: // "CURRENT_TIME" + case 46: // "CURRENT_TIMESTAMP" + case 47: // "DEFAULT" + case 48: // "DEFERRABLE" + case 49: // "DEFERRED" + case 50: // "DELETE" + case 51: // "DESC" + case 52: // "DISTINCT" + case 53: // "ELSE" + case 54: // "END" + case 55: // "ESCAPE" + case 56: // "EXISTS" + case 57: // "FAIL" + case 58: // "FALSE" + case 59: // "FILTER" + case 60: // "FOLLOWING" + case 61: // "FOREIGN" + case 62: // "GENERATED" + case 63: // "GLOB" + case 64: // "IF" + case 65: // "IGNORE" + case 66: // "IMMEDIATE" + case 67: // "IN" + case 68: // "INDEX" + case 69: // "INITIALLY" + case 70: // "INSERT" + case 71: // "IS" + case 72: // "ISNULL" + case 73: // "KEY" + case 74: // "LIKE" + case 75: // "MATCH" + case 76: // "NO" + case 77: // "NOT" + case 78: // "NOTNULL" + case 79: // "NULL" + case 80: // "ON" + case 81: // "OR" + case 82: // "OVER" + case 83: // "PARTITION" + case 84: // "PRECEDING" + case 85: // "PRIMARY" + case 86: // "RAISE" + case 87: // "RANGE" + case 88: // "REFERENCES" + case 89: // "REGEXP" + case 90: // "REPLACE" + case 91: // "RESTRICT" + case 92: // "ROLLBACK" + case 93: // "ROWID" + case 94: // "ROWS" + case 95: // "SELECT" + case 96: // "SET" + case 97: // "STORED" + case 98: // "TABLE" + case 99: // "TEMP" + case 100: // "TEMPORARY" + case 101: // "THEN" + case 102: // "TRUE" + case 103: // "UNBOUNDED" + case 104: // "UNIQUE" + case 105: // "UPDATE" + case 106: // "USING" + case 107: // "VIRTUAL" + case 108: // "WHEN" + case 109: // "WHERE" + case 110: // "WITHOUT" + case 111: // "identifier" + case 112: // "numeric" + case 113: // "string literal" + case 114: // "quoted literal" + case 115: // "blob literal" + case 116: // "bind parameter" + case 120: // literalvalue + case 121: // id + case 122: // allowed_keywords_as_identifier + case 123: // tableid + case 124: // columnid + case 125: // signednumber + case 126: // signednumber_or_numeric + case 127: // typename_namelist + case 128: // type_name + case 129: // unary_expr + case 130: // binary_expr + case 131: // like_expr + case 132: // exprlist_expr + case 133: // function_expr + case 134: // isnull_expr + case 135: // between_expr + case 136: // in_expr + case 137: // whenthenlist_expr + case 138: // case_expr + case 139: // raise_expr + case 140: // expr + case 141: // select_stmt + case 143: // optional_sort_order + case 145: // optional_where + case 146: // tableid_with_uninteresting_schema + case 150: // optional_exprlist_with_paren + case 154: // optional_conflictclause + case 155: // optional_typename + case 156: // optional_storage_identifier + case 162: // optional_constraintname + case 165: // fk_clause_part + case 166: // fk_clause_part_list + case 167: // optional_fk_clause + value.move< std::string > (std::move (that.value)); + break; + + case 161: // columndef_list + value.move< std::vector > (std::move (that.value)); + break; + + default: + break; + } + + } +#endif + + template + parser::basic_symbol::basic_symbol (const basic_symbol& that) + : Base (that) + , value () + , location (that.location) + { + switch (this->type_get ()) + { + case 158: // columnconstraint + value.copy< ColumnConstraintInfo > (YY_MOVE (that.value)); + break; + + case 159: // columnconstraint_list + value.copy< ColumnConstraintInfoVector > (YY_MOVE (that.value)); + break; + + case 160: // columndef + value.copy< ColumndefData > (YY_MOVE (that.value)); + break; + + case 142: // optional_if_not_exists + case 144: // optional_unique + case 152: // optional_temporary + case 153: // optional_withoutrowid + case 157: // optional_always_generated + value.copy< bool > (YY_MOVE (that.value)); + break; + + case 168: // tableconstraint + value.copy< sqlb::ConstraintPtr > (YY_MOVE (that.value)); + break; + + case 169: // tableconstraint_list + case 170: // optional_tableconstraint_list + value.copy< sqlb::ConstraintSet > (YY_MOVE (that.value)); + break; + + case 149: // createindex_stmt + value.copy< sqlb::IndexPtr > (YY_MOVE (that.value)); + break; + + case 147: // indexed_column + value.copy< sqlb::IndexedColumn > (YY_MOVE (that.value)); + break; + + case 148: // indexed_column_list + value.copy< sqlb::IndexedColumnVector > (YY_MOVE (that.value)); + break; + + case 163: // columnid_list + case 164: // optional_columnid_with_paren_list + value.copy< sqlb::StringVector > (YY_MOVE (that.value)); + break; + + case 151: // createvirtualtable_stmt + case 171: // createtable_stmt + value.copy< sqlb::TablePtr > (YY_MOVE (that.value)); + break; + + case 27: // "ABORT" + case 28: // "ACTION" + case 29: // "ALWAYS" + case 30: // "AND" + case 31: // "AND BETWEEN" + case 32: // "AS" + case 33: // "ASC" + case 34: // "AUTOINCREMENT" + case 35: // "BETWEEN" + case 36: // "CASCADE" + case 37: // "CASE" + case 38: // "CAST" + case 39: // "CHECK" + case 40: // "COLLATE" + case 41: // "CONFLICT" + case 42: // "CONSTRAINT" + case 43: // "CREATE" + case 44: // "CURRENT_DATE" + case 45: // "CURRENT_TIME" + case 46: // "CURRENT_TIMESTAMP" + case 47: // "DEFAULT" + case 48: // "DEFERRABLE" + case 49: // "DEFERRED" + case 50: // "DELETE" + case 51: // "DESC" + case 52: // "DISTINCT" + case 53: // "ELSE" + case 54: // "END" + case 55: // "ESCAPE" + case 56: // "EXISTS" + case 57: // "FAIL" + case 58: // "FALSE" + case 59: // "FILTER" + case 60: // "FOLLOWING" + case 61: // "FOREIGN" + case 62: // "GENERATED" + case 63: // "GLOB" + case 64: // "IF" + case 65: // "IGNORE" + case 66: // "IMMEDIATE" + case 67: // "IN" + case 68: // "INDEX" + case 69: // "INITIALLY" + case 70: // "INSERT" + case 71: // "IS" + case 72: // "ISNULL" + case 73: // "KEY" + case 74: // "LIKE" + case 75: // "MATCH" + case 76: // "NO" + case 77: // "NOT" + case 78: // "NOTNULL" + case 79: // "NULL" + case 80: // "ON" + case 81: // "OR" + case 82: // "OVER" + case 83: // "PARTITION" + case 84: // "PRECEDING" + case 85: // "PRIMARY" + case 86: // "RAISE" + case 87: // "RANGE" + case 88: // "REFERENCES" + case 89: // "REGEXP" + case 90: // "REPLACE" + case 91: // "RESTRICT" + case 92: // "ROLLBACK" + case 93: // "ROWID" + case 94: // "ROWS" + case 95: // "SELECT" + case 96: // "SET" + case 97: // "STORED" + case 98: // "TABLE" + case 99: // "TEMP" + case 100: // "TEMPORARY" + case 101: // "THEN" + case 102: // "TRUE" + case 103: // "UNBOUNDED" + case 104: // "UNIQUE" + case 105: // "UPDATE" + case 106: // "USING" + case 107: // "VIRTUAL" + case 108: // "WHEN" + case 109: // "WHERE" + case 110: // "WITHOUT" + case 111: // "identifier" + case 112: // "numeric" + case 113: // "string literal" + case 114: // "quoted literal" + case 115: // "blob literal" + case 116: // "bind parameter" + case 120: // literalvalue + case 121: // id + case 122: // allowed_keywords_as_identifier + case 123: // tableid + case 124: // columnid + case 125: // signednumber + case 126: // signednumber_or_numeric + case 127: // typename_namelist + case 128: // type_name + case 129: // unary_expr + case 130: // binary_expr + case 131: // like_expr + case 132: // exprlist_expr + case 133: // function_expr + case 134: // isnull_expr + case 135: // between_expr + case 136: // in_expr + case 137: // whenthenlist_expr + case 138: // case_expr + case 139: // raise_expr + case 140: // expr + case 141: // select_stmt + case 143: // optional_sort_order + case 145: // optional_where + case 146: // tableid_with_uninteresting_schema + case 150: // optional_exprlist_with_paren + case 154: // optional_conflictclause + case 155: // optional_typename + case 156: // optional_storage_identifier + case 162: // optional_constraintname + case 165: // fk_clause_part + case 166: // fk_clause_part_list + case 167: // optional_fk_clause + value.copy< std::string > (YY_MOVE (that.value)); + break; + + case 161: // columndef_list + value.copy< std::vector > (YY_MOVE (that.value)); + break; + + default: + break; + } + + } + + + + template + bool + parser::basic_symbol::empty () const YY_NOEXCEPT + { + return Base::type_get () == empty_symbol; + } + + template + void + parser::basic_symbol::move (basic_symbol& s) + { + super_type::move (s); + switch (this->type_get ()) + { + case 158: // columnconstraint + value.move< ColumnConstraintInfo > (YY_MOVE (s.value)); + break; + + case 159: // columnconstraint_list + value.move< ColumnConstraintInfoVector > (YY_MOVE (s.value)); + break; + + case 160: // columndef + value.move< ColumndefData > (YY_MOVE (s.value)); + break; + + case 142: // optional_if_not_exists + case 144: // optional_unique + case 152: // optional_temporary + case 153: // optional_withoutrowid + case 157: // optional_always_generated + value.move< bool > (YY_MOVE (s.value)); + break; + + case 168: // tableconstraint + value.move< sqlb::ConstraintPtr > (YY_MOVE (s.value)); + break; + + case 169: // tableconstraint_list + case 170: // optional_tableconstraint_list + value.move< sqlb::ConstraintSet > (YY_MOVE (s.value)); + break; + + case 149: // createindex_stmt + value.move< sqlb::IndexPtr > (YY_MOVE (s.value)); + break; + + case 147: // indexed_column + value.move< sqlb::IndexedColumn > (YY_MOVE (s.value)); + break; + + case 148: // indexed_column_list + value.move< sqlb::IndexedColumnVector > (YY_MOVE (s.value)); + break; + + case 163: // columnid_list + case 164: // optional_columnid_with_paren_list + value.move< sqlb::StringVector > (YY_MOVE (s.value)); + break; + + case 151: // createvirtualtable_stmt + case 171: // createtable_stmt + value.move< sqlb::TablePtr > (YY_MOVE (s.value)); + break; + + case 27: // "ABORT" + case 28: // "ACTION" + case 29: // "ALWAYS" + case 30: // "AND" + case 31: // "AND BETWEEN" + case 32: // "AS" + case 33: // "ASC" + case 34: // "AUTOINCREMENT" + case 35: // "BETWEEN" + case 36: // "CASCADE" + case 37: // "CASE" + case 38: // "CAST" + case 39: // "CHECK" + case 40: // "COLLATE" + case 41: // "CONFLICT" + case 42: // "CONSTRAINT" + case 43: // "CREATE" + case 44: // "CURRENT_DATE" + case 45: // "CURRENT_TIME" + case 46: // "CURRENT_TIMESTAMP" + case 47: // "DEFAULT" + case 48: // "DEFERRABLE" + case 49: // "DEFERRED" + case 50: // "DELETE" + case 51: // "DESC" + case 52: // "DISTINCT" + case 53: // "ELSE" + case 54: // "END" + case 55: // "ESCAPE" + case 56: // "EXISTS" + case 57: // "FAIL" + case 58: // "FALSE" + case 59: // "FILTER" + case 60: // "FOLLOWING" + case 61: // "FOREIGN" + case 62: // "GENERATED" + case 63: // "GLOB" + case 64: // "IF" + case 65: // "IGNORE" + case 66: // "IMMEDIATE" + case 67: // "IN" + case 68: // "INDEX" + case 69: // "INITIALLY" + case 70: // "INSERT" + case 71: // "IS" + case 72: // "ISNULL" + case 73: // "KEY" + case 74: // "LIKE" + case 75: // "MATCH" + case 76: // "NO" + case 77: // "NOT" + case 78: // "NOTNULL" + case 79: // "NULL" + case 80: // "ON" + case 81: // "OR" + case 82: // "OVER" + case 83: // "PARTITION" + case 84: // "PRECEDING" + case 85: // "PRIMARY" + case 86: // "RAISE" + case 87: // "RANGE" + case 88: // "REFERENCES" + case 89: // "REGEXP" + case 90: // "REPLACE" + case 91: // "RESTRICT" + case 92: // "ROLLBACK" + case 93: // "ROWID" + case 94: // "ROWS" + case 95: // "SELECT" + case 96: // "SET" + case 97: // "STORED" + case 98: // "TABLE" + case 99: // "TEMP" + case 100: // "TEMPORARY" + case 101: // "THEN" + case 102: // "TRUE" + case 103: // "UNBOUNDED" + case 104: // "UNIQUE" + case 105: // "UPDATE" + case 106: // "USING" + case 107: // "VIRTUAL" + case 108: // "WHEN" + case 109: // "WHERE" + case 110: // "WITHOUT" + case 111: // "identifier" + case 112: // "numeric" + case 113: // "string literal" + case 114: // "quoted literal" + case 115: // "blob literal" + case 116: // "bind parameter" + case 120: // literalvalue + case 121: // id + case 122: // allowed_keywords_as_identifier + case 123: // tableid + case 124: // columnid + case 125: // signednumber + case 126: // signednumber_or_numeric + case 127: // typename_namelist + case 128: // type_name + case 129: // unary_expr + case 130: // binary_expr + case 131: // like_expr + case 132: // exprlist_expr + case 133: // function_expr + case 134: // isnull_expr + case 135: // between_expr + case 136: // in_expr + case 137: // whenthenlist_expr + case 138: // case_expr + case 139: // raise_expr + case 140: // expr + case 141: // select_stmt + case 143: // optional_sort_order + case 145: // optional_where + case 146: // tableid_with_uninteresting_schema + case 150: // optional_exprlist_with_paren + case 154: // optional_conflictclause + case 155: // optional_typename + case 156: // optional_storage_identifier + case 162: // optional_constraintname + case 165: // fk_clause_part + case 166: // fk_clause_part_list + case 167: // optional_fk_clause + value.move< std::string > (YY_MOVE (s.value)); + break; + + case 161: // columndef_list + value.move< std::vector > (YY_MOVE (s.value)); + break; + + default: + break; + } + + location = YY_MOVE (s.location); + } + + // by_type. + inline + parser::by_type::by_type () + : type (empty_symbol) + {} + +#if 201103L <= YY_CPLUSPLUS + inline + parser::by_type::by_type (by_type&& that) + : type (that.type) + { + that.clear (); + } +#endif + + inline + parser::by_type::by_type (const by_type& that) + : type (that.type) + {} + + inline + parser::by_type::by_type (token_type t) + : type (yytranslate_ (t)) + {} + + inline + void + parser::by_type::clear () + { + type = empty_symbol; + } + + inline + void + parser::by_type::move (by_type& that) + { + type = that.type; + that.clear (); + } + + inline + int + parser::by_type::type_get () const YY_NOEXCEPT + { + return type; + } + +#line 10 "sqlite3_parser.yy" +} } // sqlb::parser +#line 4092 "sqlite3_parser.hpp" + + + + + +#endif // !YY_YY_SQLITE3_PARSER_HPP_INCLUDED diff --git a/src/SqliteDBProcess/src/sql/parser/sqlite3_parser.yy b/src/SqliteDBProcess/src/sql/parser/sqlite3_parser.yy new file mode 100644 index 0000000..81389d1 --- /dev/null +++ b/src/SqliteDBProcess/src/sql/parser/sqlite3_parser.yy @@ -0,0 +1,988 @@ +%skeleton "lalr1.cc" +%require "3.4.1" +%defines + +%define api.token.constructor +%define api.value.type variant +%define parse.assert +%output "sqlite3_parser.cpp" +%define api.location.file "sqlite3_location.h" +%define api.namespace { sqlb::parser } + +%code requires { + #include + #include + #include "../sqlitetypes.h" + #include "../ObjectIdentifier.h" + namespace sqlb { namespace parser { class ParserDriver; } } + typedef void* yyscan_t; + + // Unfortunately we do not store column constraints in a systematic manner yet. + // Instead there is a variable for most column constraints directly inside the + // sqlb::Field class. This means that when parsing a column constraint we cannot + // just build a column constraint object with all the information and insert that + // into the Field object. Instead, the information needs to be passed upwards in + // some other way. This is what these declarations are for. We need to be able + // to pass information to the Field object as well as to the Table object too + // because some column constraints need to be transformed into Table constraints + // with our current layout. + class ColumnConstraintInfo + { + public: + ColumnConstraintInfo() : is_table_constraint(false), fully_parsed(false) {} + ~ColumnConstraintInfo() {} + ColumnConstraintInfo& operator=(const ColumnConstraintInfo& other) + { + type = other.type; + is_table_constraint = other.is_table_constraint; + fully_parsed = other.fully_parsed; + if(is_table_constraint) + table_constraint = other.table_constraint; + text = other.text; + generated_constraint = other.generated_constraint; + + return *this; + } + ColumnConstraintInfo(const ColumnConstraintInfo& other) + { + *this = other; + } + + enum ConstraintType + { + None, + AutoIncrement, + PrimaryKey, + NotNull, + Unique, + Check, + Default, + Collate, + ForeignKey, + Generated, + }; + + ConstraintType type; + bool is_table_constraint; + bool fully_parsed; + + sqlb::ConstraintPtr table_constraint; + std::string text; + sqlb::GeneratedColumnConstraint generated_constraint; + }; + using ColumnConstraintInfoVector = std::vector; + + // Colum definitions are a tuple of three elements: the Field object, a set of table constraints, and a bool to indicate whether parsing was complete + using ColumndefData = std::tuple; +} + +// The parsing context +%param { yyscan_t yyscanner } +%param { ParserDriver& drv } + +%locations + +%define parse.trace +%define parse.error verbose + +%code { + #include "ParserDriver.h" + + static std::string unquote_text(std::string str, char quote_char) + { + if(str.front() != quote_char || str.back() != quote_char) + return str; + + str = str.substr(1, str.size()-2); + + std::string quote(2, quote_char); + + size_t pos = 0; + while((pos = str.find(quote, pos)) != std::string::npos) + { + str.erase(pos, 1); + pos += 1; // Don't remove the other quote char too + } + return str; + } +} + +%define api.token.prefix {TOK_} +%token + EOF 0 "end of file" + LPAREN "(" + RPAREN ")" + DOT "." + COMMA "," + SEMI ";" + PLUS "+" + MINUS "-" + STAR "*" + SLASH "/" + TILDE "~" + AMPERSAND "&" + PERCENT "%" + BITOR "|" + OROP "||" + EQUAL "=" + EQUAL2 "==" + GREATER ">" + GREATEREQUAL ">=" + LOWER "<" + LOWEREQUAL "<=" + UNEQUAL "!=" + UNEQUAL2 "<>" + BITWISELEFT "<<" + BITWISERIGHT ">>" +; + +%token ABORT "ABORT" +%token ACTION "ACTION" +%token ALWAYS "ALWAYS" +%token AND "AND" +%token AND_BETWEEN "AND BETWEEN" +%token AS "AS" +%token ASC "ASC" +%token AUTOINCREMENT "AUTOINCREMENT" +%token BETWEEN "BETWEEN" +%token CASCADE "CASCADE" +%token CASE "CASE" +%token CAST "CAST" +%token CHECK "CHECK" +%token COLLATE "COLLATE" +%token CONFLICT "CONFLICT" +%token CONSTRAINT "CONSTRAINT" +%token CREATE "CREATE" +%token CURRENT_DATE "CURRENT_DATE" +%token CURRENT_TIME "CURRENT_TIME" +%token CURRENT_TIMESTAMP "CURRENT_TIMESTAMP" +%token DEFAULT "DEFAULT" +%token DEFERRABLE "DEFERRABLE" +%token DEFERRED "DEFERRED" +%token DELETE "DELETE" +%token DESC "DESC" +%token DISTINCT "DISTINCT" +%token ELSE "ELSE" +%token END "END" +%token ESCAPE "ESCAPE" +%token EXISTS "EXISTS" +%token FAIL "FAIL" +%token FALSE "FALSE" +%token FILTER "FILTER" +%token FOLLOWING "FOLLOWING" +%token FOREIGN "FOREIGN" +%token GENERATED "GENERATED" +%token GLOB "GLOB" +%token IF "IF" +%token IGNORE "IGNORE" +%token IMMEDIATE "IMMEDIATE" +%token IN "IN" +%token INDEX "INDEX" +%token INITIALLY "INITIALLY" +%token INSERT "INSERT" +%token IS "IS" +%token ISNULL "ISNULL" +%token KEY "KEY" +%token LIKE "LIKE" +%token MATCH "MATCH" +%token NO "NO" +%token NOT "NOT" +%token NOTNULL "NOTNULL" +%token NULL "NULL" +%token ON "ON" +%token OR "OR" +%token OVER "OVER" +%token PARTITION "PARTITION" +%token PRECEDING "PRECEDING" +%token PRIMARY "PRIMARY" +%token RAISE "RAISE" +%token RANGE "RANGE" +%token REFERENCES "REFERENCES" +%token REGEXP "REGEXP" +%token REPLACE "REPLACE" +%token RESTRICT "RESTRICT" +%token ROLLBACK "ROLLBACK" +%token ROWID "ROWID" +%token ROWS "ROWS" +%token SELECT "SELECT" +%token SET "SET" +%token STORED "STORED" +%token TABLE "TABLE" +%token TEMP "TEMP" +%token TEMPORARY "TEMPORARY" +%token THEN "THEN" +%token TRUE "TRUE" +%token UNBOUNDED "UNBOUNDED" +%token UNIQUE "UNIQUE" +%token UPDATE "UPDATE" +%token USING "USING" +%token VIRTUAL "VIRTUAL" +%token WHEN "WHEN" +%token WHERE "WHERE" +%token WITHOUT "WITHOUT" + +%token IDENTIFIER "identifier" +%token NUMERIC "numeric" +%token STRINGLITERAL "string literal" +%token QUOTEDLITERAL "quoted literal" +%token BLOBLITERAL "blob literal" +%token BINDPARAMETER "bind parameter" + +%type literalvalue +%type signednumber +%type signednumber_or_numeric +%type id +%type allowed_keywords_as_identifier +%type tableid +%type columnid +%type typename_namelist +%type type_name +%type unary_expr +%type binary_expr +%type like_expr +%type exprlist_expr +%type function_expr +%type isnull_expr +%type between_expr +%type in_expr +%type whenthenlist_expr +%type case_expr +%type raise_expr +%type expr +%type optional_if_not_exists +%type optional_unique +%type optional_temporary +%type optional_withoutrowid +%type optional_sort_order +%type optional_where +%type optional_constraintname +%type optional_conflictclause +%type tableid_with_uninteresting_schema +%type optional_exprlist_with_paren +%type select_stmt + +%type indexed_column +%type indexed_column_list +%type createindex_stmt +%type createvirtualtable_stmt + +%type optional_typename +%type optional_storage_identifier +%type optional_always_generated +%type columnconstraint_list +%type columnconstraint +%type columndef +%type > columndef_list +%type columnid_list +%type optional_columnid_with_paren_list +%type fk_clause_part +%type fk_clause_part_list +%type optional_fk_clause +%type tableconstraint +%type tableconstraint_list +%type optional_tableconstraint_list +%type createtable_stmt + +%% + +%left OR; +%left AND; +%right NOT; +%left IS MATCH LIKE BETWEEN IN UNEQUAL UNEQUAL2 EQUAL EQUAL2 GLOB REGEXP ISNULL NOTNULL; +%left GREATER LOWEREQUAL LOWER GREATEREQUAL; +%right ESCAPE; +%left AMPERSAND BITOR BITWISELEFT BITWISERIGHT; +%left PLUS MINUS; +%left STAR SLASH PERCENT; +%left OROP; +%left COLLATE; +%right TILDE; +%nonassoc ON; + +/* + * Statements + */ + +%start sql; + +sql: + statement + | statement ";" + ; + +statement: + createindex_stmt { drv.result = $1; } + | createvirtualtable_stmt { drv.result = $1; } + | createtable_stmt { drv.result = $1; } + ; + +/* + * Expressions + */ + +literalvalue: + NUMERIC + | STRINGLITERAL + | BLOBLITERAL + | NULL + | TRUE + | FALSE + | CURRENT_TIME + | CURRENT_DATE + | CURRENT_TIMESTAMP + ; + +id: + IDENTIFIER + | QUOTEDLITERAL + //| STRINGLITERAL + ; + +allowed_keywords_as_identifier: + ABORT + | ACTION + | ALWAYS + | ASC + | CASCADE + | CAST + | CONFLICT + | DEFERRED + | DESC + | END + | FAIL + | FILTER + | FOLLOWING + | GENERATED + | GLOB + | KEY + | LIKE + | IGNORE + | INITIALLY + | IMMEDIATE + | MATCH + | NO + | OVER + | PARTITION + | PRECEDING + | RAISE + | RANGE + | REGEXP + | REPLACE + | RESTRICT + | ROLLBACK + | ROWID + | ROWS + | STORED + | TEMPORARY + | TEMP + | UNBOUNDED + | VIRTUAL + | WITHOUT + ; + +tableid: + allowed_keywords_as_identifier + | CURRENT_TIME + | CURRENT_DATE + | CURRENT_TIMESTAMP + | id + | STRINGLITERAL { $$ = unquote_text($1, '\''); } + ; + +columnid: + allowed_keywords_as_identifier + | CURRENT_TIME + | CURRENT_DATE + | CURRENT_TIMESTAMP + | IF + | id + | STRINGLITERAL { $$ = unquote_text($1, '\''); } + ; + +signednumber: + "+" NUMERIC { $$ = "+" + $2; } // No NUMERIC without "+" or "-" here because that is just a literalvalue + | "-" NUMERIC { $$ = "-" + $2; } + ; + +signednumber_or_numeric: + signednumber + | NUMERIC + ; + +typename_namelist: + tableid { $$ = $1; } + | typename_namelist tableid { $$ = $1 + " " + $2; } + ; + +type_name: + typename_namelist { $$ = $1; } + | typename_namelist "(" signednumber_or_numeric ")" { $$ = $1 + "(" + $3 + ")"; } + | typename_namelist "(" signednumber_or_numeric "," signednumber_or_numeric ")" { $$ = $1 + "(" + $3 + ", " + $5 + ")"; } + ; + +unary_expr: + "-" expr %prec TILDE { $$ = "-" + $2; } + | "+" expr %prec TILDE { $$ = "+" + $2; } + | "~" expr { $$ = "~" + $2; } + | NOT expr { $$ = "NOT " + $2; } + ; + +binary_expr: + expr "||" expr { $$ = $1 + " || " + $3; } + | expr "*" expr { $$ = $1 + " * " + $3; } + | expr "/" expr { $$ = $1 + " / " + $3; } + | expr "%" expr { $$ = $1 + " % " + $3; } + | expr "+" expr { $$ = $1 + " + " + $3; } + | expr "-" expr { $$ = $1 + " - " + $3; } + | expr "<<" expr { $$ = $1 + " << " + $3; } + | expr ">>" expr { $$ = $1 + " >> " + $3; } + | expr "&" expr { $$ = $1 + " & " + $3; } + | expr "|" expr { $$ = $1 + " | " + $3; } + | expr "<" expr { $$ = $1 + " < " + $3; } + | expr "<=" expr { $$ = $1 + " <= " + $3; } + | expr ">" expr { $$ = $1 + " > " + $3; } + | expr ">=" expr { $$ = $1 + " >= " + $3; } + | expr "=" expr { $$ = $1 + " = " + $3; } + | expr "==" expr { $$ = $1 + " == " + $3; } + | expr "!=" expr { $$ = $1 + " != " + $3; } + | expr "<>" expr { $$ = $1 + " <> " + $3; } + | expr IS expr { $$ = $1 + " IS " + $3; } + | expr AND expr { $$ = $1 + " AND " + $3; } + | expr OR expr { $$ = $1 + " OR " + $3; } + ; + +like_expr: + expr LIKE expr { $$ = $1 + " LIKE " + $3; } + | expr GLOB expr { $$ = $1 + " GLOB " + $3; } + | expr MATCH expr { $$ = $1 + " MATCH " + $3; } + | expr REGEXP expr { $$ = $1 + " REGEXP " + $3; } + | expr NOT LIKE expr { $$ = $1 + " NOT LIKE " + $4; } + | expr NOT GLOB expr { $$ = $1 + " NOT GLOB " + $4; } + | expr NOT MATCH expr { $$ = $1 + " NOT MATCH " + $4; } + | expr NOT REGEXP expr { $$ = $1 + " NOT REGEXP " + $4; } + | expr LIKE expr ESCAPE expr %prec LIKE { $$ = $1 + " LIKE " + $3 + " ESCAPE " + $5; } + | expr GLOB expr ESCAPE expr %prec GLOB { $$ = $1 + " GLOB " + $3 + " ESCAPE " + $5; } + | expr MATCH expr ESCAPE expr %prec MATCH { $$ = $1 + " MATCH " + $3 + " ESCAPE " + $5; } + | expr REGEXP expr ESCAPE expr %prec REGEXP { $$ = $1 + " REGEXP " + $3 + " ESCAPE " + $5; } + | expr NOT LIKE expr ESCAPE expr %prec LIKE { $$ = $1 + " NOT LIKE " + $3 + " ESCAPE " + $6; } + | expr NOT GLOB expr ESCAPE expr %prec GLOB { $$ = $1 + " NOT GLOB " + $3 + " ESCAPE " + $6; } + | expr NOT MATCH expr ESCAPE expr %prec MATCH { $$ = $1 + " NOT MATCH " + $3 + " ESCAPE " + $6; } + | expr NOT REGEXP expr ESCAPE expr %prec REGEXP { $$ = $1 + " NOT REGEXP " + $3 + " ESCAPE " + $6; } + ; + +exprlist_expr: + expr { $$ = $1; } + | exprlist_expr "," expr { $$ = $1 + ", " + $3; } + ; + +function_expr: + id "(" exprlist_expr ")" { $$ = $1 + "(" + $3 + ")"; } + | id "(" DISTINCT exprlist_expr ")" { $$ = $1 + "(DISTINCT " + $4 + ")"; } + | id "(" ")" { $$ = $1 + "()"; } + | id "(" "*" ")" { $$ = $1 + "(*)"; } + ; + +isnull_expr: + expr ISNULL { $$ = $1 + " ISNULL"; } + | expr NOTNULL { $$ = $1 + " NOTNULL"; } + | expr NOT NULL %prec NOTNULL { $$ = $1 + " NOT NULL"; } + ; + +between_expr: + expr BETWEEN expr AND_BETWEEN expr %prec BETWEEN { $$ = $1 + " BETWEEN " + $3 + " AND " + $5; } + | expr NOT BETWEEN expr AND_BETWEEN expr %prec BETWEEN { $$ = $1 + " NOT BETWEEN " + $4 + " AND " + $6; } + ; + +in_expr: + expr IN "(" ")" { $$ = $1 + " IN ()"; } + | expr IN "(" select_stmt ")" { $$ = $1 + " IN (" + $4 + ")"; } + | expr IN "(" exprlist_expr ")" { $$ = $1 + " IN (" + $4 + ")"; } + | expr IN id "." tableid { $$ = $1 + " IN " + sqlb::escapeIdentifier($3) + "." + sqlb::escapeIdentifier($5); } + | expr IN tableid { $$ = $1 + " IN " + sqlb::escapeIdentifier($3); } + | expr IN id "." id "(" ")" { $$ = $1 + " IN " + sqlb::escapeIdentifier($3) + "." + $5 + "()"; } + | expr IN id "." id "(" exprlist_expr ")" { $$ = $1 + " IN " + sqlb::escapeIdentifier($3) + "." + $5 + "(" + $7 + ")"; } + | expr IN id "(" exprlist_expr ")" { $$ = $1 + " IN " + $3 + "(" + $5 + ")"; } + | expr NOT IN "(" ")" { $$ = $1 + " NOT IN ()"; } + | expr NOT IN "(" select_stmt ")" { $$ = $1 + " NOT IN (" + $5 + ")"; } + | expr NOT IN "(" exprlist_expr ")" { $$ = $1 + " NOT IN (" + $5 + ")"; } + | expr NOT IN id "." tableid { $$ = $1 + " NOT IN " + sqlb::escapeIdentifier($4) + "." + sqlb::escapeIdentifier($6); } + | expr NOT IN tableid { $$ = $1 + " NOT IN " + sqlb::escapeIdentifier($4); } + | expr NOT IN id "." id "(" ")" { $$ = $1 + " NOT IN " + sqlb::escapeIdentifier($4) + "." + $6 + "()"; } + | expr NOT IN id "." id "(" exprlist_expr ")" { $$ = $1 + " NOT IN " + sqlb::escapeIdentifier($4) + "." + $6 + "(" + $8 + ")"; } + | expr NOT IN id "(" exprlist_expr ")" { $$ = $1 + " NOT IN " + $4 + "(" + $6 + ")"; } + ; + +whenthenlist_expr: + WHEN expr THEN expr { $$ = "WHEN " + $2 + " THEN " + $4; } + | whenthenlist_expr WHEN expr THEN expr { $$ = $1 + " WHEN" + $3 + " THEN " + $5; } + ; + +case_expr: + CASE expr whenthenlist_expr ELSE expr END { $$ = "CASE " + $2 + " " + $3 + " ELSE " + $5 + " END"; } + | CASE expr whenthenlist_expr END { $$ = "CASE " + $2 + " " + $3 + " END"; } + | CASE whenthenlist_expr ELSE expr END { $$ = "CASE " + $2 + " ELSE " + $4 + " END"; } + | CASE whenthenlist_expr END { $$ = "CASE " + $2 + " END"; } + ; + +raise_expr: + RAISE "(" IGNORE ")" { $$ = "RAISE(IGNORE)"; } + | RAISE "(" ROLLBACK "," STRINGLITERAL ")" { $$ = "RAISE(ROLLBACK, " + $5 + ")"; } + | RAISE "(" ABORT "," STRINGLITERAL ")" { $$ = "RAISE(ABORT, " + $5 + ")"; } + | RAISE "(" FAIL "," STRINGLITERAL ")" { $$ = "RAISE(FAIL, " + $5 + ")"; } + ; + +expr: + literalvalue + | allowed_keywords_as_identifier { $$ = sqlb::escapeIdentifier($1); } + | BINDPARAMETER + | id "." id "." id { $$ = sqlb::escapeIdentifier($1) + "." + sqlb::escapeIdentifier($3) + "." + sqlb::escapeIdentifier($5); } + | id "." id { $$ = sqlb::escapeIdentifier($1) + "." + sqlb::escapeIdentifier($3); } + | id { $$ = sqlb::escapeIdentifier($1); } + | unary_expr + | binary_expr + | function_expr + | "(" exprlist_expr ")" { $$ = "(" + $2 + ")"; } + | CAST "(" expr AS type_name ")" { $$ = "CAST(" + $3 + " AS " + $5 + ")"; } + | expr COLLATE id { $$ = $1 + " COLLATE " + $3; } + | like_expr + | isnull_expr + | between_expr + | in_expr + | case_expr + | raise_expr + // TODO Window functions + ; + +/* + * SELECT + */ + +select_stmt: + SELECT { $$ = "SELECT"; } // TODO + ; + +/* + * Helper rules for CREATE statements + */ + +optional_if_not_exists: + %empty { $$ = false; } + | IF NOT EXISTS { $$ = true; } + ; + +optional_sort_order: + %empty { $$ = ""; } + | ASC { $$ = "ASC"; } + | DESC { $$ = "DESC"; } + ; + +/* + * CREATE INDEX + */ + +optional_unique: + %empty { $$ = false; } + | UNIQUE { $$ = true; } + ; + +optional_where: + %empty { $$ = ""; } + | WHERE expr { $$ = $2; } + ; + +tableid_with_uninteresting_schema: + id "." tableid { $$ = $3; } + | TEMP "." tableid { $$ = $3; } + | tableid { $$ = $1; } + ; + +indexed_column: + expr optional_sort_order { + // If the expression is only one column name and nothing else, treat it as a column name; otherwise as an expression. + char quote = getIdentifierQuoteChar(); + if((quote == '[' && std::count($1.begin(), $1.end(), quote) == 1 && $1.front() == '[' && $1.back() == ']') || + (quote != '[' && std::count($1.begin(), $1.end(), quote) == 2 && $1.front() == quote && $1.back() == quote)) + { + $$ = sqlb::IndexedColumn(unquote_text($1, quote), false, $2); + } else { + $$ = sqlb::IndexedColumn($1, true, $2); + } + } + ; + +indexed_column_list: + indexed_column { $$ = sqlb::IndexedColumnVector(1, $1); } + | indexed_column_list "," indexed_column { $$ = $1; $$.push_back($3); } + ; + +createindex_stmt: + CREATE optional_unique INDEX optional_if_not_exists tableid_with_uninteresting_schema ON tableid "(" indexed_column_list ")" optional_where { + $$ = sqlb::IndexPtr(new sqlb::Index($5)); + $$->setTable($7); + $$->setUnique($2); + $$->setWhereExpr($11); + $$->fields = $9; + $$->setFullyParsed(true); + } + ; + +/* + * CREATE VIRTUAL TABLE + */ + +optional_exprlist_with_paren: + %empty { $$ = {}; } + | "(" ")" { $$ = {}; } + | "(" exprlist_expr ")" { $$ = $2; } + ; + +createvirtualtable_stmt: + CREATE VIRTUAL TABLE optional_if_not_exists tableid_with_uninteresting_schema USING id optional_exprlist_with_paren { + $$ = sqlb::TablePtr(new sqlb::Table($5)); + $$->setVirtualUsing($7); + $$->setFullyParsed(false); + } + ; + +/* + * CREATE TABLE + */ + +optional_temporary: + %empty { $$ = false; } + | TEMP { $$ = true; } + | TEMPORARY { $$ = true; } + ; + +optional_withoutrowid: + %empty { $$ = false; } + | WITHOUT ROWID { $$ = true; } + ; + +optional_conflictclause: + %empty { $$ = ""; } + | ON CONFLICT ROLLBACK { $$ = $3; } + | ON CONFLICT ABORT { $$ = $3; } + | ON CONFLICT FAIL { $$ = $3; } + | ON CONFLICT IGNORE { $$ = $3; } + | ON CONFLICT REPLACE { $$ = $3; } + ; + +optional_typename: + %empty { $$ = ""; } + | type_name { $$ = $1; } + ; + +optional_storage_identifier: + %empty { $$ = "VIRTUAL"; } + | STORED { $$ = "STORED"; } + | VIRTUAL { $$ = "VIRTUAL"; } + ; + +optional_always_generated: + %empty { $$ = false; } + | GENERATED ALWAYS { $$ = true; } + ; + +columnconstraint: + optional_constraintname PRIMARY KEY optional_sort_order optional_conflictclause { + $$.type = ColumnConstraintInfo::PrimaryKey; + $$.is_table_constraint = true; + sqlb::PrimaryKeyConstraint* pk = new sqlb::PrimaryKeyConstraint({sqlb::IndexedColumn("", false, $4)}); + pk->setName($1); + pk->setConflictAction($5); + $$.table_constraint = sqlb::ConstraintPtr(pk); + $$.fully_parsed = true; + } + | optional_constraintname PRIMARY KEY optional_sort_order optional_conflictclause AUTOINCREMENT { + $$.type = ColumnConstraintInfo::PrimaryKey; + $$.is_table_constraint = true; + sqlb::PrimaryKeyConstraint* pk = new sqlb::PrimaryKeyConstraint({sqlb::IndexedColumn("", false, $4)}); + pk->setName($1); + pk->setConflictAction($5); + pk->setAutoIncrement(true); + $$.table_constraint = sqlb::ConstraintPtr(pk); + $$.fully_parsed = true; + } + | optional_constraintname NOT NULL optional_conflictclause { + $$.type = ColumnConstraintInfo::NotNull; + $$.is_table_constraint = false; + $$.fully_parsed = ($1 == "" && $4 == ""); + } + | optional_constraintname NULL { + $$.type = ColumnConstraintInfo::None; + $$.is_table_constraint = false; + $$.fully_parsed = true; + } + | optional_constraintname UNIQUE optional_conflictclause { + $$.type = ColumnConstraintInfo::Unique; + $$.is_table_constraint = false; + $$.fully_parsed = ($1 == "" && $3 == ""); + } + | optional_constraintname CHECK "(" expr ")" { + $$.type = ColumnConstraintInfo::Check; + $$.is_table_constraint = false; + $$.text = $4; + $$.fully_parsed = ($1 == ""); + } + | optional_constraintname DEFAULT signednumber { + $$.type = ColumnConstraintInfo::Default; + $$.is_table_constraint = false; + $$.text = $3; + $$.fully_parsed = ($1 == ""); + } + | optional_constraintname DEFAULT literalvalue { + $$.type = ColumnConstraintInfo::Default; + $$.is_table_constraint = false; + $$.text = $3; + $$.fully_parsed = ($1 == ""); + } + | optional_constraintname DEFAULT id { + $$.type = ColumnConstraintInfo::Default; + $$.is_table_constraint = false; + $$.text = $3; + $$.fully_parsed = ($1 == ""); + } + | optional_constraintname DEFAULT allowed_keywords_as_identifier { // We must allow the same keywords as unquoted default values as in the columnid context. + // But we do not use columnid here in order to avoid reduce/reduce conflicts. + $$.type = ColumnConstraintInfo::Default; + $$.is_table_constraint = false; + $$.text = $3; + $$.fully_parsed = ($1 == ""); + } + | optional_constraintname DEFAULT IF { // Same as above. + $$.type = ColumnConstraintInfo::Default; + $$.is_table_constraint = false; + $$.text = $3; + $$.fully_parsed = ($1 == ""); + } + | optional_constraintname DEFAULT "(" expr ")" { + $$.type = ColumnConstraintInfo::Default; + $$.is_table_constraint = false; + $$.text = "(" + $4 + ")"; + $$.fully_parsed = ($1 == ""); + } + | optional_constraintname COLLATE id { + $$.type = ColumnConstraintInfo::Collate; + $$.is_table_constraint = false; + $$.text = $3; + $$.fully_parsed = ($1 == ""); + } + | optional_constraintname REFERENCES tableid optional_columnid_with_paren_list optional_fk_clause { // TODO Solve shift/reduce conflict. It is not super important though as shifting seems to be right here. + $$.type = ColumnConstraintInfo::ForeignKey; + $$.is_table_constraint = true; + sqlb::ForeignKeyClause* fk = new sqlb::ForeignKeyClause(); + fk->setName($1); + fk->setTable($3); + fk->setColumns($4); + fk->setConstraint($5); + $$.table_constraint = sqlb::ConstraintPtr(fk); + $$.fully_parsed = true; + } + | optional_constraintname optional_always_generated AS "(" expr ")" optional_storage_identifier { // TODO Solve shift/reduce conflict. + $$.type = ColumnConstraintInfo::Generated; + $$.is_table_constraint = false; + $$.generated_constraint.setExpression($5); + $$.generated_constraint.setStorage($7); + $$.generated_constraint.setName($1); + $$.fully_parsed = true; + } + ; + +columnconstraint_list: + columnconstraint { $$ = { $1 }; } + | columnconstraint_list columnconstraint { $$ = $1; $$.push_back($2); } + ; + +columndef: + columnid optional_typename columnconstraint_list { + sqlb::Field f($1, $2); + bool fully_parsed = true; + sqlb::ConstraintSet table_constraints{}; + for(auto c : $3) + { + if(c.fully_parsed == false) + fully_parsed = false; + + if(c.type == ColumnConstraintInfo::None) + continue; + + if(c.is_table_constraint) + { + if(c.table_constraint->columnList().empty()) + c.table_constraint->setColumnList({$1}); + else + c.table_constraint->replaceInColumnList("", $1); + table_constraints.insert(c.table_constraint); + } else { + if(c.type == ColumnConstraintInfo::NotNull) { + f.setNotNull(true); + } else if(c.type == ColumnConstraintInfo::Unique) { + f.setUnique(true); + } else if(c.type == ColumnConstraintInfo::Check) { + f.setCheck(c.text); + } else if(c.type == ColumnConstraintInfo::Default) { + f.setDefaultValue(c.text); + } else if(c.type == ColumnConstraintInfo::Collate) { + f.setCollation(c.text); + } else if(c.type == ColumnConstraintInfo::Generated) { + f.setGenerated(c.generated_constraint); + + // This is a hack which removes any "GENERATED ALWAYS" from the end of the type name. + // As of now these are shifted to the type instead of reducing the type when seeing the GENERATED identifier. + // TODO Remove this once the grammar is conflict free + const std::string generated_always = "GENERATED ALWAYS"; + if(f.type().size() >= generated_always.size() && f.type().compare(f.type().size() - generated_always.size(), generated_always.size(), generated_always) == 0) + { + std::string type = f.type().substr(0, f.type().size()-generated_always.size()); + if(type.back() == ' ') + type.pop_back(); + f.setType(type); + } + } else { + fully_parsed = false; + } + } + } + + $$ = std::make_tuple(f, table_constraints, fully_parsed); + } + | columnid optional_typename { $$ = std::make_tuple(sqlb::Field($1, $2), sqlb::ConstraintSet{}, true); } + ; + +columndef_list: + columndef { $$ = {$1}; } + | columndef_list "," columndef { $$ = $1; $$.push_back($3); } + ; + +optional_constraintname: + %empty { $$ = ""; } + | CONSTRAINT id { $$ = $2; } + ; + +columnid_list: + columnid { $$ = sqlb::StringVector(1, $1); } + | columnid_list "," columnid { $$ = $1; $$.push_back($3); } + ; + +optional_columnid_with_paren_list: + %empty { $$ = sqlb::StringVector(); } + | "(" columnid_list ")" { $$ = $2; } + ; + +fk_clause_part: + ON DELETE SET NULL { $$ = $1 + " " + $2 + " " + $3 + " " + $4; } + | ON DELETE SET DEFAULT { $$ = $1 + " " + $2 + " " + $3 + " " + $4; } + | ON DELETE CASCADE { $$ = $1 + " " + $2 + " " + $3; } + | ON DELETE RESTRICT { $$ = $1 + " " + $2 + " " + $3; } + | ON DELETE NO ACTION { $$ = $1 + " " + $2 + " " + $3 + " " + $4; } + | ON UPDATE SET NULL { $$ = $1 + " " + $2 + " " + $3 + " " + $4; } + | ON UPDATE SET DEFAULT { $$ = $1 + " " + $2 + " " + $3 + " " + $4; } + | ON UPDATE CASCADE { $$ = $1 + " " + $2 + " " + $3; } + | ON UPDATE RESTRICT { $$ = $1 + " " + $2 + " " + $3; } + | ON UPDATE NO ACTION { $$ = $1 + " " + $2 + " " + $3 + " " + $4; } + | ON INSERT SET NULL { $$ = $1 + " " + $2 + " " + $3 + " " + $4; } + | ON INSERT SET DEFAULT { $$ = $1 + " " + $2 + " " + $3 + " " + $4; } + | ON INSERT CASCADE { $$ = $1 + " " + $2 + " " + $3; } + | ON INSERT RESTRICT { $$ = $1 + " " + $2 + " " + $3; } + | ON INSERT NO ACTION { $$ = $1 + " " + $2 + " " + $3 + " " + $4; } + | MATCH id { $$ = $1 + " " + $2; } + ; + +fk_clause_part_list: + fk_clause_part { $$ = $1; } + | fk_clause_part_list fk_clause_part { $$ = $1 + " " + $2; } + ; + +optional_fk_clause: + %empty { $$ = ""; } + | fk_clause_part_list { $$ = $1; } + | fk_clause_part_list DEFERRABLE INITIALLY DEFERRED { $$ = $1 + " " + $2 + " " + $3 + " " + $4; } + | fk_clause_part_list DEFERRABLE INITIALLY IMMEDIATE { $$ = $1 + " " + $2 + " " + $3 + " " + $4; } + | fk_clause_part_list DEFERRABLE { $$ = $1 + " " + $2; } + | fk_clause_part_list NOT DEFERRABLE INITIALLY DEFERRED { $$ = $1 + " " + $2 + " " + $3 + " " + $4 + " " + $5; } + | fk_clause_part_list NOT DEFERRABLE INITIALLY IMMEDIATE { $$ = $1 + " " + $2 + " " + $3 + " " + $4 + " " + $5; } + | fk_clause_part_list NOT DEFERRABLE { $$ = $1 + " " + $2 + " " + $3; } + | DEFERRABLE INITIALLY DEFERRED { $$ = $1 + " " + $2 + " " + $3; } + | DEFERRABLE INITIALLY IMMEDIATE { $$ = $1 + " " + $2 + " " + $3; } + | DEFERRABLE { $$ = $1; } + | NOT DEFERRABLE INITIALLY DEFERRED { $$ = $1 + " " + $2 + " " + $3 + " " + $4; } + | NOT DEFERRABLE INITIALLY IMMEDIATE { $$ = $1 + " " + $2 + " " + $3 + " " + $4; } + | NOT DEFERRABLE { $$ = $1 + " " + $2; } + ; + +tableconstraint: + optional_constraintname PRIMARY KEY "(" indexed_column_list ")" optional_conflictclause { + sqlb::PrimaryKeyConstraint* pk = new sqlb::PrimaryKeyConstraint($5); + pk->setName($1); + pk->setConflictAction($7); + $$ = sqlb::ConstraintPtr(pk); + } + | optional_constraintname PRIMARY KEY "(" indexed_column_list AUTOINCREMENT ")" optional_conflictclause { + sqlb::PrimaryKeyConstraint* pk = new sqlb::PrimaryKeyConstraint($5); + pk->setName($1); + pk->setConflictAction($8); + pk->setAutoIncrement(true); + $$ = sqlb::ConstraintPtr(pk); + } + | optional_constraintname UNIQUE "(" indexed_column_list ")" optional_conflictclause { + sqlb::UniqueConstraint* u = new sqlb::UniqueConstraint($4); + u->setName($1); + u->setConflictAction($6); + $$ = sqlb::ConstraintPtr(u); + } + | optional_constraintname CHECK "(" expr ")" { + $$ = sqlb::ConstraintPtr(new sqlb::CheckConstraint($4)); + $$->setName($1); + } + | optional_constraintname FOREIGN KEY "(" columnid_list ")" REFERENCES tableid optional_columnid_with_paren_list optional_fk_clause { + $$ = sqlb::ConstraintPtr(new sqlb::ForeignKeyClause($8, $9, $10)); + $$->setColumnList($5); + $$->setName($1); + } + ; + +tableconstraint_list: + tableconstraint { $$ = {$1}; } + | tableconstraint_list "," tableconstraint { $$ = $1; $$.insert($3); } + | tableconstraint_list tableconstraint { $$ = $1; $$.insert($2); } + ; + +optional_tableconstraint_list: + %empty { $$ = {}; } + | "," tableconstraint_list { $$ = $2; } + ; + +createtable_stmt: + CREATE optional_temporary TABLE optional_if_not_exists tableid_with_uninteresting_schema AS select_stmt { + $$ = sqlb::TablePtr(new sqlb::Table($5)); + $$->setFullyParsed(false); + } + | CREATE optional_temporary TABLE optional_if_not_exists tableid_with_uninteresting_schema "(" columndef_list optional_tableconstraint_list ")" optional_withoutrowid { + $$ = sqlb::TablePtr(new sqlb::Table($5)); + $$->setWithoutRowidTable($10); + $$->setConstraints($8); + $$->setFullyParsed(true); + + for(const auto& column : $7) + { + sqlb::Field f; + sqlb::ConstraintSet c; + bool fully_parsed; + std::tie(f, c, fully_parsed) = column; + + if(fully_parsed == false) + $$->setFullyParsed(false); + $$->fields.push_back(f); + for(const auto& i : c) + $$->addConstraint(i); + } + } + ; + +%% + +void sqlb::parser::parser::error(const location_type& l, const std::string& m) +{ + std::cerr << l << ": " << m << std::endl; +} diff --git a/src/SqliteDBProcess/src/sql/sqlitetypes.cpp b/src/SqliteDBProcess/src/sql/sqlitetypes.cpp new file mode 100644 index 0000000..be915dd --- /dev/null +++ b/src/SqliteDBProcess/src/sql/sqlitetypes.cpp @@ -0,0 +1,712 @@ +#include "sqlitetypes.h" +#include "ObjectIdentifier.h" +#include "parser/ParserDriver.h" + +#include +#include +#include + +namespace sqlb { + +StringVector escapeIdentifier(StringVector ids) +{ + std::transform(ids.begin(), ids.end(), ids.begin(), [](const std::string& id) { + return escapeIdentifier(id); + }); + return ids; +} + +std::string joinStringVector(const StringVector& vec, const std::string& delim) +{ + return std::accumulate(vec.begin(), vec.end(), std::string(), [delim](const std::string& so_far, const std::string& s) { + return so_far.empty() ? s : so_far + delim + s; + }); +} + +bool Object::operator==(const Object& rhs) const +{ + if(m_name != rhs.m_name) + return false; + if(m_fullyParsed != rhs.m_fullyParsed) // We check for the fully parsed flag to make sure not to lose anything in some corner cases + return false; + + // We don't care about the original SQL text + + return true; +} + +std::string Object::typeToString(Types type) +{ + switch(type) + { + case Types::Table: return "table"; + case Types::Index: return "index"; + case Types::View: return "view"; + case Types::Trigger: return "trigger"; + } + return std::string(); +} + +ConstraintPtr Constraint::makeConstraint(ConstraintTypes type) +{ + switch(type) + { + case PrimaryKeyConstraintType: + return std::make_shared(); + case UniqueConstraintType: + return std::make_shared(); + case ForeignKeyConstraintType: + return std::make_shared(); + case CheckConstraintType: + return std::make_shared(); + default: + return nullptr; + } +} + +void Constraint::replaceInColumnList(const std::string& from, const std::string& to) +{ + std::replace(column_list.begin(), column_list.end(), from, to); +} + +void Constraint::removeFromColumnList(const std::string& key) +{ + column_list.erase(std::remove(column_list.begin(), column_list.end(), key), column_list.end()); +} + +bool ForeignKeyClause::isSet() const +{ + return m_override.size() || m_table.size(); +} + +std::string ForeignKeyClause::toString() const +{ + if(!isSet()) + return std::string(); + + if(m_override.size()) + return m_override; + + std::string result = escapeIdentifier(m_table); + + if(m_columns.size()) + result += "(" + joinStringVector(escapeIdentifier(m_columns), ",") + ")"; + + if(m_constraint.size()) + result += " " + m_constraint; + + return result; +} + +void ForeignKeyClause::setFromString(const std::string& fk) +{ + m_override = fk; +} + +std::string ForeignKeyClause::toSql() const +{ + std::string result; + if(!m_name.empty()) + result = "CONSTRAINT " + escapeIdentifier(m_name) + " "; + result += "FOREIGN KEY(" + joinStringVector(escapeIdentifier(column_list), ",") + ") REFERENCES " + this->toString(); + + return result; +} + +UniqueConstraint::UniqueConstraint(const IndexedColumnVector& columns) : + m_columns(columns) +{ + // Extract column names and give them to the column list in the base class + for(const auto& c : columns) + column_list.push_back(c.name()); +} + +UniqueConstraint::UniqueConstraint(const StringVector& columns) : + Constraint(columns) +{ + setColumnList(columns); +} + +void UniqueConstraint::setColumnList(const StringVector& list) +{ + Constraint::setColumnList(list); + + // Create our own column list without sort orders etc + m_columns.clear(); + for(const auto& c : list) + m_columns.push_back(IndexedColumn(c, false)); +} + +void UniqueConstraint::addToColumnList(const std::string& key) +{ + Constraint::addToColumnList(key); + + // Also add to our own column list + m_columns.push_back(IndexedColumn(key, false)); +} + +void UniqueConstraint::replaceInColumnList(const std::string& from, const std::string& to) +{ + Constraint::replaceInColumnList(from, to); + + for(auto& c : m_columns) + { + if(c.name() == from) + c.setName(to); + } +} + +void UniqueConstraint::removeFromColumnList(const std::string& key) +{ + Constraint::removeFromColumnList(key); + + m_columns.erase(std::remove_if(m_columns.begin(), m_columns.end(), [key](const IndexedColumn& c) { + if(c.name() == key) + return true; + else + return false; + }), m_columns.end()); +} + +std::string UniqueConstraint::toSql() const +{ + std::string result; + if(!m_name.empty()) + result = "CONSTRAINT " + escapeIdentifier(m_name) + " "; + + std::vector u_columns; + for(const auto& c : m_columns) + u_columns.push_back(c.toString("", " ")); + result += "UNIQUE(" + joinStringVector(u_columns, ",") + ")"; + + if(!m_conflictAction.empty()) + result += " ON CONFLICT " + m_conflictAction; + + return result; +} + +PrimaryKeyConstraint::PrimaryKeyConstraint(const IndexedColumnVector& columns) : + UniqueConstraint(columns), + m_auto_increment(false) +{ +} + +PrimaryKeyConstraint::PrimaryKeyConstraint(const StringVector& columns) : + UniqueConstraint(columns), + m_auto_increment(false) +{ +} + +std::string PrimaryKeyConstraint::toSql() const +{ + std::string result; + if(!m_name.empty()) + result = "CONSTRAINT " + escapeIdentifier(m_name) + " "; + + std::vector pk_columns; + for(const auto& c : m_columns) + pk_columns.push_back(c.toString("", " ")); + result += "PRIMARY KEY(" + joinStringVector(pk_columns, ",") + (m_auto_increment ? " AUTOINCREMENT" : "") + ")"; + + if(!m_conflictAction.empty()) + result += " ON CONFLICT " + m_conflictAction; + + return result; +} + +std::string CheckConstraint::toSql() const +{ + std::string result; + if(!m_name.empty()) + result = "CONSTRAINT " + escapeIdentifier(m_name) + " "; + result += "CHECK(" + m_expression + ")"; + + return result; +} + +std::string GeneratedColumnConstraint::toSql() const +{ + std::string result; + if(!m_name.empty()) + result = "CONSTRAINT " + escapeIdentifier(m_name) + " "; + result += "GENERATED ALWAYS AS (" + m_expression + ")" + " " + storage(); + + return result; +} + +bool Field::operator==(const Field& rhs) const +{ + if(m_name != rhs.m_name) + return false; + if(m_type != rhs.m_type) + return false; + if(m_notnull != rhs.m_notnull) + return false; + if(m_check != rhs.m_check) + return false; + if(m_defaultvalue != rhs.m_defaultvalue) + return false; + if(m_unique != rhs.m_unique) + return false; + if(m_collation != rhs.m_collation) + return false; + + return true; +} + +std::string Field::toString(const std::string& indent, const std::string& sep) const +{ + std::string str = indent + escapeIdentifier(m_name) + sep + m_type; + if(m_notnull) + str += " NOT NULL"; + if(!m_defaultvalue.empty()) + str += " DEFAULT " + m_defaultvalue; + if(!m_check.empty()) + str += " CHECK(" + m_check + ")"; + if(m_unique) + str += " UNIQUE"; + if(!m_collation.empty()) + str += " COLLATE " + m_collation; + if(!m_generated.empty()) + str += " " + m_generated.toSql(); + return str; +} + +bool Field::isText() const +{ + if(starts_with_ci(m_type, "character")) return true; + if(starts_with_ci(m_type, "varchar")) return true; + if(starts_with_ci(m_type, "varying character")) return true; + if(starts_with_ci(m_type, "nchar")) return true; + if(starts_with_ci(m_type, "native character")) return true; + if(starts_with_ci(m_type, "nvarchar")) return true; + if(compare_ci(m_type, "text")) return true; + if(compare_ci(m_type, "clob")) return true; + return false; +} + +bool Field::isInteger() const +{ + if(compare_ci(m_type, "int")) return true; + if(compare_ci(m_type, "integer")) return true; + if(compare_ci(m_type, "tinyint")) return true; + if(compare_ci(m_type, "smallint")) return true; + if(compare_ci(m_type, "mediumint")) return true; + if(compare_ci(m_type, "bigint")) return true; + if(compare_ci(m_type, "unsigned big int")) return true; + if(compare_ci(m_type, "int2")) return true; + if(compare_ci(m_type, "int8")) return true; + return false; +} + +bool Field::isReal() const +{ + if(compare_ci(m_type, "real")) return true; + if(compare_ci(m_type, "double")) return true; + if(compare_ci(m_type, "double precision")) return true; + if(compare_ci(m_type, "float")) return true; + return false; +} + +bool Field::isNumeric() const +{ + if(starts_with_ci(m_type, "decimal")) return true; + if(compare_ci(m_type, "numeric")) return true; + if(compare_ci(m_type, "boolean")) return true; + if(compare_ci(m_type, "date")) return true; + if(compare_ci(m_type, "datetime")) return true; + return false; +} + +bool Field::isBlob() const +{ + if(m_type.empty()) return true; + if(compare_ci(m_type, "blob")) return true; + return false; +} + +Field::Affinity Field::affinity() const +{ + if (isInteger()) return IntegerAffinity; + + if (isText()) return TextAffinity; + + if (isBlob()) return BlobAffinity; + + if (isReal() || isNumeric()) return FloatAffinity; + + return BlobAffinity; +} + +Table::Table(const Table& table) + : Object(table.name()) +{ + *this = table; +} + +Table& Table::operator=(const Table& rhs) +{ + // Base class + Object::operator=(rhs); + + // Just assign the simple values + m_withoutRowid = rhs.m_withoutRowid; + m_virtual = rhs.m_virtual; + + // Clear the fields and the constraints first in order to avoid duplicates and/or old data in the next step + fields.clear(); + m_constraints.clear(); + + // Make copies of the fields and the constraints. This is necessary in order to avoid any unwanted changes to the application's main database + // schema representation just by modifying a reference to the fields or constraints and thinking it operates on a copy. + std::copy(rhs.fields.begin(), rhs.fields.end(), std::back_inserter(fields)); + m_constraints = rhs.m_constraints; + + return *this; +} + +bool Table::operator==(const Table& rhs) const +{ + if(!Object::operator==(rhs)) + return false; + + if(m_withoutRowid != rhs.m_withoutRowid) + return false; + if(m_virtual != rhs.m_virtual) + return false; + if(fields != rhs.fields) + return false; + if(m_constraints != rhs.m_constraints) + return false; + + return true; +} + +StringVector Table::fieldList() const +{ + StringVector sl; + + for(const Field& f : fields) + sl.push_back(f.toString()); + + return sl; +} + +StringVector Table::fieldNames() const +{ + StringVector sl; + + for(const Field& f : fields) + sl.push_back(f.name()); + + return sl; +} + +StringVector Table::rowidColumns() const +{ + // For WITHOUT ROWID tables this function returns the names of the primary key column. For ordinary tables with a rowid column, it returns "_rowid_" + if(m_withoutRowid) + return const_cast(this)->primaryKey()->columnList(); + else + return {"_rowid_"}; +} + +FieldInfoList Table::fieldInformation() const +{ + FieldInfoList result; + for(const Field& f : fields) + result.emplace_back(f.name(), f.type(), f.toString(" ", " ")); + return result; +} + +TablePtr Table::parseSQL(const std::string& sSQL) +{ + parser::ParserDriver drv; + if(!drv.parse(sSQL)) + { + TablePtr t = std::dynamic_pointer_cast(drv.result); + t->setOriginalSql(sSQL); + return t; + } else { + std::cerr << "Sqlite parse error: " << sSQL << std::endl; + return std::make_shared
(""); + } +} + +std::string Table::sql(const std::string& schema, bool ifNotExists) const +{ + // Special handling for virtual tables: just build an easy create statement and copy the using part in there + if(isVirtual()) + return "CREATE VIRTUAL TABLE " + ObjectIdentifier(schema, m_name).toString(true) + " USING " + m_virtual + ";"; + + // This is a normal table, not a virtual one + std::string sql = "CREATE TABLE "; + if(ifNotExists) + sql += "IF NOT EXISTS "; + sql += ObjectIdentifier(schema, m_name).toString(true); + sql += " (\n"; + + sql += joinStringVector(fieldList(), ",\n"); + + // Constraints + for(const auto& it : m_constraints) + { + // Ignore all constraints without any fields, except for check constraints which don't rely on a field vector + if(!it->columnList().empty() || it->type() == Constraint::CheckConstraintType) + { + sql += ",\n\t"; + sql += it->toSql(); + } + } + + sql += "\n)"; + + // without rowid + if(withoutRowidTable()) + sql += " WITHOUT ROWID"; + + return sql + ";"; +} + +void Table::addConstraint(ConstraintPtr constraint) +{ + m_constraints.insert(constraint); +} + +void Table::setConstraint(ConstraintPtr constraint) +{ + // Delete any old constraints of this type for these fields + removeConstraints(constraint->columnList(), constraint->type()); + + // Add the new constraint to the table, effectively overwriting all old constraints for that fields/type combination + addConstraint(constraint); +} + +void Table::removeConstraint(ConstraintPtr constraint) +{ + for(auto it = m_constraints.begin();it!=m_constraints.end();++it) + { + if((*it)->toSql() == constraint->toSql()) + { + m_constraints.erase(it); + + // Only remove the first constraint matching these criteria + return; + } + } +} + +void Table::removeConstraints(const StringVector& vStrFields, Constraint::ConstraintTypes type) +{ + for(auto it = m_constraints.begin();it!=m_constraints.end();) + { + if((*it)->columnList() == vStrFields && (*it)->type() == type) + m_constraints.erase(it++); + else + ++it; + } +} + +ConstraintPtr Table::constraint(const StringVector& vStrFields, Constraint::ConstraintTypes type) const +{ + auto list = constraints(vStrFields, type); + if(list.size()) + return list.at(0); + else + return ConstraintPtr(nullptr); +} + +std::vector Table::constraints(const StringVector& vStrFields, Constraint::ConstraintTypes type) const +{ + std::vector clist; + for(const auto& it : m_constraints) + { + if((type == Constraint::NoType || it->type() == type) && (vStrFields.empty() || it->columnList() == vStrFields)) + clist.push_back(it); + } + return clist; +} + +void Table::setConstraints(const ConstraintSet& constraints) +{ + m_constraints = constraints; +} + +void Table::replaceConstraint(ConstraintPtr from, ConstraintPtr to) +{ + auto it = m_constraints.find(from); + if(it == m_constraints.end()) + return; + + m_constraints.erase(it); // Erase old constraint + m_constraints.insert(to); // Insert new constraint +} + +std::shared_ptr Table::primaryKey() +{ + const auto c = constraint({}, Constraint::PrimaryKeyConstraintType); + if(c) + return std::dynamic_pointer_cast(c); + else + return nullptr; +} + +void Table::removeKeyFromAllConstraints(const std::string& key) +{ + // Update all constraints + for(auto it=m_constraints.begin();it!=m_constraints.end();) + { + // Check if they contain the old key name + if(contains((*it)->columnList(), key)) + { + // If so, remove it from the column list + (*it)->removeFromColumnList(key); + + // If the column list is empty now, remove the entire constraint. Otherwise save the updated column list + if((*it)->columnList().empty()) + it = m_constraints.erase(it); + else + ++it; + } else { + ++it; + } + } +} + +void Table::renameKeyInAllConstraints(const std::string& key, const std::string& to) +{ + // Do nothing if the key hasn't really changed + if(key == to) + return; + + // Find all occurrences of the key and change it to the new one + for(auto& it : m_constraints) + { + if(contains(it->columnList(), key)) + it->replaceInColumnList(key, to); + } +} + + + +std::string IndexedColumn::toString(const std::string& indent, const std::string& sep) const +{ + std::string name = m_isExpression ? m_name : escapeIdentifier(m_name); + std::string order = (m_order.empty() ? "" : (sep + m_order)); + return indent + name + order; +} + +Index& Index::operator=(const Index& rhs) +{ + // Base class + Object::operator=(rhs); + + // Just assign the easy stuff + m_unique = rhs.m_unique; + m_table = rhs.m_table; + m_whereExpr = rhs.m_whereExpr; + + // Make copies of the column + std::copy(rhs.fields.begin(), rhs.fields.end(), std::back_inserter(fields)); + + return *this; +} + +StringVector Index::columnSqlList() const +{ + StringVector sl; + + for(const IndexedColumn& c : fields) + sl.push_back(c.toString()); + + return sl; +} + +std::string Index::sql(const std::string& schema, bool ifNotExists) const +{ + // Start CREATE (UNIQUE) INDEX statement + std::string sql; + if(m_unique) + sql = "CREATE UNIQUE INDEX "; + else + sql = "CREATE INDEX "; + if(ifNotExists) + sql += "IF NOT EXISTS "; + sql += ObjectIdentifier(schema, m_name).toString(true); + sql += " ON "; + sql += sqlb::escapeIdentifier(m_table); + sql += " (\n"; + + // Add column list + sql += joinStringVector(columnSqlList(), ",\n"); + + // Add partial index bit + sql += "\n)"; + if(!m_whereExpr.empty()) + sql += " WHERE " + m_whereExpr; + + return sql + ";"; +} + +FieldInfoList Index::fieldInformation() const +{ + FieldInfoList result; + for(const IndexedColumn& c : fields) + result.emplace_back(c.name(), c.order(), c.toString(" ", " ")); + return result; +} + +IndexPtr Index::parseSQL(const std::string& sSQL) +{ + parser::ParserDriver drv; + if(!drv.parse(sSQL)) + { + IndexPtr i = std::dynamic_pointer_cast(drv.result); + i->setOriginalSql(sSQL); + return i; + } else { + std::cerr << "Sqlite parse error: " << sSQL << std::endl; + return std::make_shared(""); + } +} + + + +ViewPtr View::parseSQL(const std::string& sSQL) +{ + // TODO + + auto v = std::make_shared(""); + v->setOriginalSql(sSQL); + return v; +} + +StringVector View::fieldNames() const +{ + StringVector sl; + + for(const Field& f : fields) + sl.push_back(f.name()); + + return sl; +} + +FieldInfoList View::fieldInformation() const +{ + FieldInfoList result; + for(const Field& f : fields) + result.emplace_back(f.name(), f.type(), f.toString(" ", " ")); + return result; +} + + +TriggerPtr Trigger::parseSQL(const std::string& sSQL) +{ + // TODO + + auto t = std::make_shared(""); + t->setOriginalSql(sSQL); + return t; +} + +} //namespace sqlb diff --git a/src/SqliteDBProcess/src/sql/sqlitetypes.h b/src/SqliteDBProcess/src/sql/sqlitetypes.h new file mode 100644 index 0000000..ea12158 --- /dev/null +++ b/src/SqliteDBProcess/src/sql/sqlitetypes.h @@ -0,0 +1,618 @@ +#pragma once +#ifndef SQLITETYPES_H +#define SQLITETYPES_H + +#include +#include +#include +#include +#include +#include + +template +bool contains(const C& container, E element) +{ + return std::find(container.begin(), container.end(), element) != container.end(); +} + +template +bool compare_ci(const T& a, const T& b) +{ + // Note: This function does not have to be (actually it must not be) fully UTF-8 aware because SQLite itself is not either. + + if(a.length() != b.length()) + return false; + return std::equal(a.begin(), a.end(), b.begin(), [](unsigned char c1, unsigned char c2) { + return std::tolower(c1) == std::tolower(c2); + }); + + // TODO Replace the entire code above by the following once we have enabled C++14 support + /*return std::equal(a.begin(), a.end(), b.begin(), b.end(), [](unsigned char c1, unsigned char c2) { + return std::tolower(c1) == std::tolower(c2); + });*/ +} + +template +bool compare_ci(const T& a, const char* b) +{ + return compare_ci(a, std::string(b)); +} + +inline bool starts_with_ci(const std::string& str, const std::string& with) +{ + if(str.size() < with.size()) + return false; + else + return compare_ci(str.substr(0, with.size()), with); +} + +namespace sqlb { + +using StringVector = std::vector; + +StringVector escapeIdentifier(StringVector ids); +std::string joinStringVector(const StringVector& vec, const std::string& delim); + +class Object; +class Table; +class Index; +class View; +class Trigger; +class Field; +class Constraint; +class IndexedColumn; +struct FieldInfo; +using ObjectPtr = std::shared_ptr; +using TablePtr = std::shared_ptr
; +using IndexPtr = std::shared_ptr; +using ViewPtr = std::shared_ptr; +using TriggerPtr = std::shared_ptr; +using ConstraintPtr = std::shared_ptr; +using FieldVector = std::vector; +using IndexedColumnVector = std::vector; +using ConstraintSet = std::set; +using FieldInfoList = std::vector; + +struct FieldInfo +{ + FieldInfo(const std::string& name_, const std::string& type_, const std::string& sql_) + : name(name_), type(type_), sql(sql_) + {} + + std::string name; + std::string type; + std::string sql; +}; + +class Object +{ +public: + enum Types + { + Table, + Index, + View, + Trigger + }; + + explicit Object(const std::string& name): m_name(name), m_fullyParsed(false) {} + virtual ~Object() = default; + + bool operator==(const Object& rhs) const; + + virtual Types type() const = 0; + static std::string typeToString(Types type); + + void setName(const std::string& name) { m_name = name; } + const std::string& name() const { return m_name; } + + void setOriginalSql(const std::string& original_sql) { m_originalSql = original_sql; } + std::string originalSql() const { return m_originalSql; } + + virtual std::string baseTable() const { return std::string(); } + + void setFullyParsed(bool fully_parsed) { m_fullyParsed = fully_parsed; } + bool fullyParsed() const { return m_fullyParsed; } + + virtual FieldInfoList fieldInformation() const { return FieldInfoList(); } + + /** + * @brief Returns the CREATE statement for this object + * @param schema The schema name of the object + * @param ifNotExists If set to true the "IF NOT EXISTS" qualifier will be added to the create statement + * @return A std::string with the CREATE statement. + */ + virtual std::string sql(const std::string& schema = std::string("main"), bool ifNotExists = false) const = 0; + +protected: + std::string m_name; + std::string m_originalSql; + bool m_fullyParsed; +}; + +class Constraint +{ +public: + enum ConstraintTypes + { + PrimaryKeyConstraintType, + UniqueConstraintType, + ForeignKeyConstraintType, + CheckConstraintType, + GeneratedColumnConstraintType, + + NoType = 999, + }; + + explicit Constraint(const StringVector& columns = {}, const std::string& name = std::string()) + : column_list(columns), + m_name(name) + { + } + virtual ~Constraint() = default; + + static ConstraintPtr makeConstraint(ConstraintTypes type); + + virtual ConstraintTypes type() const = 0; + + void setName(const std::string& name) { m_name = name; } + const std::string& name() const { return m_name; } + + StringVector columnList() const { return column_list; } + virtual void setColumnList(const StringVector& list) { column_list = list; } + virtual void addToColumnList(const std::string& key) { column_list.push_back(key); } + virtual void replaceInColumnList(const std::string& from, const std::string& to); + virtual void removeFromColumnList(const std::string& key); + + virtual std::string toSql() const = 0; + +protected: + StringVector column_list; + std::string m_name; +}; + +class ForeignKeyClause : public Constraint +{ +public: + ForeignKeyClause(const std::string& table = std::string(), const StringVector& columns = {}, const std::string& constraint = std::string()) + : m_table(table), + m_columns(columns), + m_constraint(constraint) + { + } + + bool isSet() const; + std::string toString() const; + void setFromString(const std::string& fk); + + void setTable(const std::string& table) { m_override.clear(); m_table = table; } + const std::string& table() const { return m_table; } + + void setColumns(const StringVector& columns) { m_columns = columns; } + const StringVector& columns() const { return m_columns; } + + void setConstraint(const std::string& constraint) { m_constraint = constraint; } + const std::string& constraint() const { return m_constraint; } + + std::string toSql() const override; + + ConstraintTypes type() const override { return ForeignKeyConstraintType; } + +private: + std::string m_table; + StringVector m_columns; + std::string m_constraint; + + std::string m_override; +}; + +class UniqueConstraint : public Constraint +{ +public: + explicit UniqueConstraint(const IndexedColumnVector& columns = {}); + explicit UniqueConstraint(const StringVector& columns); + + void setConflictAction(const std::string& conflict) { m_conflictAction = conflict; } + const std::string& conflictAction() const { return m_conflictAction; } + + // We override these because we maintain our own copy of the column_list variable in m_columns. + // This needs to be done because in a unique constraint we can add expressions, sort order, etc. to the + // list of columns. + void setColumnList(const StringVector& list) override; + void addToColumnList(const std::string& key) override; + void replaceInColumnList(const std::string& from, const std::string& to) override; + void removeFromColumnList(const std::string& key) override; + + std::string toSql() const override; + + ConstraintTypes type() const override { return UniqueConstraintType; } + +protected: + IndexedColumnVector m_columns; + std::string m_conflictAction; +}; + +class PrimaryKeyConstraint : public UniqueConstraint +{ + // Primary keys are a sort of unique constraint for us. This matches quite nicely as both can have a conflict action + // and both need to maintain a copy of the column list with sort order information etc. + +public: + explicit PrimaryKeyConstraint(const IndexedColumnVector& columns = {}); + explicit PrimaryKeyConstraint(const StringVector& columns); + + void setAutoIncrement(bool ai) { m_auto_increment = ai; } + bool autoIncrement() const { return m_auto_increment; } + + std::string toSql() const override; + + ConstraintTypes type() const override { return PrimaryKeyConstraintType; } + +private: + bool m_auto_increment; +}; + +class CheckConstraint : public Constraint +{ +public: + explicit CheckConstraint(const std::string& expr = std::string()) + : m_expression(expr) + { + } + + void setExpression(const std::string& expr) { m_expression = expr; } + const std::string& expression() const { return m_expression; } + + std::string toSql() const override; + + ConstraintTypes type() const override { return CheckConstraintType; } + +private: + std::string m_expression; +}; + +class GeneratedColumnConstraint : public Constraint +{ +public: + explicit GeneratedColumnConstraint(const std::string& expr = std::string(), const std::string& storage = "VIRTUAL") + : m_expression(expr), + m_storage(storage) + { + } + + bool empty() const { return m_expression.empty(); } + + void setExpression(const std::string& expr) { m_expression = expr; } + const std::string& expression() const { return m_expression; } + + void setStorage(const std::string& storage) { m_storage = storage; } + std::string storage() const { return m_storage.empty() ? "VIRTUAL" : m_storage; } + + std::string toSql() const override; + + ConstraintTypes type() const override { return GeneratedColumnConstraintType; } + +private: + std::string m_expression; + std::string m_storage; +}; + +class Field +{ +public: + Field() + : m_notnull(false), + m_unique(false) + {} + + Field(const std::string& name, + const std::string& type, + bool notnull = false, + const std::string& defaultvalue = std::string(), + const std::string& check = std::string(), + bool unique = false, + const std::string& collation = std::string()) + : m_name(name) + , m_type(type) + , m_notnull(notnull) + , m_check(check) + , m_defaultvalue(defaultvalue) + , m_unique(unique) + , m_collation(collation) + {} + + bool operator==(const Field& rhs) const; + + std::string toString(const std::string& indent = "\t", const std::string& sep = "\t") const; + + void setName(const std::string& name) { m_name = name; } + void setType(const std::string& type) { m_type = type; } + void setNotNull(bool notnull = true) { m_notnull = notnull; } + void setCheck(const std::string& check) { m_check = check; } + void setDefaultValue(const std::string& defaultvalue) { m_defaultvalue = defaultvalue; } + void setUnique(bool u) { m_unique = u; } + void setCollation(const std::string& collation) { m_collation = collation; } + + bool isText() const; + bool isInteger() const; + bool isBlob() const; + bool isReal() const; + bool isNumeric() const; + + // Type affinity of the column according to SQLite3 rules. + // The Affinity enum values match the SQLITE_INTEGER, SQLITE_FLOAT, SQLITE_BLOB, and SQLITE_TEXT constants + enum Affinity + { + IntegerAffinity = 1, + FloatAffinity = 2, + TextAffinity = 3, + BlobAffinity = 4, + }; + Affinity affinity() const; + + const std::string& name() const { return m_name; } + const std::string& type() const { return m_type; } + bool notnull() const { return m_notnull; } + const std::string& check() const { return m_check; } + const std::string& defaultValue() const { return m_defaultvalue; } + bool unique() const { return m_unique; } + const std::string& collation() const { return m_collation; } + + const GeneratedColumnConstraint& generated() const { return m_generated; } + GeneratedColumnConstraint& generated() { return m_generated; } + void setGenerated(const GeneratedColumnConstraint& gen) { m_generated = gen; } + +private: + std::string m_name; + std::string m_type; + bool m_notnull; + std::string m_check; + std::string m_defaultvalue; + bool m_unique; + std::string m_collation; + GeneratedColumnConstraint m_generated; +}; + +class Table : public Object +{ +public: + explicit Table(const std::string& name): Object(name), m_withoutRowid(false) {} + explicit Table(const Table& table); + Table& operator=(const Table& rhs); + + bool operator==(const Table& rhs) const; + + Types type() const override { return Object::Table; } + + FieldVector fields; + using field_type = Field; + using field_iterator = FieldVector::iterator; + + /** + * @brief Returns the CREATE TABLE statement for this table object + * @return A std::string with the CREATE TABLE object. + */ + std::string sql(const std::string& schema = "main", bool ifNotExists = false) const override; + + StringVector fieldNames() const; + + StringVector rowidColumns() const; + void setWithoutRowidTable(bool without_rowid) { m_withoutRowid = without_rowid; } + bool withoutRowidTable() const { return m_withoutRowid; } + + void setVirtualUsing(const std::string& virt_using) { m_virtual = virt_using; } + const std::string& virtualUsing() const { return m_virtual; } + bool isVirtual() const { return !m_virtual.empty(); } + + FieldInfoList fieldInformation() const override; + + void addConstraint(ConstraintPtr constraint); + void setConstraint(ConstraintPtr constraint); + void removeConstraint(ConstraintPtr constraint); + void removeConstraints(const StringVector& vStrFields = StringVector(), Constraint::ConstraintTypes type = Constraint::NoType); + ConstraintPtr constraint(const StringVector& vStrFields = StringVector(), Constraint::ConstraintTypes type = Constraint::NoType) const; //! Only returns the first constraint, if any + std::vector constraints(const StringVector& vStrFields = StringVector(), Constraint::ConstraintTypes type = Constraint::NoType) const; + ConstraintSet allConstraints() const { return m_constraints; } + void setConstraints(const ConstraintSet& constraints); + void replaceConstraint(ConstraintPtr from, ConstraintPtr to); + std::shared_ptr primaryKey(); + void removeKeyFromAllConstraints(const std::string& key); + void renameKeyInAllConstraints(const std::string& key, const std::string& to); + + /** + * @brief parseSQL Parses the create Table statement in sSQL. + * @param sSQL The create table statement. + * @return The table object. The table object may be empty if parsing failed. + */ + static TablePtr parseSQL(const std::string& sSQL); +private: + StringVector fieldList() const; + +private: + bool m_withoutRowid; + ConstraintSet m_constraints; + std::string m_virtual; +}; + +class IndexedColumn +{ +public: + IndexedColumn() + : m_isExpression(false) + { + } + + IndexedColumn(const std::string& name, bool expr, const std::string& order = std::string()) + : m_name(name), + m_isExpression(expr), + m_order(order) + { + } + + void setName(const std::string& name) { m_name = name; } + const std::string& name() const { return m_name; } + + void setExpression(bool expr) { m_isExpression = expr; } + bool expression() const { return m_isExpression; } + + void setOrder(const std::string& order) { m_order = order; } + std::string order() const { return m_order; } + + std::string toString(const std::string& indent = "\t", const std::string& sep = "\t") const; + +private: + std::string m_name; + bool m_isExpression; + std::string m_order; +}; + +class Index : public Object +{ +public: + explicit Index(const std::string& name): Object(name), m_unique(false) {} + Index& operator=(const Index& rhs); + + Types type() const override { return Object::Index; } + + IndexedColumnVector fields; + using field_type = IndexedColumn; + using field_iterator = IndexedColumnVector::iterator; + + std::string baseTable() const override { return m_table; } + + void setUnique(bool unique) { m_unique = unique; } + bool unique() const { return m_unique; } + + void setTable(const std::string& table) { m_table = table; } + const std::string& table() const { return m_table; } + + void setWhereExpr(const std::string& expr) { m_whereExpr = expr; } + const std::string& whereExpr() const { return m_whereExpr; } + + /** + * @brief Returns the CREATE INDEX statement for this index object + * @return A std::string with the CREATE INDEX object. + */ + std::string sql(const std::string& schema = "main", bool ifNotExists = false) const override; + + /** + * @brief parseSQL Parses the CREATE INDEX statement in sSQL. + * @param sSQL The create index statement. + * @return The index object. The index object may be empty if the parsing failed. + */ + static IndexPtr parseSQL(const std::string& sSQL); + + FieldInfoList fieldInformation() const override; + +private: + StringVector columnSqlList() const; + + bool m_unique; + std::string m_table; + std::string m_whereExpr; +}; + +class View : public Object +{ +public: + explicit View(const std::string& name): Object(name) {} + + Types type() const override { return Object::View; } + + FieldVector fields; + + std::string sql(const std::string& /*schema*/ = "main", bool /*ifNotExists*/ = false) const override + { /* TODO */ return m_originalSql; } + + static ViewPtr parseSQL(const std::string& sSQL); + + StringVector fieldNames() const; + + FieldInfoList fieldInformation() const override; +}; + +class Trigger : public Object +{ +public: + explicit Trigger(const std::string& name): Object(name) {} + + Types type() const override { return Object::Trigger; } + + std::string sql(const std::string& /*schema*/ = "main", bool /*ifNotExists*/ = false) const override + { /* TODO */ return m_originalSql; } + + static TriggerPtr parseSQL(const std::string& sSQL); + + std::string baseTable() const override { return m_table; } + + void setTable(const std::string& table) { m_table = table; } + std::string table() const { return m_table; } + +private: + std::string m_table; +}; + +/** + * @brief findField Finds a field in the database object and returns an iterator to it. + * @param object + * @param name + * @return The iterator pointing to the field in the field container of the object if the field was found. + * object.fields.end() if the field couldn't be found. + */ +template +typename T::field_iterator findField(T* object, const std::string& name) +{ + return std::find_if(object->fields.begin(), object->fields.end(), [&name](const typename T::field_type& f) { + return compare_ci(name, f.name()); + }); +} +template +typename T::field_iterator findField(const T* object, const std::string& name) +{ + return findField(const_cast(object), name); +} +template +typename std::remove_reference::type::field_iterator findField(std::shared_ptr object, const std::string& name) +{ + return findField(object.get(), name); +} +template +typename std::remove_reference::type::field_iterator findField(T& object, const std::string& name) +{ + return findField(&object, name); +} + +template struct is_shared_ptr : std::false_type {}; +template struct is_shared_ptr> : std::true_type {}; + +/** + * @brief removeField Finds and removes a field in the database object + * @param object + * @param name + * @return true if sucessful, otherwise false + */ +template +bool removeField(T* object, const std::string& name) +{ + auto index = findField(object, name); + if(index != object->fields.end()) + { + object->fields.erase(index); + return true; + } + return false; +} +template::value>::type> +bool removeField(T object, const std::string& name) +{ + return removeField(object.get(), name); +} +template::value>::type> +bool removeField(T& object, const std::string& name) +{ + return removeField(&object, name); +} + +} //namespace sqlb + +#endif diff --git a/src/SqliteDBProcess/src/sqlite.h b/src/SqliteDBProcess/src/sqlite.h new file mode 100644 index 0000000..335b069 --- /dev/null +++ b/src/SqliteDBProcess/src/sqlite.h @@ -0,0 +1,23 @@ +#ifndef SQLITE_H +#define SQLITE_H + +#ifdef ENABLE_SQLCIPHER + #define SQLITE_TEMP_STORE 2 + #define SQLITE_HAS_CODEC +#ifdef Q_OS_WIN32 + #include +#else + #include +#endif +#else + #include +#endif + +// For older versions of the SQLite library which do not have the SQLITE_DETERMINISTIC flag +// yet (which introduced in this commit: https://www.sqlite.org/src/info/5716fc2341ddd8cf), we +// define it here with a value of 0. Because it is ORed with other constants a value of 0 is a no-op. +#ifndef SQLITE_DETERMINISTIC +#define SQLITE_DETERMINISTIC 0 +#endif + +#endif diff --git a/src/SqliteDBProcess/src/sqlitedb.cpp b/src/SqliteDBProcess/src/sqlitedb.cpp new file mode 100644 index 0000000..2b63965 --- /dev/null +++ b/src/SqliteDBProcess/src/sqlitedb.cpp @@ -0,0 +1,2130 @@ +#include "sqlitedb.h" +#include "sqlite.h" +#include "sqlitetablemodel.h" +#include "CipherDialog.h" +#include "CipherSettings.h" +#include "DotenvFormat.h" +#include "Settings.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include + +using json = nlohmann::json; + +QStringList DBBrowserDB::Datatypes = {"INTEGER", "TEXT", "BLOB", "REAL", "NUMERIC"}; + +// Helper template to allow turning member functions into a C-style function pointer +// See https://stackoverflow.com/questions/19808054/convert-c-function-pointer-to-c-function-pointer/19809787 +template +struct Callback; +template +struct Callback { + template + static Ret callback(Args... args) { return func(args...); } + static std::function func; +}; +template +std::function Callback::func; + +namespace sqlb { +QString escapeIdentifier(const QString& id) +{ + return QString::fromStdString(escapeIdentifier(id.toStdString())); +} +QString escapeString(const QString& literal) +{ + return QString::fromStdString(escapeString(literal.toStdString())); +} +} + +// collation callbacks +int collCompare(void* /*pArg*/, int sizeA, const void* sA, int sizeB, const void* sB) +{ + if(sizeA == sizeB) + return memcmp(sA, sB, static_cast(sizeA)); + return sizeA - sizeB; +} + +static int sqlite_compare_utf16( void* /*arg*/,int size1, const void *str1, int size2, const void* str2) +{ + const QString string1 = QString::fromRawData(reinterpret_cast(str1), static_cast(static_cast(size1) / sizeof(QChar))); + const QString string2 = QString::fromRawData(reinterpret_cast(str2), static_cast(static_cast(size2) / sizeof(QChar))); + + return QString::compare(string1, string2, Qt::CaseSensitive); +} + +static int sqlite_compare_utf16ci( void* /*arg*/,int size1, const void *str1, int size2, const void* str2) +{ + const QString string1 = QString::fromRawData(reinterpret_cast(str1), static_cast(static_cast(size1) / sizeof(QChar))); + const QString string2 = QString::fromRawData(reinterpret_cast(str2), static_cast(static_cast(size2) / sizeof(QChar))); + + return QString::compare(string1, string2, Qt::CaseInsensitive); +} + +static void sqlite_make_single_value(sqlite3_context* ctx, int num_arguments, sqlite3_value* arguments[]) +{ + json array; + for(int i=0;i(sqlite3_value_text(arguments[i]))); + + std::string output = array.dump(); + char* output_str = new char[output.size()+1]; + std::strcpy(output_str, output.c_str()); + + sqlite3_result_text(ctx, output_str, static_cast(output.length()), [](void* ptr) { + char* cptr = static_cast(ptr); + delete cptr; + }); +} + +DBBrowserDB::DBBrowserDB() : + _db(nullptr), + db_used(false), + isEncrypted(false), + isReadOnly(false), + dontCheckForStructureUpdates(false) +{ + // Register error log callback. This needs to be done before SQLite is first used + Callback::func = std::bind(&DBBrowserDB::errorLogCallback, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3); + void (*log_callback)(void*, int, const char*) = static_cast(Callback::callback); + sqlite3_config(SQLITE_CONFIG_LOG, log_callback, nullptr); +} + +void DBBrowserDB::collationNeeded(void* /*pData*/, sqlite3* /*db*/, int eTextRep, const char* sCollationName) +{ + QString name(sCollationName); + + // Don't request built-in collations. SQLite requests these collations even though they are built into + // the library. Since we have no need for overriding them, we just silently ignore these requests. + if(name.compare("BINARY", Qt::CaseInsensitive) && + name.compare("NOCASE", Qt::CaseInsensitive) && + name.compare("RTRIM", Qt::CaseInsensitive)) + { + emit requestCollation(name, eTextRep); + } +} + +void DBBrowserDB::errorLogCallback(void* /*user_data*/, int error_code, const char* message) +{ + QString msg = QString("(%1) %2").arg(error_code).arg(message); + + logSQL(msg, kLogMsg_ErrorLog); +} + +static void regexp(sqlite3_context* ctx, int /*argc*/, sqlite3_value* argv[]) +{ + // This is a cache for the last 50 regular expressions. Compiling them takes some time, so we want to cache the compiled + // regular expressions for performance purposes. + static std::array, 50> regex_cache; + + // Check if pattern is in cache + QString pattern{reinterpret_cast(sqlite3_value_text(argv[0]))}; + QRegularExpression regex; + const auto it = std::find_if(regex_cache.begin(), regex_cache.end(), [pattern](const std::pair& val) { + return val.first == pattern; + }); + if(it == regex_cache.end()) + { + // Pattern is not in cache. Create a new regular expressions object, compile it, and insert it into the cache + regex.setPattern(pattern); + regex.setPatternOptions(QRegularExpression::UseUnicodePropertiesOption); + if(!regex.isValid()) + return sqlite3_result_error(ctx, "invalid operand", -1); + regex.optimize(); + + static size_t regex_cache_size; + regex_cache_size = (regex_cache_size + 1) % regex_cache.size(); + regex_cache[regex_cache_size] = {pattern, regex}; + } else { + // Pattern is in the cache. Just retrieve it + regex = it->second; + } + + // Get arguments and check their values + QString arg2{reinterpret_cast(sqlite3_value_text(argv[1]))}; + + // Perform the actual matching and return the result. + // SQLite expects a 0 for not found and a 1 for found. + sqlite3_result_int(ctx, regex.match(arg2).hasMatch()); +} + +bool DBBrowserDB::isOpen ( ) const +{ + return _db != nullptr; +} + +bool DBBrowserDB::getDirty() const +{ + return !savepointList.empty(); +} + +bool DBBrowserDB::open(const QString& db, bool readOnly) +{ + if (isOpen()) close(); + + isEncrypted = false; + dontCheckForStructureUpdates = false; + + // Get encryption settings for database file + CipherSettings* cipherSettings = nullptr; + if(tryEncryptionSettings(db, &isEncrypted, cipherSettings) == false) + return false; + + // Open database file + if(sqlite3_open_v2(db.toUtf8(), &_db, readOnly ? SQLITE_OPEN_READONLY : SQLITE_OPEN_READWRITE, nullptr) != SQLITE_OK) + { + lastErrorMessage = QString::fromUtf8(sqlite3_errmsg(_db)); + return false; + } + + // Set encryption details if database is encrypted +#ifdef ENABLE_SQLCIPHER + if(isEncrypted && cipherSettings) + { + executeSQL("PRAGMA key = " + cipherSettings->getPassword(), false, false); + executeSQL("PRAGMA cipher_page_size = " + std::to_string(cipherSettings->getPageSize()), false, false); + executeSQL("PRAGMA kdf_iter = " + std::to_string(cipherSettings->getKdfIterations()), false, false); + executeSQL("PRAGMA cipher_hmac_algorithm = " + cipherSettings->getHmacAlgorithm(), false, false); + executeSQL("PRAGMA cipher_kdf_algorithm = " + cipherSettings->getKdfAlgorithm(), false, false); + executeSQL("PRAGMA cipher_plaintext_header_size = " + std::to_string(cipherSettings->getPlaintextHeaderSize()), false, false); + } +#endif + delete cipherSettings; + + if (_db) + { + // add UTF16 collation (comparison is performed by QString functions) + sqlite3_create_collation(_db, "UTF16", SQLITE_UTF16, nullptr, sqlite_compare_utf16); + // add UTF16CI (case insensitive) collation (comparison is performed by QString functions) + sqlite3_create_collation(_db, "UTF16CI", SQLITE_UTF16, nullptr, sqlite_compare_utf16ci); + + // register collation callback + Callback::func = std::bind(&DBBrowserDB::collationNeeded, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4); + void (*c_callback)(void*, sqlite3*, int, const char*) = static_cast(Callback::callback); + sqlite3_collation_needed(_db, nullptr, c_callback); + + // Set foreign key settings as requested in the preferences + bool foreignkeys = Settings::getValue("db", "foreignkeys").toBool(); + setPragma("foreign_keys", foreignkeys ? "1" : "0"); + + // Register REGEXP function + if(Settings::getValue("extensions", "disableregex").toBool() == false) + sqlite3_create_function(_db, "REGEXP", 2, SQLITE_UTF8, nullptr, regexp, nullptr, nullptr); + + // Register our internal helper function for putting multiple values into a single column + sqlite3_create_function_v2( + _db, + "sqlb_make_single_value", + -1, + SQLITE_UTF8 | SQLITE_DETERMINISTIC, + nullptr, + sqlite_make_single_value, + nullptr, + nullptr, + nullptr + ); + + // Check if file is read only. In-memory databases are never read only + if(db == ":memory:") + { + isReadOnly = false; + } else { + QFileInfo fi(db); + QFileInfo fid(fi.absoluteDir().absolutePath()); + isReadOnly = readOnly || !fi.isWritable() || !fid.isWritable(); + } + + // Load extensions + loadExtensionsFromSettings(); + + // Execute default SQL + if(!isReadOnly) + { + QByteArray default_sql = Settings::getValue("db", "defaultsqltext").toByteArray(); + if(!default_sql.isEmpty()) + executeMultiSQL(default_sql, false, true); + } + + curDBFilename = db; + + updateSchema(); + + return true; + } else { + return false; + } +} + +bool DBBrowserDB::attach(const QString& filePath, QString attach_as) +{ + if(!_db) + return false; + + waitForDbRelease(); + + // Check if this file has already been attached and abort if this is the case + QFileInfo fi(filePath); + bool ok = executeSQL("PRAGMA database_list", false, true, [fi](int, std::vector values, std::vector) -> bool { + QFileInfo path(values.at(2)); + if(fi == path) + { + QString schema = values.at(1); + QMessageBox::information(nullptr, qApp->applicationName(), tr("This database has already been attached. Its schema name is '%1'.").arg(schema)); + return true; + } + + return false; + }); + + if(ok == false) + return false; + + // Ask for name to be given to the attached database if none was provided + if(attach_as.isEmpty()) + attach_as = QInputDialog::getText(nullptr, + qApp->applicationName(), + tr("Please specify the database name under which you want to access the attached database"), + QLineEdit::Normal, + QFileInfo(filePath).baseName() + ).trimmed(); + if(attach_as.isNull()) + return false; + +#ifdef ENABLE_SQLCIPHER + // Try encryption settings + CipherSettings* cipherSettings = nullptr; + bool is_encrypted; + if(tryEncryptionSettings(filePath, &is_encrypted, cipherSettings) == false) + return false; + + // Attach database + std::string key; + if(cipherSettings && is_encrypted) + key = "KEY " + cipherSettings->getPassword(); + else + key = "KEY ''"; + + // Only apply cipher settings if the database is encrypted + if(cipherSettings && is_encrypted) + { + if(!executeSQL("PRAGMA cipher_default_page_size = " + std::to_string(cipherSettings->getPageSize()), false)) + { + QMessageBox::warning(nullptr, qApp->applicationName(), lastErrorMessage); + return false; + } + if(!executeSQL("PRAGMA cipher_default_kdf_iter = " + std::to_string(cipherSettings->getKdfIterations()), false)) + { + QMessageBox::warning(nullptr, qApp->applicationName(), lastErrorMessage); + return false; + } + if(!executeSQL("PRAGMA cipher_hmac_algorithm = " + cipherSettings->getHmacAlgorithm(), false)) + { + QMessageBox::warning(nullptr, qApp->applicationName(), lastErrorMessage); + return false; + } + if(!executeSQL("PRAGMA cipher_kdf_algorithm = " + cipherSettings->getKdfAlgorithm(), false)) + { + QMessageBox::warning(nullptr, qApp->applicationName(), lastErrorMessage); + return false; + } + if(!executeSQL("PRAGMA cipher_plaintext_header_size = " + std::to_string(cipherSettings->getPlaintextHeaderSize()), false)) + { + QMessageBox::warning(nullptr, qApp->applicationName(), lastErrorMessage); + return false; + } + } + + if(!executeSQL("ATTACH " + sqlb::escapeString(filePath.toStdString()) + " AS " + sqlb::escapeIdentifier(attach_as.toStdString()) + " " + key, false)) + { + QMessageBox::warning(nullptr, qApp->applicationName(), lastErrorMessage); + return false; + } + + // Clean up cipher settings + delete cipherSettings; +#else + // Attach database + if(!executeSQL("ATTACH " + sqlb::escapeString(filePath.toStdString()) + " AS " + sqlb::escapeIdentifier(attach_as.toStdString()), false)) + { + QMessageBox::warning(nullptr, qApp->applicationName(), lastErrorMessage); + return false; + } +#endif + + // Update schema to load database schema of the newly attached database + updateSchema(); + + return true; +} + +bool DBBrowserDB::tryEncryptionSettings(const QString& filePath, bool* encrypted, CipherSettings*& cipherSettings) const +{ + lastErrorMessage = tr("Invalid file format"); + + // Open database file + sqlite3* dbHandle; + if(sqlite3_open_v2(filePath.toUtf8(), &dbHandle, SQLITE_OPEN_READONLY, nullptr) != SQLITE_OK) + return false; + + // Try reading from database + +#ifdef ENABLE_SQLCIPHER + bool isDotenvChecked = false; + + // Determine default encryption settings depending on the SQLCipher version we use + QString sqlite_version, sqlcipher_version; + getSqliteVersion(sqlite_version, sqlcipher_version); + int enc_default_page_size, enc_default_kdf_iter; + int enc_default_plaintext_header_size = 0; + std::string enc_default_hmac_algorithm, enc_default_kdf_algorithm; + if(sqlcipher_version.startsWith('4')) + { + enc_default_page_size = 4096; + enc_default_kdf_iter = 256000; + enc_default_hmac_algorithm = "SHA512"; + enc_default_kdf_algorithm = "SHA512"; + } else { + enc_default_page_size = 1024; + enc_default_kdf_iter = 64000; + enc_default_hmac_algorithm = "SHA1"; + enc_default_kdf_algorithm = "SHA1"; + } +#endif + + *encrypted = false; + cipherSettings = nullptr; + while(true) + { + const std::string statement = "SELECT COUNT(*) FROM sqlite_master;"; + sqlite3_stmt* vm; + const char* tail; + int err = sqlite3_prepare_v2(dbHandle, statement.c_str(), static_cast(statement.size()), &vm, &tail); + if(err == SQLITE_BUSY || err == SQLITE_PERM || err == SQLITE_NOMEM || err == SQLITE_IOERR || err == SQLITE_CORRUPT || err == SQLITE_CANTOPEN) + { + lastErrorMessage = QString::fromUtf8(sqlite3_errmsg(dbHandle)); + sqlite3_close(dbHandle); + return false; + } + + if(sqlite3_step(vm) != SQLITE_ROW) + { + sqlite3_finalize(vm); +#ifdef ENABLE_SQLCIPHER + bool foundDotenvPassword = false; + + // Being in a while loop, we don't want to check the same file multiple times + if (!isDotenvChecked) { + QFile databaseFile(filePath); + QFileInfo databaseFileInfo(databaseFile); + + QString databaseDirectoryPath = databaseFileInfo.dir().path(); + QString databaseFileName(databaseFileInfo.fileName()); + + QString dotenvFilePath = databaseDirectoryPath + "/.env"; + static const QSettings::Format dotenvFormat = QSettings::registerFormat("env", &DotenvFormat::readEnvFile, nullptr); + QSettings dotenv(dotenvFilePath, dotenvFormat); + + QVariant passwordValue = dotenv.value(databaseFileName); + + foundDotenvPassword = !passwordValue.isNull(); + + isDotenvChecked = true; + + if (foundDotenvPassword) + { + std::string password = passwordValue.toString().toStdString(); + + QVariant keyFormatValue = dotenv.value(databaseFileName + "_keyFormat", QVariant(CipherSettings::KeyFormats::Passphrase)); + CipherSettings::KeyFormats keyFormat = CipherSettings::getKeyFormat(keyFormatValue.toInt()); + + int pageSize = dotenv.value(databaseFileName + "_pageSize", enc_default_page_size).toInt(); + int kdfIterations = dotenv.value(databaseFileName + "_kdfIter", enc_default_kdf_iter).toInt(); + int plaintextHeaderSize = dotenv.value(databaseFileName + "_plaintextHeaderSize", enc_default_plaintext_header_size).toInt(); + std::string hmacAlgorithm = dotenv.value(databaseFileName + "_hmacAlgorithm", QString::fromStdString(enc_default_hmac_algorithm)).toString().toStdString(); + std::string kdfAlgorithm = dotenv.value(databaseFileName + "_kdfAlgorithm", QString::fromStdString(enc_default_kdf_algorithm)).toString().toStdString(); + + delete cipherSettings; + cipherSettings = new CipherSettings(); + + cipherSettings->setKeyFormat(keyFormat); + cipherSettings->setPassword(password); + cipherSettings->setPageSize(pageSize); + cipherSettings->setKdfIterations(kdfIterations); + cipherSettings->setHmacAlgorithm("HMAC_" + hmacAlgorithm); + cipherSettings->setKdfAlgorithm("PBKDF2_HMAC_" + kdfAlgorithm); + cipherSettings->setPlaintextHeaderSize(plaintextHeaderSize); + } + } + + if(foundDotenvPassword) + { + // Skip the CipherDialog prompt for now to test if the dotenv settings are correct + } else { + CipherDialog *cipherDialog = new CipherDialog(nullptr, false); + if(cipherDialog->exec()) + { + delete cipherSettings; + cipherSettings = new CipherSettings(cipherDialog->getCipherSettings()); + } else { + sqlite3_close(dbHandle); + *encrypted = false; + delete cipherSettings; + cipherSettings = nullptr; + return false; + } + } + + // Close and reopen database first to be in a clean state after the failed read attempt from above + sqlite3_close(dbHandle); + if(sqlite3_open_v2(filePath.toUtf8(), &dbHandle, SQLITE_OPEN_READONLY, nullptr) != SQLITE_OK) + { + delete cipherSettings; + cipherSettings = nullptr; + return false; + } + + // Set the key + sqlite3_exec(dbHandle, ("PRAGMA key = " + cipherSettings->getPassword()).c_str(), nullptr, nullptr, nullptr); + + // Set the settings if they differ from the default values + if(cipherSettings->getPageSize() != enc_default_page_size) + sqlite3_exec(dbHandle, ("PRAGMA cipher_page_size = " + std::to_string(cipherSettings->getPageSize())).c_str(), nullptr, nullptr, nullptr); + if(cipherSettings->getKdfIterations() != enc_default_kdf_iter) + sqlite3_exec(dbHandle, ("PRAGMA kdf_iter = " + std::to_string(cipherSettings->getKdfIterations())).c_str(), nullptr, nullptr, nullptr); + if(cipherSettings->getHmacAlgorithm() != enc_default_hmac_algorithm) + sqlite3_exec(dbHandle, ("PRAGMA cipher_hmac_algorithm = " + cipherSettings->getHmacAlgorithm()).c_str(), nullptr, nullptr, nullptr); + if(cipherSettings->getKdfAlgorithm() != enc_default_kdf_algorithm) + sqlite3_exec(dbHandle, ("PRAGMA cipher_kdf_algorithm = " + cipherSettings->getKdfAlgorithm()).c_str(), nullptr, nullptr, nullptr); + if(cipherSettings->getPlaintextHeaderSize() != enc_default_plaintext_header_size) + sqlite3_exec(dbHandle, ("PRAGMA cipher_plaintext_header_size = " + std::to_string(cipherSettings->getPlaintextHeaderSize())).c_str(), nullptr, nullptr, nullptr); + + *encrypted = true; +#else + lastErrorMessage = QString::fromUtf8(sqlite3_errmsg(dbHandle)); + sqlite3_close(dbHandle); + return false; +#endif + } else { + sqlite3_finalize(vm); + sqlite3_close(dbHandle); + return true; + } + } +} + +void DBBrowserDB::getSqliteVersion(QString& sqlite, QString& sqlcipher) +{ + sqlite = QString(SQLITE_VERSION); + + // The SQLCipher version must be queried via a pragma and for a pragma we need a database connection. + // Because we want to be able to query the SQLCipher version without opening a database file first, we + // open a separate connection to an in-memory database here. + sqlcipher = QString(); +#ifdef ENABLE_SQLCIPHER + sqlite3* dummy; + if(sqlite3_open(":memory:", &dummy) == SQLITE_OK) + { + sqlite3_stmt* stmt; + if(sqlite3_prepare_v2(dummy, "PRAGMA cipher_version", -1, &stmt, nullptr) == SQLITE_OK) + { + if(sqlite3_step(stmt) == SQLITE_ROW) + sqlcipher = QByteArray(static_cast(sqlite3_column_blob(stmt, 0)), sqlite3_column_bytes(stmt, 0)); + + sqlite3_finalize(stmt); + } + + sqlite3_close(dummy); + } +#endif +} + +bool DBBrowserDB::setSavepoint(const std::string& pointname) +{ + if(!isOpen()) + return false; + if(isReadOnly) { + qWarning() << "setSavepoint: not done. DB is read-only"; + return false; + } + if(contains(savepointList, pointname)) + return true; + + executeSQL("SAVEPOINT " + sqlb::escapeIdentifier(pointname) + ";", false, true); + savepointList.push_back(pointname); + emit dbChanged(getDirty()); + + return true; +} + +bool DBBrowserDB::releaseSavepoint(const std::string& pointname) +{ + if(!isOpen()) + return false; + if(contains(savepointList, pointname) == false) + // If there is no such savepoint in the list, + // we have already released it, so in this case + // the operation should be successfull + return true; + + if(!executeSQL("RELEASE " + sqlb::escapeIdentifier(pointname) + ";", false, true)) + return false; + // SQLite releases all savepoints that were created between + // creation of given savepoint and releasing of it, + // so we should too + auto it = std::find(savepointList.rbegin(), savepointList.rend(), pointname).base() - 1; + savepointList.erase(it, savepointList.end()); + emit dbChanged(getDirty()); + + return true; +} + +bool DBBrowserDB::revertToSavepoint(const std::string& pointname) +{ + if(!isOpen() || contains(savepointList, pointname) == false) + return false; + + executeSQL("ROLLBACK TO SAVEPOINT " + sqlb::escapeIdentifier(pointname) + ";", false, true); + executeSQL("RELEASE " + sqlb::escapeIdentifier(pointname) + ";", false, true); + // SQLite releases all savepoints that were created between + // creation of given savepoint and releasing of it, + // so we should too + auto it = std::find(savepointList.rbegin(), savepointList.rend(), pointname).base() - 1; + savepointList.erase(it, savepointList.end()); + emit dbChanged(getDirty()); + + return true; +} + +bool DBBrowserDB::releaseAllSavepoints() +{ + if(!_db) + return false; + + waitForDbRelease(); + + while(!savepointList.empty()) + { + if(!releaseSavepoint(savepointList.front())) + return false; + } + + // When still in a transaction, commit that too + if(sqlite3_get_autocommit(_db) == 0) + executeSQL("COMMIT;", false, true); + + return true; +} + +bool DBBrowserDB::revertAll() +{ + while(!savepointList.empty()) + { + if(!revertToSavepoint(savepointList.front())) + return false; + } + return true; +} + +bool DBBrowserDB::create ( const QString & db) +{ + if (isOpen()) + close(); + + // read encoding from settings and open with sqlite3_open for utf8 and sqlite3_open16 for utf16 + QString sEncoding = Settings::getValue("db", "defaultencoding").toString(); + + int openresult = SQLITE_OK; + + if(sEncoding == "UTF-8" || sEncoding == "UTF8" || sEncoding == "Latin1") + openresult = sqlite3_open(db.toUtf8(), &_db); + else + openresult = sqlite3_open16(db.utf16(), &_db); + + if( openresult != SQLITE_OK ){ + lastErrorMessage = QString::fromUtf8(sqlite3_errmsg(_db)); + sqlite3_close(_db); + _db = nullptr; + return false; + } + + if (_db) + { + // force sqlite3 do write proper file header + // if we don't create and drop the table we might end up + // with a 0 byte file, if the user cancels the create table dialog + { + NoStructureUpdateChecks nup(*this); + executeSQL("CREATE TABLE notempty (id integer primary key);", false, false); + executeSQL("DROP TABLE notempty;", false, false); + } + + // Close database and open it through the code for opening existing database files. This is slightly less efficient but saves us some duplicate + // code. + sqlite3_close(_db); + return open(db); + } else { + return false; + } +} + +bool DBBrowserDB::close() +{ + waitForDbRelease(); + + if(_db) + { + if (getDirty()) + { + // In-memory databases can't be saved to disk. So the need another text than regular databases. + // Note that the QMessageBox::Yes option in the :memory: case and the QMessageBox::No option in the regular case are + // doing the same job: proceeding but not saving anything. + QMessageBox::StandardButton reply; + if(curDBFilename == ":memory:") + { + reply = QMessageBox::question(nullptr, + QApplication::applicationName(), + tr("Do you really want to close this temporary database? All data will be lost."), + QMessageBox::Yes | QMessageBox::Cancel); + } else { + reply = QMessageBox::question(nullptr, + QApplication::applicationName(), + tr("Do you want to save the changes made to the database file %1?").arg(curDBFilename), + QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel); + } + + // If the user clicked the cancel button stop here and return false + if(reply == QMessageBox::Cancel) + return false; + + // If he didn't it was either yes or no + if(reply == QMessageBox::Save) + releaseAllSavepoints(); + else + revertAll(); //not really necessary, I think... but will not hurt. + } + if(sqlite3_close(_db) != SQLITE_OK) + qWarning() << tr("Database didn't close correctly, probably still busy"); + _db = nullptr; + } + + schemata.clear(); + savepointList.clear(); + emit dbChanged(getDirty()); + emit structureUpdated(); + + // Return true to tell the calling function that the closing wasn't cancelled by the user + return true; +} + +DBBrowserDB::db_pointer_type DBBrowserDB::get(const QString& user, bool force_wait) +{ + if(!_db) + return nullptr; + + waitForDbRelease(force_wait ? Wait : Ask); + + db_user = user; + db_used = true; + emit databaseInUseChanged(true, user); + + return db_pointer_type(_db, DatabaseReleaser(this)); +} + +void DBBrowserDB::waitForDbRelease(ChoiceOnUse choice) const +{ + if(!_db) + return; + + // We can't show a message box from another thread than the main thread. So instead of crashing we + // just decide that we don't interrupt any running query in this case. + if(choice == Ask && QThread::currentThread() != QApplication::instance()->thread()) + choice = Wait; + + std::unique_lock lk(m); + while(db_used) { + // notify user, give him the opportunity to cancel that + auto str = db_user; + lk.unlock(); + + bool cancel = choice == CancelOther; + if(choice == Ask) { + QMessageBox msgBox; + msgBox.setText(tr("The database is currently busy: ") + str); + msgBox.setInformativeText(tr("Do you want to abort that other operation?")); + msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No); + msgBox.setDefaultButton(QMessageBox::No); + int ret = msgBox.exec(); + + cancel = ret == QMessageBox::Yes; + } + if(cancel) + sqlite3_interrupt(_db); + + lk.lock(); + cv.wait(lk, [this](){ return !db_used; }); + } +} + +bool DBBrowserDB::dump(const QString& filePath, + const std::vector& tablesToDump, + bool insertColNames, + bool insertNewSyntx, + bool exportSchema, + bool exportData, + bool keepOldSchema) const +{ + waitForDbRelease(); + + // Open file + QFile file(filePath); + if(file.open(QIODevice::WriteOnly|QIODevice::Text)) + { + QApplication::setOverrideCursor(Qt::WaitCursor); + + // Count the total number of all records in all tables for the progress dialog + size_t numRecordsTotal = 0; + objectMap objMap = schemata.at("main"); // We only always export the main database, not the attached databases + std::vector tables; + auto all_tables = objMap.equal_range("table"); + for(auto it=all_tables.first;it!=all_tables.second;++it) + { + // Never export the sqlite_stat1 and the sqlite_sequence tables if they exist. Also only export any tables which are selected for export. + if(it->second->name() != "sqlite_stat1" && it->second->name() != "sqlite_sequence" && contains(tablesToDump, it->second->name())) + { + // Get the number of records in this table and remember to export it + tables.push_back(it->second); + numRecordsTotal += querySingleValueFromDb("SELECT COUNT(*) FROM " + sqlb::ObjectIdentifier("main", it->second->name()).toString()).toUInt(); + } + } + + QProgressDialog progress(tr("Exporting database to SQL file..."), + tr("Cancel"), 0, static_cast(numRecordsTotal)); + progress.setWindowModality(Qt::ApplicationModal); + progress.show(); + qApp->processEvents(); + + // Open text stream to the file + QTextStream stream(&file); + + // Put the SQL commands in a transaction block + stream << "BEGIN TRANSACTION;\n"; + + // First export the schema of all selected tables. We need to export the schema of all tables before we export the first INSERT statement to + // make sure foreign keys are working properly. + if(exportSchema) + { + for(const auto& it : tables) + { + // Write the SQL string used to create this table to the output file + if(!keepOldSchema) + stream << QString("DROP TABLE IF EXISTS %1;\n").arg(QString::fromStdString(sqlb::escapeIdentifier(it->name()))); + + if(it->fullyParsed()) + stream << QString::fromStdString(it->sql("main", true)) << "\n"; + else + stream << QString::fromStdString(it->originalSql()) << ";\n"; + } + } + + // Now export the data as well + if(exportData) + { + for(const auto& it : tables) + { + // get columns + sqlb::StringVector cols = std::dynamic_pointer_cast(it)->fieldNames(); + + std::string sQuery = "SELECT * FROM " + sqlb::escapeIdentifier(it->name()); + sqlite3_stmt *stmt; + QString lineSep(QString(")%1\n").arg(insertNewSyntx?',':';')); + + int status = sqlite3_prepare_v2(_db, sQuery.c_str(), static_cast(sQuery.size()), &stmt, nullptr); + if(SQLITE_OK == status) + { + int columns = sqlite3_column_count(stmt); + size_t counter = 0; + size_t numRecordsCurrent = 0; + qApp->processEvents(); + while(sqlite3_step(stmt) == SQLITE_ROW) + { + if (counter) stream << lineSep; + + if (!insertNewSyntx || !counter) + { + stream << "INSERT INTO " << QString::fromStdString(sqlb::escapeIdentifier(it->name())); + if (insertColNames) + stream << " (" << QString::fromStdString(sqlb::joinStringVector(sqlb::escapeIdentifier(cols), ",")) << ")"; + stream << " VALUES ("; + } + else + { + stream << " ("; + } + + for (int i = 0; i < columns; ++i) + { + int fieldsize = sqlite3_column_bytes(stmt, i); + int fieldtype = sqlite3_column_type(stmt, i); + QByteArray bcontent( + reinterpret_cast(sqlite3_column_blob(stmt, i)), + fieldsize); + + if(bcontent.left(2048).contains('\0')) // binary check + { + stream << QString("X'%1'").arg(QString(bcontent.toHex())); + } + else + { + switch(fieldtype) + { + case SQLITE_TEXT: + case SQLITE_BLOB: + stream << sqlb::escapeString(bcontent); + break; + case SQLITE_NULL: + stream << "NULL"; + break; + case SQLITE_FLOAT: + if(bcontent.indexOf("Inf") != -1) + stream << "'" << bcontent << "'"; + else + stream << bcontent; + break; + default: + stream << bcontent; + } + } + if(i != columns - 1) + stream << ','; + } + + progress.setValue(static_cast(++numRecordsCurrent)); + if(counter % 5000 == 0) + qApp->processEvents(); + counter++; + + if(progress.wasCanceled()) + { + sqlite3_finalize(stmt); + file.close(); + file.remove(); + QApplication::restoreOverrideCursor(); + return false; + } + } + if (counter > 0) stream << ");\n"; + } + sqlite3_finalize(stmt); + } + } + + // Finally export all objects other than tables + if(exportSchema) + { + for(const auto& obj : objMap) + { + const auto& it = obj.second; + + // Make sure it's not a table again + if(it->type() == sqlb::Object::Types::Table) + continue; + + // If this object is based on a table (e.g. is an index for that table) it depends on the existence of this table. + // So if we didn't export the base table this depends on, don't export this object either. + if(!it->baseTable().empty() && !contains(tablesToDump, it->baseTable())) + continue; + + // Write the SQL string used to create this object to the output file + if(!it->originalSql().empty()) + { + if(!keepOldSchema) + stream << QString("DROP %1 IF EXISTS %2;\n").arg( + QString::fromStdString(sqlb::Object::typeToString(it->type())).toUpper(), + QString::fromStdString(sqlb::escapeIdentifier(it->name()))); + + if(it->fullyParsed()) + stream << QString::fromStdString(it->sql("main", true)) << "\n"; + else + stream << QString::fromStdString(it->originalSql()) << ";\n"; + } + } + } + + // Done + stream << "COMMIT;\n"; + file.close(); + + QApplication::restoreOverrideCursor(); + qApp->processEvents(); + return true; + } + return false; +} + +// Callback for sqlite3_exec. It receives the user callback in the first parameter. Converts parameters +// to C++ classes and calls user callback. +int DBBrowserDB::callbackWrapper (void* callback, int numberColumns, char** values, char** columnNames) +{ + std::vector valuesList; + std::vector namesList; + + for (int i=0; i(callback)); + return userCallback(numberColumns, valuesList, namesList); +} + +bool DBBrowserDB::executeSQL(const std::string& statement, bool dirtyDB, bool logsql, execCallback callback) +{ + waitForDbRelease(); + if(!_db) + { + lastErrorMessage = tr("No database file opened"); + return false; + } + + if (dirtyDB) setSavepoint(); + if (logsql) logSQL(QString::fromStdString(statement), kLogMsg_App); + + char* errmsg; + if (SQLITE_OK == sqlite3_exec(_db, statement.c_str(), callback ? callbackWrapper : nullptr, &callback, &errmsg)) + { + // Update DB structure after executing an SQL statement. But try to avoid doing unnecessary updates. + if(!dontCheckForStructureUpdates && (starts_with_ci(statement, "ALTER") || + starts_with_ci(statement, "CREATE") || + starts_with_ci(statement, "DROP") || + starts_with_ci(statement, "ROLLBACK"))) + updateSchema(); + + return true; + } else { + lastErrorMessage = QString("%1 (%2)").arg(QString::fromUtf8(errmsg), QString::fromStdString(statement)); + qWarning() << "executeSQL: " << lastErrorMessage; + sqlite3_free(errmsg); + + return false; + } +} + +bool DBBrowserDB::executeMultiSQL(QByteArray query, bool dirty, bool log) +{ + waitForDbRelease(); + if(!_db) + { + lastErrorMessage = tr("No database file opened"); + return false; + } + + // Log the statement if needed + if(log) + logSQL(query, kLogMsg_App); + + // Show progress dialog + QProgressDialog progress(tr("Executing SQL..."), + tr("Cancel"), 0, 100); + progress.setWindowModality(Qt::ApplicationModal); + progress.show(); + + // Execute the statement by looping until SQLite stops giving back a tail string + sqlite3_stmt* vm; + const char *tail = query.constData(); + const char * const tail_start = tail; + const char * const tail_end = tail + query.size() + 1; + size_t total_tail_length = static_cast(tail_end - tail_start); + unsigned int line = 0; + bool structure_updated = false; + int last_progress_value = -1; + std::string savepoint_name; + while(tail && *tail != 0) + { + line++; + + // Update progress dialog, keep UI responsive. Make sure to not spend too much time updating the progress dialog in case there are many small statements. + int progress_value = static_cast(static_cast(tail - tail_start) / static_cast(total_tail_length) * 100.0f); + if(progress_value > last_progress_value) + { + progress.setValue(progress_value); + qApp->processEvents(); + if(progress.wasCanceled()) + { + lastErrorMessage = tr("Action cancelled."); + return false; + } + last_progress_value = progress_value; + } + + // Check next statement + { + // Ignore all whitespace at the start of the current tail + const char* tail_ptr = tail; + while(std::isspace(*tail_ptr)) + tail_ptr++; + + // Convert the first couple of bytes of the tail to a C++ string for easier handling. We only need the first 8 bytes (in cae it's a ROLLBACK + // statement), so no need to convert the entire tail. If the tail is less than 8 bytes long, make sure not to read past its end. + size_t length = std::min(static_cast(tail_end - tail + 1), static_cast(8)); + std::string next_statement(tail_ptr, length); + std::transform(next_statement.begin(), next_statement.end(), next_statement.begin(), ::toupper); + + // Check for transaction statements and skip until the next semicolon + if(next_statement.compare(0, 6, "COMMIT") == 0 || + next_statement.compare(0, 4, "END ") == 0 || + next_statement.compare(0, 6, "BEGIN ") == 0) + { + while(tail != tail_end) + { + if(*tail++ == ';') + break; + } + + // Set DB to dirty and create a restore point if we haven't done that yet + if(savepoint_name.empty()) + { + savepoint_name = generateSavepointName("execmultisql"); + setSavepoint(savepoint_name); + dirty = true; + } + + // Don't just execute next statement. Start next statement with the same checks + continue; + } + + // Check whether the DB structure is changed by this statement + if(!dontCheckForStructureUpdates && !structure_updated) + { + // Check if it's a modifying statement + if(next_statement.compare(0, 5, "ALTER") == 0 || + next_statement.compare(0, 6, "CREATE") == 0 || + next_statement.compare(0, 4, "DROP") == 0 || + next_statement.compare(0, 8, "ROLLBACK") == 0) + structure_updated = true; + } + } + + // Execute next statement + if(sqlite3_prepare_v2(_db, tail, static_cast(tail_end - tail + 1), &vm, &tail) == SQLITE_OK) + { + switch(sqlite3_step(vm)) + { + case SQLITE_OK: + case SQLITE_ROW: + case SQLITE_DONE: + case SQLITE_MISUSE: // This is a workaround around problematic user scripts. If they lead to empty commands, + // SQLite will return a misuse error which we hereby ignore. + sqlite3_finalize(vm); + break; + default: + // In case of *any* error abort the execution and roll back the transaction + + // Make sure to save the error message first before any other function can mess around with it + lastErrorMessage = tr("Error in statement #%1: %2.\nAborting execution%3.").arg( + QString::number(line), + sqlite3_errmsg(_db), + dirty ? tr(" and rolling back") : ""); + qWarning() << lastErrorMessage; + + // Clean up + sqlite3_finalize(vm); + if(dirty) + revertToSavepoint(savepoint_name); + return false; + } + } else { + lastErrorMessage = tr("Error in statement #%1: %2.\nAborting execution%3.").arg( + QString::number(line), + sqlite3_errmsg(_db), + dirty ? tr(" and rolling back") : ""); + qWarning() << lastErrorMessage; + if(dirty) + revertToSavepoint(savepoint_name); + return false; + } + } + + // If the DB structure was changed by some command in this SQL script, update our schema representations + if(structure_updated) + updateSchema(); + + // Exit + return true; +} + +QByteArray DBBrowserDB::querySingleValueFromDb(const std::string& sql, bool log, ChoiceOnUse choice) const +{ + waitForDbRelease(choice); + if(!_db) + return QByteArray(); + + if(log) + logSQL(QString::fromStdString(sql), kLogMsg_App); + + QByteArray retval; + + sqlite3_stmt* stmt; + if(sqlite3_prepare_v2(_db, sql.c_str(), static_cast(sql.size()), &stmt, nullptr) == SQLITE_OK) + { + // Execute the statement. We distinguish three types of results: + // SQLITE_ROW in case some data was returned from the database. This data is then used as a return value. + // SQLITE_DONE in case the statement executed successfully but did not return any data. We do nothing in this case, leaving the return value empty. + // Any other case is an error, so we need to prepare an error message. + int result = sqlite3_step(stmt); + if(result == SQLITE_ROW) + { + if(sqlite3_column_count(stmt) > 0 && sqlite3_column_type(stmt, 0) != SQLITE_NULL) + { + int bytes = sqlite3_column_bytes(stmt, 0); + if(bytes) + retval = QByteArray(static_cast(sqlite3_column_blob(stmt, 0)), bytes); + else + retval = ""; + } + } else if(result != SQLITE_DONE) { + lastErrorMessage = tr("didn't receive any output from %1").arg(QString::fromStdString(sql)); + qWarning() << lastErrorMessage; + } + + sqlite3_finalize(stmt); + } else { + lastErrorMessage = tr("could not execute command: %1").arg(sqlite3_errmsg(_db)); + qWarning() << lastErrorMessage; + } + + return retval; +} + +bool DBBrowserDB::getRow(const sqlb::ObjectIdentifier& table, const QString& rowid, std::vector& rowdata) const +{ + waitForDbRelease(); + if(!_db) + return false; + + std::string query = "SELECT * FROM " + table.toString() + " WHERE "; + + // For a single rowid column we can use a simple WHERE condition, for multiple rowid columns we have to use sqlb_make_single_value to decode the composed rowid values. + sqlb::StringVector pks = getObjectByName(table)->rowidColumns(); + if(pks.size() == 1) + query += sqlb::escapeIdentifier(pks.front()) + "='" + rowid.toStdString() + "'"; + else + query += "sqlb_make_single_value(" + sqlb::joinStringVector(sqlb::escapeIdentifier(pks), ",") + ")=" + sqlb::escapeString(rowid.toStdString()); + + sqlite3_stmt *stmt; + bool ret = false; + if(sqlite3_prepare_v2(_db, query.c_str(), static_cast(query.size()), &stmt, nullptr) == SQLITE_OK) + { + // even this is a while loop, the statement should always only return 1 row + while(sqlite3_step(stmt) == SQLITE_ROW) + { + for (int i = 0; i < sqlite3_column_count(stmt); ++i) + { + if(sqlite3_column_type(stmt, i) == SQLITE_NULL) + { + rowdata.emplace_back(); + } else { + int bytes = sqlite3_column_bytes(stmt, i); + if(bytes) + rowdata.emplace_back(static_cast(sqlite3_column_blob(stmt, i)), bytes); + else + rowdata.emplace_back(""); + } + } + ret = true; + } + } + sqlite3_finalize(stmt); + + return ret; +} + +unsigned long DBBrowserDB::max(const sqlb::ObjectIdentifier& tableName, const std::string& field) const +{ + std::string query = "SELECT MAX(CAST(" + sqlb::escapeIdentifier(field) + " AS INTEGER)) FROM " + tableName.toString(); + return querySingleValueFromDb(query).toULong(); +} + +std::string DBBrowserDB::emptyInsertStmt(const std::string& schemaName, const sqlb::Table& t, const QString& pk_value) const +{ + std::string stmt = "INSERT INTO " + sqlb::escapeIdentifier(schemaName) + "." + sqlb::escapeIdentifier(t.name()); + + sqlb::StringVector vals; + sqlb::StringVector fields; + for(const sqlb::Field& f : t.fields) + { + // Never insert into a generated column + if(!f.generated().empty()) + continue; + + sqlb::ConstraintPtr pk = t.constraint({f.name()}, sqlb::Constraint::PrimaryKeyConstraintType); + if(pk) + { + fields.push_back(f.name()); + + if(!pk_value.isNull()) + { + vals.push_back(f.isText()? "'" + pk_value.toStdString() + "'" : pk_value.toStdString()); + } else { + if(f.notnull()) + { + unsigned long maxval = this->max(sqlb::ObjectIdentifier(schemaName, t.name()), f.name()); + std::string newval = std::to_string(maxval + 1); + vals.push_back(f.isText()? "'" + newval + "'" : newval); + } else { + vals.push_back("NULL"); + } + } + } else if(f.notnull() && f.defaultValue().length() == 0) { + fields.push_back(f.name()); + + if(f.isInteger()) + vals.push_back("0"); + else + vals.push_back("''"); + } else { + // don't insert into fields with a default value + // or we will never see it. + if(f.defaultValue().length() == 0) + { + fields.push_back(f.name()); + vals.push_back("NULL"); + } + } + } + + if(fields.empty()) + { + stmt.append(" DEFAULT VALUES;"); + } else { + stmt.append("("); + stmt.append(sqlb::joinStringVector(sqlb::escapeIdentifier(fields), ",")); + stmt.append(") VALUES ("); + stmt.append(sqlb::joinStringVector(vals, ",")); + stmt.append(");"); + } + + return stmt; +} + +QString DBBrowserDB::addRecord(const sqlb::ObjectIdentifier& tablename) +{ + waitForDbRelease(); + if(!_db) + return QString(); + + sqlb::TablePtr table = getObjectByName(tablename); + if(!table) + return QString(); + + // For tables without rowid we have to set the primary key by ourselves. We do so by querying for the largest value in the PK column + // and adding one to it. + std::string sInsertstmt; + QString pk_value; + if(table->withoutRowidTable()) + { + // For multiple rowid columns we just use the value of the last one and increase that one by one. If this doesn't yield a valid combination + // the insert record dialog should pop up automatically. + pk_value = QString::number(max(tablename, table->rowidColumns().back()) + 1); + sInsertstmt = emptyInsertStmt(tablename.schema(), *table, pk_value); + } else { + sInsertstmt = emptyInsertStmt(tablename.schema(), *table); + } + + if(!executeSQL(sInsertstmt)) + { + qWarning() << "addRecord: " << lastErrorMessage; + return QString(); + } else { + if(table->withoutRowidTable()) + return pk_value; + else + return QString::number(sqlite3_last_insert_rowid(_db)); + } +} + +bool DBBrowserDB::deleteRecords(const sqlb::ObjectIdentifier& table, const std::vector& rowids, const sqlb::StringVector& pseudo_pk) +{ + if (!isOpen()) return false; + + // Get primary key of the object to edit. + sqlb::StringVector pks = primaryKeyForEditing(table, pseudo_pk); + if(pks.empty()) + { + lastErrorMessage = tr("Cannot delete this object"); + return false; + } + + // Quote all values in advance + std::vector quoted_rowids; + for(QString rowid : rowids) + quoted_rowids.push_back(sqlb::escapeString(rowid.toStdString())); + + // For a single rowid column we can use a SELECT ... IN(...) statement which is faster. + // For multiple rowid columns we have to use sqlb_make_single_value to decode the composed rowid values. + std::string statement; + if(pks.size() == 1) + { + statement = "DELETE FROM " + table.toString() + " WHERE " + pks.at(0) + " IN ("+ sqlb::joinStringVector(quoted_rowids, ", ") + ");"; + } else { + statement = "DELETE FROM " + table.toString() + " WHERE "; + + statement += "sqlb_make_single_value("; + for(const auto& pk : pks) + statement += sqlb::escapeIdentifier(pk) + ","; + statement.erase(statement.end()-1); + statement += ") IN (" + sqlb::joinStringVector(quoted_rowids, ", ") + ")"; + } + + if(executeSQL(statement)) + { + return true; + } else { + qWarning() << "deleteRecord: " << lastErrorMessage; + return false; + } +} + +bool DBBrowserDB::updateRecord(const sqlb::ObjectIdentifier& table, const std::string& column, + const QString& rowid, const QByteArray& value, int force_type, const sqlb::StringVector& pseudo_pk) +{ + waitForDbRelease(); + if (!isOpen()) return false; + + // Get primary key of the object to edit. + sqlb::StringVector pks = primaryKeyForEditing(table, pseudo_pk); + if(pks.empty()) + { + lastErrorMessage = tr("Cannot set data on this object"); + return false; + } + + std::string sql = "UPDATE " + table.toString() + " SET " + sqlb::escapeIdentifier(column) + "=? WHERE "; + + // For a single rowid column we can use a simple WHERE condition, for multiple rowid columns we have to use sqlb_make_single_value to decode the composed rowid values. + if(pks.size() == 1) + sql += sqlb::escapeIdentifier(pks.front()) + "=" + sqlb::escapeString(rowid.toStdString()); + else + sql += "sqlb_make_single_value(" + sqlb::joinStringVector(sqlb::escapeIdentifier(pks), ",") + ")=" + sqlb::escapeString(rowid.toStdString()); + + setSavepoint(); + logSQL(QString::fromStdString(sql), kLogMsg_App); + + // If we get a NULL QByteArray we insert a NULL value, and for that + // we can pass NULL to sqlite3_bind_text() so that it behaves like sqlite3_bind_null() + const char *rawValue = value.isNull() ? nullptr : value.constData(); + + sqlite3_stmt* stmt; + int success = 1; + if(sqlite3_prepare_v2(_db, sql.c_str(), static_cast(sql.size()), &stmt, nullptr) != SQLITE_OK) + success = 0; + if(success == 1) { + if(force_type == SQLITE_BLOB) + { + if(sqlite3_bind_blob(stmt, 1, rawValue, value.length(), SQLITE_STATIC)) + success = -1; + } else if(force_type == SQLITE_INTEGER) { + if(sqlite3_bind_int64(stmt, 1, value.toLongLong())) + success = -1; + } else if(force_type == SQLITE_FLOAT) { + if(sqlite3_bind_double(stmt, 1, value.toDouble())) + success = -1; + } else { + if(sqlite3_bind_text(stmt, 1, rawValue, value.length(), SQLITE_STATIC)) + success = -1; + } + } + if(success == 1 && sqlite3_step(stmt) != SQLITE_DONE) + success = -1; + if(success != 0 && sqlite3_finalize(stmt) != SQLITE_OK) + success = -1; + + if(success == 1) + { + return true; + } else { + lastErrorMessage = sqlite3_errmsg(_db); + qWarning() << "updateRecord: " << lastErrorMessage; + return false; + } +} + +sqlb::StringVector DBBrowserDB::primaryKeyForEditing(const sqlb::ObjectIdentifier& table, const sqlb::StringVector& pseudo_pk) const +{ + // This function returns the primary key of the object to edit. For views we support 'pseudo' primary keys which must be specified manually. + // If no pseudo pk is specified we'll take the rowid column of the table instead. If this neither a table nor was a pseudo-PK specified, + // it is most likely a view that hasn't been configured for editing yet. In this case we return a null string to abort. + + if(pseudo_pk.empty()) + { + sqlb::TablePtr tbl = getObjectByName(table); + if(tbl) + return tbl->rowidColumns(); + } else { + return pseudo_pk; + } + + return sqlb::StringVector(); +} + +bool DBBrowserDB::createTable(const sqlb::ObjectIdentifier& name, const sqlb::FieldVector& structure) +{ + // Build SQL statement + sqlb::Table table(name.name()); + for(size_t i=0;i(tablename); + if(old_table_ptr == nullptr) + { + lastErrorMessage = tr("No table with name '%1' exists in schema '%2'.").arg(QString::fromStdString(tablename.name()), QString::fromStdString(tablename.schema())); + return false; + } + sqlb::Table old_table(*old_table_ptr); + + // Check if tracked fields actually exist in the old table + for(const auto& old_it : track_columns) + { + if(!old_it.first.isNull() && sqlb::findField(old_table, old_it.first.toStdString()) == old_table.fields.end()) + { + lastErrorMessage = tr("Cannot find column %1.").arg(old_it.first); + return false; + } + } + + // Check if there are any columns in the old table which are not mentioned in the tracked columns list. + // We do this before checking if all tracked fields are in the new table to make sure the following check includes them. + for(const auto& field : old_table.fields) + { + if(track_columns.find(QString::fromStdString(field.name())) == track_columns.end()) + { + // If a field isn't tracked, add it to the list and indicate explicitly that it has the same name in the new table + track_columns[QString::fromStdString(field.name())] = QString::fromStdString(field.name()); + } + } + + // Check if tracked fields actually exist in the new table + for(const auto& new_name_it : track_columns) + { + if(!new_name_it.second.isNull() && sqlb::findField(new_table, new_name_it.second.toStdString()) == new_table.fields.end()) + { + lastErrorMessage = tr("Cannot find column %1.").arg(new_name_it.second); + return false; + } + } + + // Check if any changes were made to the table schema + if(old_table == new_table) + return true; + + // Create savepoint to be able to go back to it in case of any error + std::string savepointName = generateSavepointName("renamecolumn"); + if(!setSavepoint(savepointName)) + { + lastErrorMessage = tr("Creating savepoint failed. DB says: %1").arg(lastErrorMessage); + return false; + } + + // No automatic schema updates from now on + NoStructureUpdateChecks nup(*this); + + // + // P A R T 2 + // + + // This variable is used to track whether something was changed by this part of the function + bool changed_something = false; + + // Rename table if necessary + if(newSchemaName == tablename.schema() && tablename.name() != new_table.name()) + { + if(!renameTable(tablename.schema(), old_table.name(), new_table.name())) + { + revertToSavepoint(savepointName); + return false; + } + + changed_something = true; + } + + // Add columns if necessary + for(const auto& field : new_table.fields) + { + // We loop through all the fields of the new table schema and check for each of them if they are new. + // If so, we add that field. The reason for looping through the new table schema instead of the track_columns + // map is that this way we make sure to preserve their order which increases our chances that we are done after + // this step. + if(std::any_of(track_columns.begin(), track_columns.end(), [&field](const std::pair& p) { + return p.first.isNull() && p.second.toStdString() == field.name(); + })) + { + if(!addColumn(sqlb::ObjectIdentifier(tablename.schema(), new_table.name()), field)) + { + revertToSavepoint(savepointName); + return false; + } + } + + changed_something = true; + } + + // Newer versions of SQLite add a better ALTER TABLE support which we can use +#if SQLITE_VERSION_NUMBER >= 3025000 + // If the name of a field should be changed do that by using SQLite's ALTER TABLE feature. We build a new + // map for tracking column names here which uses the update column names as the old names too. This is to + // make sure we are using the new table layout for later updates. + AlterTableTrackColumns new_track_columns; + for(const auto& old_name_it : track_columns) + { + QString old_name = old_name_it.first; + + QString new_name = track_columns[old_name]; + if(!old_name.isNull() && !new_name.isNull() && new_name != old_name) + { + if(!executeSQL("ALTER TABLE " + sqlb::ObjectIdentifier(tablename.schema(), new_table.name()).toString() + " RENAME COLUMN " + + sqlb::escapeIdentifier(old_name.toStdString()) + " TO " + sqlb::escapeIdentifier(new_name.toStdString()))) + { + QString error(tr("Renaming the column failed. DB says:\n%1").arg(lastErrorMessage)); + revertToSavepoint(savepointName); + lastErrorMessage = error; + return false; + } + + changed_something = true; + new_track_columns.insert({new_name, new_name}); + } else { + new_track_columns.insert({old_name, new_name}); + } + } + track_columns.swap(new_track_columns); +#endif + + // Update our schema representation to get the new table and all the changed triggers, views and indices + if(changed_something) + { + updateSchema(); + old_table = *getObjectByName(sqlb::ObjectIdentifier(tablename.schema(), new_table.name())); + } + + // Check if there's still more work to be done or if we are finished now + if(tablename.schema() == newSchemaName && old_table == new_table) + { + // Release the savepoint - everything went fine + if(!releaseSavepoint(savepointName)) + { + lastErrorMessage = tr("Releasing savepoint failed. DB says: %1").arg(lastErrorMessage); + return false; + } + + // Success, update the DB schema before returning + updateSchema(); + return true; + } + + // + // P A R T 3 + // + + // Create a new table with the desired schema and a name that doesn't exist yet + std::string new_table_name = new_table.name(); + sqlb::Table new_table_with_random_name(new_table); + new_table_with_random_name.setName(generateTemporaryTableName(newSchemaName)); + if(!executeSQL(new_table_with_random_name.sql(newSchemaName), true, true)) + { + QString error(tr("Creating new table failed. DB says: %1").arg(lastErrorMessage)); + revertToSavepoint(savepointName); + lastErrorMessage = error; + return false; + } + + // Assemble list of column names to copy from in the old table and list of column names to into into in the new table + sqlb::StringVector copy_values_from; + sqlb::StringVector copy_values_to; + for(const auto& from_it : track_columns) + { + const auto& from = from_it.first; + + // Ignore new fields + if(from.isNull()) + continue; + + // Ignore deleted fields + QString to = track_columns[from]; + if(to.isNull()) + continue; + + copy_values_from.push_back(from.toStdString()); + copy_values_to.push_back(to.toStdString()); + } + + // Copy the data from the old table to the new one + if(!executeSQL("INSERT INTO " + sqlb::escapeIdentifier(newSchemaName) + "." + sqlb::escapeIdentifier(new_table_with_random_name.name()) + + " (" + sqlb::joinStringVector(sqlb::escapeIdentifier(copy_values_to), ",") + ") SELECT " + + sqlb::joinStringVector(sqlb::escapeIdentifier(copy_values_from), ",") + " FROM " + + sqlb::escapeIdentifier(tablename.schema()) + "." + sqlb::escapeIdentifier(old_table.name()))) + { + QString error(tr("Copying data to new table failed. DB says:\n%1").arg(lastErrorMessage)); + revertToSavepoint(savepointName); + lastErrorMessage = error; + return false; + } + + // Save all indices, triggers and views associated with this table because SQLite deletes them when we drop the table in the next step + std::vector otherObjectsSql; + for(const auto& schema : schemata[tablename.schema()]) + { + const auto& it = schema.second; + + // If this object references the table and it's not the table itself save it's SQL string + if(it->baseTable() == old_table.name() && it->type() != sqlb::Object::Types::Table) + { + // If this is an index, update the fields first. This highly increases the chance that the SQL statement won't throw an + // error later on when we try to recreate it. + if(it->type() == sqlb::Object::Types::Index) + { + sqlb::IndexPtr idx = std::dynamic_pointer_cast(it); + + // Loop through all changes to the table schema. For indices only the column names are relevant, so it suffices to look at the + // list of tracked columns + for(const auto& from_it : track_columns) + { + const auto& from = from_it.first; + const auto& to = from_it.second; + + // Are we updating the field name or are we removing the field entirely? + if(!to.isNull()) + { + // We're updating the field name. So search for it in the index and replace it whereever it is found + for(size_t i=0;ifields.size();i++) + { + if(idx->fields[i].name() == from.toStdString()) + idx->fields[i].setName(to.toStdString()); + } + } else { + // We're removing a field. So remove it from any indices, too. + while(sqlb::removeField(idx, from.toStdString())) + ; + } + } + + // Only try to add the index later if it has any columns remaining. Also use the new schema name here, too, to basically move + // any index that references the table to the same new schema as the table. + if(idx->fields.size()) + otherObjectsSql.push_back(idx->sql(newSchemaName)); + } else { + // If it's a view or a trigger we don't have any chance to corrections yet. Just store the statement as is and + // hope for the best. + otherObjectsSql.push_back(it->originalSql() + ";"); + } + } + } + + // We need to disable foreign keys here. The reason is that in the next step the entire table will be dropped and there might be foreign keys + // in other tables that reference this table. These foreign keys would then cause the drop command in the next step to fail. However, we can't + // simply disable foreign keys here since that is not allowed from inside a transaction and we definitely are inside a transaction at that point. + // So what we do instead is defer foreign key enforcement until the end of the transaction which effectively disables foreign keys for us here. + // But because we don't really want to defer foreign keys, the former value of that pragma is saved here in order to restore the old value later. + QString foreignKeysOldSettings = getPragma("defer_foreign_keys"); + setPragma("defer_foreign_keys", "1"); + + // Delete the old table + if(!executeSQL("DROP TABLE " + sqlb::escapeIdentifier(tablename.schema()) + "." + sqlb::escapeIdentifier(old_table.name()), true, true)) + { + QString error(tr("Deleting old table failed. DB says: %1").arg(lastErrorMessage)); + revertToSavepoint(savepointName); + lastErrorMessage = error; + return false; + } + + // Rename the temporary table + if(!renameTable(newSchemaName, new_table_with_random_name.name(), new_table.name())) + { + revertToSavepoint(savepointName); + return false; + } + + // Restore the former foreign key settings + setPragma("defer_foreign_keys", foreignKeysOldSettings); + + // Restore the saved triggers, views and indices + std::string errored_sqls; + for(const std::string& sql : otherObjectsSql) + { + if(!executeSQL(sql, true, true)) + errored_sqls += sql + "\n"; + } + if(!errored_sqls.empty()) + { + QMessageBox::information(nullptr, qApp->applicationName(), tr("Restoring some of the objects associated with this table failed. " + "This is most likely because some column names changed. " + "Here's the SQL statement which you might want to fix and execute manually:\n\n") + + QString::fromStdString(errored_sqls)); + } + + // Release the savepoint - everything went fine + if(!releaseSavepoint(savepointName)) + { + lastErrorMessage = tr("Releasing savepoint failed. DB says: %1").arg(lastErrorMessage); + return false; + } + + // Success, update the DB schema before returning + updateSchema(); + return true; +} + +bool DBBrowserDB::renameTable(const std::string& schema, const std::string& from_table, const std::string& to_table) +{ + // Do nothing if table names are the same + if(from_table == to_table) + return true; + + // Check if table names only differ in case. If they do, we have to rename the table twice because SQLite can't rename 'table' to 'Table'. + // To solve this we rename 'table' to 'some temp name' and then 'some temp name' to 'Table'. + if(compare_ci(from_table, to_table)) + { + // Generate a temporary table name and rename the table via that by recusrively calling this function + std::string temp_name = generateTemporaryTableName(schema); + if(!renameTable(schema, from_table, temp_name)) + return false; + if(!renameTable(schema, temp_name, to_table)) + return false; + + // Exit here + return true; + } + + // The old and the new table names differ (and that not only in case) + + // Rename the table + std::string sql = "ALTER TABLE " + sqlb::escapeIdentifier(schema) + "." + sqlb::escapeIdentifier(from_table) + " RENAME TO " + sqlb::escapeIdentifier(to_table); + if(!executeSQL(sql)) + { + QString error = tr("Error renaming table '%1' to '%2'.\n" + "Message from database engine:\n%3").arg(QString::fromStdString(from_table), QString::fromStdString(to_table), lastErrorMessage); + lastErrorMessage = error; + qWarning() << lastErrorMessage; + return false; + } else { + return true; + } +} + +void DBBrowserDB::logSQL(const QString& statement, LogMessageType msgtype) const +{ + // Remove any leading and trailing spaces, tabs, or line breaks first + emit sqlExecuted(statement.trimmed(), msgtype); +} + +void DBBrowserDB::updateSchema() +{ + waitForDbRelease(); + + schemata.clear(); + + // Exit here is no DB is opened + if(!isOpen()) + return; + + // Get a list of all databases. This list always includes the main and the temp database but can include more items if there are attached databases + if(!executeSQL("PRAGMA database_list;", false, true, [this](int, std::vector db_values, std::vector) -> bool { + // Get the schema name which is in column 1 (counting starts with 0). 0 contains an ID and 2 the file path. + const std::string schema_name = db_values.at(1).toStdString(); + + // Always add the schema to the map. This makes sure it's even then added when there are no objects in the database + schemata[schema_name] = objectMap(); + + // Get a list of all the tables for the current database schema. We need to do this differently for normal databases and the temporary schema + // because SQLite doesn't understand the "temp.sqlite_master" notation. + std::string statement; + if(schema_name == "temp") + statement = "SELECT type,name,sql,tbl_name FROM sqlite_temp_master;"; + else + statement = "SELECT type,name,sql,tbl_name FROM " + sqlb::escapeIdentifier(schema_name) + ".sqlite_master;"; + + if(!executeSQL(statement, false, true, [this, schema_name](int, std::vector values, std::vector) -> bool { + const std::string val_type = values.at(0).toStdString(); + const std::string val_name = values.at(1).toStdString(); + std::string val_sql = values.at(2).toStdString(); + const std::string val_tblname = values.at(3).toStdString(); + + if(!val_sql.empty()) + { + val_sql.erase(std::remove(val_sql.begin(), val_sql.end(), '\r'), val_sql.end()); + + sqlb::ObjectPtr object; + if(val_type == "table") + object = sqlb::Table::parseSQL(val_sql); + else if(val_type == "index") + object = sqlb::Index::parseSQL(val_sql); + else if(val_type == "trigger") + object = sqlb::Trigger::parseSQL(val_sql); + else if(val_type == "view") + object = sqlb::View::parseSQL(val_sql); + else + return false; + + // If parsing wasn't successful set the object name manually, so that at least the name is going to be correct + if(!object->fullyParsed()) + object->setName(val_name); + + // For virtual tables and views query the column list using the SQLite pragma because for both we can't yet rely on our grammar parser + if((object->type() == sqlb::Object::Types::Table && std::dynamic_pointer_cast(object)->isVirtual()) || object->type() == sqlb::Object::Types::View) + { + const auto columns = queryColumnInformation(schema_name, val_name); + + if(object->type() == sqlb::Object::Types::Table) + { + sqlb::TablePtr tab = std::dynamic_pointer_cast(object); + for(const auto& column : columns) + tab->fields.emplace_back(column.first, column.second); + } else { + sqlb::ViewPtr view = std::dynamic_pointer_cast(object); + for(const auto& column : columns) + view->fields.emplace_back(column.first, column.second); + } + } else if(object->type() == sqlb::Object::Types::Trigger) { + // For triggers set the name of the table the trigger operates on here because we don't have a parser for trigger statements yet. + sqlb::TriggerPtr trg = std::dynamic_pointer_cast(object); + trg->setTable(val_tblname); + } + + schemata[schema_name].insert({val_type, object}); + } + + return false; + })) + { + qWarning() << tr("could not get list of db objects: %1").arg(sqlite3_errmsg(_db)); + } + + return false; + })) + { + qWarning() << tr("could not get list of databases: %1").arg(sqlite3_errmsg(_db)); + } + + emit structureUpdated(); +} + +QString DBBrowserDB::getPragma(const std::string& pragma) const +{ + if (pragma=="case_sensitive_like") + return querySingleValueFromDb("SELECT 'x' NOT LIKE 'X';"); + else + return querySingleValueFromDb("PRAGMA " + pragma + ";"); +} + +bool DBBrowserDB::setPragma(const std::string& pragma, const QString& value) +{ + // Set the pragma value + std::string sql = "PRAGMA " + pragma + " = '" + value.toStdString() + "';"; + + // In general, we want to commit changes before running pragmas because most of them can't be rolled back and some of them + // even fail when run in a transaction. However, the defer_foreign_keys pragma has neither problem and we need it to be settable + // inside transactions (see the renameColumn() function where it is set and reset at some point and where we don't want the changes + // to be committed just because of this pragma). + if(pragma != "defer_foreign_keys") + releaseSavepoint(); + + bool res = executeSQL(sql, false, true); // PRAGMA statements are usually not transaction bound, so we can't revert + if( !res ) + qWarning() << tr("Error setting pragma %1 to %2: %3").arg(QString::fromStdString(pragma), value, lastErrorMessage); + + // If this is the page_size or the auto_vacuum pragma being set, we need to execute the vacuum command right after the pragma statement or the new + // settings won't be saved. + if(res && (pragma == "page_size" || pragma == "auto_vacuum")) + res = executeSQL("VACUUM;", false, true); + + return res; +} + +bool DBBrowserDB::setPragma(const std::string& pragma, const QString& value, QString& originalvalue) +{ + if( originalvalue != value ) + { + if( setPragma(pragma, value)) + { + originalvalue = value; + return true; + } + } + return false; +} + +bool DBBrowserDB::setPragma(const std::string& pragma, int value, int& originalvalue) +{ + if( originalvalue != value ) + { + QString val = QString::number(value); + QString origval = QString::number(originalvalue); + if( setPragma(pragma, val, origval)) + { + originalvalue = value; + } + } + return false; +} + +bool DBBrowserDB::loadExtension(const QString& filePath) +{ + waitForDbRelease(); + if(!_db) + return false; + + // Check if file exists + if(!QFile::exists(filePath)) + { + lastErrorMessage = tr("File not found."); + return false; + } + + // Enable extension loading + sqlite3_enable_load_extension(_db, 1); + + // Try to load extension + char* error; + int result = sqlite3_load_extension(_db, filePath.toUtf8(), nullptr, &error); + + // Disable extension loading if so configured + // (we don't want to leave the possibility of calling load_extension() from SQL without user informed permission) + if (!Settings::getValue("extensions", "enable_load_extension").toBool()) + sqlite3_enable_load_extension(_db, 0); + + if (result == SQLITE_OK) + { + return true; + } else { + lastErrorMessage = QString::fromUtf8(error); + sqlite3_free(error); + return false; + } +} + + +void DBBrowserDB::loadExtensionsFromSettings() +{ + if(!_db) + return; + + sqlite3_enable_load_extension(_db, Settings::getValue("extensions", "enable_load_extension").toBool()); + + QStringList list = Settings::getValue("extensions", "list").toStringList(); + for(const QString& ext : list) + { + if(loadExtension(ext) == false) + QMessageBox::warning(nullptr, QApplication::applicationName(), tr("Error loading extension: %1").arg(lastError())); + } +} + +std::vector> DBBrowserDB::queryColumnInformation(const std::string& schema_name, const std::string& object_name) const +{ + waitForDbRelease(); + + std::vector> result; + std::string statement = "PRAGMA " + sqlb::escapeIdentifier(schema_name) + ".TABLE_INFO(" + sqlb::escapeIdentifier(object_name) + ");"; + logSQL(QString::fromStdString(statement), kLogMsg_App); + + sqlite3_stmt* vm; + const char* tail; + if(sqlite3_prepare_v2(_db, statement.c_str(), static_cast(statement.size()), &vm, &tail) == SQLITE_OK) + { + while(sqlite3_step(vm) == SQLITE_ROW) + { + std::string name = reinterpret_cast(sqlite3_column_text(vm, 1)); + std::string type = reinterpret_cast(sqlite3_column_text(vm, 2)); + + result.push_back(std::make_pair(name, type)); + } + sqlite3_finalize(vm); + } else{ + lastErrorMessage = tr("could not get column information"); + } + + return result; +} + +std::string DBBrowserDB::generateSavepointName(const std::string& identifier) const +{ + // Generate some sort of unique name for a savepoint for internal use. + return "db4s_" + identifier + "_" + std::to_string(std::chrono::system_clock::now().time_since_epoch().count()); +} + +std::string DBBrowserDB::generateTemporaryTableName(const std::string& schema) const +{ + // We're using a static variable as a counter here instead of checking from the beginning onwards every time. This has + // two reasons: 1) It makes the function thread-safe, and 2) it saves us some time because in case older temporary tables + // are still in use. Both reasons don't matter too much for now, but just in case... + static std::atomic_uint counter; + + while(true) + { + std::string table_name = "sqlb_temp_table_" + std::to_string(++counter); + if(!getObjectByName(sqlb::ObjectIdentifier(schema, table_name))) + return table_name; + } +} + +void DBBrowserDB::interruptQuery() +{ + if(!_db) + return; + + sqlite3_interrupt(_db); +} diff --git a/src/SqliteDBProcess/src/sqlitedb.h b/src/SqliteDBProcess/src/sqlitedb.h new file mode 100644 index 0000000..ff99157 --- /dev/null +++ b/src/SqliteDBProcess/src/sqlitedb.h @@ -0,0 +1,292 @@ +#ifndef SQLITEDB_H +#define SQLITEDB_H +#include "WBFZExchangePluginAPI.h" +#include "sql/ObjectIdentifier.h" +#include "sql/sqlitetypes.h" + +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +struct sqlite3; +class CipherSettings; + +enum LogMessageType +{ + kLogMsg_User, + kLogMsg_App, + kLogMsg_ErrorLog +}; + +using objectMap = std::multimap; // Maps from object type (table, index, view, trigger) to a pointer to the object representation +using schemaMap = std::map; // Maps from the schema name (main, temp, attached schemas) to the object map for that schema + +int collCompare(void* pArg, int sizeA, const void* sA, int sizeB, const void* sB); + +namespace sqlb +{ +QString escapeIdentifier(const QString& id); +QString escapeString(const QString& literal); +} + +/// represents a single SQLite database. except when noted otherwise, +/// all member functions are to be called from the main UI thread +/// only. +class DBBrowserDB : public QObject +{ + Q_OBJECT + +private: + /// custom unique_ptr deleter releases database for further use by others + struct DatabaseReleaser + { + explicit DatabaseReleaser(DBBrowserDB * pParent_ = nullptr) : pParent(pParent_) {} + + DBBrowserDB * pParent; + + void operator() (sqlite3 * db) const + { + if(!db || !pParent) + return; + + std::unique_lock lk(pParent->m); + pParent->db_used = false; + lk.unlock(); + emit pParent->databaseInUseChanged(false, QString()); + pParent->cv.notify_one(); + } + }; + +public: + + explicit DBBrowserDB(); + ~DBBrowserDB () override = default; + + bool open(const QString& db, bool readOnly = false); + bool attach(const QString& filename, QString attach_as = QString()); + bool create ( const QString & db); + bool close(); + + // This returns the SQLite version as well as the SQLCipher if DB4S is compiled with encryption support + static void getSqliteVersion(QString& sqlite, QString& sqlcipher); + + using db_pointer_type = std::unique_ptr; + + /** + borrow exclusive address to the currently open database, until + releasing the returned unique_ptr. + + the intended use case is that the main UI thread can call this + any time, and then optionally pass the obtained pointer to a + background worker, or release it after doing work immediately. + + if database is currently used by somebody else, opens a dialog + box and gives user the opportunity to sqlite3_interrupt() the + operation of the current owner, then tries again. + + \param user a string that identifies the new user, and which + can be displayed in the dialog box. + + \param force_wait if set to true we won't ask the user to cancel + the running query but just wait until it is done. + + \returns a unique_ptr containing the SQLite database handle, or + nullptr in case no database is open. + **/ + db_pointer_type get (const QString& user, bool force_wait = false); + + bool setSavepoint(const std::string& pointname = "RESTOREPOINT"); + bool releaseSavepoint(const std::string& pointname = "RESTOREPOINT"); + bool revertToSavepoint(const std::string& pointname = "RESTOREPOINT"); + bool releaseAllSavepoints(); + bool revertAll(); + + bool dump(const QString& filename, const std::vector& tablesToDump, bool insertColNames, bool insertNew, bool exportSchema, bool exportData, bool keepOldSchema) const; + + enum ChoiceOnUse + { + Ask, + Wait, + CancelOther + }; + // Callback to get results from executeSQL(). It is invoked for + // each result row coming out of the evaluated SQL statements. If + // a callback returns true (abort), the executeSQL() method + // returns false (error) without invoking the callback again and + // without running any subsequent SQL statements. The 1st argument + // is the number of columns in the result. The 2nd argument to the + // callback is the text representation of the values, one for each + // column. The 3rd argument is a list of strings where each entry + // represents the name of corresponding result column. + using execCallback = std::function, std::vector)>; + bool executeSQL(const std::string& statement, bool dirtyDB = true, bool logsql = true, execCallback callback = nullptr); + bool executeMultiSQL(QByteArray query, bool dirty = true, bool log = false); + QByteArray querySingleValueFromDb(const std::string& sql, bool log = true, ChoiceOnUse choice = Ask) const; + + const QString& lastError() const { return lastErrorMessage; } + + /** + * @brief getRow Executes a sqlite statement to get the rowdata(columns) + * for the given rowid. + * @param schemaName Name of the database schema. + * @param sTableName Table to query. + * @param rowid The rowid to fetch. + * @param rowdata A list of QByteArray containing the row data. + * @return true if statement execution was ok, else false. + */ + bool getRow(const sqlb::ObjectIdentifier& table, const QString& rowid, std::vector& rowdata) const; + + /** + * @brief Interrupts the currenty running statement as soon as possible. + */ + void interruptQuery(); + +private: + /** + * @brief max Queries the table t for the max value of field. + * @param tableName Table to query + * @param field Name of the field to get the max value + * @return the max value of the field or 0 on error + */ + unsigned long max(const sqlb::ObjectIdentifier& tableName, const std::string& field) const; + + static int callbackWrapper (void* callback, int numberColumns, char** values, char** columnNames); + +public: + void updateSchema(); // Please don't call this from threads other than the main thread. + +private: + /** + * @brief Creates an empty insert statement. + * @param schemaName The name of the database schema in which to find the table + * @param pk_value This optional parameter can be used to manually set a specific value for the primary key column + * @return An sqlite conform INSERT INTO statement with empty values. (NULL,'',0) + */ + std::string emptyInsertStmt(const std::string& schemaName, const sqlb::Table& t, const QString& pk_value = QString()) const; + +public: + QString addRecord(const sqlb::ObjectIdentifier& tablename); + bool deleteRecords(const sqlb::ObjectIdentifier& table, const std::vector& rowids, const sqlb::StringVector& pseudo_pk = {}); + bool updateRecord(const sqlb::ObjectIdentifier& table, const std::string& column, const QString& rowid, const QByteArray& value, int force_type = 0, const sqlb::StringVector& pseudo_pk = {}); + + bool createTable(const sqlb::ObjectIdentifier& name, const sqlb::FieldVector& structure); + bool renameTable(const std::string& schema, const std::string& from_table, const std::string& to_table); + bool addColumn(const sqlb::ObjectIdentifier& tablename, const sqlb::Field& field); + + /** + * @brief This type maps from old column names to new column names. Given the old and the new table definition, this suffices to + * track fields between the two. + * USE CASES: + * 1) Don't specify a column at all or specify equal column names: Keep its name as-is. + * 2) Specify different column names: Rename the field. + * 3) Map from an existing column name to a Null string: Delete the column. + * 4) Map from a Null column name to a new column name: Add the column. + */ + using AlterTableTrackColumns = std::map; + + /** + * @brief alterTable Can be used to rename, modify or drop existing columns of a given table + * @param tablename Specifies the schema and name of the table to edit + * @param new_table Specifies the new table schema. This is exactly how the new table is going to look like. + * @param track_columns Maps old column names to new column names. This is used to copy the data from the old table to the new one. + * @param newSchema Set this to a non-empty string to move the table to a new schema + * @return true if renaming was successful, false if not. In the latter case also lastErrorMessage is set + */ + bool alterTable(const sqlb::ObjectIdentifier& tablename, const sqlb::Table& new_table, AlterTableTrackColumns track_columns, std::string newSchemaName = std::string()); + + template + const std::shared_ptr getObjectByName(const sqlb::ObjectIdentifier& name) const + { + for(auto& it : schemata.at(name.schema())) + { + if(it.second->name() == name.name()) + return std::dynamic_pointer_cast(it.second); + } + return std::shared_ptr(); + } + + bool isOpen() const; + bool encrypted() const { return isEncrypted; } + bool readOnly() const { return isReadOnly; } + bool getDirty() const; + QString currentFile() const { return curDBFilename; } + + /// log an SQL statement [thread-safe] + void logSQL(const QString& statement, LogMessageType msgtype) const; + + QString getPragma(const std::string& pragma) const; + bool setPragma(const std::string& pragma, const QString& value); + bool setPragma(const std::string& pragma, const QString& value, QString& originalvalue); + bool setPragma(const std::string& pragma, int value, int& originalvalue); + + bool loadExtension(const QString& filename); + void loadExtensionsFromSettings(); + + static QStringList Datatypes; + +private: + std::vector > queryColumnInformation(const std::string& schema_name, const std::string& object_name) const; + +public: + std::string generateSavepointName(const std::string& identifier = std::string()) const; + + // This function generates the name for a temporary table. It guarantees that there is no table with this name yet + std::string generateTemporaryTableName(const std::string& schema) const; + + schemaMap schemata; + +signals: + void sqlExecuted(QString sql, int msgtype) const; + void dbChanged(bool dirty); + void structureUpdated(); + void requestCollation(QString name, int eTextRep); + void databaseInUseChanged(bool busy, QString user); + +private: + /// external code needs to go through get() to obtain access to the database + sqlite3 * _db; + mutable std::mutex m; + mutable std::condition_variable cv; + bool db_used; + QString db_user; + + /// wait for release of the DB locked through a previous get(), + /// giving users the option to discard running task through a + /// message box. + void waitForDbRelease(ChoiceOnUse choice = Ask) const; + + QString curDBFilename; + mutable QString lastErrorMessage; + std::vector savepointList; + bool isEncrypted; + bool isReadOnly; + + sqlb::StringVector primaryKeyForEditing(const sqlb::ObjectIdentifier& table, const sqlb::StringVector& pseudo_pk) const; + + // SQLite Callbacks + void collationNeeded(void* pData, sqlite3* db, int eTextRep, const char* sCollationName); + void errorLogCallback(void* user_data, int error_code, const char* message); + + bool tryEncryptionSettings(const QString& filename, bool* encrypted, CipherSettings*& cipherSettings) const; + + bool dontCheckForStructureUpdates; + + class NoStructureUpdateChecks + { + public: + explicit NoStructureUpdateChecks(DBBrowserDB& db) : m_db(db) { m_db.dontCheckForStructureUpdates = true; } + ~NoStructureUpdateChecks() { m_db.dontCheckForStructureUpdates = false; } + + private: + DBBrowserDB& m_db; + }; +}; + +#endif diff --git a/src/SqliteDBProcess/src/sqlitetablemodel.cpp b/src/SqliteDBProcess/src/sqlitetablemodel.cpp new file mode 100644 index 0000000..524bad0 --- /dev/null +++ b/src/SqliteDBProcess/src/sqlitetablemodel.cpp @@ -0,0 +1,1193 @@ +#include "sqlitetablemodel.h" +#include "sqlitedb.h" +#include "sqlite.h" +#include "Settings.h" +#include "Data.h" +#include "CondFormat.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include "RowLoader.h" + +using json = nlohmann::json; + +SqliteTableModel::SqliteTableModel(DBBrowserDB& db, QObject* parent, const QString& encoding) + : QAbstractTableModel(parent) + , m_db(db) + , m_lifeCounter(0) + , m_currentRowCount(0) + , m_encoding(encoding) +{ + // Load initial settings first + reloadSettings(); + + worker = new RowLoader( + [this](){ return m_db.get(tr("reading rows")); }, + [this](QString stmt){ return m_db.logSQL(stmt, kLogMsg_App); }, + m_headers, m_mutexDataCache, m_cache + ); + + worker->start(); + + // any UI updates must be performed in the UI thread, not in the worker thread: + connect(worker, &RowLoader::fetched, this, &SqliteTableModel::handleFinishedFetch, Qt::QueuedConnection); + connect(worker, &RowLoader::rowCountComplete, this, &SqliteTableModel::handleRowCountComplete, Qt::QueuedConnection); + + reset(); +} + +SqliteTableModel::~SqliteTableModel() +{ + worker->stop(); + worker->wait(); + worker->disconnect(); + delete worker; +} + +SqliteTableModel::RowCount SqliteTableModel::rowCountAvailable () const +{ + return m_rowCountAvailable; +} + +void SqliteTableModel::handleFinishedFetch (int life_id, unsigned int fetched_row_begin, unsigned int fetched_row_end) +{ + if(life_id < m_lifeCounter) + return; + + Q_ASSERT(fetched_row_end >= fetched_row_begin); + + auto old_row_count = m_currentRowCount; + + auto new_row_count = std::max(old_row_count, fetched_row_begin); + new_row_count = std::max(new_row_count, fetched_row_end); + Q_ASSERT(new_row_count >= old_row_count); + + if(new_row_count != old_row_count) + { + beginInsertRows(QModelIndex(), static_cast(old_row_count), static_cast(new_row_count - 1)); + m_currentRowCount = new_row_count; + endInsertRows(); + } + + if(fetched_row_end != fetched_row_begin) + { + // TODO optimize + size_t num_columns = m_headers.size(); + emit dataChanged(createIndex(static_cast(fetched_row_begin), 0), createIndex(static_cast(fetched_row_end) - 1, static_cast(num_columns) - 1)); + } + + if(m_rowCountAvailable != RowCount::Complete) + m_rowCountAvailable = RowCount::Partial; + + emit finishedFetch(static_cast(fetched_row_begin), static_cast(fetched_row_end)); +} + +void SqliteTableModel::handleRowCountComplete (int life_id, int num_rows) +{ + if(life_id < m_lifeCounter) + return; + + m_rowCountAvailable = RowCount::Complete; + handleFinishedFetch(life_id, static_cast(num_rows), static_cast(num_rows)); + + emit finishedRowCount(); +} + +void SqliteTableModel::reset() +{ + beginResetModel(); + clearCache(); + + m_sQuery.clear(); + m_query.clear(); + m_table_of_query.reset(); + m_headers.clear(); + m_vDataTypes.clear(); + m_mCondFormats.clear(); + m_mRowIdFormats.clear(); + + endResetModel(); +} + +void SqliteTableModel::setQuery(const sqlb::Query& query) +{ + // Unset all previous settings. When setting a table all information on the previously browsed data set is removed first. + reset(); + + // Save the query + m_query = query; + m_table_of_query = m_db.getObjectByName(query.table()); + + // The first column is the rowid column and therefore is always of type integer + m_vDataTypes.emplace_back(SQLITE_INTEGER); + + // Get the data types of all other columns as well as the column names + if(m_table_of_query && m_table_of_query->fields.size()) // It is a table and parsing was OK + { + sqlb::StringVector rowids = m_table_of_query->rowidColumns(); + m_query.setRowIdColumns(rowids); + m_headers.push_back(sqlb::joinStringVector(rowids, ",")); + + // Store field names and affinity data types + for(const sqlb::Field& fld : m_table_of_query->fields) + { + m_headers.push_back(fld.name()); + m_vDataTypes.push_back(fld.affinity()); + } + } else { + // If for one reason or another (either it's a view or we couldn't parse the table statement) we couldn't get the field + // information we retrieve it from SQLite using an extra query. + // NOTE: It would be nice to eventually get rid of this piece here. As soon as the grammar parser is good enough... + + std::string sColumnQuery = "SELECT * FROM " + query.table().toString() + ";"; + if(m_query.rowIdColumns().empty()) + m_query.setRowIdColumn("_rowid_"); + m_headers.emplace_back("_rowid_"); + auto columns = getColumns(nullptr, sColumnQuery, m_vDataTypes); + m_headers.insert(m_headers.end(), columns.begin(), columns.end()); + } + + // Tell the query object about the column names + m_query.setColumNames(m_headers); + + // Apply new query and update view + buildQuery(); +} + +void SqliteTableModel::setQuery(const QString& sQuery, const QString& sCountQuery, bool dontClearHeaders) +{ + // clear + if(!dontClearHeaders) + reset(); + else + clearCache(); + + if(!m_db.isOpen()) + return; + + m_sQuery = sQuery.trimmed(); + removeCommentsFromQuery(m_sQuery); + + worker->setQuery(m_sQuery, sCountQuery); + worker->triggerRowCountDetermination(m_lifeCounter); + + if(!dontClearHeaders) + { + auto columns = getColumns(worker->getDb(), sQuery.toStdString(), m_vDataTypes); + m_headers.insert(m_headers.end(), columns.begin(), columns.end()); + } + + // now fetch the first entries + triggerCacheLoad(static_cast(m_chunkSize / 2) - 1); + + emit layoutChanged(); +} + +int SqliteTableModel::rowCount(const QModelIndex&) const +{ + return static_cast(m_currentRowCount); +} + +int SqliteTableModel::columnCount(const QModelIndex&) const +{ + return static_cast(m_headers.size()); +} + +size_t SqliteTableModel::filterCount() const +{ + return m_query.where().size(); +} + +// Convert a number to string using the Unicode superscript characters +template +static QString toSuperScript(T number) +{ + QString superScript = QString::number(number); + superScript.replace("0", "?"); + superScript.replace("1", "?"); + superScript.replace("2", "?"); + superScript.replace("3", "?"); + superScript.replace("4", "?"); + superScript.replace("5", "?"); + superScript.replace("6", "?"); + superScript.replace("7", "?"); + superScript.replace("8", "?"); + superScript.replace("9", "?"); + return superScript; +} + +QVariant SqliteTableModel::headerData(int section, Qt::Orientation orientation, int role) const +{ + if (role != Qt::DisplayRole && role != Qt::EditRole) + return QVariant(); + + if (orientation == Qt::Horizontal) + { + // if we have a VIRTUAL table the model will not be valid, with no header data + if(static_cast(section) < m_headers.size()) { + const QString plainHeader = QString::fromStdString(m_headers.at(static_cast(section))); + // In the edit role, return a plain column name, but in the display role, add the sort indicator. + if (role == Qt::EditRole) + return plainHeader; + else { + QString sortIndicator; + for(size_t i = 0; i < m_query.orderBy().size(); i++) { + const sqlb::SortedColumn sortedColumn = m_query.orderBy()[i]; + // Append sort indicator with direction and ordinal number in superscript style + if (sortedColumn.column == static_cast(section)) { + sortIndicator = sortedColumn.direction == sqlb::Ascending ? " ?" : " ?"; + sortIndicator.append(toSuperScript(i+1)); + break; + } + } + return plainHeader + sortIndicator; + } + } + return QString::number(section + 1); + } + else + return QString::number(section + 1); +} + +QVariant SqliteTableModel::getMatchingCondFormat(const std::map>& mCondFormats, size_t column, const QString& value, int role) const +{ + if (!mCondFormats.count(column)) + return QVariant(); + + bool isNumber; + value.toDouble(&isNumber); + std::string sql; + + // For each conditional format for this column, + // if the condition matches the current data, return the associated format. + for (const CondFormat& eachCondFormat : mCondFormats.at(column)) { + if (isNumber && !contains(eachCondFormat.sqlCondition(), '\'')) + sql = "SELECT " + value.toStdString() + " " + eachCondFormat.sqlCondition(); + else + sql = "SELECT " + sqlb::escapeString(value.toStdString()) + " " + eachCondFormat.sqlCondition(); + + // Empty filter means: apply format to any row. + // Query the DB for the condition, waiting in case there is a loading in progress. + if (eachCondFormat.filter().isEmpty() || m_db.querySingleValueFromDb(sql, false, DBBrowserDB::Wait) == "1") + switch (role) { + case Qt::ForegroundRole: + return eachCondFormat.foregroundColor(); + case Qt::BackgroundRole: + return eachCondFormat.backgroundColor(); + case Qt::FontRole: + return eachCondFormat.font(); + case Qt::TextAlignmentRole: + return static_cast(eachCondFormat.alignmentFlag() | Qt::AlignVCenter); + } + } + return QVariant(); +} + +QVariant SqliteTableModel::getMatchingCondFormat(size_t row, size_t column, const QString& value, int role) const +{ + QVariant format; + // Check first for a row-id format and when there is none, for a conditional format. + if (m_mRowIdFormats.count(column)) + { + std::unique_lock lock(m_mutexDataCache); + const bool row_available = m_cache.count(row); + const QByteArray blank_data(""); + const QByteArray& row_id_data = row_available ? m_cache.at(row).at(0) : blank_data; + lock.unlock(); + + format = getMatchingCondFormat(m_mRowIdFormats, column, row_id_data, role); + if (format.isValid()) + return format; + } + if (m_mCondFormats.count(column)) + return getMatchingCondFormat(m_mCondFormats, column, value, role); + else + return QVariant(); +} + +QVariant SqliteTableModel::data(const QModelIndex &index, int role) const +{ + if (!index.isValid()) + return QVariant(); + + if (index.row() >= rowCount()) + return QVariant(); + + std::unique_lock lock(m_mutexDataCache); + + const size_t row = static_cast(index.row()); + const size_t column = static_cast(index.column()); + + const bool row_available = m_cache.count(row); + const QByteArray blank_data(""); + const QByteArray& data = row_available ? m_cache.at(row).at(column) : blank_data; + + if(role == Qt::DisplayRole) + { + if(!row_available) + return tr("loading..."); + if(data.isNull()) + { + return m_nullText; + } else if(isBinary(data)) { + return m_blobText; + } else { + if (data.length() > m_symbolLimit) { + // Add "..." to the end of truncated strings + return decode(data.left(m_symbolLimit).append(" ...")); + } else { + return decode(data); + } + } + } else if(role == Qt::EditRole) { + if(!row_available) + return QVariant(); + return decode(data); + } else if(role == Qt::FontRole) { + QFont font = m_font; + if(!row_available || data.isNull() || isBinary(data)) + font.setItalic(true); + else { + // Unlock before querying from DB + lock.unlock(); + QVariant condFormatFont = getMatchingCondFormat(row, column, data, role); + if (condFormatFont.isValid()) + return condFormatFont; + } + return font; + } else if(role == Qt::ForegroundRole) { + if(!row_available) + return QColor(100, 100, 100); + if(data.isNull()) + return m_nullFgColour; + else if (isBinary(data)) + return m_binFgColour; + else { + // Unlock before querying from DB + lock.unlock(); + QVariant condFormatColor = getMatchingCondFormat(row, column, data, role); + if (condFormatColor.isValid()) + return condFormatColor; + } + // Regular case (not null, not binary and no matching conditional format) + return m_regFgColour; + } else if (role == Qt::BackgroundRole) { + if(!row_available) + return QColor(255, 200, 200); + if(data.isNull()) + return m_nullBgColour; + else if (isBinary(data)) + return m_binBgColour; + else { + // Unlock before querying from DB + lock.unlock(); + QVariant condFormatColor = getMatchingCondFormat(row, column, data, role); + if (condFormatColor.isValid()) + return condFormatColor; + } + // Regular case (not null, not binary and no matching conditional format) + return m_regBgColour; + } else if(role == Qt::ToolTipRole) { + sqlb::ForeignKeyClause fk = getForeignKeyClause(column-1); + if(fk.isSet()) + return tr("References %1(%2)\nHold %3Shift and click to jump there").arg( + QString::fromStdString(fk.table()), + QString::fromStdString(sqlb::joinStringVector(fk.columns(), ",")), + QKeySequence(Qt::CTRL).toString(QKeySequence::NativeText)); + } else if (role == Qt::TextAlignmentRole) { + // Align horizontally according to conditional format or default (left for text and right for numbers) + // Align vertically to the center, which displays better. + lock.unlock(); + QVariant condFormat = getMatchingCondFormat(row, column, data, role); + if (condFormat.isValid()) + return condFormat; + bool isNumber = m_vDataTypes.at(column) == SQLITE_INTEGER || m_vDataTypes.at(column) == SQLITE_FLOAT; + return static_cast((isNumber ? Qt::AlignRight : Qt::AlignLeft) | Qt::AlignVCenter); + } else if(role == Qt::DecorationRole) { + if(!row_available) + return QVariant(); + + if(m_imagePreviewEnabled && !isImageData(data).isNull()) + { + QImage img; + if(img.loadFromData(data)) + return QPixmap::fromImage(img); + } + } + + + return QVariant(); +} + +sqlb::ForeignKeyClause SqliteTableModel::getForeignKeyClause(size_t column) const +{ + static const sqlb::ForeignKeyClause empty_foreign_key_clause; + + // No foreign keys when not browsing a table. This usually happens when executing custom SQL statements + // and browsing the result set instead of browsing an entire table. + if(m_query.table().isEmpty()) + return empty_foreign_key_clause; + + // Check if database object is a table. If it isn't stop here and don't return a foreign key. + // This happens for views which don't have foreign keys (though we might want to think about + // how we can check for foreign keys in the underlying tables for some purposes like tool tips). + // If it is a table, heck if the column number is in the valid range. + if(m_table_of_query && m_table_of_query->name().size() && column < m_table_of_query->fields.size()) + { + // Note that the rowid column has number -1 here, it can safely be excluded since there will never be a + // foreign key on that column. + + sqlb::ConstraintPtr ptr = m_table_of_query->constraint({m_table_of_query->fields.at(column).name()}, sqlb::Constraint::ForeignKeyConstraintType); + if(ptr) + return *(std::dynamic_pointer_cast(ptr)); + } + + return empty_foreign_key_clause; +} + +bool SqliteTableModel::setData(const QModelIndex& index, const QVariant& value, int role) +{ + // Don't even try setting any data if we're not browsing a table, i.e. the model data comes from a custom query + if(!isEditable(index)) + return false; + + // This function is for in-place editing. + // So, BLOB flag is false every times. + return setTypedData(index, false, value, role); +} + +bool SqliteTableModel::setTypedData(const QModelIndex& index, bool isBlob, const QVariant& value, int role) +{ + if(readingData()) { + // can't insert rows while reading data in background + return false; + } + + if(index.isValid() && role == Qt::EditRole) + { + std::unique_lock lock(m_mutexDataCache); + + auto & cached_row = m_cache.at(static_cast(index.row())); + const size_t column = static_cast(index.column()); + + QByteArray newValue = encode(value.toByteArray()); + QByteArray oldValue = cached_row.at(column); + + // Special handling for integer columns: instead of setting an integer column to an empty string, set it to '0' when it is also + // used in a primary key. Otherwise SQLite will always output an 'datatype mismatch' error. + if(newValue == "" && !newValue.isNull()) + { + if(m_table_of_query) + { + auto field = sqlb::findField(m_table_of_query, m_headers.at(column)); + const auto pk = m_table_of_query->primaryKey(); + if(pk && contains(pk->columnList(), field->name()) && field->isInteger()) + newValue = "0"; + } + } + + // Don't do anything if the data hasn't changed + // To differentiate NULL and empty byte arrays, we also compare the NULL flag + if(oldValue == newValue && oldValue.isNull() == newValue.isNull()) + return true; + + // Determine type. If the BLOB flag is set, it's always BLOB. If the affinity data type of the modified column is something numeric, + // we check if the new value is also numeric. In that case we can safely set the data type to INTEGER or FLOAT. In all other cases we + // default to TEXT. + int type = SQLITE_TEXT; + if(isBlob) + { + type = SQLITE_BLOB; + } else if(m_vDataTypes.at(column) == SQLITE_INTEGER) { + bool ok; + newValue.toLongLong(&ok); + if(ok) + type = SQLITE_INTEGER; + } else if(m_vDataTypes.at(column) == SQLITE_FLOAT) { + bool ok; + newValue.toDouble(&ok); + if(ok) + type = SQLITE_FLOAT; + } + + if(m_db.updateRecord(m_query.table(), m_headers.at(column), cached_row.at(0), newValue, type, m_query.rowIdColumns())) + { + cached_row[column] = newValue; + + // After updating the value itself in the cache, we need to check if we need to update the rowid too. + if(contains(m_query.rowIdColumns(), m_headers.at(column))) + { + // When the cached rowid column needs to be updated as well, we need to distinguish between single-column and multi-column primary keys. + // For the former ones, we can just overwrite the existing value with the new value. + // For the latter ones, we need to make a new JSON object of the values of all primary key columns, not just the updated one. + if(m_query.rowIdColumns().size() == 1) + { + cached_row[0] = newValue; + } else { + json array; + assert(m_headers.size() == cached_row.size()); + for(size_t i=0;i(std::distance(m_headers.begin(), it))]); + } + cached_row[0] = QByteArray::fromStdString(array.dump()); + } + const QModelIndex& rowidIndex = index.sibling(index.row(), 0); + lock.unlock(); + emit dataChanged(rowidIndex, rowidIndex); + } else { + lock.unlock(); + } + emit dataChanged(index, index); + return true; + } else { + lock.unlock(); + QMessageBox::warning(nullptr, qApp->applicationName(), tr("Error changing data:\n%1").arg(m_db.lastError())); + return false; + } + } + + return false; +} + +Qt::ItemFlags SqliteTableModel::flags(const QModelIndex& index) const +{ + if(!index.isValid()) + return Qt::ItemIsEnabled; + + Qt::ItemFlags ret = QAbstractTableModel::flags(index) | Qt::ItemIsDropEnabled; + + // Custom display format set? + bool custom_display_format = false; + if(m_query.selectedColumns().size()) + { + if(index.column() > 0) + custom_display_format = m_query.selectedColumns().at(static_cast(index.column())-1).selector != m_query.selectedColumns().at(static_cast(index.column())-1).original_column; + } + + if(!isBinary(index) && !custom_display_format && isEditable(index)) + ret |= Qt::ItemIsEditable; + return ret; +} + +void SqliteTableModel::sort(int column, Qt::SortOrder order) +{ + // Construct a sort order list from this item and forward it to the function to sort by lists + std::vector list; + list.emplace_back(column, order == Qt::AscendingOrder ? sqlb::Ascending : sqlb::Descending); + sort(list); +} + +void SqliteTableModel::sort(const std::vector& columns) +{ + // Don't do anything when the sort order hasn't changed + if(m_query.orderBy() == columns) + return; + + // Save sort order + m_query.orderBy() = columns; + + // Set the new query (but only if a table has already been set + if(!m_query.table().isEmpty()) + buildQuery(); +} + +SqliteTableModel::Row SqliteTableModel::makeDefaultCacheEntry () const +{ + Row blank_data; + + for(size_t i=0; i < m_headers.size(); ++i) + blank_data.emplace_back(""); + + return blank_data; +} + +bool SqliteTableModel::readingData() const +{ + return worker->readingData(); +} + +bool SqliteTableModel::insertRows(int row, int count, const QModelIndex& parent) +{ + if(!isEditable()) + return false; + + if(readingData()) { + // can't insert rows while reading data in background + return false; + } + + const auto blank_data = makeDefaultCacheEntry(); + + std::vector tempList; + for(int i=row; i < row + count; ++i) + { + QString rowid = m_db.addRecord(m_query.table()); + if(rowid.isNull()) + { + return false; + } + tempList.emplace_back(blank_data); + tempList.back()[0] = rowid.toUtf8(); + + // update column with default values + Row rowdata; + if(m_db.getRow(m_query.table(), rowid, rowdata)) + { + for(size_t j=1; j < m_headers.size(); ++j) + { + tempList.back()[j] = rowdata[j - 1]; + } + } + } + + beginInsertRows(parent, row, row + count - 1); + for(size_t i = 0; i < tempList.size(); ++i) + { + m_cache.insert(i + static_cast(row), std::move(tempList.at(i))); + m_currentRowCount++; + } + endInsertRows(); + + return true; +} + +bool SqliteTableModel::removeRows(int row, int count, const QModelIndex& parent) +{ + if(!isEditable()) + return false; + + if(readingData()) { + // can't delete rows while reading data in background + return false; + } + + std::vector rowids; + for(int i=count-1;i>=0;i--) + { + if(m_cache.count(static_cast(row+i))) { + rowids.push_back(m_cache.at(static_cast(row + i)).at(0)); + } + } + + bool ok = m_db.deleteRecords(m_query.table(), rowids, m_query.rowIdColumns()); + + if (ok) { + beginRemoveRows(parent, row, row + count - 1); + + for(int i=count-1;i>=0;i--) + { + m_cache.erase(static_cast(row + i)); + m_currentRowCount--; + } + + endRemoveRows(); + } + return ok; +} + +QModelIndex SqliteTableModel::dittoRecord(int old_row) +{ + if(!isEditable()) + return QModelIndex(); + + if (!insertRow(rowCount())) + return QModelIndex(); + + size_t firstEditedColumn = 0; + int new_row = rowCount() - 1; + + const auto pk = m_table_of_query->primaryKey(); + for (size_t col = 0; col < m_table_of_query->fields.size(); ++col) { + if(!pk || !contains(pk->columnList(), m_table_of_query->fields.at(col).name())) { + if (!firstEditedColumn) + firstEditedColumn = col + 1; + + QVariant value = data(index(old_row, static_cast(col + 1)), Qt::EditRole); + setData(index(new_row, static_cast(col + 1)), value); + } + } + + return index(new_row, static_cast(firstEditedColumn)); +} + +void SqliteTableModel::buildQuery() +{ + setQuery(QString::fromStdString(m_query.buildQuery(true)), QString::fromStdString(m_query.buildCountQuery()), true); +} + +void SqliteTableModel::removeCommentsFromQuery(QString& query) +{ + int oldSize = query.size(); + + // first remove block comments + { + QRegExp rxSQL("^((?:(?:[^'/]|/(?![*]))*|'[^']*')*)(/[*](?:[^*]|[*](?!/))*[*]/)(.*)$"); // set up regex to find block comment + QString result; + + while(query.size() != 0) + { + int pos = rxSQL.indexIn(query); + if(pos > -1) + { + result += rxSQL.cap(1) + " "; + query = rxSQL.cap(3); + } else { + result += query; + query.clear(); + } + } + query = result; + } + + // deal with end-of-line comments + { + /* The regular expression for removing end of line comments works like this: + * ^((?:(?:[^'-]|-(?!-))*|(?:'[^']*'))*)(--.*)$ + * ^ $ # anchor beginning and end of string so we use it all + * ( )( ) # two separate capture groups for code and comment + * --.* # comment starts with -- and consumes everything afterwards + * (?: | )* # code is none or many strings alternating with non-strings + * (?:'[^']*') # a string is a quote, followed by none or more non-quotes, followed by a quote + * (?:[^'-]|-(?!-))* # non-string is a sequence of characters which aren't quotes or hyphens, + */ + + QRegExp rxSQL("^((?:(?:[^'-]|-(?!-))*|(?:'[^']*'))*)(--[^\\r\\n]*)([\\r\\n]*)(.*)$"); // set up regex to find end-of-line comment + QString result; + + while(query.size() != 0) + { + int pos = rxSQL.indexIn(query); + if(pos > -1) + { + result += rxSQL.cap(1) + rxSQL.cap(3); + query = rxSQL.cap(4); + } else { + result += query; + query.clear(); + } + } + + query = result.trimmed(); + } + + if (oldSize != query.size()) { + // Remove multiple line breaks that might have been created by deleting comments till the end of the line but not including the line break + query.replace(QRegExp("\\n+"), "\n"); + + // Also remove any remaining whitespace at the end of each line + query.replace(QRegExp("[ \t]+\n"), "\n"); + } +} + +std::vector SqliteTableModel::getColumns(std::shared_ptr pDb, const std::string& sQuery, std::vector& fieldsTypes) const +{ + if(!pDb) + pDb = m_db.get(tr("retrieving list of columns")); + + sqlite3_stmt* stmt; + std::vector listColumns; + if(sqlite3_prepare_v2(pDb.get(), sQuery.c_str(), static_cast(sQuery.size()), &stmt, nullptr) == SQLITE_OK) + { + if(sqlite3_step(stmt) == SQLITE_ROW) + { + int columns = sqlite3_data_count(stmt); + for(int i = 0; i < columns; ++i) + { + listColumns.push_back(sqlite3_column_name(stmt, i)); + fieldsTypes.push_back(sqlite3_column_type(stmt, i)); + } + } + } + sqlite3_finalize(stmt); + + return listColumns; +} + +void addCondFormatToMap(std::map>& mCondFormats, size_t column, const CondFormat& condFormat) +{ + // If the condition is already present in the vector, update that entry and respect the order, since two entries with the same + // condition do not make sense. + auto it = std::find_if(mCondFormats[column].begin(), mCondFormats[column].end(), [condFormat](const CondFormat& format) { + return format.sqlCondition() == condFormat.sqlCondition(); + }); + // Replace cond-format if present. push it back if it's a conditionless format (apply to every cell in column) or insert + // as first element otherwise. + if(it != mCondFormats[column].end()) { + *it = condFormat; + } else if (condFormat.filter().isEmpty()) + mCondFormats[column].push_back(condFormat); + else + mCondFormats[column].insert(mCondFormats[column].begin(), condFormat); +} + +void SqliteTableModel::addCondFormat(const bool isRowIdFormat, size_t column, const CondFormat& condFormat) +{ + if(isRowIdFormat) + addCondFormatToMap(m_mRowIdFormats, column, condFormat); + else + addCondFormatToMap(m_mCondFormats, column, condFormat); + emit layoutChanged(); +} + +void SqliteTableModel::setCondFormats(const bool isRowIdFormat, size_t column, const std::vector& condFormats) +{ + if(isRowIdFormat) + m_mRowIdFormats[column] = condFormats; + else + m_mCondFormats[column] = condFormats; + emit layoutChanged(); +} + +void SqliteTableModel::updateFilter(size_t column, const QString& value) +{ + std::string whereClause = CondFormat::filterToSqlCondition(value, m_encoding); + + // If the value was set to an empty string remove any filter for this column. Otherwise insert a new filter rule or replace the old one if there is already one + if(whereClause.empty()) + m_query.where().erase(column); + else + m_query.where()[column] = whereClause; + + // Build the new query + buildQuery(); +} + +void SqliteTableModel::updateGlobalFilter(const std::vector& values) +{ + std::vector filters; + for(auto& v : values) + filters.push_back(CondFormat::filterToSqlCondition(v, m_encoding)); + m_query.setGlobalWhere(filters); + + // Build the new query + buildQuery(); +} + +void SqliteTableModel::clearCache() +{ + m_lifeCounter++; + + if(m_db.isOpen()) { + worker->cancel(); + worker->waitUntilIdle(); + } + + if(m_currentRowCount > 0) + { + beginRemoveRows(QModelIndex(), 0, static_cast(m_currentRowCount - 1)); + endRemoveRows(); + } + + m_cache.clear(); + m_currentRowCount = 0; + m_rowCountAvailable = RowCount::Unknown; +} + +bool SqliteTableModel::isBinary(const QModelIndex& index) const +{ + std::lock_guard lock(m_mutexDataCache); + + const size_t row = static_cast(index.row()); + if(!m_cache.count(row)) + return false; + + const auto & cached_row = m_cache.at(row); + return isBinary(cached_row.at(static_cast(index.column()))); +} + +bool SqliteTableModel::isBinary(const QByteArray& data) const +{ + return !isTextOnly(data, m_encoding, true); +} + +QByteArray SqliteTableModel::encode(const QByteArray& str) const +{ + return encodeString(str, m_encoding); +} + +QByteArray SqliteTableModel::decode(const QByteArray& str) const +{ + return decodeString(str, m_encoding); +} + +Qt::DropActions SqliteTableModel::supportedDropActions() const +{ + return Qt::CopyAction; +} + +bool SqliteTableModel::dropMimeData(const QMimeData* data, Qt::DropAction, int row, int column, const QModelIndex& parent) +{ + // What has been dropped on the widget? + if(data->hasUrls()) + { + // If it's a URL, open the file and paste the content in the current cell + QList urls = data->urls(); + QFile file(urls.first().toLocalFile()); + if(file.exists() && file.open(QFile::ReadOnly)) + { + setData(index(row, column, parent), file.readAll()); + return true; + } + } else if(data->hasText()) { + // If it's just text we can set the cell data directly + setData(index(row, column, parent), data->text()); + } + + return false; +} + +void SqliteTableModel::setPseudoPk(std::vector pseudoPk) +{ + if(pseudoPk.empty()) + pseudoPk.emplace_back("_rowid_"); + + // Do nothing if the value didn't change + if(m_query.rowIdColumns() == pseudoPk) + return; + + m_query.setRowIdColumns(pseudoPk); + if(m_headers.size()) + m_headers[0] = sqlb::joinStringVector(pseudoPk, ","); + + buildQuery(); +} + +bool SqliteTableModel::hasPseudoPk() const +{ + return m_query.hasCustomRowIdColumn(); +} + +bool SqliteTableModel::isEditable(const QModelIndex& index) const +{ + if(m_query.table().isEmpty()) + return false; + if(!m_db.isOpen()) + return false; + if(!m_table_of_query && !m_query.hasCustomRowIdColumn()) + return false; + + // Extra check when the index parameter is set and pointing to a generated column in a table + if(index.isValid() && m_table_of_query) + { + const auto field = sqlb::findField(m_table_of_query, m_headers.at(static_cast(index.column()))); + if(field != m_table_of_query->fields.cend() && !field->generated().empty()) + return false; + } + + return true; +} + +void SqliteTableModel::triggerCacheLoad (int row) const +{ + int halfChunk = static_cast( m_chunkSize / 2); + size_t row_begin = static_cast(std::max(0, row - halfChunk)); + size_t row_end = static_cast(row + halfChunk); + + if(rowCountAvailable() == RowCount::Complete) + { + row_end = std::min(row_end, static_cast(rowCount())); + } else { + // will be truncated by reader + } + + // avoid re-fetching data + std::lock_guard lk(m_mutexDataCache); + m_cache.smallestNonAvailableRange(row_begin, row_end); + + if(row_end != row_begin) + worker->triggerFetch(m_lifeCounter, row_begin, row_end); +} + +void SqliteTableModel::triggerCacheLoad (int row_begin, int row_end) const +{ + if(row_end == row_begin) + return; + + triggerCacheLoad((row_begin + row_end) / 2); +} + +bool SqliteTableModel::completeCache () const +{ + // Show progress dialog because fetching all data might take some time but only show + // cancel button if we allow cancellation here. This isn't + QProgressDialog progress(tr("Fetching data..."), + tr("Cancel"), 0, rowCount()); + + QPushButton* cancelButton = new QPushButton(tr("Cancel")); + // This is to prevent distracted cancelation of the fetching and avoid the + // Snap-To Windows optional feature. + cancelButton->setDefault(false); + cancelButton->setAutoDefault(false); + progress.setCancelButton(cancelButton); + + progress.setWindowModality(Qt::ApplicationModal); + progress.show(); + + waitUntilIdle(); + + // This loop fetches all data by loading it block by block into the cache + for(int i = 0; i < (rowCount() + static_cast( m_chunkSize / 2)); i += static_cast(m_chunkSize)) + { + progress.setValue(i); + qApp->processEvents(); + if(progress.wasCanceled()) + return false; + + triggerCacheLoad(i); + worker->waitUntilIdle(); + } + + return true; +} + +bool SqliteTableModel::isCacheComplete () const +{ + if(readingData()) + return false; + std::lock_guard lock(m_mutexDataCache); + return m_cache.numSet() == m_currentRowCount; +} + +void SqliteTableModel::waitUntilIdle () const +{ + worker->waitUntilIdle(); +} + +QModelIndex SqliteTableModel::nextMatch(const QModelIndex& start, const std::vector& column_list, const QString& value, Qt::MatchFlags flags, bool reverse, bool dont_skip_to_next_field) const +{ + // Extract flags + bool whole_cell = !(flags & Qt::MatchContains); + bool regex = flags & Qt::MatchRegExp; + Qt::CaseSensitivity case_sensitive = ((flags & Qt::MatchCaseSensitive) ? Qt::CaseSensitive : Qt::CaseInsensitive); + bool wrap = flags & Qt::MatchWrap; + int increment = (reverse ? -1 : 1); + + // Prepare the regular expression for regex mode + QRegularExpression reg_exp; + if(regex) + { + reg_exp = QRegularExpression(value, (case_sensitive ? QRegularExpression::NoPatternOption : QRegularExpression::CaseInsensitiveOption)); + if(!reg_exp.isValid()) + return QModelIndex(); + + if(whole_cell) + { +#if QT_VERSION < QT_VERSION_CHECK(5, 12, 0) + reg_exp.setPattern("\\A(" + reg_exp.pattern() + ")\\Z"); +#else + reg_exp.setPattern(QRegularExpression::anchoredPattern(reg_exp.pattern())); +#endif + } + } + + // Wait until the row count is there + waitUntilIdle(); + + // Stop right away if there is no data in the table + if(rowCount() == 0) + return QModelIndex(); + + // Make sure the start position starts in a column from the list of columns to search in + QModelIndex pos = start; + if(std::find(column_list.begin(), column_list.end(), pos.column()) == column_list.end()) + { + // If for some weird reason the start index is not in the column list, we simply use the first column of the column list instead + pos = pos.sibling(pos.row(), reverse ? column_list.back() : column_list.front()); + } + + // Get the last cell to search in. If wrapping is enabled, we search until we hit the start cell again. If wrapping is not enabled, we start at the last + // cell of the table. + QModelIndex end = (wrap ? pos : index(rowCount(), column_list.back())); + + // Loop through all cells for the search + while(true) + { + // Go to the next cell and skip all columns in between which we do not care about. This is done as the first step in order + // to skip the start index when matching the first cell is disabled. + if(dont_skip_to_next_field == false) + { + while(true) + { + // Next cell position + int next_row = pos.row(); + int next_column = pos.column() + increment; + + // Have we reached the end of the row? Then go to the next one + if(next_column < 0 || next_column >= static_cast(m_headers.size())) + { + next_row += increment; + next_column = (reverse ? column_list.back() : column_list.front()); + } + + // Have we reached the last row? Then wrap around to the first one + if(wrap && (next_row < 0 || next_row >= rowCount())) + next_row = (reverse ? rowCount()-1 : 0); + + // Set next index for search + pos = pos.sibling(next_row, next_column); + + // Have we hit the last column? We have not found anything then + if(pos == end) + return QModelIndex(); + + // Is this a column which we are supposed to search in? If so, stop looking for the next cell and start comparing + if(std::find(column_list.begin(), column_list.end(), next_column) != column_list.end()) + break; + } + } + + // Make sure the next time we hit the above check, we actuall move on to the next cell and do not skip the loop again. + dont_skip_to_next_field = false; + + // Get row from cache. If it is not in the cache, load the next chunk from the database + const size_t row = static_cast(pos.row()); + if(!m_cache.count(row)) + { + triggerCacheLoad(static_cast(row)); + waitUntilIdle(); + } + const Row* row_data = &m_cache.at(row); + + // Get cell data + const size_t column = static_cast(pos.column()); + QString data = row_data->at(column); + + // Perform comparison + if(whole_cell && !regex && data.compare(value, case_sensitive) == 0) + return pos; + else if(!whole_cell && !regex && data.contains(value, case_sensitive)) + return pos; + else if(regex && reg_exp.match(data).hasMatch()) + return pos; + } +} + +void SqliteTableModel::reloadSettings() +{ + m_nullText = Settings::getValue("databrowser", "null_text").toString(); + m_blobText = Settings::getValue("databrowser", "blob_text").toString(); + m_regFgColour = QColor(Settings::getValue("databrowser", "reg_fg_colour").toString()); + m_regBgColour = QColor(Settings::getValue("databrowser", "reg_bg_colour").toString()); + m_nullFgColour = QColor(Settings::getValue("databrowser", "null_fg_colour").toString()); + m_nullBgColour = QColor(Settings::getValue("databrowser", "null_bg_colour").toString()); + m_binFgColour = QColor(Settings::getValue("databrowser", "bin_fg_colour").toString()); + m_binBgColour = QColor(Settings::getValue("databrowser", "bin_bg_colour").toString()); + m_font = QFont(Settings::getValue("databrowser", "font").toString()); + m_font.setPointSize(Settings::getValue("databrowser", "fontsize").toInt()); + m_symbolLimit = Settings::getValue("databrowser", "symbol_limit").toInt(); + m_imagePreviewEnabled = Settings::getValue("databrowser", "image_preview").toBool(); + m_chunkSize = static_cast(Settings::getValue("db", "prefetchsize").toUInt()); +} diff --git a/src/SqliteDBProcess/src/sqlitetablemodel.h b/src/SqliteDBProcess/src/sqlitetablemodel.h new file mode 100644 index 0000000..6a717f9 --- /dev/null +++ b/src/SqliteDBProcess/src/sqlitetablemodel.h @@ -0,0 +1,254 @@ +#ifndef SQLITETABLEMODEL_H +#define SQLITETABLEMODEL_H +#include "WBFZExchangePluginAPI.h" +#include +#include +#include + +#include +#include +#include +#include + +#include "RowCache.h" +#include "sql/Query.h" +#include "sql/sqlitetypes.h" + +struct sqlite3; +class DBBrowserDB; +class CondFormat; + +class SqliteTableModel : public QAbstractTableModel +{ + Q_OBJECT + +#ifdef REGEX_UNIT_TEST + friend class TestRegex; +#endif + +public: + explicit SqliteTableModel(DBBrowserDB& db, QObject *parent = nullptr, const QString& encoding = QString()); + ~SqliteTableModel() override; + + /// reset to state after construction + void reset(); + + /// returns logical amount of rows, whether currently cached or not + int rowCount(const QModelIndex &parent = QModelIndex()) const override; + + int columnCount(const QModelIndex &parent = QModelIndex()) const override; + size_t filterCount() const; + QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; + QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; + bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) override; + bool setTypedData(const QModelIndex& index, bool isBlob, const QVariant& value, int role = Qt::EditRole); + + enum class RowCount + { + Unknown, //< still finding out in background... + Partial, //< some chunk was read and at least a lower bound is thus known + Complete //< total row count of table known + }; + + /// what kind of information is available through rowCount()? + RowCount rowCountAvailable () const; + + /// trigger asynchronous loading of (at least) the specified row + /// into cache. + void triggerCacheLoad (int single_row) const; + + /// trigger asynchronous loading of (at least) the specified rows + /// into cache. \param row_end is exclusive. + void triggerCacheLoad (int row_begin, int row_end) const; + + /// wait until not reading any data (that does not mean data is + /// complete, just that the background reader is idle) + void waitUntilIdle () const; + + /// load all rows into cache, return when done. Returns true if all data was loaded, false if the loading was cancelled. + bool completeCache() const; + + /// returns true if all rows are currently available in cache + /// [NOTE: potentially unsafe in case we have a limited-size + /// cache, where entries can vanish again -- however we can't do + /// this for the current implementation of the PlotDock] + bool isCacheComplete () const; + + bool insertRows(int row, int count, const QModelIndex& parent = QModelIndex()) override; + bool removeRows(int row, int count, const QModelIndex& parent = QModelIndex()) override; + + QModelIndex dittoRecord(int old_row); + + /// configure for browsing results of specified query + void setQuery(const QString& sQuery, const QString& sCountQuery = QString(), bool dontClearHeaders = false); + + std::string query() const { return m_sQuery.toStdString(); } + std::string customQuery(bool withRowid) const { return m_query.buildQuery(withRowid); } + + /// configure for browsing specified table + void setQuery(const sqlb::Query& query); + + void sort(int column, Qt::SortOrder order = Qt::AscendingOrder) override; + void sort(const std::vector& columns); + sqlb::ObjectIdentifier currentTableName() const { return m_query.table(); } + + Qt::ItemFlags flags(const QModelIndex& index) const override; + + bool isBinary(const QModelIndex& index) const; + + void setEncoding(const QString& encoding) { m_encoding = encoding; } + QString encoding() const { return m_encoding; } + + // The pseudo-primary key is exclusively for editing views + void setPseudoPk(std::vector pseudoPk); + bool hasPseudoPk() const; + std::vector pseudoPk() const { return m_query.rowIdColumns(); } + + sqlb::ForeignKeyClause getForeignKeyClause(size_t column) const; + + // This returns true if the model and, if set, the index can be edited. Not specifying the index parameter asks whether the model can + // be edited in general (i.e. inserting and deleting rows as well as updating some cells). Specifying the index parameter asks whether + // this specific index can be edited. + // The model is able to operate in more or less two different modes, table browsing and query browsing. We only support editing data + // in the table browsing mode but not for the query mode. This function returns true if the model is currently editable, i.e. it's + // running in the table mode and isn't browsing a view, unless this view is set up for editing by specifying a pseudo PK. + // When the index parameter is set, the same checks are performed but additionally the function checks whether this specific index + // can be edited. This makes a difference for generated columns which are in (editable) tables but cannot be modified anyway. + bool isEditable(const QModelIndex& index = QModelIndex()) const; + + // Helper function for removing all comments from a SQL query + static void removeCommentsFromQuery(QString& query); + + // Conditional formats are of two kinds: regular conditional formats (including condition-free formats applying to any value in the + // column) and formats applying to a particular row-id and which have always precedence over the first kind and whose filter apply + // to the row-id column. + void addCondFormat(const bool isRowIdFormat, size_t column, const CondFormat& condFormat); + void setCondFormats(const bool isRowIdFormat, size_t column, const std::vector& condFormats); + + // Search for the specified expression in the given cells. This intended as a replacement for QAbstractItemModel::match() even though + // it does not override it, which - because of the different parameters - is not possible. + // start contains the index to start with, column_list contains the ordered list of the columns to look in, value is the value to search for, + // flags allows to modify the search process (Qt::MatchContains, Qt::MatchRegExp, Qt::MatchCaseSensitive, and Qt::MatchWrap are understood), + // reverse can be set to true to progress through the cells in backwards direction, and dont_skip_to_next_field can be set to true if the current + // cell can be matched as well. + QModelIndex nextMatch(const QModelIndex& start, + const std::vector& column_list, + const QString& value, + Qt::MatchFlags flags = Qt::MatchFlags(Qt::MatchContains), + bool reverse = false, + bool dont_skip_to_next_field = false) const; + + DBBrowserDB& db() { return m_db; } + + void reloadSettings(); + +public slots: + void updateFilter(size_t column, const QString& value); + void updateGlobalFilter(const std::vector& values); + +signals: + void finishedFetch(int fetched_row_begin, int fetched_row_end); + void finishedRowCount(); + +protected: + Qt::DropActions supportedDropActions() const override; + bool dropMimeData(const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent) override; + +private: + friend class RowLoader; + class RowLoader * worker; + + /// clears the cache, resets row-count to unknown (but keeps table + /// & query info), increase life_counter + void clearCache(); + + void handleFinishedFetch(int life_id, unsigned int fetched_row_begin, unsigned int fetched_row_end); + void handleRowCountComplete(int life_id, int num_rows); + + void buildQuery(); + + /// \param pDb connection to query; if null, obtains it from 'm_db'. + std::vector getColumns(std::shared_ptr pDb, const std::string& sQuery, std::vector& fieldsTypes) const; + + QByteArray encode(const QByteArray& str) const; + QByteArray decode(const QByteArray& str) const; + + // Return matching conditional format color/font or invalid value, otherwise. + // Only format roles are expected in role (Qt::ItemDataRole) + QVariant getMatchingCondFormat(size_t row, size_t column, const QString& value, int role) const; + QVariant getMatchingCondFormat(const std::map>& mCondFormats, size_t column, const QString& value, int role) const; + + DBBrowserDB& m_db; + + /// counts numbers of clearCache() since instantiation; using this + /// to avoid processing of queued signals originating in an era + /// before the most recent reset(). + int m_lifeCounter; + + /// note: the row count can be determined by the row-count query + /// (which yields the "final" row count"), or, if it is faster, by + /// the first chunk reading actual data (in which case the row + /// count will be set to that chunk's size and later updated to + /// the full row count, when the row-count query returns) + RowCount m_rowCountAvailable; + unsigned int m_currentRowCount; + + std::vector m_headers; + + /// reading something in background right now? (either counting + /// rows or actually loading data, doesn't matter) + bool readingData() const; + + using Row = std::vector; + mutable RowCache m_cache; + + Row makeDefaultCacheEntry () const; + + bool isBinary(const QByteArray& index) const; + + QString m_sQuery; + std::vector m_vDataTypes; + std::map> m_mCondFormats; + std::map> m_mRowIdFormats; + + sqlb::Query m_query; + std::shared_ptr m_table_of_query; // This holds a pointer to the table object which is queried in the m_query object + + QString m_encoding; + + /** + * These are used for multi-threaded population of the table + */ + mutable std::mutex m_mutexDataCache; + +private: + /** + * Settings. These are stored here to avoid fetching and converting them every time we need them. Because this class + * uses a lot of settings and because some of its functions are called very often, this should speed things up noticeable. + * Call reloadSettings() to update these. + */ + + QString m_nullText; + QString m_blobText; + QColor m_regFgColour; + QColor m_regBgColour; + QColor m_nullFgColour; + QColor m_nullBgColour; + QColor m_binFgColour; + QColor m_binBgColour; + QFont m_font; + int m_symbolLimit; + bool m_imagePreviewEnabled; + + /** + * @brief m_chunkSize Size of the next chunk fetch more will try to fetch. + * This value should be rather high, because our query + * uses LIMIT and sqlite3 will still execute the whole query and + * just skip the not wanted rows, but the execution will + * still take nearly the same time as doing the query at all up + * to that row count. + */ + size_t m_chunkSize; +}; + +#endif diff --git a/src/SqliteDBProcess/src/sqltextedit.cpp b/src/SqliteDBProcess/src/sqltextedit.cpp new file mode 100644 index 0000000..eabf43f --- /dev/null +++ b/src/SqliteDBProcess/src/sqltextedit.cpp @@ -0,0 +1,135 @@ +#include "sql/ObjectIdentifier.h" +#include "sqltextedit.h" +#include "Settings.h" +#include "SqlUiLexer.h" + +#include +#include + +#include +#include + +SqlUiLexer* SqlTextEdit::sqlLexer = nullptr; + +SqlTextEdit::SqlTextEdit(QWidget* parent) : + ExtendedScintilla(parent) +{ + // Create lexer object if not done yet + if(sqlLexer == nullptr) + sqlLexer = new SqlUiLexer(this); + + // Set the SQL lexer + setLexer(sqlLexer); + + // Set icons for auto completion + registerImage(SqlUiLexer::ApiCompleterIconIdKeyword, QImage(":/icons/keyword")); + registerImage(SqlUiLexer::ApiCompleterIconIdFunction, QImage(":/icons/function")); + registerImage(SqlUiLexer::ApiCompleterIconIdTable, QImage(":/icons/table")); + registerImage(SqlUiLexer::ApiCompleterIconIdColumn, QImage(":/icons/field")); + registerImage(SqlUiLexer::ApiCompleterIconIdSchema, QImage(":/icons/database")); + + // Remove command bindings that would interfere with our shortcutToggleComment + QsciCommand * command = standardCommands()->boundTo(Qt::ControlModifier+Qt::Key_Slash); + command->setKey(0); + command = standardCommands()->boundTo(Qt::ControlModifier+Qt::ShiftModifier+Qt::Key_Slash); + command->setKey(0); + + // Change command binding for Ctrl+T so it doesn't interfere with "Open tab" + command = standardCommands()->boundTo(Qt::ControlModifier+Qt::Key_T); + command->setKey(Qt::ControlModifier+Qt::ShiftModifier+Qt::Key_Up); + + QShortcut* shortcutToggleComment = new QShortcut(QKeySequence(tr("Ctrl+/")), this, nullptr, nullptr, Qt::WidgetShortcut); + connect(shortcutToggleComment, &QShortcut::activated, this, &SqlTextEdit::toggleBlockComment); + + // Do rest of initialisation + reloadSettings(); +} + +void SqlTextEdit::reloadSettings() +{ + // Enable auto completion if it hasn't been disabled + if(Settings::getValue("editor", "auto_completion").toBool()) + { + setAutoCompletionThreshold(3); + setAutoCompletionCaseSensitivity(true); + setAutoCompletionShowSingle(true); + setAutoCompletionSource(QsciScintilla::AcsAPIs); + } else { + setAutoCompletionThreshold(0); + } + // Set wrap lines + setWrapMode(static_cast(Settings::getValue("editor", "wrap_lines").toInt())); + + ExtendedScintilla::reloadSettings(); + + setupSyntaxHighlightingFormat(sqlLexer, "comment", QsciLexerSQL::Comment); + setupSyntaxHighlightingFormat(sqlLexer, "comment", QsciLexerSQL::CommentLine); + setupSyntaxHighlightingFormat(sqlLexer, "comment", QsciLexerSQL::CommentDoc); + setupSyntaxHighlightingFormat(sqlLexer, "keyword", QsciLexerSQL::Keyword); + setupSyntaxHighlightingFormat(sqlLexer, "table", QsciLexerSQL::KeywordSet6); + setupSyntaxHighlightingFormat(sqlLexer, "function", QsciLexerSQL::KeywordSet7); + setupSyntaxHighlightingFormat(sqlLexer, "string", QsciLexerSQL::SingleQuotedString); + + // Highlight double quote strings as identifier or as literal string depending on user preference + switch(static_cast(Settings::getValue("editor", "identifier_quotes").toInt())) { + case sqlb::DoubleQuotes: + setupSyntaxHighlightingFormat(sqlLexer, "identifier", QsciLexerSQL::DoubleQuotedString); + sqlLexer->setQuotedIdentifiers(false); + break; + case sqlb::GraveAccents: + sqlLexer->setQuotedIdentifiers(true); + setupSyntaxHighlightingFormat(sqlLexer, "string", QsciLexerSQL::DoubleQuotedString); // treat quoted string as literal string + break; + case sqlb::SquareBrackets: + setupSyntaxHighlightingFormat(sqlLexer, "string", QsciLexerSQL::DoubleQuotedString); + break; + } + setupSyntaxHighlightingFormat(sqlLexer, "identifier", QsciLexerSQL::Identifier); + setupSyntaxHighlightingFormat(sqlLexer, "identifier", QsciLexerSQL::QuotedIdentifier); +} + + +void SqlTextEdit::toggleBlockComment() +{ + int lineFrom, indexFrom, lineTo, indexTo; + + // If there is no selection, select the current line + if (!hasSelectedText()) { + getCursorPosition(&lineFrom, &indexFrom); + + // Windows lines requires an adjustment, otherwise the selection would + // end in the next line. + indexTo = text(lineFrom).endsWith("\r\n") ? lineLength(lineFrom)-1 : lineLength(lineFrom); + + setSelection(lineFrom, 0, lineFrom, indexTo); + } + + getSelection(&lineFrom, &indexFrom, &lineTo, &indexTo); + + bool uncomment = text(lineFrom).contains(QRegExp("^[ \t]*--")); + + // If the selection ends before the first character of a line, don't + // take this line into account for un/commenting. + if (indexTo==0) + lineTo--; + + beginUndoAction(); + + // Iterate over the selected lines, get line text, make + // replacement depending on whether the first line was commented + // or uncommented, and replace the line text. All in a single undo action. + for (int line=lineFrom; line<=lineTo; line++) { + QString lineText = text(line); + + if (uncomment) + lineText.replace(QRegExp("^([ \t]*)-- ?"), "\\1"); + else + lineText.replace(QRegExp("^"), "-- "); + + indexTo = lineText.endsWith("\r\n") ? lineLength(line)-1 : lineLength(line); + + setSelection(line, 0, line, indexTo); + replaceSelectedText(lineText); + } + endUndoAction(); +} diff --git a/src/SqliteDBProcess/src/sqltextedit.h b/src/SqliteDBProcess/src/sqltextedit.h new file mode 100644 index 0000000..665bc32 --- /dev/null +++ b/src/SqliteDBProcess/src/sqltextedit.h @@ -0,0 +1,27 @@ +#ifndef SQLTEXTEDIT_H +#define SQLTEXTEDIT_H +#include "WBFZExchangePluginAPI.h" +#include "ExtendedScintilla.h" + +class SqlUiLexer; + +/** + * @brief The SqlTextEdit class + * This class is based on the QScintilla widget + */ +class SqlTextEdit : public ExtendedScintilla +{ + Q_OBJECT + +public: + explicit SqlTextEdit(QWidget *parent = nullptr); + + static SqlUiLexer* sqlLexer; + +public slots: + void reloadSettings(); + void toggleBlockComment(); + +}; + +#endif diff --git a/src/SqliteDBProcess/src/src.pro b/src/SqliteDBProcess/src/src.pro new file mode 100644 index 0000000..f5c2e58 --- /dev/null +++ b/src/SqliteDBProcess/src/src.pro @@ -0,0 +1,303 @@ +TEMPLATE = app + +QT += core gui network widgets printsupport concurrent xml + +TARGET = sqlitebrowser + +CONFIG += debug_and_release +CONFIG += qt +CONFIG += warn_on + +QMAKE_CXXFLAGS += -std=c++11 + +# create a unittest option +CONFIG(unittest) { + QT += testlib + + HEADERS += tests/testsqlobjects.h tests/TestImport.h tests/TestRegex.h tests/TestRowCache.h + SOURCES += tests/testsqlobjects.cpp tests/TestImport.cpp tests/TestRegex.cpp tests/TestRowCache.cpp +} else { + SOURCES += main.cpp +} + +HEADERS += \ + RemoteCommitsModel.h \ + RemoteLocalFilesModel.h \ + RemoteNetwork.h \ + sqlitedb.h \ + MainWindow.h \ + EditIndexDialog.h \ + AboutDialog.h \ + EditTableDialog.h \ + AddRecordDialog.h \ + Settings.h \ + PreferencesDialog.h \ + EditDialog.h \ + ExportDataDialog.h \ + ImportCsvDialog.h \ + sqltextedit.h \ + sql/sqlitetypes.h \ + csvparser.h \ + ExtendedTableWidget.h \ + sqlitetablemodel.h \ + RowCache.h \ + RowLoader.h \ + FilterTableHeader.h \ + version.h \ + SqlExecutionArea.h \ + VacuumDialog.h \ + DbStructureModel.h \ + Application.h \ + sqlite.h \ + CipherDialog.h \ + ExportSqlDialog.h \ + SqlUiLexer.h \ + FileDialog.h \ + ColumnDisplayFormatDialog.h \ + FilterLineEdit.h \ + RemoteDatabase.h \ + ForeignKeyEditorDelegate.h \ + PlotDock.h \ + RemoteDock.h \ + RemoteModel.h \ + RemotePushDialog.h \ + docktextedit.h \ + FindReplaceDialog.h \ + ExtendedScintilla.h \ + FileExtensionManager.h \ + CondFormatManager.h \ + Data.h \ + CipherSettings.h \ + DotenvFormat.h \ + Palette.h \ + CondFormat.h \ + sql/Query.h \ + RunSql.h \ + sql/ObjectIdentifier.h \ + ProxyDialog.h \ + IconCache.h \ + SelectItemsPopup.h \ + TableBrowser.h \ + sql/parser/ParserDriver.h \ + sql/parser/sqlite3_lexer.h \ + sql/parser/sqlite3_location.h \ + sql/parser/sqlite3_parser.hpp + +SOURCES += \ + RemoteCommitsModel.cpp \ + RemoteLocalFilesModel.cpp \ + RemoteNetwork.cpp \ + sqlitedb.cpp \ + MainWindow.cpp \ + EditIndexDialog.cpp \ + EditTableDialog.cpp \ + AddRecordDialog.cpp \ + Settings.cpp \ + PreferencesDialog.cpp \ + AboutDialog.cpp \ + EditDialog.cpp \ + ExportDataDialog.cpp \ + ImportCsvDialog.cpp \ + sqltextedit.cpp \ + sql/sqlitetypes.cpp \ + csvparser.cpp \ + ExtendedTableWidget.cpp \ + sqlitetablemodel.cpp \ + RowLoader.cpp \ + FilterTableHeader.cpp \ + SqlExecutionArea.cpp \ + VacuumDialog.cpp \ + DbStructureModel.cpp \ + Application.cpp \ + CipherDialog.cpp \ + ExportSqlDialog.cpp \ + SqlUiLexer.cpp \ + FileDialog.cpp \ + ColumnDisplayFormatDialog.cpp \ + FilterLineEdit.cpp \ + RemoteDatabase.cpp \ + ForeignKeyEditorDelegate.cpp \ + PlotDock.cpp \ + RemoteDock.cpp \ + RemoteModel.cpp \ + RemotePushDialog.cpp \ + docktextedit.cpp \ + FindReplaceDialog.cpp \ + ExtendedScintilla.cpp \ + FileExtensionManager.cpp \ + CondFormatManager.cpp \ + Data.cpp \ + CipherSettings.cpp \ + DotenvFormat.cpp \ + Palette.cpp \ + CondFormat.cpp \ + sql/Query.cpp \ + RunSql.cpp \ + sql/ObjectIdentifier.cpp \ + ProxyDialog.cpp \ + IconCache.cpp \ + SelectItemsPopup.cpp \ + TableBrowser.cpp \ + sql/parser/ParserDriver.cpp \ + sql/parser/sqlite3_lexer.cpp \ + sql/parser/sqlite3_parser.cpp + +RESOURCES += icons/icons.qrc \ + translations/flags/flags.qrc \ + translations/translations.qrc \ + certs/CaCerts.qrc \ + qdarkstyle/style.qrc + +FORMS += \ + MainWindow.ui \ + EditIndexDialog.ui \ + AboutDialog.ui \ + EditTableDialog.ui \ + AddRecordDialog.ui \ + PreferencesDialog.ui \ + EditDialog.ui \ + ExportDataDialog.ui \ + ImportCsvDialog.ui \ + SqlExecutionArea.ui \ + VacuumDialog.ui \ + CipherDialog.ui \ + ExportSqlDialog.ui \ + ColumnDisplayFormatDialog.ui \ + PlotDock.ui \ + RemoteDock.ui \ + RemotePushDialog.ui \ + FindReplaceDialog.ui \ + FileExtensionManager.ui \ + CondFormatManager.ui \ + ProxyDialog.ui \ + SelectItemsPopup.ui \ + TableBrowser.ui + +TRANSLATIONS += \ + translations/sqlb_ar_SA.ts \ + translations/sqlb_cs.ts \ + translations/sqlb_zh.ts \ + translations/sqlb_zh_TW.ts \ + translations/sqlb_de.ts \ + translations/sqlb_es_ES.ts \ + translations/sqlb_fr.ts \ + translations/sqlb_ru.ts \ + translations/sqlb_pl.ts \ + translations/sqlb_pt_BR.ts \ + translations/sqlb_en_GB.ts \ + translations/sqlb_ko_KR.ts \ + translations/sqlb_tr.ts \ + translations/sqlb_uk_UA.ts \ + translations/sqlb_it.ts \ + translations/sqlb_ja.ts \ + translations/sqlb_nl.ts + +# SQLite / SQLCipher switch pieces +CONFIG(sqlcipher) { + QMAKE_CXXFLAGS += -DENABLE_SQLCIPHER + LIBS += -lsqlcipher + + # Add the paths for Homebrew installed SQLCipher + macx { + INCLUDEPATH += /usr/local/opt/sqlcipher/include + LIBS += -L/usr/local/opt/sqlcipher/lib + } +} else { + LIBS += -lsqlite3 + + # Add the paths for Homebrew installed SQLite + macx { + INCLUDEPATH += /usr/local/opt/sqlite/include + LIBS += -L/usr/local/opt/sqlite/lib + } +} + +LIBPATH_QHEXEDIT=$$OUT_PWD/../libs/qhexedit +LIBPATH_QCUSTOMPLOT=$$OUT_PWD/../libs/qcustomplot-source +LIBPATH_QSCINTILLA=$$OUT_PWD/../libs/qscintilla/Qt4Qt5 +LIBPATH_JSON=$$OUT_PWD/../libs/json +unix { + LIBS += -ldl +} +os2 { + RC_FILE = os2app.rc +} +win32 { + TARGET = "DB Browser for SQLite" + RC_FILE = winapp.rc + INCLUDEPATH += $$PWD + CONFIG(debug,debug|release) { + LIBPATH_QHEXEDIT = $$LIBPATH_QHEXEDIT/debug + LIBPATH_QCUSTOMPLOT = $$LIBPATH_QCUSTOMPLOT/debug + LIBPATH_QSCINTILLA = $$LIBPATH_QSCINTILLA/debug + LIBPATH_JSON = $$LIBPATH_JSON/debug + } + CONFIG(release,debug|release) { + LIBPATH_QHEXEDIT = $$LIBPATH_QHEXEDIT/release + LIBPATH_QCUSTOMPLOT = $$LIBPATH_QCUSTOMPLOT/release + LIBPATH_QSCINTILLA = $$LIBPATH_QSCINTILLA/release + LIBPATH_JSON = $$LIBPATH_JSON/release + } + QMAKE_CXXFLAGS += -DCHECKNEWVERSION + + # Added SQLite installation path variables, matching our setup guide + LIBS += -L$$PWD/../../../dev/SQLite/ -lsqlite3 + INCLUDEPATH += $$PWD/../../../dev/SQLite + DEPENDPATH += $$PWD/../../../dev/SQLite +} +macx { + TARGET = "DB Browser for SQLite" + RC_FILE = macapp.icns + QT += macextras opengl + INCLUDEPATH += /usr/local/include + LIBS += -L/usr/local/lib -framework Carbon + QMAKE_INFO_PLIST = app.plist + QMAKE_CXXFLAGS += -DCHECKNEWVERSION +} + +CONFIG(all_warnings) { + QMAKE_CXXFLAGS += -Wall -Wextra -Wshadow -Wnon-virtual-dtor -Wold-style-cast -Wcast-align -Wunused -Woverloaded-virtual -Wpedantic -Wconversion -Wsign-conversion + QMAKE_CXXFLAGS += -Wnull-dereference -Wdouble-promotion -Wformat=2 -Wduplicated-cond -Wduplicated-branches -Wlogical-op -Wuseless-cast +} + +UI_DIR = .ui +INCLUDEPATH += $$PWD/../libs/qhexedit/src $$PWD/../libs/qcustomplot-source $$PWD/../libs/qscintilla/Qt4Qt5 $$PWD/../libs/json $$PWD/.. +LIBS += -L$$LIBPATH_QHEXEDIT -L$$LIBPATH_QCUSTOMPLOT -L$$LIBPATH_QSCINTILLA -lqhexedit -lqcustomplot -lqscintilla2 +DEPENDPATH += $$PWD/../libs/qhexedit $$PWD/../libs/qcustomplot-source $$PWD/../libs/qscintilla/Qt4Qt5 $$PWD/../libs/json + +unix { + # Below, the user can specify where all generated file can be placed + # through a set of variables, being them: + # + # PREFIX -> the root directory where the files will be placed + # BINDIR -> where executables accessible by the user resides + # DATADIR -> where data files and resources should be placed + # + # The values of each variable changes between supported platforms and are describe as follow + + # Default configuration for package sqlitebrowser. + # The default prefix is /usr/local + !defined(PREFIX, var): PREFIX = /usr/local + !defined(BINDIR, var): BINDIR = $$PREFIX/bin + !defined(DATADIR, var): DATADIR = $$PREFIX/share + + # The executable + target.path = $$BINDIR + INSTALLS += target + + # Icon + icon.path = $$DATADIR/icons/hicolor/256x256/apps/ + icon.files = icons/sqlitebrowser.png + INSTALLS += icon + + # Desktop metadata + desktop.path = $$DATADIR/applications/ + desktop.files = ../distri/sqlitebrowser.desktop + INSTALLS += desktop + appdata.path = $$DATADIR/metainfo/ + appdata.files = ../distri/sqlitebrowser.desktop.appdata.xml + INSTALLS += appdata +} + +# Rules for creating/updating {ts|qm}-files +include(i18n.pri) diff --git a/src/SqliteDBProcess/src/tests/CMakeLists.txt b/src/SqliteDBProcess/src/tests/CMakeLists.txt new file mode 100644 index 0000000..ccf87c6 --- /dev/null +++ b/src/SqliteDBProcess/src/tests/CMakeLists.txt @@ -0,0 +1,162 @@ +include_directories("${CMAKE_CURRENT_BINARY_DIR}" ..) + +if(NOT WIN32) + set(LPTHREAD pthread) +endif() + +# test-sqlobjects + +set(TESTSQLOBJECTS_SRC + ../sqlitedb.cpp + ../sqlitetablemodel.cpp + ../RowLoader.cpp + ../sql/sqlitetypes.cpp + ../sql/Query.cpp + ../sql/ObjectIdentifier.cpp + ../csvparser.cpp + ../Settings.cpp + testsqlobjects.cpp + ../Data.cpp + ../CipherSettings.cpp + ../DotenvFormat.cpp + ../CondFormat.cpp + ../sql/parser/ParserDriver.cpp + ../sql/parser/sqlite3_lexer.cpp + ../sql/parser/sqlite3_parser.cpp +) + +set(TESTSQLOBJECTS_HDR + ../sql/sqlitetypes.h + ../sql/Query.h + ../sql/ObjectIdentifier.h + ../Data.h + ../sql/parser/ParserDriver.h + ../sql/parser/sqlite3_lexer.h + ../sql/parser/sqlite3_location.h + ../sql/parser/sqlite3_parser.hpp +) + +set(TESTSQLOBJECTS_MOC_HDR + ../sqlitedb.h + ../sqlitetablemodel.h + ../Settings.h + testsqlobjects.h + ../CipherSettings.h + ../DotenvFormat.h + ../CondFormat.h +) + +if(sqlcipher) + list(APPEND TESTSQLOBJECTS_SRC ../CipherDialog.cpp) + list(APPEND TESTSQLOBJECTS_FORMS ../CipherDialog.ui) + list(APPEND TESTSQLOBJECTS_MOC_HDR ../CipherDialog.h) +endif() + +QT5_WRAP_UI(TESTSQLOBJECTS_FORM_HDR ${TESTSQLOBJECTS_FORMS}) + +add_executable(test-sqlobjects ${TESTSQLOBJECTS_MOC} ${TESTSQLOBJECTS_HDR} ${TESTSQLOBJECTS_SRC} ${TESTSQLOBJECTS_FORM_HDR}) + +find_package(Qt5 REQUIRED COMPONENTS Test Widgets Gui) +target_link_libraries(test-sqlobjects Qt5::Test Qt5::Widgets Qt5::Gui) + +set(QT_LIBRARIES "") + +target_link_libraries(test-sqlobjects ${QT_LIBRARIES} ${LIBSQLITE}) +target_link_libraries(test-sqlobjects ${LPTHREAD}) +add_test(test-sqlobjects test-sqlobjects) + +# test-import + +set(TESTIMPORT_SRC + ../csvparser.cpp + TestImport.cpp +) + +set(TESTIMPORT_MOC_HDR + TestImport.h +) + +add_executable(test-import ${TESTIMPORT_MOC} ${TESTIMPORT_SRC}) + +find_package(Qt5 REQUIRED COMPONENTS Core) +target_link_libraries(test-import Qt5::Test Qt5::Core) + +set(QT_LIBRARIES "") + +target_link_libraries(test-import ${QT_LIBRARIES}) +add_test(test-import test-import) + +# test regex + +set(TESTREGEX_SRC + ../sqlitedb.cpp + ../sqlitetablemodel.cpp + ../RowLoader.cpp + ../sql/sqlitetypes.cpp + ../sql/Query.cpp + ../sql/ObjectIdentifier.cpp + ../Settings.cpp + TestRegex.cpp + ../Data.cpp + ../CipherSettings.cpp + ../DotenvFormat.cpp + ../CondFormat.cpp + ../sql/parser/ParserDriver.cpp + ../sql/parser/sqlite3_lexer.cpp + ../sql/parser/sqlite3_parser.cpp +) + +set(TESTREGEX_HDR + ../sql/sqlitetypes.h + ../sql/Query.h + ../sql/ObjectIdentifier.h + ../Data.h + ../sql/parser/ParserDriver.h + ../sql/parser/sqlite3_lexer.h + ../sql/parser/sqlite3_location.h + ../sql/parser/sqlite3_parser.hpp +) + +set(TESTREGEX_MOC_HDR + ../sqlitedb.h + ../sqlitetablemodel.h + ../Settings.h + TestRegex.h + ../CipherSettings.h + ../DotenvFormat.h + ../CondFormat.h +) + +if(sqlcipher) + list(APPEND TESTREGEX_SRC ../CipherDialog.cpp) + list(APPEND TESTREGEX_MOC_HDR ../CipherDialog.h) +endif() + +add_executable(test-regex ${TESTREGEX_MOC} ${TESTREGEX_HDR} ${TESTREGEX_SRC}) + +target_link_libraries(test-regex Qt5::Test Qt5::Core Qt5::Gui Qt5::Widgets) + +set(QT_LIBRARIES "") + +target_link_libraries(test-regex ${QT_LIBRARIES} ${LIBSQLITE}) +target_link_libraries(test-regex ${LPTHREAD}) +add_test(test-regex test-regex) + +# test cache + +set(TESTCACHE_SRC + TestRowCache.cpp +) + +set(TESTCACHE_MOC_HDR + TestRowCache.h +) + +add_executable(test-cache ${TESTCACHE_MOC} ${TESTCACHE_SRC}) + +target_link_libraries(test-cache Qt5::Test Qt5::Core) + +set(QT_LIBRARIES "") + +target_link_libraries(test-cache ${QT_LIBRARIES}) +add_test(test-cache test-cache) diff --git a/src/SqliteDBProcess/src/tests/TestImport.cpp b/src/SqliteDBProcess/src/tests/TestImport.cpp new file mode 100644 index 0000000..8b84147 --- /dev/null +++ b/src/SqliteDBProcess/src/tests/TestImport.cpp @@ -0,0 +1,178 @@ +// force QtCore-only main application by QTEST_MAIN +#undef QT_GUI_LIB +#include +#include +#include +#include +#include + +#include "csvparser.h" +#include "TestImport.h" + +//QTEST_MAIN(TestImport) + +TestImport::TestImport() +{ +} + +TestImport::~TestImport() +{ +} + +void TestImport::csvImport() +{ + // Fetch data + QFETCH(QString, csv); + QFETCH(char, separator); + QFETCH(char, quote); + QFETCH(QString, encoding); + QFETCH(int, numfields); + QFETCH(std::vector>, result); + + // Create temporary CSV file + QTemporaryFile file; + QVERIFY(file.open()); + { + QTextStream out(&file); + out.setCodec(encoding.toUtf8()); + out << csv; + } + file.flush(); + + CSVParser csvparser(true, separator, quote); + file.seek(0); + QTextStream tstream(&file); + tstream.setCodec(encoding.toUtf8()); + + std::vector> parsedCsv; + int parsedCsvColumns = 0; + csvparser.parse([&parsedCsv, &parsedCsvColumns](size_t /*rowNum*/, const CSVRow& data) -> bool { + std::vector row; + for(size_t i=0;i parsedCsvColumns) + parsedCsvColumns = row.size(); + return true; + }, tstream); + + // Check return values + QCOMPARE(parsedCsvColumns, numfields); + QCOMPARE(parsedCsv.size(), result.size()); + for(int i=0;i("csv"); + QTest::addColumn("separator"); + QTest::addColumn("quote"); + QTest::addColumn("encoding"); + QTest::addColumn("numfields"); + QTest::addColumn>>("result"); + + std::vector> result{ + {"a", "b", "c"}, + {"d", "e", "f"}, + {"g", "h", "i"} + }; + QTest::newRow("commas_noquotes") << "a,b,c\nd,e,f\ng,h,i\n" + << ',' + << static_cast(0) + << "UTF-8" + << 3 + << result; + QTest::newRow("semicolons_noquotes") << "a;b;c\nd;e;f\ng;h;i\n" + << ';' + << static_cast(0) + << "UTF-8" + << 3 + << result; + QTest::newRow("commas_doublequotes") << "\"a\",\"b\",\"c\"\n\"d\",\"e\",\"f\"\n\"g\",\"h\",\"i\"\n" + << ',' + << '"' + << "UTF-8" + << 3 + << result; + QTest::newRow("noquotes_butquotesset") << "a,b,c\nd,e,f\ng,h,i\n" + << ',' + << '"' + << "UTF-8" + << 3 + << result; + QTest::newRow("windowslinebreaks") << "a,b,c\r\nd,e,f\r\ng,h,i\r\n" + << ',' + << static_cast(0) + << "UTF-8" + << 3 + << result; + QTest::newRow("oldmaclinebreaks") << "a,b,c\rd,e,f\rg,h,i\r" + << ',' + << static_cast(0) + << "UTF-8" + << 3 + << result; + + result.clear(); + result = { + {"a", "b", ""}, + {"c", ""}, + {"d", "", "e"}, + {""}, + {"", "", "f"} + }; + QTest::newRow("emptyvalues") << "a,b,\nc,\nd,,e\n\n,,f" + << ',' + << static_cast(0) + << "UTF-8" + << 3 + << result; + + result.clear(); + result = {{"a", "b", "c"}}; + QTest::newRow("oneline") << "a,b,c" + << ',' + << static_cast(0) + << "UTF-8" + << 3 + << result; + + result.clear(); + result = { + {"a,a\"", "b", "c"}, + {"d", "e", "\"\"f,f"} + }; + + QTest::newRow("manyquotes") << "\"a,a\"\"\",\"b\",\"c\"\n\"d\",\"e\",\"\"\"\"\"f,f\"\n" + << ',' + << '"' + << "UTF-8" + << 3 + << result; + + result.clear(); + result = {{QByteArray("\xC2\xAE"), QByteArray("\xC9\x85"), QByteArray("\xC6\x89")}}; + QString csv = QString::fromUtf8("\xC2\xAE") + "," + QString::fromUtf8("\xC9\x85") + "," + QString::fromUtf8("\xC6\x89") + "\n"; + QTest::newRow("utf8chars") << csv + << ',' + << static_cast(0) + << "UTF-8" + << 3 + << result; + + result.clear(); + result = {{QByteArray("\u4E18"), QByteArray("\u4E26"), QByteArray("\u4E4B")}}; + QString csv2 = QString::fromUtf8("\u4E18") + "," + QString::fromUtf8("\u4E26") + "," + QString::fromUtf8("\u4E4B") + "\n"; + QTest::newRow("utf16chars") << csv2 + << ',' + << static_cast(0) + << "UTF-16" + << 3 + << result; +} diff --git a/src/SqliteDBProcess/src/tests/TestImport.h b/src/SqliteDBProcess/src/tests/TestImport.h new file mode 100644 index 0000000..37496a8 --- /dev/null +++ b/src/SqliteDBProcess/src/tests/TestImport.h @@ -0,0 +1,19 @@ +#ifndef TESTIMPORT_H +#define TESTIMPORT_H +#include "WBFZExchangePluginAPI.h" +#include + +class TestImport : public QObject +{ + Q_OBJECT + +public: + TestImport(); + ~TestImport(); + +private slots: + void csvImport(); + void csvImport_data(); +}; + +#endif diff --git a/src/SqliteDBProcess/src/tests/TestRegex.cpp b/src/SqliteDBProcess/src/tests/TestRegex.cpp new file mode 100644 index 0000000..b5d4396 --- /dev/null +++ b/src/SqliteDBProcess/src/tests/TestRegex.cpp @@ -0,0 +1,81 @@ +#include "TestRegex.h" +#include "../sqlitetablemodel.h" + +#include + +//QTEST_APPLESS_MAIN(TestRegex) + +void TestRegex::sqlQueryComments_data() +{ + QTest::addColumn("dirtyQuery"); + QTest::addColumn("clearQuery"); + + QTest::newRow("test1") + << // dirtyQuery + "SELECT * -- asd ffdsf\n" + "-- saf ewf sf\n" + "-- dsaf fd\n" + "FROM \t-- sfsdf\n" + "qwfwqf -- asdasd" + << // clearQuery + "SELECT *\nFROM\nqwfwqf"; + + QTest::newRow("test2") + << // dirtyQuery + "SELECT *-- comment\n" + "FROM\n\n" + "-- something\n" + "qwfqwf" + << // cleanQuery + "SELECT *\nFROM\nqwfqwf"; + + QTest::newRow("test3") + << // dirtyQuery + "-- Comment before the query\n" + "SELECT * FROM test" + << // cleanQuery + "SELECT * FROM test"; + + QTest::newRow("test4") + << // dirtyQuery + "SELECT * FROM test\n" + "-- Comment after the query" + << // cleanQuery + "SELECT * FROM test"; + + QTest::newRow("test5") + << // dirtyQuery + "SELECT 40+2 -- get the answer\n" + "AS answer" + << // cleanQuery + "SELECT 40+2\n" + "AS answer"; + + QTest::newRow("test6") + << // dirtyQuery + "SELECT '-- comment inside quotes'" + << // cleanQuery + "SELECT '-- comment inside quotes'"; + + QTest::newRow("single_quote_comment") + << // dirtyQuery + "SELECT 'something--something' -- comment" + << // cleanQuery + "SELECT 'something--something'"; + + /* This still needs to be fixed in our code before activating the test + QTest::newRow("double_quote_comment") + << // dirtyQuery + "SELECT \"something--something\" -- comment" + << // cleanQuery + "SELECT \"something--something\"";*/ +} + +void TestRegex::sqlQueryComments() +{ + QFETCH(QString, dirtyQuery); + QFETCH(QString, clearQuery); + + SqliteTableModel::removeCommentsFromQuery(dirtyQuery); + QCOMPARE(dirtyQuery, clearQuery); +} diff --git a/src/SqliteDBProcess/src/tests/TestRegex.h b/src/SqliteDBProcess/src/tests/TestRegex.h new file mode 100644 index 0000000..c874c67 --- /dev/null +++ b/src/SqliteDBProcess/src/tests/TestRegex.h @@ -0,0 +1,17 @@ +#ifndef TESTREGEX_H +#define TESTREGEX_H + +#define REGEX_UNIT_TEST +#include "WBFZExchangePluginAPI.h" +#include + +class TestRegex : public QObject +{ + Q_OBJECT + +private slots: + void sqlQueryComments(); + void sqlQueryComments_data(); +}; + +#endif diff --git a/src/SqliteDBProcess/src/tests/TestRowCache.cpp b/src/SqliteDBProcess/src/tests/TestRowCache.cpp new file mode 100644 index 0000000..d2871ab --- /dev/null +++ b/src/SqliteDBProcess/src/tests/TestRowCache.cpp @@ -0,0 +1,189 @@ +#include + +#include "TestRowCache.h" +#include "../RowCache.h" + +//QTEST_APPLESS_MAIN(TestRowCache) + +TestRowCache::TestRowCache() +{ +} + +TestRowCache::~TestRowCache() +{ +} + +using C = RowCache; + +void TestRowCache::construction() +{ + C c; + + QCOMPARE(c.numSet(), static_cast(0)); + + QVERIFY(c.count(0) == false); + QVERIFY(c.count(1) == false); + QVERIFY(c.count(2) == false); + + QVERIFY_EXCEPTION_THROWN(c.at(0), std::out_of_range); +} + +void TestRowCache::setGet() +{ + C c; + + c.set(1, 10); + c.set(5, 50); + c.set(0, 0); + c.set(6, 60); + c.set(100, 1000); + + QCOMPARE(c.numSet(), static_cast(5)); + QCOMPARE(c.numSegments(), static_cast(4)); // the '0' set after the '1' position does not merge currently + + int cnt = 0; + const C & cc = c; + for(size_t i = 0; i < 200; i++) { + if(c.count(i)) { + QCOMPARE(c.at(i), static_cast(10*i)); + QCOMPARE(cc.at(i), static_cast(10*i)); + cnt++; + } else { + QVERIFY_EXCEPTION_THROWN(c.at(i), std::out_of_range); + QVERIFY_EXCEPTION_THROWN(cc.at(i), std::out_of_range); + } + } + QCOMPARE(cnt, 5); +} + +void TestRowCache::insert() +{ + C c; + + c.insert(3, 30); + QCOMPARE(c.numSet(), static_cast(1)); + QCOMPARE(c.numSegments(), static_cast(1)); + QCOMPARE(c.at(3), 30); + + c.insert(3, 31); + QCOMPARE(c.numSet(), static_cast(2)); + QCOMPARE(c.numSegments(), static_cast(1)); + QCOMPARE(c.at(3), 31); + QCOMPARE(c.at(4), 30); + + c.insert(0, 0); + QCOMPARE(c.numSet(), static_cast(3)); + QCOMPARE(c.numSegments(), static_cast(2)); + QCOMPARE(c.at(0), 0); + QVERIFY_EXCEPTION_THROWN(c.at(3), std::out_of_range); + QCOMPARE(c.at(4), 31); + QCOMPARE(c.at(5), 30); + QVERIFY_EXCEPTION_THROWN(c.at(6), std::out_of_range); + + c.insert(1, 100); + QCOMPARE(c.numSet(), static_cast(4)); + QCOMPARE(c.numSegments(), static_cast(2)); + QCOMPARE(c.at(0), 0); + QCOMPARE(c.at(1), 100); + QCOMPARE(c.at(5), 31); + QCOMPARE(c.at(6), 30); + + c.insert(8, 1); + QCOMPARE(c.numSet(), static_cast(5)); + QCOMPARE(c.numSegments(), static_cast(3)); + QCOMPARE(c.at(0), 0); + QCOMPARE(c.at(1), 100); + QCOMPARE(c.at(5), 31); + QCOMPARE(c.at(6), 30); + QCOMPARE(c.at(8), 1); +} + +void TestRowCache::erase() +{ + C c; + c.insert(3, 30); + c.insert(3, 31); + c.insert(0, 0); + c.insert(8, 1); + QCOMPARE(c.numSet(), static_cast(4)); + QCOMPARE(c.numSegments(), static_cast(3)); + QCOMPARE(c.at(0), 0); + QCOMPARE(c.at(4), 31); + QCOMPARE(c.at(5), 30); + QCOMPARE(c.at(8), 1); + + // erase entire segment + c.erase(0); + QCOMPARE(c.numSet(), static_cast(3)); + QCOMPARE(c.numSegments(), static_cast(2)); + QCOMPARE(c.at(3), 31); + QCOMPARE(c.at(4), 30); + QCOMPARE(c.at(7), 1); + + // erase inside segment + c.erase(4); + QCOMPARE(c.numSet(), static_cast(2)); + QCOMPARE(c.numSegments(), static_cast(2)); + QCOMPARE(c.at(3), 31); + QCOMPARE(c.at(6), 1); + + // erase non-filled row + c.erase(5); + QCOMPARE(c.numSet(), static_cast(2)); + QCOMPARE(c.numSegments(), static_cast(2)); + QCOMPARE(c.at(3), 31); + QCOMPARE(c.at(5), 1); + + c.erase(5); + QCOMPARE(c.numSet(), static_cast(1)); + QCOMPARE(c.numSegments(), static_cast(1)); + QCOMPARE(c.at(3), 31); + + c.erase(3); + QCOMPARE(c.numSet(), static_cast(0)); + QCOMPARE(c.numSegments(), static_cast(0)); +} + +void TestRowCache::smallestNonAvailableRange() +{ + C c; + c.insert(3, 0); + c.insert(3, 0); + c.insert(0, 0); + c.insert(8, 0); + QCOMPARE(c.numSet(), static_cast(4)); + QVERIFY(c.count(0)); + QVERIFY(c.count(4)); + QVERIFY(c.count(5)); + QVERIFY(c.count(8)); + + using P = std::pair; + + auto test = [&](size_t begin, size_t end) { + P p{ begin, end }; + c.smallestNonAvailableRange(p.first, p.second); + return p; + }; + + QCOMPARE(test( 0, 0), P( 0, 0)); + QCOMPARE(test( 0, 1), P( 1, 1)); + QCOMPARE(test( 0, 2), P( 1, 2)); + QCOMPARE(test( 0, 3), P( 1, 3)); + QCOMPARE(test( 0, 4), P( 1, 4)); + QCOMPARE(test( 0, 5), P( 1, 4)); + QCOMPARE(test( 0, 6), P( 1, 4)); + QCOMPARE(test( 0, 7), P( 1, 7)); + QCOMPARE(test( 0, 8), P( 1, 8)); + QCOMPARE(test( 0, 9), P( 1, 8)); + QCOMPARE(test( 0,10), P( 1,10)); + QCOMPARE(test( 1,10), P( 1,10)); + QCOMPARE(test( 2,10), P( 2,10)); + QCOMPARE(test( 3,10), P( 3,10)); + QCOMPARE(test( 4,10), P( 6,10)); + QCOMPARE(test( 5,10), P( 6,10)); + QCOMPARE(test( 6,10), P( 6,10)); + QCOMPARE(test( 7,10), P( 7,10)); + QCOMPARE(test( 8,10), P( 9,10)); + QCOMPARE(test( 9,10), P( 9,10)); + QCOMPARE(test(10,10), P(10,10)); +} diff --git a/src/SqliteDBProcess/src/tests/TestRowCache.h b/src/SqliteDBProcess/src/tests/TestRowCache.h new file mode 100644 index 0000000..9c768c1 --- /dev/null +++ b/src/SqliteDBProcess/src/tests/TestRowCache.h @@ -0,0 +1,22 @@ +#ifndef TESTROWCACHE_H +#define TESTROWCACHE_H +#include "WBFZExchangePluginAPI.h" +#include + +class TestRowCache : public QObject +{ + Q_OBJECT + +public: + TestRowCache(); + ~TestRowCache(); + +private slots: + void construction(); + void setGet(); + void insert(); + void erase(); + void smallestNonAvailableRange(); +}; + +#endif diff --git a/src/SqliteDBProcess/src/tests/testsqlobjects.cpp b/src/SqliteDBProcess/src/tests/testsqlobjects.cpp new file mode 100644 index 0000000..f6c95b7 --- /dev/null +++ b/src/SqliteDBProcess/src/tests/testsqlobjects.cpp @@ -0,0 +1,773 @@ +#include "testsqlobjects.h" +#include "../sql/ObjectIdentifier.h" +#include "../sql/sqlitetypes.h" + +#include + +//QTEST_APPLESS_MAIN(TestTable) +Q_DECLARE_METATYPE(std::string) + +using namespace sqlb; + +#if QT_VERSION < QT_VERSION_CHECK(5, 10, 0) +namespace QTest +{ +template +inline bool qCompare(const T1 &t1, const T2 &t2, const char *actual, const char *expected, + const char *file, int line) +{ + return compare_helper(t1 == t2, "Compared values are not the same", + toString(t1), toString(t2), actual, expected, file, line); +} +} +#endif + +void TestTable::sqlOutput() +{ + Table tt("testtable"); + Field f("id", "integer"); + Field fkm("km", "integer", false, "", "km > 1000"); + tt.fields.push_back(f); + tt.fields.emplace_back("car", "text"); + tt.fields.push_back(fkm); + tt.addConstraint(ConstraintPtr(new PrimaryKeyConstraint({f.name(), fkm.name()}))); + + QCOMPARE(tt.sql(), "CREATE TABLE \"testtable\" (\n" + "\t\"id\"\tinteger,\n" + "\t\"car\"\ttext,\n" + "\t\"km\"\tinteger CHECK(km > 1000),\n" + "\tPRIMARY KEY(\"id\",\"km\")\n" + ");"); +} + +void TestTable::sqlGraveAccentOutput() +{ + Table tt("testtable"); + Field f("id", "integer"); + Field fkm("km", "integer", false, "", "km > 1000"); + tt.fields.push_back(f); + tt.fields.emplace_back("car", "text"); + tt.fields.push_back(fkm); + tt.addConstraint(ConstraintPtr(new PrimaryKeyConstraint({f.name(), fkm.name()}))); + sqlb::setIdentifierQuoting(sqlb::GraveAccents); + + QCOMPARE(tt.sql(), "CREATE TABLE `testtable` (\n" + "\t`id`\tinteger,\n" + "\t`car`\ttext,\n" + "\t`km`\tinteger CHECK(km > 1000),\n" + "\tPRIMARY KEY(`id`,`km`)\n" + ");"); + + sqlb::setIdentifierQuoting(sqlb::DoubleQuotes); +} + + +void TestTable::sqlSquareBracketsOutput() +{ + Table tt("testtable"); + Field f("id", "integer"); + Field fkm("km", "integer", false, "", "km > 1000"); + tt.fields.push_back(f); + tt.fields.emplace_back("car", "text"); + tt.fields.push_back(fkm); + tt.addConstraint(ConstraintPtr(new PrimaryKeyConstraint({f.name(), fkm.name()}))); + sqlb::setIdentifierQuoting(sqlb::SquareBrackets); + + QCOMPARE(tt.sql(), "CREATE TABLE [testtable] (\n" + "\t[id]\tinteger,\n" + "\t[car]\ttext,\n" + "\t[km]\tinteger CHECK(km > 1000),\n" + "\tPRIMARY KEY([id],[km])\n" + ");"); + + sqlb::setIdentifierQuoting(sqlb::DoubleQuotes); +} + +void TestTable::autoincrement() +{ + Table tt("testtable"); + Field f("id", "integer"); + Field fkm("km", "integer"); + tt.fields.push_back(f); + tt.fields.emplace_back("car", "text"); + tt.fields.push_back(fkm); + PrimaryKeyConstraint pk({f.name()}); + pk.setAutoIncrement(true); + tt.addConstraint(ConstraintPtr(new PrimaryKeyConstraint(pk))); + + QCOMPARE(tt.sql(), "CREATE TABLE \"testtable\" (\n" + "\t\"id\"\tinteger,\n" + "\t\"car\"\ttext,\n" + "\t\"km\"\tinteger,\n" + "\tPRIMARY KEY(\"id\" AUTOINCREMENT)\n" + ");"); +} + +void TestTable::notnull() +{ + Table tt("testtable"); + Field f("id", "integer"); + Field fkm("km", "integer"); + tt.fields.push_back(f); + tt.fields.emplace_back("car", "text", true); + tt.fields.push_back(fkm); + PrimaryKeyConstraint pk({f.name()}); + pk.setAutoIncrement(true); + tt.addConstraint(ConstraintPtr(new PrimaryKeyConstraint(pk))); + + QCOMPARE(tt.sql(), "CREATE TABLE \"testtable\" (\n" + "\t\"id\"\tinteger,\n" + "\t\"car\"\ttext NOT NULL,\n" + "\t\"km\"\tinteger,\n" + "\tPRIMARY KEY(\"id\" AUTOINCREMENT)\n" + ");"); +} + +void TestTable::withoutRowid() +{ + Table tt("testtable"); + Field f("a", "integer"); + tt.fields.push_back(f); + tt.fields.emplace_back("b", "integer"); + tt.setWithoutRowidTable(true); + tt.addConstraint(ConstraintPtr(new PrimaryKeyConstraint({f.name()}))); + + QCOMPARE(tt.sql(), "CREATE TABLE \"testtable\" (\n" + "\t\"a\"\tinteger,\n" + "\t\"b\"\tinteger,\n" + "\tPRIMARY KEY(\"a\")\n" + ") WITHOUT ROWID;"); +} + +void TestTable::foreignKeys() +{ + Table tt("testtable"); + Field f("a", "integer"); + tt.fields.push_back(f); + sqlb::ConstraintPtr fk = sqlb::ConstraintPtr(new sqlb::ForeignKeyClause("b", sqlb::StringVector{"c"})); + fk->setColumnList({f.name()}); + tt.addConstraint(fk); + + QCOMPARE(tt.sql(), "CREATE TABLE \"testtable\" (\n" + "\t\"a\"\tinteger,\n" + "\tFOREIGN KEY(\"a\") REFERENCES \"b\"(\"c\")\n" + ");"); +} + +void TestTable::uniqueConstraint() +{ + Table tt("testtable"); + Field f1("a", "integer"); + Field f2("b", "integer"); + Field f3("c", "integer"); + f1.setUnique(true); + tt.fields.push_back(f1); + tt.fields.push_back(f2); + tt.fields.push_back(f3); + tt.addConstraint(sqlb::ConstraintPtr(new sqlb::UniqueConstraint({f2.name(), f3.name()}))); + + QCOMPARE(tt.sql(), "CREATE TABLE \"testtable\" (\n" + "\t\"a\"\tinteger UNIQUE,\n" + "\t\"b\"\tinteger,\n" + "\t\"c\"\tinteger,\n" + "\tUNIQUE(\"b\",\"c\")\n" + ");"); +} + +void TestTable::parseSQL() +{ + std::string sSQL = "create TABLE hero (\n" + "\tid integer PRIMARY KEY AUTOINCREMENT,\n" + "\tname text NOT NULL DEFAULT 'xxxx',\n" + "\tinfo VARCHAR(255) CHECK (info == 'x')\n" + ");"; + + Table tab(*Table::parseSQL(sSQL)); + + QCOMPARE(tab.name(), "hero"); + QCOMPARE(tab.rowidColumns(), {"_rowid_"}); + QCOMPARE(tab.fields.at(0).name(), "id"); + QCOMPARE(tab.fields.at(1).name(), "name"); + QCOMPARE(tab.fields.at(2).name(), "info"); + + QCOMPARE(tab.fields.at(0).type(), "integer"); + QCOMPARE(tab.fields.at(1).type(), "text"); + QCOMPARE(tab.fields.at(2).type(), "VARCHAR(255)"); + + auto pk = tab.primaryKey(); + QVERIFY(pk->autoIncrement()); + QCOMPARE(pk->columnList().size(), 1); + QCOMPARE(pk->columnList().at(0), tab.fields.at(0).name()); + QVERIFY(tab.fields.at(1).notnull()); + QCOMPARE(tab.fields.at(1).defaultValue(), "'xxxx'"); + QCOMPARE(tab.fields.at(1).check(), ""); + QCOMPARE(tab.fields.at(2).check(), "\"info\" == 'x'"); +} + +void TestTable::parseSQLdefaultexpr() +{ + std::string sSQL = "CREATE TABLE chtest(\n" + "id integer primary key,\n" + "dumpytext text default('axa') CHECK(dumpytext == \"aa\"),\n" + "date datetime default CURRENT_TIMESTAMP," + "zoi integer)"; + + Table tab(*Table::parseSQL(sSQL)); + + QCOMPARE(tab.name(), "chtest"); + QCOMPARE(tab.fields.at(0).name(), "id"); + QCOMPARE(tab.fields.at(1).name(), "dumpytext"); + QCOMPARE(tab.fields.at(2).name(), "date"); + QCOMPARE(tab.fields.at(3).name(), "zoi"); + + QCOMPARE(tab.fields.at(0).type(), "integer"); + QCOMPARE(tab.fields.at(1).type(), "text"); + QCOMPARE(tab.fields.at(2).type(), "datetime"); + QCOMPARE(tab.fields.at(3).type(), "integer"); + + QCOMPARE(tab.fields.at(1).defaultValue(), "('axa')"); + QCOMPARE(tab.fields.at(1).check(), "\"dumpytext\" == \"aa\""); + QCOMPARE(tab.fields.at(2).defaultValue(), "CURRENT_TIMESTAMP"); + QCOMPARE(tab.fields.at(2).check(), ""); + QCOMPARE(tab.fields.at(3).defaultValue(), ""); + QCOMPARE(tab.fields.at(3).check(), ""); + + auto pk = tab.primaryKey(); + QCOMPARE(pk->columnList().size(), 1); + QCOMPARE(pk->columnList().at(0), tab.fields.at(0).name()); +} + +void TestTable::parseSQLMultiPk() +{ + std::string sSQL = "CREATE TABLE hero (\n" + "\tid1 integer,\n" + "\tid2 integer,\n" + "\tnonpkfield blob,\n" + "PRIMARY KEY(\"id1\",\"id2\")\n" + ");"; + + Table tab(*Table::parseSQL(sSQL)); + + QCOMPARE(tab.name(), "hero"); + QCOMPARE(tab.fields.at(0).name(), "id1"); + QCOMPARE(tab.fields.at(1).name(), "id2"); + + QCOMPARE(tab.fields.at(0).type(), "integer"); + QCOMPARE(tab.fields.at(1).type(), "integer"); + + auto pk = tab.primaryKey(); + QCOMPARE(pk->columnList().size(), 2); + QCOMPARE(pk->columnList().at(0), tab.fields.at(0).name()); + QCOMPARE(pk->columnList().at(1), tab.fields.at(1).name()); +} + +void TestTable::parseSQLForeignKey() +{ + std::string sSQL = "CREATE TABLE grammar_test(id, test, FOREIGN KEY(test) REFERENCES other_table);"; + + Table tab(*Table::parseSQL(sSQL)); + + QCOMPARE(tab.name(), "grammar_test"); + QCOMPARE(tab.fields.at(0).name(), "id"); + QCOMPARE(tab.fields.at(1).name(), "test"); +} + +void TestTable::parseSQLSingleQuotes() +{ + std::string sSQL = "CREATE TABLE 'test'('id','test');"; + + Table tab(*Table::parseSQL(sSQL)); + + QCOMPARE(tab.name(), "test"); + QCOMPARE(tab.fields.at(0).name(), "id"); + QCOMPARE(tab.fields.at(1).name(), "test"); +} + +void TestTable::parseSQLSquareBrackets() +{ + std::string sSQL = "CREATE TABLE [test]([id],[test]);"; + + Table tab(*Table::parseSQL(sSQL)); + + QCOMPARE(tab.name(), "test"); + QCOMPARE(tab.fields.at(0).name(), "id"); + QCOMPARE(tab.fields.at(1).name(), "test"); +} + + +void TestTable::parseSQLKeywordInIdentifier() +{ + std::string sSQL = "CREATE TABLE deffered(key integer primary key, if text);"; + + Table tab(*Table::parseSQL(sSQL)); + + QCOMPARE(tab.name(), "deffered"); + QCOMPARE(tab.fields.at(0).name(), "key"); + QCOMPARE(tab.fields.at(1).name(), "if"); +} + + +void TestTable::parseSQLSomeKeywordsInIdentifier() +{ + std::string sSQL = "CREATE TABLE \"Average Number of Volunteers by Area of Work\" (" + "`Area of Work` TEXT," + "`Average Number of Volunteers` INTEGER);"; + + Table tab(*Table::parseSQL(sSQL)); + + QCOMPARE(tab.name(), "Average Number of Volunteers by Area of Work"); + QCOMPARE(tab.fields.at(0).name(), "Area of Work"); + QCOMPARE(tab.fields.at(1).name(), "Average Number of Volunteers"); +} + +void TestTable::parseSQLWithoutRowid() +{ + std::string sSQL = "CREATE TABLE test(a integer primary key, b integer) WITHOUT ROWID;"; + + Table tab(*Table::parseSQL(sSQL)); + + QCOMPARE(tab.primaryKey()->columnList(), {"a"}); + QCOMPARE(tab.rowidColumns(), {"a"}); +} + +void TestTable::parseNonASCIIChars() +{ + std::string sSQL = "CREATE TABLE `lösung` (" + "`Fieldöäüß` INTEGER," + "PRIMARY KEY(`Fieldöäüß`)" + ");"; + + Table tab(*Table::parseSQL(sSQL)); + + QCOMPARE(tab.name(), "lösung"); + QCOMPARE(tab.fields.at(0).name(), "Fieldöäüß"); +} + +void TestTable::parseNonASCIICharsEs() +{ + std::string sSQL = "CREATE TABLE \"Cigüeñas de Alcalá\" (" + "\"Field áéíóúÁÉÍÓÚñÑçÇ\" INTEGER," + "PRIMARY KEY(\"Field áéíóúÁÉÍÓÚñÑçÇ\")" + ");"; + + Table tab(*Table::parseSQL(sSQL)); + + QCOMPARE(tab.name(), "Cigüeñas de Alcalá"); + QCOMPARE(tab.fields.at(0).name(), "Field áéíóúÁÉÍÓÚñÑçÇ"); +} + +void TestTable::parseSQLEscapedQuotes() +{ + std::string sSql = "CREATE TABLE double_quotes(a text default 'a''a');"; + + Table tab(*Table::parseSQL(sSql)); + + QCOMPARE(tab.name(), "double_quotes"); + QCOMPARE(tab.fields.at(0).name(), "a"); + QCOMPARE(tab.fields.at(0).defaultValue(), "'a''a'"); +} + +void TestTable::parseSQLForeignKeys() +{ + std::string sql = "CREATE TABLE foreign_key_test(a int, b int, foreign key (a) references x, foreign key (b) references w(y,z) on delete set null);"; + + Table tab(*Table::parseSQL(sql)); + + QCOMPARE(tab.name(), "foreign_key_test"); + QCOMPARE(tab.fields.at(0).name(), "a"); + QCOMPARE(tab.fields.at(0).type(), "int"); + QCOMPARE(std::dynamic_pointer_cast(tab.constraint({tab.fields.at(0).name()}, sqlb::Constraint::ForeignKeyConstraintType))->table(), "x"); + QCOMPARE(tab.fields.at(1).name(), "b"); + QCOMPARE(tab.fields.at(1).type(), "int"); + QCOMPARE(std::dynamic_pointer_cast(tab.constraint({tab.fields.at(1).name()}, sqlb::Constraint::ForeignKeyConstraintType))->toString(), "\"w\"(\"y\",\"z\") on delete set null"); +} + +void TestTable::parseSQLCheckConstraint() +{ + std::string sql = "CREATE TABLE a (\"b\" text CHECK(\"b\"='A' or \"b\"='B'));"; + + Table tab(*Table::parseSQL(sql)); + + QCOMPARE(tab.name(), "a"); + QCOMPARE(tab.fields.at(0).name(), "b"); + QCOMPARE(tab.fields.at(0).type(), "text"); + QCOMPARE(tab.fields.at(0).check(), "\"b\" = 'A' OR \"b\" = 'B'"); +} + +void TestTable::parseDefaultValues() +{ + std::string sql = "CREATE TABLE test(a int DEFAULT 0, b int DEFAULT -1, c text DEFAULT 'hello', d text DEFAULT '0');"; + + Table tab(*Table::parseSQL(sql)); + + QCOMPARE(tab.name(), "test"); + QCOMPARE(tab.fields.at(0).name(), "a"); + QCOMPARE(tab.fields.at(0).type(), "int"); + QCOMPARE(tab.fields.at(0).defaultValue(), "0"); + QCOMPARE(tab.fields.at(1).name(), "b"); + QCOMPARE(tab.fields.at(1).type(), "int"); + QCOMPARE(tab.fields.at(1).defaultValue(), "-1"); + QCOMPARE(tab.fields.at(2).name(), "c"); + QCOMPARE(tab.fields.at(2).type(), "text"); + QCOMPARE(tab.fields.at(2).defaultValue(), "'hello'"); + QCOMPARE(tab.fields.at(3).name(), "d"); + QCOMPARE(tab.fields.at(3).type(), "text"); + QCOMPARE(tab.fields.at(3).defaultValue(), "'0'"); +} + +void TestTable::createTableWithIn() +{ + std::string sSQL = "CREATE TABLE not_working(" + "_id PRIMARY KEY NOT NULL," + "value NVARCHAR(5) CHECK (value IN ('a', 'b', 'c'))" + ");"; + + Table tab(*Table::parseSQL(sSQL)); + QCOMPARE(tab.name(), "not_working"); + + QCOMPARE(tab.fields.at(1).check(), "\"value\" IN ('a', 'b', 'c')"); +} + +void TestTable::createTableWithNotLikeConstraint() +{ + std::string sSQL = "CREATE TABLE hopefully_working(\n" + "value TEXT CHECK(value NOT LIKE 'prefix%'),\n" + "value2 TEXT CHECK(value2 NOT MATCH 'prefix%'),\n" + "value3 TEXT CHECK(value3 NOT REGEXP 'prefix%'),\n" + "value4 TEXT CHECK(value4 NOT GLOB 'prefix%'),\n" + "value5 INTEGER CHECK(value5 BETWEEN 1+4 AND 100 OR 200),\n" + "value6 INTEGER CHECK(value6 NOT BETWEEN 1 AND 100)\n" + ");"; + + Table tab(*Table::parseSQL(sSQL)); + QCOMPARE(tab.name(), "hopefully_working"); + + QCOMPARE(tab.fields.at(0).check(), "\"value\" NOT LIKE 'prefix%'"); + QCOMPARE(tab.fields.at(1).check(), "\"value2\" NOT MATCH 'prefix%'"); + QCOMPARE(tab.fields.at(2).check(), "\"value3\" NOT REGEXP 'prefix%'"); + QCOMPARE(tab.fields.at(3).check(), "\"value4\" NOT GLOB 'prefix%'"); + QCOMPARE(tab.fields.at(4).check(), "\"value5\" BETWEEN 1 + 4 AND 100 OR 200"); + QCOMPARE(tab.fields.at(5).check(), "\"value6\" NOT BETWEEN 1 AND 100"); +} + +void TestTable::rowValues() +{ + std::string sql = "CREATE TABLE test(\n" + "a INTEGER,\n" + "b INTEGER,\n" + "CHECK((a, b) = (1, 2))\n" + ");"; + + Table tab(*Table::parseSQL(sql)); + QCOMPARE(tab.name(), "test"); + + QCOMPARE(std::dynamic_pointer_cast(tab.constraint({}, sqlb::Constraint::CheckConstraintType))->expression(), "(\"a\", \"b\") = (1, 2)"); +} + +void TestTable::complexExpressions() +{ + std::string sql = "CREATE TABLE test(\n" + "a INTEGER CHECK((a > 0)),\n" + "b INTEGER CHECK((b > 0 and b > 1)),\n" + "c INTEGER CHECK((c = -1) or (c > 0 and c > 1) or (c = 0)),\n" + "d INTEGER CHECK((((d > 0))))\n" + ");"; + + Table tab(*Table::parseSQL(sql)); + QCOMPARE(tab.name(), "test"); + + QCOMPARE(tab.fields.at(0).check(), "(\"a\" > 0)"); + QCOMPARE(tab.fields.at(1).check(), "(\"b\" > 0 AND \"b\" > 1)"); + QCOMPARE(tab.fields.at(2).check(), "(\"c\" = -1) OR (\"c\" > 0 AND \"c\" > 1) OR (\"c\" = 0)"); + QCOMPARE(tab.fields.at(3).check(), "(((\"d\" > 0)))"); +} + +void TestTable::datetimeExpression() +{ + std::string sql = "CREATE TABLE test(\n" + "entry INTEGER DEFAULT (DATETIME(CURRENT_TIMESTAMP, 'LOCALTIME'))\n" + ");"; + + Table tab(*Table::parseSQL(sql)); + QCOMPARE(tab.name(), "test"); + + QCOMPARE(tab.fields.at(0).name(), "entry"); + QCOMPARE(tab.fields.at(0).type(), "INTEGER"); + QCOMPARE(tab.fields.at(0).defaultValue(), "(DATETIME(CURRENT_TIMESTAMP, 'LOCALTIME'))"); +} + +void TestTable::extraParentheses() +{ + std::string sql = "CREATE TABLE test(\n" + "xy INTEGER DEFAULT (1 + (5) - 4)\n" + ");"; + + Table tab(*Table::parseSQL(sql)); + QCOMPARE(tab.name(), "test"); + + QCOMPARE(tab.fields.at(0).name(), "xy"); + QCOMPARE(tab.fields.at(0).type(), "INTEGER"); + QCOMPARE(tab.fields.at(0).defaultValue(), "(1 + (5) - 4)"); +} + +void TestTable::moduloOperator() +{ + std::string sql = "CREATE TABLE test(\n" + "xy INTEGER DEFAULT (7 % 2)\n" + ");"; + + Table tab(*Table::parseSQL(sql)); + QCOMPARE(tab.name(), "test"); + + QCOMPARE(tab.fields.at(0).name(), "xy"); + QCOMPARE(tab.fields.at(0).type(), "INTEGER"); + QCOMPARE(tab.fields.at(0).defaultValue(), "(7 % 2)"); +} + +void TestTable::complexExpression() +{ + std::string sql = "CREATE TABLE test(\n" + "uuid INTEGER DEFAULT (hex(randomblob(4))||'-'||hex(randomblob(2))||'-'||'4'||substr(hex(randomblob(2)),2)||'-'||substr('AB89',1+(abs(random())%4),1)||substr(hex(randomblob(2)),2)||'-'||hex(randomblob(6))),\n" + "a INTEGER,\n" + "b INTEGER,\n" + "CHECK((a = 'S' AND b IS NOT NULL) OR (a IN ('A', 'P')))" + ");"; + + Table tab(*Table::parseSQL(sql)); + QCOMPARE(tab.name(), "test"); + + QCOMPARE(tab.fields.at(0).name(), "uuid"); + QCOMPARE(tab.fields.at(0).type(), "INTEGER"); + QCOMPARE(tab.fields.at(0).defaultValue(), "(hex(randomblob(4)) || '-' || hex(randomblob(2)) || '-' || '4' || substr(hex(randomblob(2)), 2) || '-' || substr('AB89', 1 + (abs(random()) % 4), 1) || substr(hex(randomblob(2)), 2) || '-' || hex(randomblob(6)))"); + + auto c = tab.constraints({}, sqlb::Constraint::CheckConstraintType); + QCOMPARE(c.size(), 1); + QCOMPARE(std::dynamic_pointer_cast(c.at(0))->expression(), "(\"a\" = 'S' AND \"b\" IS NOT NULL) OR (\"a\" IN ('A', 'P'))"); +} + +void TestTable::parseTest() +{ + QFETCH(std::string, sql); + + Table tab(*Table::parseSQL(sql)); + QVERIFY(tab.fullyParsed()); +} + +void TestTable::parseTest_data() +{ + // These are some rather unspecific queries but we include them here to test some basic parser features. They are + // extracted from this file: https://www.sqlite.org/cgi/src/artifact/1c602347e73ab80b + + QTest::addColumn("sql"); + + QTest::newRow("1") << std::string("CREATE TABLE t1(c1 one)"); + QTest::newRow("2") << std::string("CREATE TABLE t1(c1 one two)"); + QTest::newRow("3") << std::string("CREATE TABLE t1(c1 one two three)"); + QTest::newRow("4") << std::string("CREATE TABLE t1(c1 one two three four)"); + QTest::newRow("5") << std::string("CREATE TABLE t1(c1 one two three four(14))"); + QTest::newRow("6") << std::string("CREATE TABLE t1(c1 one two three four(14, 22))"); + QTest::newRow("7") << std::string("CREATE TABLE t1(c1 var(+14, -22.3))"); + QTest::newRow("8") << std::string("CREATE TABLE t1(c1 var(1.0e10))"); + QTest::newRow("9") << std::string("CREATE TABLE t1(c1 text PRIMARY KEY)"); + QTest::newRow("10") << std::string("CREATE TABLE t1(c1 text PRIMARY KEY ASC)"); + QTest::newRow("11") << std::string("CREATE TABLE t1(c1 text PRIMARY KEY DESC)"); + QTest::newRow("12") << std::string("CREATE TABLE t1(c1 text CONSTRAINT cons PRIMARY KEY DESC)"); + QTest::newRow("13") << std::string("CREATE TABLE t1(c1 text NOT NULL)"); + // TODO Requires named column constraint: QTest::newRow("14") << std::string("CREATE TABLE t1(c1 text CONSTRAINT nm NOT NULL)"); + QTest::newRow("15") << std::string("CREATE TABLE t1(c1 text NULL)"); + QTest::newRow("16") << std::string("CREATE TABLE t1(c1 text CONSTRAINT nm NULL)"); + QTest::newRow("17") << std::string("CREATE TABLE t1(c1 text UNIQUE)"); + // TODO Requires named column constraint: QTest::newRow("18") << std::string("CREATE TABLE t1(c1 text CONSTRAINT un UNIQUE)"); + QTest::newRow("19") << std::string("CREATE TABLE t1(c1 text CHECK(c1!=0))"); + // TODO Requires named column constraint: QTest::newRow("20") << std::string("CREATE TABLE t1(c1 text CONSTRAINT chk CHECK(c1!=0))"); + QTest::newRow("21") << std::string("CREATE TABLE t1(c1 text DEFAULT 1)"); + QTest::newRow("22") << std::string("CREATE TABLE t1(c1 text DEFAULT -1)"); + QTest::newRow("23") << std::string("CREATE TABLE t1(c1 text DEFAULT +1)"); + QTest::newRow("24") << std::string("CREATE TABLE t1(c1 text DEFAULT -45.8e22)"); + QTest::newRow("25") << std::string("CREATE TABLE t1(c1 text DEFAULT (1+1))"); + // TODO Requires named column constraint: QTest::newRow("26") << std::string("CREATE TABLE t1(c1 text CONSTRAINT \"1 2\" DEFAULT (1+1))"); + QTest::newRow("27") << std::string("CREATE TABLE t1(c1 text COLLATE nocase)"); + // TODO Requires named column constraint: QTest::newRow("28") << std::string("CREATE TABLE t1(c1 text CONSTRAINT 'a x' COLLATE nocase)"); + QTest::newRow("29") << std::string("CREATE TABLE t1(c1 REFERENCES t2)"); + QTest::newRow("30") << std::string("CREATE TABLE t1(c1 CONSTRAINT abc REFERENCES t2)"); + QTest::newRow("31") << std::string("CREATE TABLE t1(c1 PRIMARY KEY NOT NULL UNIQUE CHECK(c1 IS 'ten') DEFAULT 123 REFERENCES t1);"); + QTest::newRow("32") << std::string("CREATE TABLE t1(c1 REFERENCES t1 DEFAULT 123 CHECK(c1 IS 'ten') UNIQUE NOT NULL PRIMARY KEY);"); + QTest::newRow("33") << std::string("CREATE TABLE t1(c1, c2, PRIMARY KEY(c1))"); + QTest::newRow("34") << std::string("CREATE TABLE t1(c1, c2, PRIMARY KEY(c1, c2))"); + QTest::newRow("35") << std::string("CREATE TABLE t1(c1, c2, PRIMARY KEY(c1, c2) ON CONFLICT IGNORE)"); + QTest::newRow("36") << std::string("CREATE TABLE t1(c1, c2, UNIQUE(c1))"); + QTest::newRow("37") << std::string("CREATE TABLE t1(c1, c2, UNIQUE(c1, c2))"); + QTest::newRow("38") << std::string("CREATE TABLE t1(c1, c2, UNIQUE(c1, c2) ON CONFLICT IGNORE)"); + QTest::newRow("39") << std::string("CREATE TABLE t1(c1, c2, CHECK(c1 IS NOT c2))"); + QTest::newRow("40") << std::string("CREATE TABLE t1(c1, c2, FOREIGN KEY(c1) REFERENCES t2)"); + QTest::newRow("41") << std::string("CREATE TABLE t1(col1, col2 TEXT, col3 INTEGER UNIQUE, col4 VARCHAR(10, 10) PRIMARY KEY, \"name with spaces\" REFERENCES t1);"); + QTest::newRow("42") << std::string("CREATE TABLE t1(a, b, c)"); + QTest::newRow("43") << std::string("CREATE TEMP TABLE t1(a, b, c)"); + QTest::newRow("44") << std::string("CREATE TEMPORARY TABLE t1(a, b, c)"); + QTest::newRow("45") << std::string("CREATE TABLE IF NOT EXISTS t1(a, b, c)"); + QTest::newRow("46") << std::string("CREATE TEMP TABLE IF NOT EXISTS t1(a, b, c)"); + QTest::newRow("47") << std::string("CREATE TEMPORARY TABLE IF NOT EXISTS t1(a, b, c)"); + QTest::newRow("48") << std::string("CREATE TABLE main.t1(a, b, c)"); + QTest::newRow("49") << std::string("CREATE TEMP TABLE temp.t1(a, b, c)"); + QTest::newRow("50") << std::string("CREATE TEMPORARY TABLE temp.t1(a, b, c)"); + QTest::newRow("51") << std::string("CREATE TABLE IF NOT EXISTS main.t1(a, b, c)"); + QTest::newRow("52") << std::string("CREATE TEMP TABLE IF NOT EXISTS temp.t1(a, b, c)"); + QTest::newRow("53") << std::string("CREATE TEMPORARY TABLE IF NOT EXISTS temp.t1(a, b, c)"); + //QTest::newRow("54") << std::string("CREATE TABLE t1 AS SELECT * FROM t2"); + //QTest::newRow("55") << std::string("CREATE TEMP TABLE t1 AS SELECT c, b, a FROM t2"); + //QTest::newRow("56") << std::string("CREATE TABLE t1 AS SELECT count(*), max(b), min(a) FROM t2"); + QTest::newRow("57") << std::string("CREATE TABLE t1(a REFERENCES t2(x) MATCH FULL ON DELETE SET NULL ON UPDATE RESTRICT DEFERRABLE)"); + QTest::newRow("58") << std::string("CREATE TABLE t1(a REFERENCES t2(x) ON DELETE RESTRICT ON UPDATE SET NULL MATCH FULL NOT DEFERRABLE INITIALLY IMMEDIATE)"); + QTest::newRow("59") << std::string("CREATE TABLE t1(a REFERENCES t2(x) MATCH PARTIAL ON DELETE SET NULL ON UPDATE CASCADE DEFERRABLE INITIALLY IMMEDIATE)"); + QTest::newRow("60") << std::string("CREATE TABLE t1(a REFERENCES t2(x) MATCH PARTIAL ON DELETE RESTRICT ON UPDATE SET DEFAULT )"); + QTest::newRow("61") << std::string("CREATE TABLE t1(a REFERENCES t2(x) MATCH PARTIAL ON DELETE RESTRICT ON UPDATE RESTRICT DEFERRABLE)"); + QTest::newRow("62") << std::string("CREATE TABLE t1(a REFERENCES t2(x) MATCH PARTIAL ON DELETE NO ACTION ON UPDATE SET DEFAULT NOT DEFERRABLE INITIALLY IMMEDIATE)"); + QTest::newRow("63") << std::string("CREATE TABLE t1(a REFERENCES t2(x) MATCH SIMPLE ON DELETE SET NULL ON UPDATE CASCADE NOT DEFERRABLE)"); + QTest::newRow("64") << std::string("CREATE TABLE t1(a REFERENCES t2(x) MATCH SIMPLE ON DELETE SET DEFAULT ON UPDATE SET NULL DEFERRABLE)"); + QTest::newRow("65") << std::string("CREATE TABLE t1(a REFERENCES t2(x) MATCH SIMPLE ON DELETE SET DEFAULT NOT DEFERRABLE)"); + QTest::newRow("66") << std::string("CREATE TABLE t1(a REFERENCES t2(x) MATCH SIMPLE ON DELETE RESTRICT ON UPDATE SET DEFAULT NOT DEFERRABLE INITIALLY DEFERRED)"); + QTest::newRow("67") << std::string("CREATE TABLE t1(a REFERENCES t2(x) MATCH SIMPLE ON DELETE RESTRICT ON UPDATE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE)"); + QTest::newRow("68") << std::string("CREATE TABLE t1(a REFERENCES t2(x) MATCH SIMPLE ON DELETE NO ACTION ON UPDATE SET DEFAULT NOT DEFERRABLE)"); + QTest::newRow("69") << std::string("CREATE TABLE t1(a REFERENCES t2(x) MATCH STICK ON DELETE CASCADE ON UPDATE CASCADE DEFERRABLE)"); + QTest::newRow("70") << std::string("CREATE TABLE t1(a REFERENCES t2(x) MATCH STICK ON UPDATE SET NULL NOT DEFERRABLE INITIALLY DEFERRED)"); + QTest::newRow("71") << std::string("CREATE TABLE t1(a REFERENCES t2(x) ON DELETE SET NULL ON UPDATE NO ACTION DEFERRABLE INITIALLY IMMEDIATE)"); + QTest::newRow("72") << std::string("CREATE TABLE t1(a REFERENCES t2(x) ON DELETE RESTRICT ON UPDATE NO ACTION NOT DEFERRABLE)"); + QTest::newRow("73") << std::string("CREATE TABLE t1(a REFERENCES t2(x) NOT DEFERRABLE INITIALLY DEFERRED)"); + QTest::newRow("74") << std::string("CREATE TABLE t1(a REFERENCES t2 MATCH FULL ON DELETE SET NULL ON UPDATE SET NULL DEFERRABLE INITIALLY IMMEDIATE)"); + QTest::newRow("75") << std::string("CREATE TABLE t1(a REFERENCES t2 MATCH FULL ON DELETE SET NULL ON UPDATE SET DEFAULT NOT DEFERRABLE)"); + QTest::newRow("76") << std::string("CREATE TABLE t1(a REFERENCES t2 MATCH FULL ON DELETE SET DEFAULT ON UPDATE SET NULL )"); + QTest::newRow("77") << std::string("CREATE TABLE t1(a REFERENCES t2 MATCH FULL ON DELETE CASCADE NOT DEFERRABLE INITIALLY IMMEDIATE)"); + QTest::newRow("78") << std::string("CREATE TABLE t1(a REFERENCES t2 MATCH PARTIAL ON DELETE SET NULL ON UPDATE RESTRICT NOT DEFERRABLE)"); + QTest::newRow("79") << std::string("CREATE TABLE t1(a REFERENCES t2 MATCH PARTIAL ON DELETE SET NULL ON UPDATE NO ACTION DEFERRABLE)"); + QTest::newRow("80") << std::string("CREATE TABLE t1(a REFERENCES t2 MATCH PARTIAL ON DELETE CASCADE ON UPDATE SET DEFAULT )"); + QTest::newRow("81") << std::string("CREATE TABLE t1(a REFERENCES t2 MATCH PARTIAL NOT DEFERRABLE)"); + QTest::newRow("82") << std::string("CREATE TABLE t1(a REFERENCES t2 MATCH SIMPLE ON DELETE SET DEFAULT ON UPDATE CASCADE DEFERRABLE)"); + QTest::newRow("83") << std::string("CREATE TABLE t1(a REFERENCES t2 MATCH STICK ON DELETE SET NULL ON UPDATE NO ACTION DEFERRABLE INITIALLY IMMEDIATE)"); + QTest::newRow("84") << std::string("CREATE TABLE t1(a REFERENCES t2 MATCH STICK ON DELETE NO ACTION ON UPDATE SET DEFAULT NOT DEFERRABLE INITIALLY IMMEDIATE)"); + QTest::newRow("85") << std::string("CREATE TABLE t1(a REFERENCES t2 MATCH STICK ON UPDATE SET DEFAULT DEFERRABLE INITIALLY IMMEDIATE)"); + QTest::newRow("86") << std::string("CREATE TABLE t1(a REFERENCES t2 ON DELETE RESTRICT ON UPDATE NO ACTION DEFERRABLE INITIALLY DEFERRED)"); + QTest::newRow("87") << std::string("CREATE TABLE sqlit_abc(a, b, c)"); + QTest::newRow("88") << std::string("CREATE TABLE temp.sqlitehelloworld(x)"); + QTest::newRow("89") << std::string("CREATE TABLE auxa.\"sqlite\"(x, y)"); + QTest::newRow("90") << std::string("CREATE TABLE auxb.\"sqlite-\"(z)"); + QTest::newRow("91") << std::string("CREATE TABLE \"SQLITE-TBL\"(z)"); + QTest::newRow("92") << std::string("CREATE TABLE main.abc(a, b, c)"); + QTest::newRow("93") << std::string("CREATE TABLE temp.helloworld(x)"); + QTest::newRow("94") << std::string("CREATE TABLE auxa.\"t 1\"(x, y)"); + QTest::newRow("95") << std::string("CREATE TABLE auxb.xyz(z)"); + QTest::newRow("96") << std::string("CREATE TABLE main.abc(a, b, c)"); + QTest::newRow("97") << std::string("CREATE TABLE main.t1(a, b, c)"); + QTest::newRow("98") << std::string("CREATE TABLE temp.tmp(a, b, c)"); + QTest::newRow("99") << std::string("CREATE TABLE auxb.tbl(x, y)"); + QTest::newRow("100") << std::string("CREATE TABLE auxb.t1(k, v)"); + QTest::newRow("101") << std::string("CREATE TABLE auxa.next(c, d)"); + QTest::newRow("102") << std::string("CREATE TEMP TABLE t1(a, b)"); + QTest::newRow("103") << std::string("CREATE TEMPORARY TABLE t2(a, b)"); + QTest::newRow("104") << std::string("CREATE TEMP TABLE temp.t1(a, b)"); + QTest::newRow("105") << std::string("CREATE TEMPORARY TABLE temp.t2(a, b)"); + QTest::newRow("106") << std::string("CREATE TEMP TABLE TEMP.t3(a, b)"); + QTest::newRow("107") << std::string("CREATE TEMPORARY TABLE TEMP.xxx(x)"); + QTest::newRow("108") << std::string("CREATE TABLE t1(a, b)"); + QTest::newRow("109") << std::string("CREATE TABLE t2(a, b)"); + QTest::newRow("110") << std::string("CREATE TABLE t3(a, b)"); + QTest::newRow("111") << std::string("CREATE TABLE xxx(x)"); + QTest::newRow("112") << std::string("CREATE TABLE auxa.t1(a, b)"); + QTest::newRow("113") << std::string("CREATE TABLE auxa.i1(a, b)"); + QTest::newRow("114") << std::string("CREATE TABLE auxa.v1(a, b)"); + QTest::newRow("115") << std::string("CREATE TABLE tbl1(a, b)"); + QTest::newRow("116") << std::string("CREATE TABLE idx1(a, b)"); + QTest::newRow("117") << std::string("CREATE TABLE view1(a, b)"); + QTest::newRow("118") << std::string("CREATE TABLE IF NOT EXISTS t1(a, b)"); + QTest::newRow("119") << std::string("CREATE TABLE IF NOT EXISTS auxa.tbl1(a, b)"); + QTest::newRow("120") << std::string("CREATE TABLE IF NOT EXISTS v1(a, b)"); + QTest::newRow("121") << std::string("CREATE TABLE IF NOT EXISTS auxa.view1(a, b)"); + QTest::newRow("122") << std::string("CREATE TABLE t1(a, b, c);"); + QTest::newRow("123") << std::string("CREATE TABLE t2(d, e, f);"); + QTest::newRow("124") << std::string("CREATE TABLE t3(g BIGINT, h VARCHAR(10));"); + QTest::newRow("125") << std::string("CREATE TABLE t4(i BLOB, j ANYOLDATA);"); + QTest::newRow("126") << std::string("CREATE TABLE t5(k FLOAT, l INTEGER);"); + QTest::newRow("127") << std::string("CREATE TABLE t6(m DEFAULT 10, n DEFAULT 5, PRIMARY KEY(m, n));"); + QTest::newRow("128") << std::string("CREATE TABLE t7(x INTEGER PRIMARY KEY);"); + QTest::newRow("129") << std::string("CREATE TABLE t8(o COLLATE nocase DEFAULT 'abc');"); + QTest::newRow("130") << std::string("CREATE TABLE t9(p NOT NULL, q DOUBLE CHECK (q!=0), r STRING UNIQUE);"); + QTest::newRow("131") << std::string("CREATE TABLE t1(x VARCHAR(10), y INTEGER, z DOUBLE);"); + QTest::newRow("132") << std::string("CREATE TABLE t2(a DATETIME, b STRING, c REAL);"); + QTest::newRow("133") << std::string("CREATE TABLE t3(o, t);"); + QTest::newRow("134") << std::string("CREATE TABLE t4(a DEFAULT NULL,b DEFAULT 'string constant',c DEFAULT X'424C4F42',d DEFAULT 1,e DEFAULT -1,f DEFAULT 3.14,g DEFAULT -3.14,h DEFAULT ( substr('abcd', 0, 2) || 'cd' ),i DEFAULT CURRENT_TIME,j DEFAULT CURRENT_DATE,k DEFAULT CURRENT_TIMESTAMP);"); + QTest::newRow("135") << std::string("CREATE TABLE t5(x DEFAULT ( 'abc' ))"); + QTest::newRow("136") << std::string("CREATE TABLE t5(x DEFAULT ( 1 IN (1, 2, 3) ))"); + QTest::newRow("137") << std::string("CREATE TABLE t5(a DEFAULT NULL, b DEFAULT 'text value', c DEFAULT X'424C4F42',d DEFAULT -45678.6,e DEFAULT 394507);"); + QTest::newRow("138") << std::string("CREATE TABLE t6(a DEFAULT ( nextint() ), b DEFAULT ( nextint() ));"); + QTest::newRow("139") << std::string("CREATE TABLE t7(a DEFAULT CURRENT_TIME, b DEFAULT CURRENT_DATE, c DEFAULT CURRENT_TIMESTAMP);"); + QTest::newRow("140") << std::string("CREATE TABLE t8(a COLLATE nocase, b COLLATE rtrim, c COLLATE binary, d);"); + QTest::newRow("141") << std::string("CREATE TABLE t1(a, b, c)"); + QTest::newRow("142") << std::string("CREATE TABLE t2(a PRIMARY KEY, b, c)"); + QTest::newRow("143") << std::string("CREATE TABLE t3(a, b, c, PRIMARY KEY(a))"); + QTest::newRow("144") << std::string("CREATE TABLE t4(a, b, c, PRIMARY KEY(c,b,a))"); + QTest::newRow("145") << std::string("CREATE TABLE t5(a, b INTEGER PRIMARY KEY, c)"); + QTest::newRow("146") << std::string("CREATE TABLE t5(a PRIMARY KEY, b, c)"); + QTest::newRow("147") << std::string("CREATE TABLE t5(a, b, c, PRIMARY KEY(a))"); + QTest::newRow("148") << std::string("CREATE TABLE t5(a, b, c, PRIMARY KEY(c,b,a))"); + QTest::newRow("149") << std::string("CREATE TABLE t5(a, b INTEGER PRIMARY KEY, c)"); + QTest::newRow("150") << std::string("CREATE TABLE t1(a UNIQUE, b UNIQUE)"); + QTest::newRow("151") << std::string("CREATE TABLE t2(a UNIQUE, b, c, UNIQUE(c, b))"); + QTest::newRow("152") << std::string("CREATE TABLE t3(a, b, c, UNIQUE(a), UNIQUE(b), UNIQUE(c))"); + QTest::newRow("153") << std::string("CREATE TABLE t4(a, b, c, UNIQUE(a, b, c))"); + QTest::newRow("154") << std::string("CREATE TABLE t1(a TEXT PRIMARY KEY, b)"); + QTest::newRow("155") << std::string("CREATE TABLE t1(a INTEGER PRIMARY KEY, b)"); + QTest::newRow("156") << std::string("CREATE TABLE t1(a TEXT UNIQUE, b)"); + QTest::newRow("157") << std::string("CREATE TABLE t1(a PRIMARY KEY, b TEXT UNIQUE)"); + QTest::newRow("158") << std::string("CREATE TABLE t1(a PRIMARY KEY, b, c, UNIQUE(c, b))"); + QTest::newRow("159") << std::string("CREATE TABLE t1(a, b PRIMARY KEY);"); + QTest::newRow("160") << std::string("CREATE TABLE t2(a, b, c, UNIQUE(b, c));"); + QTest::newRow("161") << std::string("CREATE TABLE x1(a TEXT, b INTEGER CHECK( b>0 ));"); + QTest::newRow("162") << std::string("CREATE TABLE t1(a TEXT, b INTEGER, CHECK( b>0 ));"); + QTest::newRow("163") << std::string("CREATE TABLE x2(a CHECK( a||b ), b);"); + QTest::newRow("164") << std::string("CREATE TABLE t2(a, b, CHECK( a||b ));"); + QTest::newRow("165") << std::string("CREATE TABLE t1(a NOT NULL, b)"); + QTest::newRow("166") << std::string("CREATE TABLE t2(a PRIMARY KEY NOT NULL, b)"); + QTest::newRow("167") << std::string("CREATE TABLE t3(a NOT NULL, b NOT NULL, c NOT NULL UNIQUE)"); + // TODO Requires NOT NULL table constraints: QTest::newRow("168") << std::string("CREATE TABLE t4(a, b, NOT NULL(a))"); + // TODO Requires NOT NULL table constraints: QTest::newRow("169") << std::string("CREATE TABLE t4(a PRIMARY KEY, b, NOT NULL(a))"); + // TODO Requires NOT NULL table constraints: QTest::newRow("170") << std::string("CREATE TABLE t4(a, b, c UNIQUE, NOT NULL(a, b, c))"); + QTest::newRow("171") << std::string("CREATE TABLE t1_ab(a PRIMARY KEY ON CONFLICT ABORT, b);"); + QTest::newRow("172") << std::string("CREATE TABLE t1_ro(a PRIMARY KEY ON CONFLICT ROLLBACK, b);"); + QTest::newRow("173") << std::string("CREATE TABLE t1_ig(a PRIMARY KEY ON CONFLICT IGNORE, b);"); + QTest::newRow("174") << std::string("CREATE TABLE t1_fa(a PRIMARY KEY ON CONFLICT FAIL, b);"); + QTest::newRow("175") << std::string("CREATE TABLE t1_re(a PRIMARY KEY ON CONFLICT REPLACE, b);"); + QTest::newRow("176") << std::string("CREATE TABLE t1_xx(a PRIMARY KEY, b);"); + // TODO Requires NOT NULL conflict actions: QTest::newRow("177") << std::string("CREATE TABLE t2_ab(a, b NOT NULL ON CONFLICT ABORT);"); + // TODO Requires NOT NULL conflict actions: QTest::newRow("178") << std::string("CREATE TABLE t2_ro(a, b NOT NULL ON CONFLICT ROLLBACK);"); + // TODO Requires NOT NULL conflict actions: QTest::newRow("179") << std::string("CREATE TABLE t2_ig(a, b NOT NULL ON CONFLICT IGNORE);"); + // TODO Requires NOT NULL conflict actions: QTest::newRow("180") << std::string("CREATE TABLE t2_fa(a, b NOT NULL ON CONFLICT FAIL);"); + // TODO Requires NOT NULL conflict actions: QTest::newRow("181") << std::string("CREATE TABLE t2_re(a, b NOT NULL ON CONFLICT REPLACE);"); + QTest::newRow("182") << std::string("CREATE TABLE t2_xx(a, b NOT NULL);"); + QTest::newRow("183") << std::string("CREATE TABLE t3_ab(a, b, UNIQUE(a, b) ON CONFLICT ABORT);"); + QTest::newRow("184") << std::string("CREATE TABLE t3_ro(a, b, UNIQUE(a, b) ON CONFLICT ROLLBACK);"); + QTest::newRow("185") << std::string("CREATE TABLE t3_ig(a, b, UNIQUE(a, b) ON CONFLICT IGNORE);"); + QTest::newRow("186") << std::string("CREATE TABLE t3_fa(a, b, UNIQUE(a, b) ON CONFLICT FAIL);"); + QTest::newRow("187") << std::string("CREATE TABLE t3_re(a, b, UNIQUE(a, b) ON CONFLICT REPLACE);"); + QTest::newRow("188") << std::string("CREATE TABLE t3_xx(a, b, UNIQUE(a, b));"); + QTest::newRow("189") << std::string("CREATE TABLE t4(a, b CHECK (b!=10));"); + QTest::newRow("190") << std::string("CREATE TABLE t2(oid, b);"); + QTest::newRow("191") << std::string("CREATE TABLE t3(a, _rowid_);"); + QTest::newRow("192") << std::string("CREATE TABLE t4(a, b, rowid);"); + QTest::newRow("193") << std::string("CREATE TABLE t5(pk integer primary key)"); + QTest::newRow("194") << std::string("CREATE TABLE t5(pk integer, primary key(pk))"); + QTest::newRow("195") << std::string("CREATE TABLE t5(pk integer, v integer, primary key(pk))"); + QTest::newRow("196") << std::string("CREATE TABLE t5(pk integer, v integer, primary key(pk, v))"); + QTest::newRow("197") << std::string("CREATE TABLE t5(pk int, v integer, primary key(pk, v))"); + QTest::newRow("198") << std::string("CREATE TABLE t5(pk int, v integer, primary key(pk))"); + QTest::newRow("199") << std::string("CREATE TABLE t5(pk int primary key, v integer)"); + QTest::newRow("200") << std::string("CREATE TABLE t5(pk inTEger primary key)"); + QTest::newRow("201") << std::string("CREATE TABLE t5(pk inteGEr, primary key(pk))"); + QTest::newRow("202") << std::string("CREATE TABLE t5(pk INTEGER, v integer, primary key(pk))"); + QTest::newRow("203") << std::string("CREATE TABLE t6(pk INT primary key);"); + QTest::newRow("204") << std::string("CREATE TABLE t7(pk BIGINT primary key);"); + QTest::newRow("205") << std::string("CREATE TABLE t8(pk SHORT INTEGER primary key);"); + QTest::newRow("206") << std::string("CREATE TABLE t9(pk UNSIGNED INTEGER primary key);"); + QTest::newRow("207") << std::string("CREATE TABLE t(x INTEGER PRIMARY KEY ASC, y, z)"); + QTest::newRow("208") << std::string("CREATE TABLE t(x INTEGER, y, z, PRIMARY KEY(x ASC))"); + QTest::newRow("209") << std::string("CREATE TABLE t(x INTEGER, y, z, PRIMARY KEY(x DESC))"); + QTest::newRow("210") << std::string("CREATE TABLE t(x INTEGER PRIMARY KEY DESC, y, z)"); +} diff --git a/src/SqliteDBProcess/src/tests/testsqlobjects.h b/src/SqliteDBProcess/src/tests/testsqlobjects.h new file mode 100644 index 0000000..8de5db3 --- /dev/null +++ b/src/SqliteDBProcess/src/tests/testsqlobjects.h @@ -0,0 +1,47 @@ +#ifndef TESTSQLOBJECTS_H +#define TESTSQLOBJECTS_H +#include "WBFZExchangePluginAPI.h" +#include + +class TestTable: public QObject +{ + Q_OBJECT +private slots: + void sqlOutput(); + void sqlGraveAccentOutput(); + void sqlSquareBracketsOutput(); + void autoincrement(); + void notnull(); + void withoutRowid(); + void foreignKeys(); + void uniqueConstraint(); + + void parseSQL(); + void parseSQLSquareBrackets(); + void parseSQLdefaultexpr(); + void parseSQLMultiPk(); + void parseSQLForeignKey(); + void parseSQLSingleQuotes(); + void parseSQLKeywordInIdentifier(); + void parseSQLSomeKeywordsInIdentifier(); + void parseSQLWithoutRowid(); + void parseNonASCIIChars(); + void parseNonASCIICharsEs(); + void parseSQLEscapedQuotes(); + void parseSQLForeignKeys(); + void parseSQLCheckConstraint(); + void parseDefaultValues(); + void createTableWithIn(); + void createTableWithNotLikeConstraint(); + void rowValues(); + void complexExpressions(); + void datetimeExpression(); + void extraParentheses(); + void moduloOperator(); + void complexExpression(); + + void parseTest(); + void parseTest_data(); +}; + +#endif diff --git a/src/SqliteDBProcess/src/tools/create_windows_icon.sh b/src/SqliteDBProcess/src/tools/create_windows_icon.sh new file mode 100644 index 0000000..4075e5d --- /dev/null +++ b/src/SqliteDBProcess/src/tools/create_windows_icon.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env sh + +# This script depends on ImageMagick being installed + +FILES=() # array accumulating names of converted images +# commands to give to convert for each iteration +MAGICK_CMDS="+antialias -units PixelsPerInch -alpha set -background transparent" +SRC_FILE="../../images/logo.svg" # conversion source +ICO_FILE="../iconwin.ico" # ouput icon file +for imgsize in 16 32 64 128 +do + RESIZE="${imgsize}x${imgsize}" + DEST_FILE="icon${imgsize}.png" + # NOTE: explicitly not using quotes - outpput raw contents to convert command + convert ${MAGICK_CMDS} ${SRC_FILE} -resize ${RESIZE} ${DEST_FILE} + FILES+=("${DEST_FILE}") +done +convert "${FILES[@]}" "${ICO_FILE}" +rm "${FILES[@]}" diff --git a/src/SqliteDBProcess/src/translations/README b/src/SqliteDBProcess/src/translations/README new file mode 100644 index 0000000..9e49b82 --- /dev/null +++ b/src/SqliteDBProcess/src/translations/README @@ -0,0 +1 @@ +TS files for the application should be all named according to a convention such as _, e.g. sqlb_de, sqlb_ru etc. diff --git a/src/SqliteDBProcess/src/translations/flags/ar.png b/src/SqliteDBProcess/src/translations/flags/ar.png new file mode 100644 index 0000000..ade5ca3 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/ar.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/br.png b/src/SqliteDBProcess/src/translations/flags/br.png new file mode 100644 index 0000000..dd31ddd Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/br.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/cn.png b/src/SqliteDBProcess/src/translations/flags/cn.png new file mode 100644 index 0000000..c658f07 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/cn.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/cs.png b/src/SqliteDBProcess/src/translations/flags/cs.png new file mode 100644 index 0000000..f8f671a Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/cs.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/de.png b/src/SqliteDBProcess/src/translations/flags/de.png new file mode 100644 index 0000000..0b3b41f Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/de.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/eg.png b/src/SqliteDBProcess/src/translations/flags/eg.png new file mode 100644 index 0000000..7d67af9 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/eg.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/es.png b/src/SqliteDBProcess/src/translations/flags/es.png new file mode 100644 index 0000000..be9d7b5 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/es.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/flags.qrc b/src/SqliteDBProcess/src/translations/flags/flags.qrc new file mode 100644 index 0000000..09ae00e --- /dev/null +++ b/src/SqliteDBProcess/src/translations/flags/flags.qrc @@ -0,0 +1,23 @@ + + + ar.png + cs.png + de.png + es.png + us.png + fr.png + it.png + ru.png + cn.png + br.png + gb.png + roc.png + kr.png + tr.png + ua.png + eg.png + pl.png + jp.png + nl.png + + diff --git a/src/SqliteDBProcess/src/translations/flags/fr.png b/src/SqliteDBProcess/src/translations/flags/fr.png new file mode 100644 index 0000000..7fe158c Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/fr.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/gb.png b/src/SqliteDBProcess/src/translations/flags/gb.png new file mode 100644 index 0000000..4200596 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/gb.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/it.png b/src/SqliteDBProcess/src/translations/flags/it.png new file mode 100644 index 0000000..6bd4996 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/it.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/jp.png b/src/SqliteDBProcess/src/translations/flags/jp.png new file mode 100644 index 0000000..325fbad Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/jp.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/kr.png b/src/SqliteDBProcess/src/translations/flags/kr.png new file mode 100644 index 0000000..e6db9c7 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/kr.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/nl.png b/src/SqliteDBProcess/src/translations/flags/nl.png new file mode 100644 index 0000000..99814aa Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/nl.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/pl.png b/src/SqliteDBProcess/src/translations/flags/pl.png new file mode 100644 index 0000000..d8ca17c Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/pl.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/roc.png b/src/SqliteDBProcess/src/translations/flags/roc.png new file mode 100644 index 0000000..23f01ce Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/roc.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/ru.png b/src/SqliteDBProcess/src/translations/flags/ru.png new file mode 100644 index 0000000..e634822 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/ru.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/tr.png b/src/SqliteDBProcess/src/translations/flags/tr.png new file mode 100644 index 0000000..f95e1ca Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/tr.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/ua.png b/src/SqliteDBProcess/src/translations/flags/ua.png new file mode 100644 index 0000000..cedf502 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/ua.png differ diff --git a/src/SqliteDBProcess/src/translations/flags/us.png b/src/SqliteDBProcess/src/translations/flags/us.png new file mode 100644 index 0000000..10db15e Binary files /dev/null and b/src/SqliteDBProcess/src/translations/flags/us.png differ diff --git a/src/SqliteDBProcess/src/translations/place_translations_here b/src/SqliteDBProcess/src/translations/place_translations_here new file mode 100644 index 0000000..e69de29 diff --git a/src/SqliteDBProcess/src/translations/sqlb_ar_SA.qm b/src/SqliteDBProcess/src/translations/sqlb_ar_SA.qm new file mode 100644 index 0000000..cfe10a9 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_ar_SA.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_ar_SA.ts b/src/SqliteDBProcess/src/translations/sqlb_ar_SA.ts new file mode 100644 index 0000000..ffd84c3 --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_ar_SA.ts @@ -0,0 +1,7051 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + عن «متصفّح قواعد بيانات SQLite» + + + + Version + الإصدارة + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html dir="rtl"> +<p>«متصفّح قواعد بيانات SQLite» أداة رسوميّة مفتوحة المصدر ومجانية، تُستخدم لإنشاء ملفّات قواعد بيانات SQLite وتصميمها وتحريرها.</p><p>الأداة مرخّصة برخصتين، الإصدارة الثانية من رخصة موزيلا العمومية، والإصدارة الثالثة وما بعدها من رخصة غنو العمومية. يمكنك تعديل الأداة أو إعادة توزيعها بشروط تلك الرخص.</p><p>طالع <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> و<a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> للتفاصيل.</p><p>من فضلك زُر موقع الوِب هذا لمعلومات أكثر عن البرمجية: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">تستخدم هذه البرمجية عُدّة أدوات كيوت المرخّصة تحت GPL/LGPL وذلك من </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>طالع </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> لشروط الترخيص والمعلومات.</span></p><p><span style=" font-size:small;">تستخدم البرمجية أيضًا طقم أيقونات الحرير/Silk للمؤلّف Mark James المرخّصة برخصة المشاع الإبداعي - النسبة ٢٫٥ و٣٫٠.<br/>طالع </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> للتفاصيل.</span></p> +</html> + + + + AddRecordDialog + + + Add New Record + أضِف سجلًا جديدًا + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + أدخِل قيم السجلّ الجديد بأخذ القيود بعين الاعتبار. الحقول الثخينة ضرورية. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + يمكنك تحديد قيمة الحقل المحدّد في عمود ”الاسم“ وذلك في عمود ”القيمة“. يُشير عمود ”النوع“ إلى نوع الحقل. تُعرض القيم المبدئية بنفس نمط قيم NULL. + + + + Name + الاسم + + + + Type + النوع + + + + Value + القيمة + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + القيم التي ستُدرج. لو لم تتغيّر فسُتدرج آليًا القيم المبدئية المعبّأة مسبقًا. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + عندما تحرّر القيم في الإطار أعلاه، ستظهر هنا إفادة SQL لإدراج هذا السجلّ. يمكنك تحرير الإفادة يدويًا قبل الحفظ. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <p>سيُرسل زر <span style=" font-weight:600;">احفظ</span> إفادة SQL الظاهرة إلى قاعدة البيانات لإدراج السجلّ الجديد.</p><p>سيستعيد زر <span style=" font-weight:600;">استعد المبدئيات</span> القيمة الأولية في عمود ”<span style=" font-weight:600;">القيمة</span>“.</p><p>سيُغلق زر <span style=" font-weight:600;">ألغِ</span> مربّع الحوار هذا دون تنفيذ الاستعلام.</p> + + + + Auto-increment + + زيادة آليّة + + + + + Unique constraint + + قيد ”فريد“ + + + + + Check constraint: %1 + + قيد الفحص: %L1 + + + + + Foreign key: %1 + + المفتاح الأجنبي: %L1 + + + + + Default value: %1 + + القيمة المبدئية: %L1 + + + + + Error adding record. Message from database engine: + +%1 + خطأ أثناء إضافة السجلّ. الرسالة من محرّك قواعد البيانات: + +%L1 + + + + Are you sure you want to restore all the entered values to their defaults? + أمتأكّد من استعادة كلّ القيم المُدخلة إلى مبدئياتها؟ + + + + Application + + + Possible command line arguments: + معطيات سطر الأوامر الممكنة: + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + يطلب الخياران ‎-o/--option و ‎-O/--save-option معطًى بهذا النحو: group/setting=value + + + + Usage: %1 [options] [<database>|<project>] + + ‎الاستعمال:‎ %L1 [options] [<database>|<project>] + + + + + -h, --help Show command line options + -h, --help اعرض خيارات سطر الأوامر + + + + -q, --quit Exit application after running scripts + -q, --quit أنهِ التطبيق بعد تشغيل السكربتات + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <file> ‫نفّذ ملف SQL المذكور بعد فتح قاعدة البيانات + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <table> تصفّح الجدول المذكور بعد فتح قاعدة البيانات + + + + -R, --read-only Open database in read-only mode + -R, --read-only افتح قاعدة البيانات بوضع القراءة فقط + + + + -o, --option <group>/<setting>=<value> + -o, --option <group>/<setting>=<value> + + + + Run application with this setting temporarily set to value + ‎ ‫شغّل التطبيق بضبط هذا الإعداد setting مؤقتًا على القيمة value + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <group>/<setting>=<value> + + + + Run application saving this value for this setting + ‎ ‫شغّل التطبيق بحفظ هذه القيمة value لهذا الإعداد setting + + + + -v, --version Display the current version + -v, --version اعرض الإصدارة الحالية + + + + <database> Open this SQLite database + <database> ‫افتح قاعدة بيانات SQLite المذكورة + + + + <project> Open this project file (*.sqbpro) + <project> ‫افتح ملف المشروع المذكور (‎*.sqbpro) + + + + The -s/--sql option requires an argument + يتطلّب الخيار ‎-s/--sql معطًى + + + + The file %1 does not exist + الملف %L1 غير موجود + + + + The -t/--table option requires an argument + يتطلّب الخيار ‎-t/--table معطًى + + + + Invalid option/non-existant file: %1 + خيار غير صالح/ملف غير موجود: %L1 + + + + SQLite Version + إصدارة SQLite: ‏ + + + + SQLCipher Version %1 (based on SQLite %2) + إصدارة SQLCipher:‏ %L1 (مبنيّة على SQLite %L2) + + + + DB Browser for SQLite Version %1. + «متصفّح قواعد بيانات SQLite» الإصدارة %L1. + + + + Built for %1, running on %2 + مبنيّة للمعماريّة %L1، وتعمل على المعماريّة %L2 + + + + Qt Version %1 + إصدارة كيوت: %L1 + + + + CipherDialog + + + SQLCipher encryption + تعمية SQLCipher + + + + &Password + &كلمة السر + + + + &Reenter password + أ&عِد إدخال كلمة السر + + + + Encr&yption settings + إعدادات التع&مية + + + + SQLCipher &3 defaults + مبدئيّات SQLCipher &3 + + + + SQLCipher &4 defaults + مبدئيّات SQLCipher &4 + + + + Custo&m + م&خصّص + + + + Page si&ze + م&قاس الصفحة + + + + &KDF iterations + ت&كرارات KDF + + + + HMAC algorithm + خوارزميّة HMAC + + + + KDF algorithm + خوارزميّة KDF + + + + Plaintext Header Size + حجم ترويسة النص البائن + + + + Passphrase + عبارة سر + + + + Raw key + مفتاح خام + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + من فضلك اضبط مفتاحًا لتعمية قاعدة البيانات. +لو غيّرت أيًا من الإعدادات الأخرى (الاختيارية)، فسيكون عليك إعادة إدخالها أيضًا في كلّ مرّة تفتح فيها ملف قاعدة البيانات. +اترك حقول كلمة السر فارغة لتعطيل التعمية. +قد تأخذ عملية التعمية وقتًا وعليك الاحتفاظ بنسخة من قاعدة البيانات احتياطًا! ستُطبّق التعديلات غير المحفوظة قبل تعديل التعمية. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + من فضلك أدخِل المفتاح المستعمل لتعمية قاعدة البيانات. +إن كانت هناك إعدادات أخرى قد تغيّرت في ملف قاعدة البيانات هذا، فعليك ذكر ذلك أيضًا. + + + + ColumnDisplayFormatDialog + + + Choose display format + اختر تنسيق العرض + + + + Display format + تنسيق العرض + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + اختر تنسيق عرض العمود ”%L1“ ليُطبّق على كلّ قيمة قبل عرضها. + + + + Default + المبدئي + + + + Decimal number + عدد عشري + + + + Exponent notation + تدوين أُسّي + + + + Hex blob + ‏BLOB ستّ‌عشري + + + + Hex number + عدد ستّ‌عشري + + + + Apple NSDate to date + ”تاريخ آبل/Apple NSDate“ إلى تاريخ + + + + Java epoch (milliseconds) to date + عَصر جاڤا (ملّي‌ثانية) إلى تاريخ + + + + .NET DateTime.Ticks to date + ‏DateTime.Ticks من ‎.NET إلى تاريح + + + + Julian day to date + يوم جولياني إلى تاريخ + + + + Unix epoch to local time + عَصر لينكس إلى الوقت المحلي + + + + Date as dd/mm/yyyy + التاريخ بتنسيق dd/mm/yyyy + + + + Lower case + حالة الأحرف صغيرة + + + + Custom display format must contain a function call applied to %1 + على تنسيق العرض المخصّص أن يحتوي على نداء دالة مطبّق على %L1 + + + + Error in custom display format. Message from database engine: + +%1 + خطأ في تنسيق العرض المخصّص. الرسالة من محرّك قواعد البيانات: +%L1 + + + + Custom display format must return only one column but it returned %1. + على تنسيق العرض المخصّص إعادة عمود واحد فقط، لكنّه أعاد %L1. + + + + Octal number + عدد ثماني + + + + Round number + عدد تقريبي + + + + Unix epoch to date + عَصر لينكس إلى تاريخ + + + + Upper case + حالة الأحرف كبيرة + + + + Windows DATE to date + ”تاريخ وندوز/Windows DATE“ إلى تاريخ + + + + Custom + مخصّص + + + + CondFormatManager + + + Conditional Format Manager + مدير التنسيقات الشرطيّة + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + يُتيح لك مربّع الحوار هذا إنشاء التنسيقات الشرطيّة وتحريرها. ستختار البرمجيّة كلّ نمط خلايا حسب أوّل شرط متوافق مع بيانات الخليّة. يمكنك نقل التنسيقات الشرطيّة إلى أعلى وأسفل، حيث تعبّر أعلاها أكثرها أولويّة، والعكس. صياغة الشروط هي نفسها صياغة المرشّحات، والشروط الفارغة تنطبق على كلّ القيم. + + + + Add new conditional format + أضِف تنسيقًا شرطيًا جديدًا + + + + &Add + أ&ضِف + + + + Remove selected conditional format + أزِل التنسيق الشرطيّ المحدّد + + + + &Remove + أ&زِل + + + + Move selected conditional format up + انقل التنسيق الشرطيّ المحدّد لأعلى + + + + Move &up + انقل لأ&على + + + + Move selected conditional format down + انقل التنسيق الشرطيّ المحدّد لأسفل + + + + Move &down + انقل لأ&سفل + + + + Foreground + الأمامية + + + + Text color + لون النص + + + + Background + الخلفية + + + + Background color + لون الخلفية + + + + Font + الخط + + + + Size + الحجم + + + + Bold + ثخين + + + + Italic + مائل + + + + Underline + مسطّر + + + + Alignment + المحاذاة + + + + Condition + الشرط + + + + + Click to select color + انقر لاختيار لون + + + + Are you sure you want to clear all the conditional formats of this field? + أمتأكّد من مسح كلّ التنسيقات الشرطيّة لهذا الحقل؟ + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + من فضلك اختر اسم قاعدة البيانات الذي تريد استعماله للوصول إلى قاعدة البيانات المرفقة + + + + Invalid file format + تنسيق الملف غير صالح + + + + Do you want to save the changes made to the database file %1? + أتريد حفظ التعديلات المُجراة على ملف قاعدة البيانات %L1؟ + + + + Exporting database to SQL file... + يصدّر قاعدة البيانات إلى ملف SQL... + + + + + Cancel + ألغِ + + + + Executing SQL... + ينفّذ SQL... + + + + Action cancelled. + أُلغي الإجراء. + + + + This database has already been attached. Its schema name is '%1'. + أُرفقت قاعدة البيانات هذه بالفعل. اسم المخطّط هو ”%L1“. + + + + Do you really want to close this temporary database? All data will be lost. + أمتأكّد من إغلاق قاعدة البيانات المؤقّتة هذه؟ ستفقد كلّ البيانات. + + + + Database didn't close correctly, probably still busy + لم تُغلق قاعدة البيانات كما ينبغي، ربّما هي مشغولة + + + + The database is currently busy: + قاعدة البيانات مشغولة حاليًا: + + + + Do you want to abort that other operation? + أتريد إجهاض العملية الأخرى؟ + + + + + No database file opened + لم يُفتح ملف قاعدة بيانات + + + + + Error in statement #%1: %2. +Aborting execution%3. + خطأ في الإفادة رقم %L1:‏ %L2. +سأُجهض التنفيذ%L3. + + + + + and rolling back + وأُرجع ما كان موجودًا. + + + + didn't receive any output from %1 + لم أستلم أيّ ناتج من %L1 + + + + could not execute command: %1 + تعذّر تنفيذ الأمر: %L1 + + + + Cannot delete this object + تعذّر حذف هذا الكائن + + + + Cannot set data on this object + تعذّر ضبط البيانات على هذا الكائن + + + + + A table with the name '%1' already exists in schema '%2'. + هناك جدول بنفس الاسم ”%L1“ بالفعل في المخطّط ”%L2“. + + + + No table with name '%1' exists in schema '%2'. + ما من جدول له الاسم ”%L1“ في المخطّط ”%L2“. + + + + + Cannot find column %1. + تعذّر العثور على العمود %L1 + + + + Creating savepoint failed. DB says: %1 + فشل إنشاء نقطة الحفظ. تقول قاعدة البيانات: %L1 + + + + Renaming the column failed. DB says: +%1 + فشل تغيير اسم العمود. تقول قاعدة البيانات: +%L1 + + + + + Releasing savepoint failed. DB says: %1 + فشلت استعداة نقطة الحفظ. تقول قاعدة البيانات: %L1 + + + + Creating new table failed. DB says: %1 + فشل إنشاء جدول جديد. تقول قاعدة البيانات: %L1 + + + + Copying data to new table failed. DB says: +%1 + فشل نسخ البيانات إلى جدول جديد. تقول قاعدة البيانات: +%L1 + + + + Deleting old table failed. DB says: %1 + فشل حذف الجدول القديم. تقول قاعدة البيانات: %L1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + خطأ في تغيير اسم الجدول ”%L1“ إلى ”%L2“. +الرسالة من محرّك قواعد البيانات: +%L3 + + + + could not get list of db objects: %1 + تعذّر جلب قائمة كائنات قواعد البيانات: %L1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + فشلت استعادة بعض الكائنات المرتبطة بهذا الجدول. غالبًا ما يحدث هذا بسبب تغيّر اسم الأعمدة. هذه إفادة SQL التي قد ترغب بتنفيذها لإصلاح ذلك يدويًا: + + + + + + could not get list of databases: %1 + تعذّر جلب قائمة قواعد البيانات: %L1 + + + + Error loading extension: %1 + خطأ أثناء تحميل الامتداد: %L1 + + + + could not get column information + تعذّر جلب معلومات العمود + + + + Error setting pragma %1 to %2: %3 + تعذّر ضبط pragma %L1 إلى %L2:‏ %L3 + + + + File not found. + تعذّر العثور على الملف. + + + + DbStructureModel + + + Name + الاسم + + + + Object + الكائن + + + + Type + النوع + + + + Schema + المخطّط + + + + Database + قاعدة البيانات + + + + Browsables + ما يمكنك تصفّحه + + + + All + الكلّ + + + + Temporary + مؤقّتة + + + + Tables (%1) + الجداول (%L1) + + + + Indices (%1) + الفهارس (%L1) + + + + Views (%1) + المناظير (%L1) + + + + Triggers (%1) + المحفّزات (%L1) + + + + EditDialog + + + Edit database cell + تحرير خليّة قاعدة البيانات + + + + Mode: + الوضع: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + هذه قائمة بالأوضاع المتوفّرة في محرّر الخلايا. اختر وضعًا لعرض أو تحرير البيانات في الخليّة الحالية. + + + + Text + نصوص + + + + RTL Text + نصوص من اليمين إلى اليسار + + + + Binary + بيانات ثنائيّة + + + + + Image + صور + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + اضبط وضع المحرّر آليًا على نوع البيانات المحمّل + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + يُفعّل/يُعطّل هذا الزر التبديل التلقائي لوضع المحرّر. متى حدّدت خليّة جديدة أو استوردت بيانات جديدة ويُفعّل التبديل الآلي سترى بأنّ الوضع سيُضبط على نوع البيانات المكتشف. يمكنك بعدها تغيير وضع المحرّر يدويًا. لو أردت أن يكون التبديل يدويًا عند الانتقال بين الخلايا، فعطّل هذا الزر. + + + + Auto-switch + التبديل الآلي + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + يُتيح لك وضع التحرير هذا بتعديل النصوص صِرفة كما وبيانات JSON وXML إذ يدعم إبراز الصياغة والتنسيق التحقّق التلقائيّين قبل الحفظ. + +تُعرض الأخطاء على شكل خطّ أحمر مسطّر مموّج. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + يُستعمل محرّر «كيوت» هذا للغات المكتوبة من اليمين إلى اليسار (مثل العربيّة) إذ لا يدعمها محرّر النصوص المبدئي. لو كتبت حروف لغة تُكتب من اليمين إلى اليسار، فستكتشف البرمجيّة ذلك وتحدّد وضع الخليّة هذا تلقائيًا. + + + + Open preview dialog for printing the data currently stored in the cell + افتح مربّع حوار معاينة طباعة البيانات المخزّنة في الخليّة حاليًا + + + + Auto-format: pretty print on loading, compact on saving. + التنسيق الآلي: طباعة جميلة (pretty print) عند التحميل، رصّ عند الحفظ. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + إن فعّلت الخيار فستُنسّق ميزة التنسيق الآلي البياناتَ متى تحمّلت، فتكسر النصوص إلى أسطر وتُزيحها لزيادة مقروؤيتها. وعند حفظ البيانات ترصّ ميزة التنسيق الآلي البياناتَ بإزالة نهايات الأسطر والمسافات غير اللازمة. + + + + Word Wrap + لفّ الأسطر + + + + Wrap lines on word boundaries + لُفّ الأسطر عند حدود الكلمات + + + + + Open in default application or browser + افتح في التطبيق المبدئي أو المتصفّح + + + + Open in application + افتح في التطبيق + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + تُحلّل البرمجيّة القيمة على أنّها ملف أو مسار وتفتحه في التطبيق المبدئي أو في متصفّح الوب. + + + + Save file reference... + احفظ إشارة إلى الملف... + + + + Save reference to file + احفظ إشارة إلى الملف... + + + + + Open in external application + افتح في تطبيق خارجي + + + + Autoformat + التنسيق الآلي + + + + &Export... + &صدّر... + + + + + &Import... + ا&ستورِد... + + + + + Import from file + استورِد من ملف + + + + + Opens a file dialog used to import any kind of data to this database cell. + يفتح مربّع حوار ملفات يُستعمل لاستيراد أيّ نوع من البيانات في خليّة قاعدة البيانات هذه. + + + + Export to file + صدّر إلى ملف + + + + Opens a file dialog used to export the contents of this database cell to a file. + يفتح مربّع حوار ملفات يُستعمل لتصدير محتويات خليّة قاعدة البيانات هذه إلى ملف. + + + + + Print... + اطبع... + + + + Open preview dialog for printing displayed image + يفتح مربّع حوار المعاينة لطباعة الصورة المعروضة + + + + + Ctrl+P + Ctrl+P + + + + Open preview dialog for printing displayed text + يفتح مربّع حوار المعاينة لطباعة النص المعروض + + + + Copy Hex and ASCII + انسخ Hex وآسكي + + + + Copy selected hexadecimal and ASCII columns to the clipboard + انسخ الأعمدة الستّ‌عشرية وآسكي المحدّدة إلى الحافظة + + + + Ctrl+Shift+C + Ctrl+Shift+C + + + + Erases the contents of the cell + يمسح محتويات هذه الخليّة + + + + Set as &NULL + ا&ضبط على NULL + + + + This area displays information about the data present in this database cell + تعرض هذه المنطقة معلومات عن البيانات الموجودة في خليّة قاعدة البيانات هذه + + + + Type of data currently in cell + نوع البيانات في الخليّة حاليًا + + + + Size of data currently in table + حجم البيانات في الخليّة حاليًا + + + + Apply data to cell + طبّق البيانات على الخليّة + + + + This button saves the changes performed in the cell editor to the database cell. + يحفظ هذا الزر التغييرات المُجراة داخل محرّر الخلايا في خليّة قاعدة البيانات. + + + + Apply + طبّق + + + + Choose a filename to export data + اختر اسمًا للملف لتصدير البيانات + + + + Type of data currently in cell: %1 Image + نوع البيانات في الخليّة حاليًا: صورة %L1 + + + + %1x%2 pixel(s) + ‏%L1×‏%L2 بكسل + + + + Type of data currently in cell: NULL + نوع البيانات في الخليّة حاليًا: NULL + + + + + %n byte(s) + + لا بايتات + بايت واحد + بايتان + %Ln بايتات + %Ln بايتًا + %Ln بايت + + + + + + Type of data currently in cell: Text / Numeric + نوع البيانات في الخليّة حاليًا: نصوص/عدد + + + + + Image data can't be viewed in this mode. + لا يمكن عرض بيانات الصور في هذا الوضع. + + + + + Try switching to Image or Binary mode. + جرّب الانتقال إلى وضع ”صور“ أو ”بيانات ثنائيّة“. + + + + + Binary data can't be viewed in this mode. + لا يمكن عرض البيانات الثنائيّة في هذا الوضع. + + + + + Try switching to Binary mode. + جربّ الانتقال إلى وضع ”بيانات ثنائيّة“. + + + + Couldn't save file: %1. + تعذّر حفظ الملف: %L1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + حُفظت البيانات في ملف مؤقّت وفُتح في التطبيق المبدئي. يمكنك الآن تحرير الملف وتطبيق البيانات الجديدة المحفوظة فيه متى أردت في محرّر الخليّة، أو حتّى إلغاء تلك التغييرات. + + + + + Image files (%1) + ملفات الصور (%L1) + + + + Binary files (*.bin) + الملفات الثنائيّة (*.bin) + + + + Choose a file to import + اختر ملفًا لاستيراده + + + + %1 Image + صورة %L1 + + + + Invalid data for this mode + بيانات غير صالحة في هذا الوضع + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + تحتوي الخليّة بيانات %L1 غير صالحة. السبب: %L2. أمتأكّد من تطبيقها على الخليّة؟ + + + + + + %n character(s) + + لا محارف + محرف واحد + محرفان + %Ln محارف + %Ln محرفًا + %Ln محرف + + + + + Type of data currently in cell: Valid JSON + نوع البيانات في الخليّة حاليًا: JSON صالحة + + + + Type of data currently in cell: Binary + نوع البيانات في الخليّة حاليًا: بيانات ثنائيّة + + + + EditIndexDialog + + + &Name + الا&سم + + + + Order + الترتيب + + + + &Table + الج&دول + + + + Edit Index Schema + تحرير مخطّط الفهرس + + + + &Unique + &فريد + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + إن أردت حصر الفهرس على جزء من الجدول فحسب، يمكنك هنا تحديد بند WHERE ليُحدّد جزء الجدول الذي يجب فهرسته + + + + Partial inde&x clause + بند ف&هرس جزئي + + + + Colu&mns + الأ&عمدة + + + + Table column + عمود الجدول + + + + Type + النوع + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + أضِف عمود تعبير جديد إلى الفهرس. تحتوي أعمدة التعابير على تعابير SQL بدل أسماء الأعمدة. + + + + Index column + عمود الفهرس + + + + Deleting the old index failed: +%1 + فشل حذف الفهرس القديم: +%L1 + + + + Creating the index failed: +%1 + فشل إنشاء الفهرس: +%L1 + + + + EditTableDialog + + + Edit table definition + تحرير تعريف الجدول + + + + Table + الجدول + + + + Advanced + متقدّم + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + اجعل هذا الجدول بلا معرّف للصفوف ”WITHOUT rowid“. لضبط هذه الراية تحتاج حقلًا بنوع ”أعداد صحيحة/INTEGER“ وأيضا عليك ضبط راية المفتاح الأساسي وألّا تضبط راية الزيادة الآليّة. + + + + Without Rowid + بلا معرّف للصفوف + + + + Fields + الحقول + + + + Database sche&ma + مخ&طّط قاعدة البيانات + + + + Add + أضِف + + + + Remove + أزِل + + + + Move to top + انقل للأعلى + + + + Move up + انقل لأعلى + + + + Move down + انقل لأسفل + + + + Move to bottom + انقل للأسفل + + + + + Name + الاسم + + + + + Type + النوع + + + + NN + NN + + + + Not null + ليس NULL + + + + PK + PK + + + + Primary key + مفتاح أساسي Primary key + + + + AI + AI + + + + Autoincrement + زيادة آليّة Auto Increment + + + + U + U + + + + + + Unique + فريد Unique + + + + Default + المبدئي + + + + Default value + القيمة المبدئية + + + + + + Check + الفحص + + + + Check constraint + قيد الفحص Check constraint + + + + Collation + قواعد مقارنة المحارف + + + + + + Foreign Key + مفتاح أجنبي + + + + Constraints + القيود + + + + Add constraint + أضِف قيدًا + + + + Remove constraint + أزِل القيد + + + + Columns + الأعمدة + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <span style=" font-weight:600; color:#ff0000;">تحذير: </span>ثمّة خطب بتعريف هذا الجدول تعذّر على المحلّل فهمه تمامًا. يمكن أن يؤدّي تعديل وحفظ هذا الجدول إلى بعض المشاكل. + + + + + Primary Key + مفتاح أساسي + + + + Add a primary key constraint + أضِف قيد فرض مفتاح أساسي + + + + Add a foreign key constraint + أضِف قيد فرض مفتاح أجنبي + + + + Add a unique constraint + أضِف قيد فرض ”فريد“ + + + + Add a check constraint + أضِف قيد فرض ”فحص“ + + + + Error creating table. Message from database engine: +%1 + خطأ أثناء إنشاء الجدول. الرسالة من محرّك قواعد البيانات: +%L1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + هناك حقل بهذا الاسم بالفعل. من فضلك غيّر اسمه أو اختر اسمًا مختلفًا لهذا الحقل. + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + لكلّ جدول مفتاح أساسي واحد فقط. من فضلك عدّل المفتاح الموجود بدل هذا الأمر. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + هذا العمود مذكور في مفتاح أجنبي في الجدول %L1 ولا يمكن تغيير اسمه. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + ثمّة صفّ واحد على الأقل ضُبط هذا الحقل فيه على NULL. لهذا السبب يستحيل ضبط هذه الراية. من فضلك غيّر بيانات الجدول أوّلًا. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + ثمّة صفّ واحد على الأقل ضُبط هذا الحقل فيه على قيمة ليست بنوع ”عدد صحيح“. لهذا السبب يستحيل ضبط راية الزيادة الآليّة. من فضلك غيّر بيانات الجدول أوّلًا. + + + + Column '%1' has duplicate data. + + في العمود ”%L1“ بيانات متكرّرة. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + يمنع هذا تفعيل راية ”فريد“. من فضلك أزِل البيانات المتكرّرة كي تقدر على تفعيل هذه الراية. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + أمتأكّد من حذف الحقل ”%L1“؟ +ستفقد كل البيانات المخزّنة فيه حاليًا. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + من فضلك أضِف حقلًا يُطابق المعايير الآتية قبل ضبط راية ”بلا معرّف صفوف/rowid“: + - راية ”مفتاح أساسي“ مضبوطة + - الزيادة الآلية معطّلة + + + + ExportDataDialog + + + Export data as CSV + تصدير البيانات بنسق CSV + + + + Tab&le(s) + الج&داول + + + + Colu&mn names in first line + أسماء الأ&عمدة في أوّل سطر + + + + Fie&ld separator + فاصل الح&قول + + + + , + , + + + + ; + ; + + + + Tab + جدولات + + + + | + | + + + + + + Other + شيء آخر + + + + &Quote character + محرف ال&تنصيص + + + + " + " + + + + ' + ' + + + + New line characters + محرف الأسطر الجديدة + + + + Windows: CR+LF (\r\n) + وندوز: CR+LF ‏(‎\r\n) + + + + Unix: LF (\n) + يُنكس: LF ‏(‎\n) + + + + Pretty print + طباعة جميلة + + + + + Could not open output file: %1 + تعذّر فتح ملف الخرج: %L1 + + + + + Choose a filename to export data + اختر اسمًا للملف لتصدير البيانات + + + + Export data as JSON + تصدير البيانات بنسق JSON + + + + exporting CSV + يصدّر CSV + + + + exporting JSON + يصدّر JSON + + + + Please select at least 1 table. + من فضلك حدّد جدولًا واحدًا على الأقل. + + + + Choose a directory + اختر دليلًا + + + + Export completed. + اكتمل التصدير. + + + + ExportSqlDialog + + + Export SQL... + تصدير SQL... + + + + Tab&le(s) + الج&دول + + + + Select All + حدّد الكلّ + + + + Deselect All + ألغِ تحديد الكلّ + + + + &Options + &خيارات + + + + Keep column names in INSERT INTO + أبقِ أسماء الأعمدة في INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + أكثر من صفّ واحد (VALUES) لكلّ إفادة INSERT + + + + Export everything + صدّر كل شيء + + + + Export schema only + صدّر المخطّط فقط + + + + Export data only + صدّر البيانات فقط + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + أبقِ المخطّط القديم (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + اكتب على المخطّط القديم (DROP TABLE، وبعدها CREATE TABLE) + + + + Please select at least one table. + من فضلك حدّد جدولًا واحدًا على الأقل. + + + + Choose a filename to export + اختر اسمًا للملف لتصديره + + + + Export completed. + اكتمل التصدير. + + + + Export cancelled or failed. + إمّا أنّ التصدير أُلغي أو أنّه فشل. + + + + ExtendedScintilla + + + + Ctrl+H + Ctrl+H + + + + Ctrl+F + Ctrl+F + + + + + Ctrl+P + Ctrl+P + + + + Find... + ابحث... + + + + Find and Replace... + ابحث واستبدل... + + + + Print... + اطبع... + + + + ExtendedTableWidget + + + Use as Exact Filter + استعملها كمرشّح كما هي + + + + Containing + تحتوي على + + + + Not containing + لا تحتوي على + + + + Not equal to + لا تساوي + + + + Greater than + أكبر من + + + + Less than + أصغر من + + + + Greater or equal + أكبر من أو تساوي + + + + Less or equal + أصغر من أو تساوي + + + + Between this and... + بين هذه و... + + + + Regular expression + تعبير نمطي + + + + Edit Conditional Formats... + حرّر التنسيقات الشرطيّة... + + + + Set to NULL + اضبطها على NULL + + + + Copy + انسخ + + + + Copy with Headers + انسخ مع الترويسات + + + + Copy as SQL + انسخ كَ‍ SQL + + + + Paste + ألصِق + + + + Print... + اطبع... + + + + Use in Filter Expression + استعملها في تعبير الترشيح + + + + Alt+Del + Alt+Del + + + + Ctrl+Shift+C + Ctrl+Shift+C + + + + Ctrl+Alt+C + Ctrl+Alt+C + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + محتوى الحافظة أكبر من المدى المحدّد. +أتريد إدراجه رغم ذلك؟ + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>لم تُحمّل كلّ البيانات. <b>أتريد تحميل كلّ البيانات قبل تحديد كلّ الصفوف؟</b><p><p>لو اخترت <b>لا</b> فلن تُحمّل أيّة بيانات أخرى ولن يُجرى هذا التحديد.<br/>لو اخترت <b>نعم</b> فعليك الانتظار وقتًا حتّى تُحمّل البيانات، ولكن التحديد هنا سيحدث</p>تحذير: قد يطلب تحميل كلّ البيانات ذاكرة كثيرة لو كانت الجداول ضخمة. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + تعذّر ضبط التحديد على NULL. على العمود %L1 قيد ”ليس NULL“. + + + + FileExtensionManager + + + File Extension Manager + مدير امتدادات الملفات + + + + &Up + لأ&على + + + + &Down + لأ&سفل + + + + &Add + أ&ضِف + + + + &Remove + أ&زِل + + + + + Description + الوصف + + + + Extensions + الامتدادات + + + + *.extension + يمكن للمستخدم تحرير هذه، فالأفضل أن تكون إنكليزية بدون محارف يونيكود كي لا يتركها من غير قصد + *.extension + + + + FilterLineEdit + + + Filter + رشّح + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + تتيح لك مربّعات الإدخال هذه إجراء ترشيح سريع على الجدول المحدّد حاليًا. +مبدئيًا تُرشّح الصفوف التي تحتوي على نص الإدخال. +كما ويدعم البحث المُعاملات الآتية: +% حرف البدل +> أكبر من +< أصغر من +>= أكبر من أو يساوي +>= أصغر من أو يساوي += يساوي (مُطابقة تامّة) +<> لا يساوي (مُطابقة عكسية تامّة) +س~ص مدى: القيم بين ”س“ و”ص“ +/ريجِكس/ القيم التي تُطابق التعبير النمطي + + + + Clear All Conditional Formats + امسح كلّ التنسيقات الشرطيّة + + + + Use for Conditional Format + استعمله تنسيقًا شرطيًا + + + + Edit Conditional Formats... + حرّر التنسيقات الشرطيّة... + + + + Set Filter Expression + اضبط تعبير الترشيح + + + + What's This? + ما هذا؟ + + + + Is NULL + تساوي NULL + + + + Is not NULL + لا تساوي NULL + + + + Is empty + فارغة + + + + Is not empty + ليست فارغة + + + + Not containing... + لا تحتوي على... + + + + Equal to... + تساوي... + + + + Not equal to... + لا تساوي... + + + + Greater than... + أكبر من... + + + + Less than... + أصغر من... + + + + Greater or equal... + أكبر من أو تساوي... + + + + Less or equal... + أصغر من أو تساوي... + + + + In range... + في المدى... + + + + Regular expression... + تعبير نمطي... + + + + FindReplaceDialog + + + Find and Replace + البحث والاستبدال + + + + Fi&nd text: + ابح&ث عن النص: + + + + Re&place with: + ا&ستبدله بِ‍: + + + + Match &exact case + طابِق &حالة الأحرف + + + + Match &only whole words + طابِق الكلمات الكاملة &فحسب + + + + When enabled, the search continues from the other end when it reaches one end of the page + إن فعّلته فسيُواصل البحث من الطرف التالي عندما يصل إلى نهاية الصفحة + + + + &Wrap around + البحث يلت&فّ + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + إن فعّلته فسيجري البحث إلى خلف مكان المؤشّر، وإلّا فإلى أمامه + + + + Search &backwards + ابحث لل&خلف + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + إن فعّلته فلن يجري البحث على النمط المُراد إلّا في التحديد الحالي. + + + + &Selection only + الت&حديد فقط + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + إن فعّلته فسيُتعامل مع نمط البحث على أنّه تعبير يونكس نمطي. طالع <a href="https://en.wikibooks.org/wiki/Regular_Expressions">التعابير النمطية في ويكي‌كتب (بالإنجليزية)</a>. + + + + Use regular e&xpressions + استعمل الت&عابير النمطية + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + ابحث عن الحدوث التالي من موقع المؤشّر حسب الاتجاه الذي حدّده ”البحث للخلف“ + + + + &Find Next + ابحث عن ال&تالي + + + + F3 + + + + + &Replace + ا&ستبدل + + + + Highlight all the occurrences of the text in the page + أبرِز كلّ الحدوثات في نص الصفحة + + + + F&ind All + ابحث عن ال&كلّ + + + + Replace all the occurrences of the text in the page + استبدل كلّ الحدوثات في نص الصفحة + + + + Replace &All + اس&تبدل الكلّ + + + + The searched text was not found + لم يُعثر على نص البحث + + + + The searched text was not found. + لم يُعثر على نص البحث. + + + + The searched text was found one time. + عُثر على نص البحث مرّة واحدة. + + + + The searched text was found %1 times. + عُثر على نص البحث %L1 من المرّات. + + + + The searched text was replaced one time. + استُبدل نص البحث مرّة واحدة. + + + + The searched text was replaced %1 times. + استُبدل نص البحث %L1 من المرّات. + + + + ForeignKeyEditor + + + &Reset + &صفّر + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + بنود المفاتيح الأجنبية (ON UPDATE، أو ON DELETE، إلخ.) + + + + ImportCsvDialog + + + Import CSV file + استيراد ملف CSV + + + + Table na&me + ا&سم الجدول + + + + &Column names in first line + أسماء الأ&عمدة في أوّل سطر + + + + Field &separator + &فاصل الحقول + + + + , + , + + + + ; + ; + + + + + Tab + جدولات + + + + | + | + + + + Other + شيء آخر + + + + &Quote character + محرف الت&نصيص + + + + + Other (printable) + شيء آخر (مطبوع) + + + + + Other (code) + شيء آخر (كود) + + + + " + " + + + + ' + ' + + + + &Encoding + ال&ترميز + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + أأقلّم الحقول؟ + + + + Separate tables + افصل الجداول + + + + Advanced + متقدّم + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + عند استيراد قيمة فارغة من ملف CSV إلى جدول موجود يحمل قيمة مبدئية لهذا العمود، تُضاف تلك القيمة المبدئية. فعّل هذا الخيار لإدراج قيمة فارغة عوضًا عن ذلك. + + + + Ignore default &values + تجاهَل ال&قيم المبدئية + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + فعّل هذا الخيار لإيقاف الاستيراد عند محاولة استيراد قيمة فارغة في عمود ”ليس NULL“ ليس له قيمة مبدئية. + + + + Fail on missing values + يفشل الاستيراد إن كانت القيم ناقصة + + + + Disable data type detection + عطّل اكتشاف نوع البيانات + + + + Disable the automatic data type detection when creating a new table. + عطّل الاكتشاف الآلي لنوع البيانات عند إنشاء جدول جديد. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + حين تستورد القيم إلى جدول موجود وله مفتاح أساسي أو قيود ”فريد“ أو فهرس ”فريد“، فهناك احتمال بحدوث تعارض. يتيح لك هذا الخيار تحديد الطريقة التي ستتّبعها البرمجيّة في تلك الحالة. مبدئيًا تجهض البرمجيّة الاستيراد وترجع إلى ما كانت عليه قاعدة البيانات، ولكن يمكنك أيضًا تجاهل الصفوف المتعارضة وعدم استيرادها، أو حتّى استبدال الصفّ الموجود في الجدول كلّه. + + + + Abort import + أجهِض الاستيراد + + + + Ignore row + تجاهَل الصفّ + + + + Replace existing row + استبدل الصفّ الموجود + + + + Conflict strategy + استراتيجيّة التعارضات + + + + + Deselect All + ألغِ تحديد الكلّ + + + + Match Similar + طابِق المتشابهات + + + + Select All + حدّد الكلّ + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + هناك جدول بنفس الاسم ”%L1“ بالفعل ولا يمكن الاستيراد داخل أحد الجداول الموجودة إلّا إن تطابق عدد الأعمدة. + + + + There is already a table named '%1'. Do you want to import the data into it? + هناك جدول بنفس الاسم ”%L1“ بالفعل. أتريد استيراد البيانات داخله؟ + + + + Creating restore point failed: %1 + فشل إنشاء نقطة استعادة: %L1 + + + + Creating the table failed: %1 + فشل إنشاء الجدول: %L1 + + + + importing CSV + يستورد CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + أخذ استيراد الملف ”%L1“ ‏%L2 م‌ث. منها %L3 م‌ث على دالة الصفّ. + + + + Inserting row failed: %1 + فشل إدراج الصفّ: %L1 + + + + MainWindow + + + DB Browser for SQLite + متصفّح قواعد بيانات SQLite + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + بنية قاعدة البيانات + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + هذه بنية قاعدة البيانات المفتوحة. +يمكنك سحب إفادات SQL من صفّ في الكائن وإسقاطها في التطبيقات الأخرى أو إلى سيرورة أخرى من ”متصفّح قواعد بيانات SQLite“. + + + + Un/comment block of SQL code + اجعل/لا تجعل كتلة كود SQL تعليقًا + + + + Un/comment block + اجعل/لا تجعل الكتلة تعليقًا + + + + Comment or uncomment current line or selected block of code + حوّل السطر الحالي (أو كتلة الكود المحدّدة) إلى تعليق، أو ألغِ التحويل + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + اجعل الأسطر المحدّدة (أو الحالي فقط لو لم يكن هناك تحديد) تعليقًا، أو ألغِ ذلك. يتغيّر تحويل كتلة الكود كاملةً حسب أوّل سطر فيها. + + + + Ctrl+/ + Ctrl+/ + + + + Stop SQL execution + أوقِف تنفيذ SQL + + + + Stop execution + أوقِف التنفيذ + + + + Stop the currently running SQL script + أوقِف تنفيذ سكربت SQL الذي يعمل حاليًا + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + تحذير: لا يمكن قراءة pragma هذه، ولهذا استُنتجت هذه القيمة. قد تؤدّي كتابة pragma على تعويض إفادة LIKE مُعاد تعريفها وفّرها امتداد SQLite. + + + + toolBar1 + شريط الأدوات1 + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + تصفّح البيانات + + + + Export one or more table(s) to a JSON file + صدّر جدولًا أو أكثر إلى ملف JSON + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + حرّر Pragmas + + + + Edit Database &Cell + تحرير &خليّة قاعدة البيانات + + + + DB Sche&ma + م&خطّط قاعدة البيانات + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + هذه بنية قاعدة البيانات المفتوحة. +يمكنك سحب عدد من أسماء الكائنات من عمود ”الاسم“ وإسقاطها في محرّر SQL ويمكنك ضبط خصائص تلك الأسماء المُسقطة مستعملًا قائمة السياق. سيساعد هذا في كتابة إفادات SQL. +يمكنك سحب إفادات SQL من عمود ”المخطّط“ وإسقاطها في محرّر SQL أو في أيّ تطبيق آخر. + + + + &Remote + الب&عيد + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + نفّذ SQL + + + + + Execute current line + نفّذ السطر الحالي + + + + This button executes the SQL statement present in the current editor line + يُنفّذ هذا الزر إفادة SQL الظاهرة في سطر المحرّر الحالي + + + + Shift+F5 + Shift+F5 + + + + Open an existing database file in read only mode + افتح ملف قاعدة بيانات موجود في وضع القراءة فقط + + + + Opens the SQLCipher FAQ in a browser window + يفتح الأسئلة الشائعة عن SQLCipher في نافذة المتصفّح + + + + &File + مل&ف + + + + &Import + ا&ستورِد + + + + &Export + &صدّر + + + + &Edit + ت&حرير + + + + &View + من&ظور + + + + &Help + م&ساعدة + + + + &Tools + أ&دوات + + + + DB Toolbar + شريط قاعدة البيانات + + + + SQL &Log + س&جلّ SQL + + + + Show S&QL submitted by + اعرض SQL الذي ن&فّذه + + + + User + المستخدم + + + + Application + التطبيق + + + + Error Log + سجلّ الأخطاء + + + + This button clears the contents of the SQL logs + يمسح هذا الزر محتويات سجلّات SQL + + + + &Clear + ا&مسح + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + تتيح لك هذه اللوحة فحص كلّ أوامر SQL التي نفّذها التطبيق أو المستخدم + + + + &Plot + الر&سم البياني + + + + &New Database... + قاعدة بيانات &جديدة... + + + + + Create a new database file + أنشِئ ملف قاعدة بيانات جديد + + + + This option is used to create a new database file. + يُستخدم هذا الخيار لإنشاء ملف قاعدة بيانات جديد. + + + + Ctrl+N + Ctrl+N + + + + + &Open Database... + ا&فتح قاعدة بيانات... + + + + + + + + Open an existing database file + افتح ملف قاعدة بيانات موجود + + + + + + This option is used to open an existing database file. + يُستخدم هذا الخيار لفتح ملف قاعدة بيانات موجود. + + + + Ctrl+O + Ctrl+O + + + + &Close Database + أ&غلِق قاعدة البيانات + + + + This button closes the connection to the currently open database file + يُغلق هذا الزر الاتصال بملف قاعدة البيانات المفتوح حاليًا + + + + + Ctrl+W + Ctrl+W + + + + &Revert Changes + أرجِ&ع التعديلات + + + + + Revert database to last saved state + أرجِع قاعدة البيانات إلى آخر حالة محفوظة + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + يُستعمل هذا الخيار لإرجاع ملف قاعدة البيانات إلى آخر حالة محفوظة له. ستفقد كلّ التعديلات عليه منذ آخر عملية حفظ أجريتها. + + + + &Write Changes + ا&كتب التعديلات + + + + + Write changes to the database file + اكتب التعديلات في ملف قاعدة البيانات + + + + This option is used to save changes to the database file. + يُستعمل هذا الخيار لكتابة التعديلات في ملف قاعدة البيانات. + + + + Ctrl+S + Ctrl+S + + + + Compact &Database... + رُصّ &قاعدة البيانات + + + + Compact the database file, removing space wasted by deleted records + رُصّ ملف قاعدة البيانات، مُزيلًا المساحة الضائعة بسبب حذف السجلّات + + + + + Compact the database file, removing space wasted by deleted records. + رُصّ ملف قاعدة البيانات، مُزيلًا المساحة الضائعة بسبب حذف السجلّات. + + + + E&xit + ا&خرج + + + + Ctrl+Q + Ctrl+Q + + + + &Database from SQL file... + &قاعدة بيانات من ملف SQL... + + + + Import data from an .sql dump text file into a new or existing database. + استورِد بيانات من ملف ‎.sql نصي مفرّغ إلى قاعدة بيانات جديدة أو موجودة. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + يتيح لك هذا الخيار استيراد البيانات من ملف ‎.sql نصي مفرّغ إلى قاعدة بيانات جديدة أو موجودة. يمكن إنشاء ملفات SQL المفرّغة في أغلب محرّكات قواعد البيانات، بما فيها MySQL وPostgreSQL. + + + + &Table from CSV file... + ج&دولًا من ملف CSV... + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + افتح مرشدًا يساعدك في استيراد البيانات من ملف نصي مقسوم بفواصل إلى جدول قاعدة البيانات. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + افتح مرشدًا يساعدك في استيراد البيانات من ملف نصي مقسوم بفواصل إلى جدول قاعدة البيانات. يمكن إنشاء ملفات CSV في أغلب تطبيقات قواعد البيانات والجداول الممتدّة. + + + + &Database to SQL file... + &قاعدة بيانات إلى ملف SQL... + + + + Export a database to a .sql dump text file. + صدّر قاعدة بيانات إلى ملف ‎.sql نصي مفرّغ. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + يتيح لك هذا الخيار تصدير قاعدة بيانات إلى ملف ‎.sql نصي مفرّغ. يمكن لملفات SQL المفرّغة احتواء كلّ البيانات الضرورية لإعادة إنشاء قاعدة البيانات في أغلب محرّكات قواعد البيانات، فما فيها MySQL وPostgreSQL. + + + + &Table(s) as CSV file... + الج&داول كملف CSV... + + + + Export a database table as a comma separated text file. + صدّر جدول قاعدة بيانات كملف نصي مقسوم بفواصل. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + صدّر جدول قاعدة بيانات كملف نصي مقسوم بفواصل، جاهز ليُستورد إلى تطبيقات قواعد البيانات أو الجداول الممتدّة الأخرى. + + + + &Create Table... + أ&نشِئ جدولًا... + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + افتح مرشد إنشاء الجدول، حيث تستطيع تحديد اسم وحقول للجدول الجديد في قاعدة البيانات + + + + &Delete Table... + ا&حذف الجدول... + + + + + Delete Table + احذف الجدول + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + افتح مرشد حذف الجدول، حيث يمكنك تحديد جدول قاعدة البيانات الذي سيُحذف. + + + + &Modify Table... + &عدّل الجدول... + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + افتح مرشد تعديل الجدول، حيث يمكنك تغيير اسم أحد الجداول الموجودة. يمكنك أيضًا إضافة حقول أو حذفها إلى ومن الجدول، كما وتعديل أسماء الحقول وأنواعها. + + + + Create &Index... + أنشِئ &فهرسًا... + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + افتح جدول إنشاء الفهارس، حيث يمكنك تحديد فهرس جديد في جدول قاعدة بيانات موجود. + + + + &Preferences... + التف&ضيلات... + + + + + Open the preferences window. + افتح نافذة التفضيلات. + + + + &DB Toolbar + شريط &قاعدة البيانات + + + + Shows or hides the Database toolbar. + يعرض أو يُخفي شريط قاعدة البيانات.. + + + + Ctrl+T + Ctrl+T + + + + Open SQL file(s) + افتح ملفات SQL + + + + This button opens files containing SQL statements and loads them in new editor tabs + يفتح هذا الزر ملفات تحتوي إفادات SQL ويحمّلها في ألسنة محرّر جديدة + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + يتيح لك هذا الزر حفظ كلّ الإعدادات المرتبطة بقاعدة البيانات المفتوحة في ملف مشروع «متصفّح قواعد بيانات SQLite» + + + + This button lets you open a DB Browser for SQLite project file + يتيح لك هذا الزر فتح ملف مشروع «متصفّح قواعد بيانات SQLite» + + + + Browse Table + تصفّح الجدول + + + + W&hat's This? + ما ه&ذا؟ + + + + Ctrl+F4 + Ctrl+F4 + + + + Shift+F1 + Shift+F1 + + + + Execute all/selected SQL + نفّذ كلّ إفادات SQL أو المحدّدة فقط + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + يُنفّذ هذا الزر إفادات SQL المحدّدة حاليًا. إن لم تحدّد شيئًا فستُنفّذ كلّ إفادات SQL. + + + + &Load Extension... + &حمّل امتدادًا... + + + + Execute line + نفّذ السطر + + + + &Wiki + الوي&كي + + + + F1 + + + + + Bug &Report... + أبلِغ عن علّ&ة... + + + + Feature Re&quest... + ا&طلب ميزة... + + + + Web&site + موقع الو&ب + + + + &Donate on Patreon... + تبرّع &عبر باتريون... + + + + Open &Project... + افتح م&شروعًا... + + + + &Attach Database... + أر&فِق قاعدة بيانات... + + + + + Add another database file to the current database connection + أضِف ملف قاعدة بيانات آخر إلى اتصال قاعدة البيانات الحالي + + + + This button lets you add another database file to the current database connection + يتيح لك هذا الزر إضافة ملف قاعدة بيانات آخر إلى اتصال قاعدة البيانات الحالي + + + + &Set Encryption... + ا&ضبط التعمية... + + + + SQLCipher &FAQ + أ&سئلة شائعة عن SQLCipher + + + + Table(&s) to JSON... + الج&دول/الجداول إلى JSON... + + + + Open Data&base Read Only... + افتح قاع&دة بيانات للقراءة فقط... + + + + Ctrl+Shift+O + Ctrl+Shift+O + + + + Save results + احفظ النتائج + + + + Save the results view + احفظ منظور النتائج + + + + This button lets you save the results of the last executed query + يتيح لك هذا الزر حفظ نتائج آخر استعلام نُفّذ + + + + + Find text in SQL editor + ابحث عن النصوص في محرّر SQL + + + + Find + ابحث + + + + This button opens the search bar of the editor + يفتح هذا الزر شريط البحث للمحرّر + + + + Ctrl+F + Ctrl+F + + + + + Find or replace text in SQL editor + ابحث أو استبدل النصوص في محرّر SQL + + + + Find or replace + ابحث أو استبدل + + + + This button opens the find/replace dialog for the current editor tab + يفتح هذا الزر مربّع حوار البحث والاستبدال للسان المحرّر الحالي + + + + Ctrl+H + Ctrl+H + + + + Export to &CSV + &صدّر بنسق CSV + + + + Save as &view + احفظ كمن&ظور + + + + Save as view + احفظ كمنظور + + + + Shows or hides the Project toolbar. + اعرض أو أخفِ شريط أدوات المشروع. + + + + Extra DB Toolbar + شريط أدوات قواعد البيانات الإضافي + + + + New In-&Memory Database + قاعدة بيانات جديدة في ال&ذاكرة + + + + Drag && Drop Qualified Names + اسحب وأسقِط الأسماء المؤهّلة + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + استخدم الأسماء المؤهّلة (مثل ‎"Table"."Field"‎) عند سحب الكائنات وإسقاطها في المحرّر. + + + + Drag && Drop Enquoted Names + اسحب وأسقِط الأسماء مقتبسةً + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + استخدم المُعرّفات مهرّبة (مثلًا "Table1") عند سحب الكائنات وإسقاطها في المحرّر + + + + &Integrity Check + فحص ال&سلامة + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + يُشغّل integrity_check pragma على قاعدة البيانات المفتوحة ويُعيد النتائج في لسان ”نفّذ SQL“. يُجري pragma فحص سلامة على قاعدة البيانات كاملةً. + + + + &Foreign-Key Check + فحص الم&فتاح الأجنبي + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + يُشغّل foreign_key_check pragma على قاعدة البيانات المفتوحة ويُعيد النتائج في لسان ”نفّذ SQL“ + + + + &Quick Integrity Check + فحص سلام&ة سريع + + + + Run a quick integrity check over the open DB + يُشغّل فحص سلامة سريع على قاعدة البيانات المفتوحة + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + يُشغّل quick_check pragma على قاعدة البيانات المفتوحة ويُعيد النتائج في لسان ”نفّذ SQL“. يُجري هذا الأمر أغلب ما تُجريه PRAGMA integrity_check إلّا أنّه أسرع. + + + + &Optimize + ح&سّن + + + + Attempt to optimize the database + حاوِل تحسين قاعدة البيانات + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + يُشغّل optimize pragma على قاعدة البيانات المفتوحة. قد تؤدّي pragma إلى إجراء بعض التحسينات لها أن تُحسّن من أداء الاستعلامات مستقبلًا. + + + + + Print + اطبع + + + + Print text from current SQL editor tab + اطبع النص من لسان محرّر SQL الحالي + + + + Open a dialog for printing the text in the current SQL editor tab + افتح مربّع حوار طباعة النص في لسان محرّر SQL الحالي + + + + Print the structure of the opened database + اطبع بنية قاعدة البيانات المفتوحة + + + + Open a dialog for printing the structure of the opened database + افتح مربّع حوار طباعة بنية قاعدة البيانات المفتوحة + + + + &Save Project As... + احف&ظ المشروع كَ‍... + + + + + + Save the project in a file selected in a dialog + احفظ المشروع في ملف تحدّده من مربّع حوار + + + + Save A&ll + احفظ ال&كلّ + + + + + + Save DB file, project file and opened SQL files + احفظ ملف قاعدة البيانات وملف المشروع وملفات SQL المفتوحة + + + + Ctrl+Shift+S + Ctrl+Shift+S + + + + &Recently opened + المفتوحة حدي&ثًا + + + + Open &tab + افتح ل&سانًا + + + + + Project Toolbar + شريط أدوات المشروع + + + + Extra DB toolbar + شريط أدوات قواعد البيانات الإضافي + + + + + + Close the current database file + أغلِق ملف قاعدة البيانات الحالي + + + + &About + &عن + + + + This button opens a new tab for the SQL editor + يفتح هذا الزر لسانًا جديدًا لمحرّر SQL + + + + &Execute SQL + ن&فّذ SQL + + + + + + Save SQL file + احفظ ملف SQL + + + + Ctrl+E + Ctrl+E + + + + Export as CSV file + صدّر كملف بنسق CSV + + + + Export table as comma separated values file + صدّر الجدول كملف نصي مقسوم بفواصل + + + + Sa&ve Project + احف&ظ المشروع + + + + + Save the current session to a file + احفظ الجلسة الحالية في ملف + + + + + Load a working session from a file + حمّل جلسة عمل من ملف + + + + + Save SQL file as + احفظ ملف SQL كَ‍ + + + + This button saves the content of the current SQL editor tab to a file + يحفظ هذا الزر محتويات لسان محرّر SQL الحالي في ملف + + + + &Browse Table + ت&صفّح الجدول + + + + Copy Create statement + انسخ إفادة الإنشاء + + + + Copy the CREATE statement of the item to the clipboard + انسخ إفادة CREATE للعنصر إلى الحافظة + + + + Ctrl+Return + Ctrl+Return + + + + Ctrl+L + Ctrl+L + + + + + Ctrl+P + Ctrl+P + + + + Ctrl+D + Ctrl+D + + + + Ctrl+I + Ctrl+I + + + + Encrypted + معمّاة + + + + Database is encrypted using SQLCipher + قاعدة البيانات معمّاة بامتداد SQLCipher + + + + Read only + للقراءة فقط + + + + Database file is read only. Editing the database is disabled. + ملف قاعدة البيانات للقراءة فقط. تحرير قاعدة البيانات معطّل. + + + + Database encoding + ترميز قاعدة البيانات + + + + + Choose a database file + اختر ملف قاعدة بيانات + + + + + + Choose a filename to save under + اختر اسمًا للملف لحفظه به + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + خطأ أثناء حفظ ملف قاعدة البيانات. هذا يعني أنّه تعذّر حفظ كلّ التغييرات في قاعدة البيانات. عليك حلّ الخطأ الآتي أوّلًا: + +%L1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + أمتأكّد من التراجع عن كلّ التعديلات التي أجريتها على ملف قاعدة البيانات ”%L1“ منذ آخر حفظ؟ + + + + Choose a file to import + اختر ملفًا لاستيراده + + + + Text files(*.sql *.txt);;All files(*) + الملفات النصية(*.sql *.txt);;كلّ الملفات(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + أتريد إنشاء ملف قاعدة بيانات جديد ليحتفظ بالبيانات المستوردة؟ +إن كانت إجابتك ”لا“ فسنحاول استيراد البيانات من ملف SQL إلى قاعدة البيانات الحالية. + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + ما زلت تنفّذ إفادات SQL. بإغلاق قاعدة البيانات الآن تكون أوقفت التنفيذ وقد يترك ذلك قاعدة البيانات في حال غير مستقرّة. أمتأكّد من إغلاق قاعدة البيانات؟ + + + + Do you want to save the changes made to the project file '%1'? + أتريد حفظ التعديلات التي أجريتها في ملف المشروع ”%L1“؟ + + + + File %1 already exists. Please choose a different name. + الملف %L1 موجود بالفعل. من فضلك اختر اسمًا آخر. + + + + Error importing data: %1 + خطأ أثناء استيراد البيانات: %L1 + + + + Import completed. + اكتمل الاستيراد. + + + + Delete View + احذف المنظور + + + + Modify View + عدّل المنظور + + + + Delete Trigger + احذف المحفّز + + + + Modify Trigger + عدّل المحفّز + + + + Delete Index + احذف الفهرس + + + + Modify Index + عدّل الفهرس + + + + Modify Table + عدّل الجدول + + + + Do you want to save the changes made to SQL tabs in a new project file? + أتريد حفظ التعديلات التي أجريتها على ألسنة SQL في ملف مشروع جديد؟ + + + + Do you want to save the changes made to the SQL file %1? + أتريد حفظ التعديلات التي أجريتها على ملف SQL بالاسم ”%L1“؟ + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + ما زلت تنفّذ إفادات SQL في هذا اللسان. بإغلاق قاعدة البيانات الآن تكون أوقفت التنفيذ وقد يترك ذلك قاعدة البيانات في حال غير مستقرّة. أمتأكّد من إغلاق هذا اللسان؟ + + + + Could not find resource file: %1 + تعذّر العثور على ملف الموارد: %L1 + + + + Choose a project file to open + اختر ملف مشروع لفتحه + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + يستعمل ملف المشروع هذا نسق ملفات قديم إذ أُنشأ باستعمال «متصفّح قواعد بيانات SQLite» بإصدارة ٣٫١٠ أو أقل. تحميل نسق الملفات هذا مدعوم بشكل كلي حتّى الآن، ولكنّنا ننصح بتحويل كلّ ملفات المشاريع لديك لتستعمل النسق الجديد لأن دعم النسق القديمة قد ينتهي في المستقبل. يمكنك تحويل ملفاتك بفتحها وإعادة حفظها فحسب. + + + + Could not open project file for writing. +Reason: %1 + تعذّر فتح ملف المشروع للكتابة. +السبب: %L1 + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + سيؤّدي ضبط قيم PRAGMA إلى إيداع المعاملة الحالية. +أمتأكّد؟ + + + + Window Layout + تخطيط النافذة + + + + Reset Window Layout + صفّر تخطيط النافذة + + + + Alt+0 + Alt+0 + + + + Simplify Window Layout + بسّط تخطيط النافذة + + + + Shift+Alt+0 + Shift+Alt+0 + + + + Dock Windows at Bottom + ارصف النوافذ بالأسفل + + + + Dock Windows at Left Side + ارصف النوافذ على اليسار + + + + Dock Windows at Top + ارصف النوافذ بالأعلى + + + + The database is currenctly busy. + قاعدة البيانات مشغولة حاليًا. + + + + Click here to interrupt the currently running query. + انقر هنا لمقاطعة الاستعلام الذي يعمل حاليًا. + + + + Could not open database file. +Reason: %1 + تعذّر فتح ملف قاعدة البيانات. +السبب: %L1 + + + + In-Memory database + قاعدة بيانات في الذاكرة + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + أمتأكّد من حذف الجدول ”%L1“؟ +ستفقد كلّ البيانات المرتبطة بالجدول. + + + + Are you sure you want to delete the view '%1'? + أمتأكّد من حذف المنظور ”%L1“؟ + + + + Are you sure you want to delete the trigger '%1'? + أمتأكّد من حذف المحفّز ”%L1“؟ + + + + Are you sure you want to delete the index '%1'? + أمتأكّد من حذف الفهرس ”%L1“؟ + + + + Error: could not delete the table. + خطأ: تعذّر حذف الجدول. + + + + Error: could not delete the view. + خطأ: تعذّر حذف المنظور. + + + + Error: could not delete the trigger. + خطأ: تعذّر حذف المحفّز. + + + + Error: could not delete the index. + خطأ: تعذّر حذف الفهرس. + + + + Message from database engine: +%1 + الرسالة من محرّك قواعد البيانات: +%L1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + تحرير الجدول يطلب حفظ كلّ التغييرات المرجأة الآن. +أمتأكّد من حفظ قاعدة البيانات؟ + + + + Error checking foreign keys after table modification. The changes will be reverted. + خطأ أثناء فحص المفاتيح الأجنبية بعد تعديل الجدول. ستُرجَع التغييرات. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + لم يمرّ الجدول فحص المفتاح الأجنبي.<br/>عليك تشغيل ”أدوات -> فحص المفتاح الأجنبي“ وإصلاح المشاكل المذكورة. + + + + Edit View %1 + حرّر المنظور %L1 + + + + Edit Trigger %1 + حرّر المحفّز %L1 + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + أنت تنفّذ حقًا إفادات SQL. أتريد إيقافها لتنفيذ الإفادات الحالية بدلها؟ وقد يترك ذلك قاعدة البيانات في حال غير مستقرّة. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- ينفّذ التحديد في ”%L1“ +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- ينفّذ السطر في ”%L1“ +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- ينفّذ الكلّ في ”%L1“ +-- + + + + + At line %1: + عند السطر %L1: + + + + Result: %1 + النتيجة: %L1 + + + + Result: %2 + النتيجة: %L2 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + سيؤّدي ضبط قيم PRAGMA أو التنظيف إلى إيداع المعاملة الحالية. +أمتأكّد؟ + + + + Opened '%1' in read-only mode from recent file list + فُتح ”%L1“ بوضع القراءة فقط من قائمة الملفات المفتوحة حديثًا + + + + Opened '%1' from recent file list + فُتح ”%L1“ من قائمة الملفات المفتوحة حديثًا + + + + &%1 %2%3 + ‏&%L1 ‏‎%L2‎‏%L3 + + + + (read only) + (للقراءة فقط) + + + + Open Database or Project + افتح قاعدة بيانات أو مشروع + + + + Attach Database... + أرفِق قاعدة بيانات... + + + + Import CSV file(s)... + استورِد ملفات CSV... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + اختر الإجراء الذي تريد تطبيقه على الملفات التي أفلتّها. <br/>لاحظ أنّ خيار ”استورِد“ هو الوحيد الذي سيُعالج الملفات المتعدّدة. + اختر الإجراء الذي تريد تطبيقه على الملف الذي أفلتّه. <br/>لاحظ أنّ خيار ”استورِد“ هو الوحيد الذي سيُعالج الملفات المتعدّدة. + اختر الإجراء الذي تريد تطبيقه على الملفين الذين أفلتّهما. <br/>لاحظ أنّ خيار ”استورِد“ هو الوحيد الذي سيُعالج الملفات المتعدّدة. + اختر الإجراء الذي تريد تطبيقه على الملفات التي أفلتّها. <br/>لاحظ أنّ خيار ”استورِد“ هو الوحيد الذي سيُعالج الملفات المتعدّدة. + اختر الإجراء الذي تريد تطبيقه على الملفات التي أفلتّها. <br/>لاحظ أنّ خيار ”استورِد“ هو الوحيد الذي سيُعالج الملفات المتعدّدة. + اختر الإجراء الذي تريد تطبيقه على الملفات التي أفلتّها. <br/>لاحظ أنّ خيار ”استورِد“ هو الوحيد الذي سيُعالج الملفات المتعدّدة. + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + أتريد حفظ التعديلات التي أجريتها على ألسنة SQL في ملف المشروع ”%L1“؟ + + + + Project saved to file '%1' + حُفظ المشروع في الملف ”%L1“ + + + + This action will open a new SQL tab with the following statements for you to edit and run: + يفتح هذا الإجراء لسان SQL جديد يحتوي الإفادات الآتية لتحرّرها وتنفّذها: + + + + Busy (%1) + مشغولة (%L1) + + + + Rename Tab + غيّر اسم اللسان + + + + Duplicate Tab + كرّر اللسان + + + + Close Tab + أغلِق اللسان + + + + Opening '%1'... + يفتح ”%L1“... + + + + There was an error opening '%1'... + خطأ أثناء فتح ”%L1“... + + + + Value is not a valid URL or filename: %1 + القيمة ليست عنوانًا ولا اسم ملف صالح: %L1 + + + + %1 rows returned in %2ms + أُعيد من الصفوف %L1 خلال %L2 م‌ث + + + + Choose text files + اختر ملفات نصية + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + اكتمل الاستيراد. انتُهكت بعض قيود المفتاح الأجنبي. من فضلك أصلِحها قبل الحفظ. + + + + Select SQL file to open + اختر ملف SQL لفتحه + + + + Select file name + اختر اسم الملف + + + + Select extension file + اختر ملف الامتداد + + + + Extension successfully loaded. + نجح تحميل الامتداد. + + + + Error loading extension: %1 + خطأ أثناء تحميل الامتداد: %L1 + + + + + Don't show again + لا تعرض ثانيةً + + + + New version available. + تتوفّر إصدارة جديدة. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + تتوفّر إصدارة جديدة من «متصفّح قواعد بيانات SQLite» ‏(%L1٫‏%L2٫‏%L3).<br/><br/>من فضلك نزّلها من <a href='%4'>%L4</a>. + + + + Collation needed! Proceed? + قواعد مقارنة المحارف مطلوبة! أنتابع؟ + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + يحتاج أحد الجداول في قاعدة البيانات هذه دالة قواعد مقارنة المحارف Collation الخاصّة ”%L1“ والتي لا يستطيع البرنامج توفيرها دون معلومات أخرى. +احذر إن اخترت المتابعة، فقد تحدث أمور غير حسنة لقاعدة البيانات. +خُذ نسخة احتياطيّة! + + + + creating collation + يُنشئ قواعد مقارنة المحارف + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + ضع اسمًا جديدًا للسان SQL. استخدم محرف ”&&“ ليُتاح استخدام المحرف الذي يليه كاختصار لوحة مفاتيح. + + + + Please specify the view name + من فضلك اختر اسم المنظور + + + + There is already an object with that name. Please choose a different name. + هناك كائن بنفس الاسم. من فضلك اختر اسمًا آخر. + + + + View successfully created. + نجح إنشاء المنظور. + + + + Error creating view: %1 + خطأ أثناء إنشاء المنظور: %L1 + + + + This action will open a new SQL tab for running: + سيفتح هذا الإجراء لسان SQL جديد لتشغيل: + + + + Press Help for opening the corresponding SQLite reference page. + انقر ”مساعدة“ لفتح صفحة SQLite المرجعية المناسبة. + + + + DB Browser for SQLite project file (*.sqbpro) + ملف مشروع «متصفّح قواعد بيانات SQLite» ‏(*.sqbpro) + + + + Execution finished with errors. + اكتمل التنفيذ وحدثت أخطاء. + + + + Execution finished without errors. + اكتمل التنفيذ دون أخطاء. + + + + NullLineEdit + + + Set to NULL + اضبطه على NULL + + + + Alt+Del + Alt+Del + + + + PlotDock + + + Plot + رسم بياني + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + تعرض هذه اللوحة قائمة الأعمدة للمجدول الذي تتصفّحه حاليًا أو للاستعلام الذي نُفّذ حديثًا. يمكنك تحديد الأعمدة التي تريد استخدامها كمحاور س أو ص للوحة الرسم البياني أدناه. يعرض الجدول نوع المحور المكتشف والذي سيؤثّر على الرسم البياني الناتج. يمكنك تحديد الأعمدة العددية فقط لمحور ص، عكس محور س حيث يمكنك تحديد:<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">تاريخ/وقت</span>: السلاسل النصية التي لها التنسيق ”yyyy-MM-dd hh:mm:ss“ أو ”yyyy-MM-ddThh:mm:ss“</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">تاريخ</span>: السلاسل النصية التي لها التنسيق ”yyyy-MM-dd“</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">وقت</span>: السلاسل النصّية التي لها التنسيق ”hh:mm:ss“</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">لصيقة</span>: السلاسل النصية التي لها تنسيقات أخرى. تحديد هذا العمود كمحور x سيُنتج رسم بياني بأشرطة حيث قيم الأعمدة ستكون لصيقات للأشرطة</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">عدد</span>: قيم عددية صحيحة أو حقيقية</li></ul>بنقر خلايا ص مزدوجًا يمكنك تغيير اللون المستخدم لذلك الرسم. + + + + Columns + الأعمدة + + + + X + س + + + + Y1 + ص1 + + + + Y2 + ص2 + + + + Axis Type + نوع المحور + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + هنا تجد الرسم البياني المرسوم عند تحديد قيم x و y أعلاه. + +انقر النقاط لتحديدها في الرسم البياني والجدول. انقر مع Ctrl لتحديد مدًى من النقاط. + +استخدم عجلة الفأرة للتقريب والإبعاد، وحرّك الفأرة لتغيير مدى المحور. + +اختر المحاور أو لصيقات المحاور لتحريكها أو قرّب/بعّد بذاك الاتجاه فحسب. + + + + Line type: + نوع الخطوط: + + + + + None + بلا + + + + Line + خط + + + + StepLeft + عتبة يسرى + + + + StepRight + عتبة يمنى + + + + StepCenter + عتبة وسطى + + + + Impulse + نبض + + + + Point shape: + شكل النقط: + + + + Cross + علامة ضرب + + + + Plus + علامة جمع + + + + Circle + دائرة + + + + Disc + قرص + + + + Square + مربّع + + + + Diamond + معيّن + + + + Star + نجمة + + + + Triangle + مثلّث + + + + TriangleInverted + مثلّث مقلوب + + + + CrossSquare + علامة ضرب في مربّع + + + + PlusSquare + علامة جمع في مربّع + + + + CrossCircle + علامة ضرب في دائرة + + + + PlusCircle + علامة جمع في دائرة + + + + Peace + رمز السلام + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <p>احفظ الرسم البياني الحالي...</p><p>نسق الملف يحدّده الامتداد (png وjpg وpdf وbmp)</p> + + + + Save current plot... + احفظ الرسم البياني الحالي... + + + + + Load all data and redraw plot + حمّل كلّ البيانات وأعِد رسم الرسم البياني + + + + + + Row # + رقم الصف + + + + Copy + انسخ + + + + Print... + اطبع... + + + + Show legend + اعرض مفتاح الرسم + + + + Stacked bars + أشرطة مرصوصة + + + + Date/Time + تاريخ/وقت + + + + Date + تاريخ + + + + Time + وقت + + + + + Numeric + عدد + + + + Label + لصيقة + + + + Invalid + غير صالح + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + حمّل كلّ البيانات وأعِد رسم الرسم البياني. +تحذير: لم تُجلب كلّ البيانات من الجدول بسبب استعمال آليّة جلب جزئية. + + + + Choose an axis color + اختر لونًا للمحور + + + + Choose a filename to save under + اختر اسمًا للملف لحفظه + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;كلّ الملفات(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + توجد منحنيات في هذا الرسم البياني ولا يمكن تطبيق نمط الخطوط المحدّد إلّا على الرسوم البيانية المفروزة حسب س. إمّا أن تفرز الجدول أو الاستعلام حسب س لإزالة المنحنيات أو تحديد أحد الأنماط التي تدعمها المنحنيات: ”بلا“ أو ”خط“. + + + + Loading all remaining data for this table took %1ms. + أخذ تحميل كلّ البيانات الباقية لهذا الجدول %L1 م‎ث. + + + + PreferencesDialog + + + Preferences + التفضيلات + + + + &General + &عام + + + + Remember last location + تذكّر آخر مكان + + + + Always use this location + استخدم هذا المكان دائمًا + + + + Remember last location for session only + تذكّر آخر مكان لهذه الجلسة فقط + + + + + + ... + ... + + + + Default &location + الم&كان المبدئي + + + + Lan&guage + الل&غة + + + + Automatic &updates + الت&حديثات الآلية + + + + + + + + + + + + enabled + مفعّلة + + + + Show remote options + اعرض خيارات البعيد + + + + &Database + &قاعدة البيانات + + + + Database &encoding + &ترميز قاعدة البيانات + + + + Open databases with foreign keys enabled. + افتح قواعد البيانات والمفاتيح الأجنبية مفعّلة. + + + + &Foreign keys + الم&فاتيح الأجنبية + + + + Remove line breaks in schema &view + أزِل كاسرات الأسطر في من&ظور المخطّط + + + + Prefetch block si&ze + &حجم الكتلة لجلبها مسبقًا + + + + SQ&L to execute after opening database + إ&فادة SQL لتُنفّذ بعد فتح قاعدة البيانات + + + + Default field type + نوع الحقول المبدئي + + + + Data &Browser + مت&صفّح البيانات + + + + Font + الخط + + + + &Font + ال&خط + + + + Content + المحتوى + + + + Symbol limit in cell + أقصى عدد من الرموز في كلّ خليّة + + + + NULL + NULL + + + + Regular + العادية + + + + Binary + البيانات الثنائيّة + + + + Background + الخلفية + + + + Filters + المرشّحات + + + + Threshold for completion and calculation on selection + عتبة إكمال النصوص والحساب + + + + Show images in cell + اعرض الصور في الخلايا + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + فعّل هذا الخيار لعرض معاينة كائنات BLOB التي فيها بيانات صور داخل الخلايا. ولكن يمكن أن يؤثّر هذا على أداء متصفّح البيانات. + + + + Escape character + محرف الهروب + + + + Delay time (&ms) + وقت التأخير (&م‌ث) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + اضبط وقت انتظار قبل تطبيق قيمة المرشّح الجديدة. يمكن ضبطه إلى القيمة صِفر لتعطيل الانتظار. + + + + &SQL + م&حرّر SQL + + + + Settings name + الاسم في الإعدادات + + + + Context + السياق + + + + Colour + اللون + + + + Bold + ثخين + + + + Italic + مائل + + + + Underline + مسطّر + + + + Keyword + الكلمات المفتاحية + + + + Function + الدوال + + + + Table + الجداول + + + + Comment + التعليقات + + + + Identifier + المعرّفات + + + + String + السلاسل النصية + + + + Current line + السطر الحالي + + + + SQL &editor font size + حجم الخط في م&حرّر SQL + + + + Tab size + حجم التبويبات + + + + SQL editor &font + &خط محرّر SQL + + + + Error indicators + مؤشّرات الأخطاء + + + + Hori&zontal tiling + التراتب أف&قيًا + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + إن فعّلته فسترى محرّر أكواد SQL ومنظور جدول النتائج جنبًا إلى جنب بدلًا من أن يكونان فوق بعض. + + + + Code co&mpletion + إ&كمال الكود + + + + Toolbar style + نمط شريط الأدوات + + + + + + + + Only display the icon + اعرض الأيقونة فحسب + + + + + + + + Only display the text + اعرض النص فحسب + + + + + + + + The text appears beside the icon + يظهر النص بجانب الأيقونة + + + + + + + + The text appears under the icon + يظهر النص أسفل الأيقونة + + + + + + + + Follow the style + اتبع النمط + + + + DB file extensions + امتدادات ملفات قواعد البيانات + + + + Manage + أدِر + + + + Main Window + النافذة الرئيسية + + + + Database Structure + بنية قاعدة البيانات + + + + Browse Data + تصفّح البيانات + + + + Execute SQL + نفّذ SQL + + + + Edit Database Cell + حرّر خليّة قاعدة البيانات + + + + When this value is changed, all the other color preferences are also set to matching colors. + تُضبط كلّ تفضيلات الألوان الأخرى (متى تغيّر هذا الخيار) إلى الألوان المُطابقة للنمط. + + + + Follow the desktop style + اتبع نمط سطح المكتب + + + + Dark style + النمط الداكن + + + + Application style + نمط البرمجيّة + + + + This sets the font size for all UI elements which do not have their own font size option. + يضبط هذا حجم خط كلّ عناصر الواجهة التي لا تحدّد لنفسها حجم خط. + + + + Font size + حجم الخط + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + إن فعّلته فستُزال كاسِرات الأسطر في عمود ”المخطّط“ في لسان ”بنية قاعدة البيانات“ كما والرصيف والخرج المطبوع. + + + + Database structure font size + حجم خط بنية قاعدة البيانات + + + + Font si&ze + &حجم الخط + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + هذا أقصى عدد من العناصر المسموحة لإجراء مزايا الحساب الثقيلة من عدم ذلك. +أي أقصى عدد من الصفوف في الجدول لتفعيل إكمال القيم حسب القيم الموجودة في العمود. +وأقصى عدد من الفهارس في التحديد لحساب المجموع والمتوسّط. +يمكنك ضبطه على صِفر لتعطيل الميزة. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + هذا أقصى عدد من الصفوف في كلّ جدول لتفعيل إكمال القيمة حسب البيانات الحالية في العمود. +يمكن ضبطه على صفر لتعطيل الإكمال. + + + + Field display + عرض الحقول + + + + Displayed &text + ال&نص المعروض + + + + + + + + + Click to set this color + انقر لضبط هذا اللون + + + + Text color + لون النص + + + + Background color + لون الخلفية + + + + Preview only (N/A) + معاينة فقط (غير متوفّر) + + + + Foreground + الأمامية + + + + SQL &results font size + حجم خط ن&تائج SQL + + + + &Wrap lines + لُ&فّ الأسطر + + + + Never + أبدًا + + + + At word boundaries + عند حدود الكلمات + + + + At character boundaries + عند حدود المحارف + + + + At whitespace boundaries + عند حدود المسافات + + + + &Quotes for identifiers + &علامات التنصيص للمُعرّفات + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + اختر آليّة التنصيص التي سيستخدمها التطبيق للمُعرّفات في كود SQL. + + + + "Double quotes" - Standard SQL (recommended) + "علامات تنصيص مزدوجة" - SQL القياسية (مستحسن) + + + + `Grave accents` - Traditional MySQL quotes + `نبر الإطالة` - علامات اقتباس MySQL التقليدية + + + + [Square brackets] - Traditional MS SQL Server quotes + [أقواس مربّعة] - علامات تنصيص خادوم SQL لِمايكروسوفت التقليدي + + + + Keywords in &UPPER CASE + الكلمات المفتاحية &كبيرة الحالة + + + + When set, the SQL keywords are completed in UPPER CASE letters. + إن فعّلته فسيجري إكمال كلمات SQL المفتاحيّة بالأحرف وحالتها كبيرة. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + إن فعّلته فستُبرز الأسطر في كود SQL التي تسبّبت بأخطاء أثناء آخر تنفيذ وسيُشير إطار النتائج إلى الخطأ في الخلفية + + + + Close button on tabs + أزرار إغلاق على الألسنة + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + إن فعّلته فستعرض ألسنة محرّر SQL زرّ إغلاق. وبغضّ النظر عن هذا الخيار، يمكنك استعمال قائمة السياق أو اختصار لوحة المفاتيح لإغلاق تلك الألسنة. + + + + &Extensions + الامت&دادات + + + + Select extensions to load for every database: + حدّد الامتدادات لتُحمّل لكلّ قاعدة بيانات: + + + + Add extension + أضِف امتدادًا + + + + Remove extension + أزِل الامتداد + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + مع أنّ معامل REGEX مدعوم، إلّا أنّ SQLITE ليس فيها أية خوارزمية تعابير نمطية مُنجزة،<br/>بل تنادي التطبيق الجاري. ينفّذ «متصفّح قواعد بيانات SQLite» هذه الخوارزمية لك<br/>لتستعمل REGEXP دون عناء. مع ذلك، يختلف تنفيذ هذه الميزة ولربّما تحتاج استعمال<br/>واحدة أخرى، لذا فأنت حرّ في تعطيل طريقة التطبيق في التنفيذ وتحميل أيّ من تلك باستعمال<br/>إحدى الامتدادات. إعادة تشغيل التطبيق مطلوبة. + + + + Disable Regular Expression extension + عطّل ملحقة العبارات النمطية + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + توفّر SQLite دالة SQL لتحميل الامتدادات من ملف مكتبة مشتركة. فعّل هذا إن أردت استعمال دالة <span style=" font-style:italic;">load_extension()‎</span> من كود SQL.</p><p>لأسباب أمنية، تحميل الامتداد معطّل مبدئيًا ويجب تفعيله بهذا الإعداد. يمكنك دائمًا تحميل الامتدادات عبر الواجهة الرسومية، حتى لو كان هذا الخيار معطّلًا. + + + + Allow loading extensions from SQL code + اسمح بتحميل الامتدادات من كود SQL + + + + Remote + البعيد + + + + CA certificates + شهادات سلطة الشهادات + + + + Proxy + الوسيط + + + + Configure + اضبط + + + + + Subject CN + اش موضوع التعمية + + + + Common Name + الاسم الشائع + + + + Subject O + المنظّمة موضوع التعمية + + + + Organization + المنظّمة + + + + + Valid from + صالحة من + + + + + Valid to + صالحة حتى + + + + + Serial number + الرقم التسلسلي + + + + Your certificates + شهاداتك + + + + File + الملف + + + + Subject Common Name + الاسم الشائع لموضوع التعمية + + + + Issuer CN + اش المُصدِر + + + + Issuer Common Name + الاسم الشائع للمُصدِر + + + + Clone databases into + استنسخ قواعد البيانات إلى + + + + + Choose a directory + اختر دليلًا + + + + The language will change after you restart the application. + ستتغيّر اللغة بعد إعادة تشغيل التطبيق. + + + + Select extension file + اختر ملف الامتداد + + + + Extensions(*.so *.dylib *.dll);;All files(*) + الامتدادات(*.so *.dylib *.dll);;كلّ الملفات(*) + + + + Import certificate file + استورِد ملف شهادة + + + + No certificates found in this file. + لم تُعثر على شهادات في هذا الملف. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + أمتأكّد من إزالة هذه الشهادة؟ ستُحذف كلّ بيانات الشهادة من إعدادات التطبيق! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + أمتأكّد من مسح كلّ الإعدادات المحفوظة؟ +ستفقد كلّ التفضيلات لديك وستُستعمل القيم المبدئية. + + + + ProxyDialog + + + Proxy Configuration + ضبط الوسيط + + + + Pro&xy Type + &نوع الوسيط + + + + Host Na&me + ا&سم المُضيف + + + + Port + المنفذ + + + + Authentication Re&quired + الاستيثاق م&طلوب + + + + &User Name + اسم المست&خدم + + + + Password + كلمة السر + + + + None + بلا وسيط + + + + System settings + إعدادات النظام + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + خطأ في استيراد البيانات + + + + from record number %1 + من السجلّ رقم %L1 + + + + . +%1 + . +%L1 + + + + Importing CSV file... + يستورد ملف CSV... + + + + Cancel + ألغِ + + + + All files (*) + كلّ الملفات (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + ملفات قواعد بيانات SQLite ‏(*.db *.sqlite *.sqlite3 *.db3) + + + + Left + يسار + + + + Right + يمين + + + + Center + وسط + + + + Justify + ضبط + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + ملفات قواعد بيانات SQLite ‏(*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + ملفات مشاريع «متصفّح قواعد بيانات SQLite» ‏(*.sqbpro) + + + + SQL Files (*.sql) + ملفات SQL ‏(*.sql) + + + + All Files (*) + كلّ الملفات (*) + + + + Text Files (*.txt) + ملفات النصوص (*.txt) + + + + Comma-Separated Values Files (*.csv) + ملفات القيم المقسومة بفواصل (*.csv) + + + + Tab-Separated Values Files (*.tsv) + ملفات القيم المقسومة بجدولات (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + ملفات القيم المقسومة بحروف فصل (*.dsv) + + + + Concordance DAT files (*.dat) + ‏Concordance DAT files ‏(*.dat) + + + + JSON Files (*.json *.js) + ملفات JSON ‏(*.json *.js) + + + + XML Files (*.xml) + ملفات XML ‏(*.xml) + + + + Binary Files (*.bin *.dat) + الملفات الثنائيّة (*.bin *.dat) + + + + SVG Files (*.svg) + ملفات SVG ‏(*.svg) + + + + Hex Dump Files (*.dat *.bin) + ملفات ستّ‌عشرية مفرّغة (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + الامتدادات (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + معرّف الإيداع + + + + Message + الرسالة + + + + Date + التاريخ + + + + Author + المؤلّف + + + + Size + الحجم + + + + Authored and committed by %1 + ألّفه وأودعه: %L1 + + + + Authored by %1, committed by %2 + ألّفه %L1، وأودعه %L2 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + خطأ أثناء فتح قائمة قواعد البيانات المحليّة. +%L1 + + + + Error creating local databases list. +%1 + خطأ أثناء إنشاء قائمة قواعد البيانات المحليّة. +%L1 + + + + RemoteDock + + + Remote + البعيد + + + + Identity + الهويّة + + + + Push currently opened database to server + ادفع قاعدة البيانات المفتوحة حاليًا إلى الخادوم + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html dir="rtl"> +<p>يمكنك في هذه اللوحة إضافة قواعد البيانات البعيدة من موقع dbhub.io إلى «متصفّح قواعد بيانات SQLite». تحتاج أولًا إلى هويّة:</p> +<ol> +<li>لِج إلى موقع dbhub.io (استعمل معلومات ولوج غِت‌هَب أو غيرها، كما ترغب)</li> +<li>انقر الزر ”لتوليد شهادة العميل“ (وهذه هي الهويّة). هكذا تحصل على ملف شهادة تحفظه على القرص المحلي لديك.</li> +<li>انتقل إلى لسان ”البعيد“ في تفضيلات «متصفّح قواعد بيانات SQLite». انقر الزر لإضافة شهادة جديدة إلى التطبيق واختر ملف الشهادة الذي نزّلته للتو.</li> +</ol> +<p>سترى الآن في لوحة ”البعيد“ هويّتك ويمكنك إضافة قواعد البيانات لتصير بعيدة.</p> +</html> + + + + Local + المحلي + + + + Current Database + قاعدة البيانات الحالية + + + + Clone + استنسخ + + + + User + المستخدم + + + + Database + قاعدة البيانات + + + + Branch + الفرع + + + + Commits + الإيداعات + + + + Commits for + إيداعات الفرع + + + + Delete Database + احذف قاعدة البيانات + + + + Delete the local clone of this database + احذف النسخة المحلية من قاعدة البيانات هذه + + + + Open in Web Browser + افتح في متصفّح الوِب + + + + Open the web page for the current database in your browser + افتح صفحة الوِب لقاعدة البيانات الحالية في المتصفّح لديك + + + + Clone from Link + استنسخ من رابط + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + استعمل هذا لتنزيل قاعدة بيانات بعيدة للتعديل عليها محليًا باستعمال المسار الموجود في صفحة الوِب لقاعدة البيانات تلك. + + + + Refresh + أنعِش + + + + Reload all data and update the views + أعِد تحميل كلّ البيانات وحدّث المناظير + + + + F5 + F5 + + + + Clone Database + استنسخ قاعدة بيانات + + + + Open Database + افتح قاعدة بيانات + + + + Open the local copy of this database + افتح النسخة المحلية من قاعدة البيانات هذه + + + + Check out Commit + اسحب الإيداع (Check out) + + + + Download and open this specific commit + نزّل هذا الإيداع بعينه وافتحه + + + + Check out Latest Commit + اسحب الإيداع الأخير (Check out) + + + + Check out the latest commit of the current branch + اسحب الإيداع الأخير (Check out) في الفرع الحالي + + + + Save Revision to File + احفظ المراجعة في ملف + + + + Saves the selected revision of the database to another file + يحفظ المراجعة المحدّدة لقاعدة البيانات في ملف آخر + + + + Upload Database + ارفع قاعدة البيانات + + + + Upload this database as a new commit + يرفع قاعدة البيانات هذه كإيداع جديد + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + تستعمل حاليًا هويّة مضمّنة في البرمجيّة وللقراءة فقط. لو أردت رفع قاعدة البيانات فعليك ضبط حسابك على DBHub.io واستعماله.<br/>أليس لديك واحد بعد؟ <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">أنشِئه الآن</span></a> واستورِد الشهادة <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">هنا</span></a> لتُشارك قواعد بياناتك.<br/>زُر <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">الموقع</span></a> للمساعدة والتفاصيل. + + + + Back + عُد + + + + Select an identity to connect + اختر هويّة للاتصال + + + + Public + عامّة + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + بهذا تُنزّل قاعدة بيانات من خادوم بعيد للتعديل عليها محليًا. +من فضلك أدخِل المسار الذي ستستنسخ القاعدة منه. +يمكنك توليده بنقر ”استنسخ قاعدة البيانات في DB4S“ +في صفحة الوِب لقاعدة البيانات التي تريد. + + + + Invalid URL: The host name does not match the host name of the current identity. + مسار غير صالح: لا يتطابق اسم المضيف مع اسم مضيف الهويّة الحالية. + + + + Invalid URL: No branch name specified. + مسار غير صالح: لم تحدّد اسم الفرع. + + + + Invalid URL: No commit ID specified. + مسار غير صالح: لم تحدّد معرّف الإيداع. + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + عدّلت النسخة المحلية من قاعدة البيانات. بجلب الإيداع فأنت تُلغي هذه التعديلات المحلية. +أمتأكّد من المواصلة؟ + + + + The database has unsaved changes. Are you sure you want to push it before saving? + في قاعدة البيانات تعديلات غير محفوظة. أمتأكّد من دفع القاعدة قبل حفظ التعديلات؟ + + + + The database you are trying to delete is currently opened. Please close it before deleting. + قاعدة البيانات التي تحاول حذفها مفتوحة حاليًا. من فضلك أغلِقها قبل حذفها. + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + بهذا تحذف النسخة المحلية من قاعدة البيانات هذه مع كلّ التعديلات التي لم تودعها بعد. أمتأكّد من حذف قاعدة البيانات هذه؟ + + + + RemoteLocalFilesModel + + + Name + الاسم + + + + Branch + الفرع + + + + Last modified + آخر تعديل + + + + Size + الحجم + + + + Commit + الإيداع + + + + File + الملف + + + + RemoteModel + + + Name + الاسم + + + + Commit + الإيداع + + + + Last modified + آخر تعديل + + + + Size + الحجم + + + + Size: + الحجم: + + + + Last Modified: + آخر تعديل: + + + + Licence: + الرخصة: + + + + Default Branch: + الفرع المبدئي: + + + + RemoteNetwork + + + Choose a location to save the file + اختر مكانًا لحفظ الملف فيه + + + + Error opening remote file at %1. +%2 + خطأ أثناء فتح الملف البعيد في %L1. +%L2 + + + + Error: Invalid client certificate specified. + خطأ: حُدّدت شهادة عميل غير صالحة. + + + + Please enter the passphrase for this client certificate in order to authenticate. + من فضلك أدخِل عبارة السر لشهادة العميل لإجراء الاستيثاق. + + + + Cancel + ألغِ + + + + Uploading remote database to +%1 + يرفع قاعدة البيانات البعيدة إلى +%L1 + + + + Downloading remote database from +%1 + ينزّل قاعدة البيانات البعيدة من +%L1 + + + + + Error: The network is not accessible. + خطأ: تعذّر الوصول إلى الشبكة. + + + + Error: Cannot open the file for sending. + خطأ: تعذّر فتح الملف لإرساله. + + + + RemotePushDialog + + + Push database + دفع قاعدة البيانات + + + + Database na&me to push to + ا&سم قاعدة البيانات الذي سيُدفع إليها + + + + Commit message + رسالة الإيداع + + + + Database licence + رخصة قاعدة البيانات + + + + Public + عامّة + + + + Branch + الفرع + + + + Force push + أجبِر الدفع + + + + Username + اسم المستخدم + + + + Database will be public. Everyone has read access to it. + ستكون قاعدة البيانات عامّة. يملك الجميع تصريح القراءة منها. + + + + Database will be private. Only you have access to it. + ستكون قاعدة البيانات خاصّة. أنت من لديك حقّ الوصول إليها لا غير. + + + + Use with care. This can cause remote commits to be deleted. + استعمله بحذر. يمكن أن يتسبّب هذا بحذف الإيداعات البعيدة. + + + + RunSql + + + Execution aborted by user + أجهض المستخدم التنفيذ + + + + , %1 rows affected + ، عدد الصفوف المتأثّرة هو %L1 + + + + query executed successfully. Took %1ms%2 + نُفّذ الاستعلام بنجاح: أخذ %L1 م‌ث%L2 + + + + executing query + ينفّذ الاستعلام + + + + SelectItemsPopup + + + A&vailable + ال&مُتاح + + + + Sele&cted + الم&حدّد + + + + SqlExecutionArea + + + Form + استمارة + + + + Find previous match [Shift+F3] + ابحث عن المطابقة السابقة [Shift+F3] + + + + Find previous match with wrapping + ابحث عن المطابقة السابقة مع الالتفاف + + + + Shift+F3 + Shift+F3 + + + + The found pattern must be a whole word + يجب أن يكون النمط محور البحث كلمة كاملة + + + + Whole Words + الكلمات الكاملة + + + + Text pattern to find considering the checks in this frame + النمط محور البحث بأخذ الفحوص في هذا الإطار بعين الاعتبار + + + + Find in editor + ابحث في المحرّر + + + + The found pattern must match in letter case + يجب أن يطابق النمط محور البحث حالة الأحرف + + + + Case Sensitive + حسّاس لحالة الأحرف + + + + Find next match [Enter, F3] + ابحث عن المطابقة التالية [Enter, F3] + + + + Find next match with wrapping + ابحث عن المطابقة التالية مع الالتفاف + + + + F3 + + + + + Interpret search pattern as a regular expression + تعامَل مع نمط البحث كتعبير نمطي + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + إن فعّلته فستتعامل البرمجيّة مع نمط البحث على أنّه تعبير يونكس نمطي. طالِع <a href="https://en.wikibooks.org/wiki/Regular_Expressions">التعابير النمطية في ويكي‌كتب (بالإنجليزية)</a>. + + + + Regular Expression + تعبير نمطي + + + + + Close Find Bar + أغلِق شريط البحث + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + نتائج آخر الإفادات المنفّذة.<br/>يمكنك طيّ هذه اللوحة واستعمال لوحة <span style=" font-style:italic;">سجلّ SQL</span> باختيار <span style=" font-style:italic;">المستخدم</span> بدل هذا. + + + + Results of the last executed statements + نتائج آخر الإفادات المنفّذة + + + + This field shows the results and status codes of the last executed statements. + يعرض هذا الحقل نتائج ورموز حالة آخر الإفادات المنفّذة. + + + + Couldn't read file: %1. + تعذّرت قراءة الملف: %L1. + + + + + Couldn't save file: %1. + تعذّر حفظ الملف: %L1. + + + + Your changes will be lost when reloading it! + ستفقد تغييراتك لو فعلت! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + عدّل برنامج آخر الملفّ ”%L1“. أتريد إعادة تحميله؟%L2 + + + + SqlTextEdit + + + Ctrl+/ + Ctrl+/ + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) ‫تُعيد الدالة abs(X) القيمة المُطلقة للمعطى العددي X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + ‎() ‫تُعيد الدالة changes()‎ عدد الصفوف في قاعدة البيانات التي تغيّرت أو أُدرجت أو حُذفت باستخدام أحدث إفادة INSERT أو DELETE أو UPDATE أُجريت بنجاح. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) ‫تُعيد الدالة char(X1,X2,...,XN) سلسلة نصية مؤلّفة من محارفَ قيمُ نقاط رموزها اليونيكودية هي الأعداد الصحيحة بدءًا من X1 وحتّى XN بالترتيب. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) ‫تُعيد الدالة coalesce()‎ نسخة من أوّل معطًى ليس NUL، أو NULL إن كانت كلّ المعطيات تساوي NULL. + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) ‫الدالة glob(X,Y) تعادل التعبير ”Y GLOB X“. + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) تُعيد الدالة‫ ifnull()‎ نسخة من أوّل معطًى ليس NUL، أو NULL إن كان كِلا المعطيين يساويان NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) ‫تبحث الدالة instr(X,Y) عن أوّل حدوث للسلسلة النصية Y داخل السلسلة النصية X وتُعيد عدد المحارف قبلها زائدًا ١، أو تُعيد القيمة صِفر إن لم توجد Y في أيّ مكان في X. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) ‫تفسّر الدالة hex()‎ المطى على أنّه BLOB وتُعيد سلسلة نصية تمثّل عرضًا ستّ‌عشري بحالة أحرف كبيرة لمحتوى كائن BLOB ذاك. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + ‎() ‫تُعيد الدالة last_insert_rowid()‎ معرّف الصف/ROWID لآخر عملية إدراج صفّ من اتصال قاعدة البيانات والتي نفّذت الدالة. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) ‫باعتبار X سلسلة نصية، تُعيد الدالة length(X) عدد المحارف (وليس البايتات) داخل X والموجودة قبل أوّل محرف NUL فيها. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) تُستعمل الدالة‫ like()‎ لتنفيذ التعبير ”Y LIKE X“. + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) تُستعمل الدالة‫ like()‎ لتنفيذ التعبير ”Y LIKE X ESCAPE Z“. + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) ‫تُحمّل الدالة load_extension(X) امتدادات SQLite من ملف مكتبة مشتركة اسمه X. +عليك السماح باستعمال هذه الدالة من التفضيلات. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) ‫تُحمّل الدالة load_extension(X) امتدادات SQLite من ملف مكتبة مشتركة اسمه X باستخدام نقطة الإدخال Y. +عليك السماح باستعمال هذه الدالة من التفضيلات. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) ‫تُعيد الدالة lower(X) نسخة من السلسلة النصية X حيث محارف آسكي كلّها محوّلة إلى حالة الأحرف الصغيرة. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ‫تُزيل ltrim(X) المسافات من الجانب الأيسر للسلسلة النصية X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) ‫تُعيد الدالة ltrim(X,Y) سلسلة نصية بإزالة كلّ المحارف التي قد تظهر في Y من الجانب الأيسر للسلسلة X. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) ‫تُعيد الدالة متعدّدة المعطيات max()‎ المعطى الذي له أكبر قيمة، أو NULL إن كان أحد المعطيات هو NULL. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) ‫تُعيد الدالة متعدّدة المعطيات min()‎ المعطى الذي له أصغر قيمة. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) ‫تُعيد الدالة nullif(X,Y) أوّل معطًى إن كانت المعطيات مختلفة، وتُعيد NULL إن كانت المعطيات متطابقة. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) ‫تعمل دالة SQL هذه printf(FORMAT,...) تمامًا مثل دالة لغة سي sqlite3_mprintf()‎ ودالة printf()‎ من مكتبة سي القياسية. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) ‫تُعيد الدالة quote(X) نص SQL حرفيّ تكون قيمة معامله مناسبة لتوضع في عبارة SQL. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + ‎() ‫تُعيد الدالة random()‎ عددًا صحيحًا عشوائيًا زائفًا بين -٩٢٢٣٣٧٢٠٣٦٨٥٤٧٧٥٨٠٨ و +٩٢٢٣٣٧٢٠٣٦٨٥٤٧٧٥٨٠٧. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) ‫تُعيد الدالة randomblob(N) كائن BLOB بحجم N بايت يحتوي على بايتات عشوائية زائفة. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) ‫تُعيد الدالة replace(X,Y,Z) سلسلة نصية باستبدال كلّ ظهور للسلسة النصية Y في السلسلة النصية X بالسلسلة النصية Z. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) تُعيد الدالة‫ round(X) قيمة X عشرية عائمة مُقرّبة إلى خانات الصِفر يمين الفاصلة العشرية. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) تُعيد الدالة‫ round(X,Y) قيمة X عشرية عائمة مُقرّبة إلى خانات Y يمين الفاصلة العشرية. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) ‫تُزيل rtrim(X) المسافات من الجانب الأيمن للسلسلة النصية X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) ‫تُعيد الدالة rtrim(X,Y) سلسلة نصية بإزالة كلّ المحارف التي قد تظهر في Y من الجانب الأيمن للسلسلة X. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) ‫تُعيد الدالة soundex(X) سلسلة نصية بترميز Soundex من السلسلة النصية X. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) ‫تُعيد substr(X,Y) كلّ المحارف حتّى نهاية السلسلة النصية X بدايةً من المحرف رقم Y. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) ‫تُعيد الدالة substr(X,Y,Z) سلسلة نصية جزئية من السلسلة الدخل X والتي تبدأ بالمحرف رقم Y وبطول Z من المحارف. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + ‎() ‫تُعيد الدالة total_changes()‎ عدد الصفوف المتأثّرة بإفادة INSERT أو UPDATE أو DELETE مذ فُتح اتصال قاعدة البيانات الحالية. + + + + (X) trim(X) removes spaces from both ends of X. + (X) ‫تُزيل trim(X) المسافات من جانبي للسلسلة النصية X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) ‫تُعيد الدالة trim(X,Y) سلسلة نصية بإزالة كلّ المحارف التي قد تظهر في Y من كِلا جانبي X. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) ‫تُعيد الدالة typeof(X) سلسلة نصية توضّح نوع بيانات التعبير X. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) ‫تُعيد دالة unicode(X) النقطة الرمزية اليونيكودية العددية لأوّل محرف من السلسلة النصية X. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) ‫تُعيد الدالة upper(X) نسخة من السلسلة النصية الدخل X حيث محارف آسكي بحالة الأحرف الكبيرة محوّلة كلّها إلى حالة الأحرف الكبيرة. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) ‫تُعيد الدالة zeroblob(N) كائن BLOB يحتوي N بايت بالمحتوى 0x00. + + + + + + + (timestring,modifier,modifier,...) + (timestring,modifier,modifier,...) + + + + (format,timestring,modifier,modifier,...) + (format,timestring,modifier,modifier,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) تُعيد الدالة‫ avg()‎ القيمة المتوسّطة لكلّ X لا تساوي NULL داخل مجموعة ما. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) ‫تُعيد الدالة count(X) عدد المرات التي لا يكون فيها X يساوي NULL في مجموعة ما. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) ‫تُعيد الدالة group_concat()‎ سلسلة نصية تجمع كلّ قيم X التي لا تساوي NULL. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) ‫تُعيد الدالة group_concat()‎ سلسلة نصية تجمع كلّ قيم X التي لا تساوي NULL. إن كان المعطى Y موجودًا، فسيُستخدم كفاصل بين سيرورات X. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) ‫تُعيد الدالة الجامعة max()‎ أكبر قيمة لكلّ القيم في المجموعة. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) ‫تُعيد الدالة الجامعة min()‎ أدنى قيمة لا تساوي NULL لكلّ القيم في المجموعة. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) ‫تُعيد الدالتان الجامعتان sum()‎ و total()‎ مجموع كل القيم التي لا تساوي NULL في المجموعة. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + ‎() ‫رقم الصفّ داخل القسم الحالي. تُرقّم الصفوف بدءًا من ١ بالترتيب الذي حدّده بند ORDER BY في تعريف النافذة، أو بترتيب اعتباطي إن لم يكن كذلك.‏ + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + ‎() ‫ناتج row_number()‎ لأوّل فرد في كلّ مجموعة - رتبة الصفّ الحالي مع الفراغات. إن لم يكن هناك بند ORDER BY، فستُعتبر كلّ الصفوف أفراد وستُعيد هذه الدالة ١ دومًا. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + ‎() ‫رقم مجموعة الأفراد للصفّ الحالي داخل القسم - رتبة الصفّ الحالي مع الفراغات. تُرقّم الأقسام بدءًا من 1 الترتيب الذي حدّده بند ORDER BY في تعريف النافذة. إن لم يوجد بند ORDER BY، فستُعتبر كلّ الصفوف أفراد وستُعيد هذه الدالة ١ دومًا. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + ‎() ب‫غضّ النظر عن الاسم، تُعيد هذه الدالة دومًا قيمة بين ٠٫٠ و١٫٠ مساويةً لِ‍ (الرتبة - ١)/(صفوف القسم - ١)، حيث ”الرتبة“ هي القيمة التي تُعيدها دالة النافذة المضمّنة rank()‎ و”صفوف القسم“ هو إجمال عدد الصفوف في القسم. إن احتوى القسم صفًا واحدًا فحسب، فستُعيد هذه الدالة ٠٫٠. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + ‎() التوزيع التصاعدي. يُحسب بالمعادلة رقم الصف/صفوف القسم، حيث ”رقم الصف“ هي القيمة التي أرجعتها‫ row_number()‎ لآخر فرد في المجموعة، و”صفوف القسم“ هي عدد الصفوف في القسم. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) ‫يُتعامل مع المعطى N على أنّه عدد صحيح. تقسم هذه الدالة القسم إلى N مجموعة إلى حد الإمكان من المساواة، وتُسند عددًا صحيحًا بين 1 وN لكل مجموعة، بالترتيب الذي حدّده بند ORDER BY، أو بترتيب اعتباطي إن كان عكس ذلك. إن كان ضروريا، فستحدث المجموعات الأكبر أولا. تُعيد هذه الدالة قيمة العدد الصحيح المُسنحدة إلى المجموعة التي هي جزء من الصف الحالي. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) ‫تُعيد ناتج تقدير التعبير expr على الصفّ السابق في القسم. أو NULL إن لم يكن هناك صفّ سابق (لأنّ الصف الحالي هو الأوّل). + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) ‫لو وُجد وسيط الإزاحة offset فيجب أن يكون عددًا صحيحًا غير سالب. في هذه الحالة تكون القيمة المُعادة هي ناتج تقدير العبارة expr للصفوف المُزاحة حسب الإزاحة قبل الصفّ الحالي في القسم. لو كانت الإزاحة صِفرًا فسيُقدّر التعبير حسب الصف الحالي. لو لم تكن هناك صفوف بالإزاحة تلك قبل الصفّ الحالي، فسيُعاد NULL. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) ‫وإن وُجدت قيمة default فستُعاد بدل NULL لو لم يوجد الصفّ الذي حدّدته الإزاحة تلك. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) ‫تُعيد ناتج تقدير التعبير حسب الصفّ التالي في القسم. أو NLL لو لم يكن هناك واحد (إذ الصفّ الحالي هو آخر صفّ). + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) ‫لو وُجد وسيط الإزاحة offset فيجب أن يكون عددًا صحيحًا غير سالب. في هذه الحالة تكون القيمة المُعادة هي ناتج تقدير العبارة expr للصفوف المُزاحة حسب الإزاحة بعد الصفّ الحالي في القسم. لو كانت الإزاحة صِفرًا فسيُقدّر التعبير حسب الصف الحالي. لو لم تكن هناك صفوف بالإزاحة تلك بعد الصفّ الحالي، فسيُعاد NULL. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) ‫تحسب دالة النوافذ (window) المضمّنة هذه إطار النافذة لكلّ صف كما تحسبها دوال الجامعة. تُعيد الدالة قيمة التعبير expr محسوبًا حسب الصف الأوّل في إطار النافذة لكلّ صف. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) ‫تحسب دالة النوافذ (window) المضمّنة هذه إطار النافذة لكلّ صف كما تحسبها دوال الجامعة. تُعيد الدالة قيمة التعبير expr محسوبًا حسب الصف الأخير في إطار النافذة لكلّ صف. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr, N) ‫تحسب دالة النوافذ (window) المضمّنة هذه إطار النافذة لكلّ صف كما تحسبها دوال الجامعة. تُعيد الدالة قيمة التعبير expr محسوبًا حسب الصف رقم N في إطار النافذة. تُرقّم الصفوف في إطارات النوافذ بدءًا بالعدد ١ حسب الترتيب الذي حدّده بند ORDER BY لو وُجد، أو بترتيب اعتباطي لو لم يوجد. ولو لم يكن هناك صف برقم N في القسم فسيُعاد NULL. + + + + SqliteTableModel + + + reading rows + يقرأ الصفوف + + + + loading... + يحمّل... + + + + References %1(%2) +Hold %3Shift and click to jump there + التفضيلات %L1‏(%L2) +اضغط %L3Shift وانقر للانتقال إلى هناك + + + + Error changing data: +%1 + خطأ أثناء تغيير البيانات: +%L1 + + + + retrieving list of columns + يجلب قائمة الأعمدة + + + + Fetching data... + يجلب البيانات... + + + + + Cancel + ألغِ + + + + TableBrowser + + + Browse Data + تصفّح البيانات + + + + &Table: + الج&دول: + + + + Select a table to browse data + اختر جدولًا لتصفّح بياناته + + + + Use this list to select a table to be displayed in the database view + استعمل هذه القائمة لاختيار الجدول الذي سيُعرض في منظور قاعدة البيانات + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + هذا هو منظور جدول قاعدة البيانات. يمكنك إجراء الآتي فيه: + - البدء بالكتابة لتحرير القيمة داخل الخط. + - النقر مزدوجًا على أيّ سجلّ لتحرير محتوياته في نافذة محرّر الخلايا. + - ضغط Alt+Del لحذف محتوى الخليّة وضبطه على NULL. + - ضغط Ctrl+"‎ لتكرار السجلّ الحالي. + - ضغط Ctrl+'‎ لنسخ القيمة من الخلية أعلاه. + - التحديد العادي وعمليات النسخ واللصق. + + + + Text pattern to find considering the checks in this frame + النمط محور البحث بأخذ الفحوص في هذا الإطار بعين الاعتبار + + + + Find in table + ابحث في الجدول + + + + Find previous match [Shift+F3] + ابحث عن المطابقة السابقة [Shift+F3] + + + + Find previous match with wrapping + ابحث عن المطابقة السابقة مع الالتفاف + + + + Shift+F3 + Shift+F3 + + + + Find next match [Enter, F3] + ابحث عن المطابقة التالية [Enter, F3] + + + + Find next match with wrapping + ابحث عن المطابقة التالية مع الالتفاف + + + + F3 + + + + + The found pattern must match in letter case + يجب أن يطابق النمط محور البحث حالة الأحرف + + + + Case Sensitive + حسّاس لحالة الأحرف + + + + The found pattern must be a whole word + يجب أن يكون النمط محور البحث كلمة كاملة + + + + Whole Cell + الخلية كاملة + + + + Interpret search pattern as a regular expression + تعامَل مع نمط البحث كتعبير نمطي + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + إن فعّلته فسيُتعامل مع نمط البحث على أنّه تعبير يونكس نمطي. طالع <a href="https://en.wikibooks.org/wiki/Regular_Expressions">التعابير النمطية في ويكي‌كتب (بالإنجليزية)</a>. + + + + Regular Expression + تعبير نمطي + + + + + Close Find Bar + أغلِق شريط البحث + + + + Text to replace with + نص الاستبدال + + + + Replace with + استبدله بِ‍ + + + + Replace next match + استبدِل المطابقة التالية + + + + + Replace + استبدل + + + + Replace all matches + استبدل كلّ المطابقات + + + + Replace all + استبدل الكلّ + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + مرّر إلى البداية + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + ينقلك هذا الزر إلى بداية منظور الجدول أعلاه. + + + + |< + |< + + + + Scroll one page upwards + مرّر صفحة واحدة للأمام + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + ينقلك هذا الزر صفحة واحدة من السجلّات لأعلى في منظور الجدول أعلاه. + + + + < + < + + + + 0 - 0 of 0 + ٠ - ٠ من أصل ٠ + + + + Scroll one page downwards + مرّر صفحة واحدة للأسفل + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + ينقلك هذا الزر صفحة واحدة من السجلّات لأسفل في منظور الجدول أعلاه. + + + + > + > + + + + Scroll to the end + مرّر إلى النهاية + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + ينقلك هذا الزر إلى نهاية منظور الجدول أعلاه. + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + انقر هنا للانتقال إلى السجلّ المحدّد + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + يُستعمل هذا الزر في التنقّل إلى رقم السطر المحدّد في منطقة ”انتقل إلى“. + + + + Go to: + انتقل إلى: + + + + Enter record number to browse + أدخِل رقم السجلّ لتصفّحه + + + + Type a record number in this area and click the Go to: button to display the record in the database view + اكتب رقم السجلّ في هذا المربّع وانقر زر ”انتقل إلى:“ لعرض السجلّ في منظور قاعدة البيانات + + + + 1 + ١ + + + + Show rowid column + اعرض عمود معرّف الصفوف + + + + Toggle the visibility of the rowid column + بدّل ظهور عمود معرّف الصفوف/rowid + + + + Unlock view editing + اسمح بتحرير المنظور + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + يتيح هذا تحرير المنظور الحالي. مع ذلك ستحتاج إلى المحفّزات المناسبة لإجراء التحرير. + + + + Edit display format + حرّر تنسيق العرض + + + + Edit the display format of the data in this column + حرّر تنسيق عرض البيانات في هذا العمود + + + + + New Record + سجلّ جديد + + + + + Insert a new record in the current table + أدرِج سجلًا جديدًا في الجدول الحالي + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + يُنشئ هذا الزر سجلًا جديدًا في قاعدة البيانات. أبقِ زر الفأرة مضغوطًا لفتح قائمة منبثقة فيها عدّة خيارات:<ul><li><span style=" font-weight:600;">سجلّ جديد</span>: لإدراج سجلّ جديد يحمل القيم المبدئية في قاعدة البيانات.</li><li><span style=" font-weight:600;">أدرِج قيم...</span>: لفتح مربّع حوار لإدخال القيم قبل إدراجها في جدول البيانات. يتيح هذا إدخال القيم حسب القيود المختلفة. يُفتح مربّع الحوار هذا أيضًا إن فشل الخيار <span style=" font-weight:600;">سجلّ جديد</span> بسبب هذه القيود.</li></ul> + + + + + Delete Record + احذف السجلّ + + + + Delete the current record + احذف السجلّ الحالي + + + + + This button deletes the record or records currently selected in the table + يحذف هذا الزر السجلّ أو السجلّات المحدّدة حاليًا في الجدول + + + + + Insert new record using default values in browsed table + أدرِج سجلًا جديدًا مستخدمًا القيم المبدئية في الجدول الذي تتصفّحه + + + + Insert Values... + أدرِج قيم... + + + + + Open a dialog for inserting values in a new record + افتح مربّع حوار لإدراج القيم في سجلّ جديد + + + + Export to &CSV + &صدّر بنسق CSV + + + + + Export the filtered data to CSV + صدّر البيانات المرشّحة إلى CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + يُصدّر هذا الزر بيانات الجدول الذي تتصفّحه كما هي معروضة حاليًا (بعد المرشّحات وتنسيقات العرض وعمود الفرز) كملف CSV. + + + + Save as &view + احفظ كمن&ظور + + + + + Save the current filter, sort column and display formats as a view + احفظ المرشّح الحالي وعمود الفرز وتنسيقات العرض كمنظور + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + يحفظ هذا الزر الإعداد الحالي للجدول الذي تتصفّحه (المرشّحات وتنسيقات العرض وعمود الفرز) في منظور SQL يمكنك تصفّحه لاحقًا أو استخدامه في إفادات SQL. + + + + Save Table As... + احفظ الجدول كَ‍... + + + + + Save the table as currently displayed + احفظ الجدول كما هو معروض حاليًا + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + توفّر القائمة المنبثقة هذه الخيارات الآتية والتي تنطبق على الجدول الذي تتصفّحه والمرشّح حاليًا:<ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">صدّر بنسق CSV: يُصدّر هذا الخيار البيانات في الجدول الذي تتصفّحه كما هي معروضة حاليًا (بعد المرشّحات وتنسيقات العرض وعمود الفرز) إلى ملف بنسق CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">احفظ كمنظور: يحفظ هذا الخيار الإعداد الحالي للجدول الذي تتصفّحه (المرشّحات وتنسيقات العرض وعمود الفرز) في منظور SQL يمكنك تصفّحه لاحقًا أو استعماله في إفادات SQL.</li></ul> + + + + Hide column(s) + أخفِ العمود/الأعمدة + + + + Hide selected column(s) + أخفِ العمود/الأعمدة المحدّدة + + + + Show all columns + اعرض كلّ الأعمدة + + + + Show all columns that were hidden + اعرض كلّ الأعمدة التي أُخفيت + + + + + Set encoding + اضبط الترميز + + + + Change the encoding of the text in the table cells + غيّر ترميز النصوص في خلايا الجدول + + + + Set encoding for all tables + اضبط ترميز كلّ الجداول + + + + Change the default encoding assumed for all tables in the database + غيّر الترميز المبدئي المفترض في كلّ جداول قاعدة البيانات + + + + Clear Filters + امسح المرشّحات + + + + Clear all filters + امسح كلّ المرشّحات + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + يمسح هذا الزر كلّ المرشّحات المضبوطة في حقول الدخل في الترويسة للجدول الذي تتصفّحه حاليًا. + + + + Clear Sorting + امسح الفرز + + + + Reset the order of rows to the default + صفّر ترتيب الصفوف إلى المبدئيات + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + يمسح هذا الزر تريتب الأعمدة المحدّد للجدول الذي تتصفّحه حاليًا ويُعيده إلى التريب المبدئي. + + + + Print + اطبع + + + + Print currently browsed table data + اطبع بيانات الجدول الذي تتصفّحه حاليًا + + + + Print currently browsed table data. Print selection if more than one cell is selected. + اطبع بيانات الجدول الذي تتصفّحه حاليًا. اطبع التحديد إن كانت هناك أكثر من خليّة واحدة محدّدة. + + + + Ctrl+P + Ctrl+P + + + + Refresh + أنعِش + + + + Refresh the data in the selected table + أنعِش البيانات في الجدول المحدّد + + + + This button refreshes the data in the currently selected table. + يُنعش هذا الزر البيانات في الجدول المحدّد حاليًا. + + + + F5 + + + + + Find in cells + ابحث في الخلايا + + + + Open the find tool bar which allows you to search for values in the table view below. + افتح شريط أدوات البحث لتبحث عن القيم التي تريد في منظور الجدول أسفله. + + + + + Bold + ثخين + + + + Ctrl+B + Ctrl+B + + + + + Italic + مائل + + + + + Underline + مسطّر + + + + Ctrl+U + Ctrl+U + + + + + Align Right + حاذِ يمينًا + + + + + Align Left + حاذِ يسارًا + + + + + Center Horizontally + الوسط الأفقي + + + + + Justify + ضبط + + + + + Edit Conditional Formats... + حرّر التنسيقات الشرطيّة... + + + + Edit conditional formats for the current column + حرّر تنسيقات العمود الحالي الشرطيّة + + + + Clear Format + امسح التنسيق + + + + Clear All Formats + امسح كلّ التنسيقات + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + امسح كلّ تنسيق الخلايا في الخلايا المحدّدة وكلّ التنسيقات الشرطيّة في الأعمدة المحدّدة + + + + + Font Color + لون النص + + + + + Background Color + لون الخلفية + + + + Toggle Format Toolbar + اعرض/أخفِ شريط أدوات التنسيق + + + + Show/hide format toolbar + اعرض/أخفِ شريط التنسيق + + + + + This button shows or hides the formatting toolbar of the Data Browser + يعرض هذا الزر (أو يُخفي) شريط التنسيق لمتصفّح البيانات + + + + Select column + اختر عمودًا + + + + Ctrl+Space + Ctrl+Space + + + + Replace text in cells + استبدل النصوص في الخلايا + + + + Filter in any column + رشّح أيّ عمود + + + + Ctrl+R + Ctrl+R + + + + %n row(s) + + لا صفوف + صفّ واحد + صفّان اثنان + %Ln صفوف + %Ln صفًا + %Ln صفّ + + + + + , %n column(s) + + ولا أعمدة + وعمود واحد + وعمودين اثنين + و%Ln أعمدة + و%Ln عمودًا + و%Ln عمود + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . المجموع: %L1، المتوسّط: %L2، الأدنى: %L3، الأقصى: %L4 + + + + Conditional formats for "%1" + تنسيقات ”%L1“ الشرطيّة + + + + determining row count... + يحدّد عدد الصفوف... + + + + %1 - %2 of >= %3 + ‏%L1 - ‏%L2 من أصل >= ‏%L3 + + + + %1 - %2 of %3 + ‏%L1 - ‏%L2 من أصل %L3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + من فضلك أدخِل مفتاحًا أساسيًا زائفًا (pseudo) لتفعيل التحرير في هذا المنظور. يجب أن يكون المفتاح اسمًا لأحد الأعمدة الفريدة في المنظور. + + + + Delete Records + احذف السجلّات + + + + Duplicate records + كرّر السجلّات + + + + Duplicate record + كرّر السجلّ + + + + Ctrl+" + Ctrl+" + + + + Adjust rows to contents + اضبط الصفوف إلى محتواها + + + + Error deleting record: +%1 + خطأ أثناء حذف السجلّ: +%L1 + + + + Please select a record first + من فضلك اختر سجلًا أوّلًا + + + + There is no filter set for this table. View will not be created. + لا مرشّح مضبوط لهذا الجدول. لن يُنشأ المنظور. + + + + Please choose a new encoding for all tables. + من فضلك اختر ترميزًا جديدًا لكلّ الجداول. + + + + Please choose a new encoding for this table. + من فضلك اختر ترميزًا جديدًا لهذا الجدول. + + + + %1 +Leave the field empty for using the database encoding. + %L1 +اترك الحقل فارغًا لاستعمال ترميز قاعدة البيانات. + + + + This encoding is either not valid or not supported. + إمّا أنّ هذا الترميز غير صالح أو أنّه غير مدعوم. + + + + %1 replacement(s) made. + عدد الاستبدالات المُجراة: %L1 + + + + VacuumDialog + + + Compact Database + رصّ قاعدة البيانات + + + + Warning: Compacting the database will commit all of your changes. + تحذير: برصّ قاعدة البيانات ستُودع كلّ التعديلات التي أجريتها. + + + + Please select the databases to co&mpact: + من فضلك اختر قواعد البيانات لر&صّها: + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_cs.qm b/src/SqliteDBProcess/src/translations/sqlb_cs.qm new file mode 100644 index 0000000..0828541 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_cs.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_cs.ts b/src/SqliteDBProcess/src/translations/sqlb_cs.ts new file mode 100644 index 0000000..880d693 --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_cs.ts @@ -0,0 +1,6940 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + O DB Browser pro SQLite + + + + Version + Verze + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + + + + + AddRecordDialog + + + Add New Record + + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + + + + + Name + Název + + + + Type + Typ + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + + + + + Auto-increment + + + + + + Unique constraint + + + + + + Check constraint: %1 + + + + + + Foreign key: %1 + + + + + + Default value: %1 + + + + + + Error adding record. Message from database engine: + +%1 + + + + + Are you sure you want to restore all the entered values to their defaults? + + + + + Application + + + Possible command line arguments: + Možné parametry pro příkazový řádek: + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + Volba -s/--sql vyžaduje parametry + + + + The file %1 does not exist + Soubor %1 neexistuje + + + + The -t/--table option requires an argument + Volba -t/--table vyžaduje parametry + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + + + + + Invalid option/non-existant file: %1 + Neplatná volba/neexistující soubor: %1 + + + + SQLite Version + verze SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + + + + + Qt Version %1 + + + + + CipherDialog + + + SQLCipher encryption + šifrování SQLCipher + + + + &Password + &Heslo + + + + &Reenter password + &Zadejte heslo znovu + + + + Encr&yption settings + + + + + SQLCipher &3 defaults + + + + + SQLCipher &4 defaults + + + + + Custo&m + + + + + Page si&ze + Velikost strany + + + + &KDF iterations + + + + + HMAC algorithm + + + + + KDF algorithm + + + + + Plaintext Header Size + + + + + Passphrase + + + + + Raw key + + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + + + + + ColumnDisplayFormatDialog + + + Choose display format + Vyberte formát zobrazení + + + + Display format + Formát zobrazení + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Vyberte formát zobrazení pro sloupec '%1' který je použit na každou hodnotu před zobrazením. + + + + Default + Výchozí + + + + Decimal number + Desetinné číslo + + + + Exponent notation + Notace exponentu + + + + Hex blob + Šestnáctkový blob + + + + Hex number + Šestnáctkové číslo + + + + Apple NSDate to date + Apple NSDate na datum + + + + Java epoch (milliseconds) to date + + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + Juliánský den na datum + + + + Unix epoch to local time + + + + + Date as dd/mm/yyyy + Datum jako dd/mm/yyyy + + + + Lower case + Malá písmena + + + + Custom display format must contain a function call applied to %1 + + + + + Error in custom display format. Message from database engine: + +%1 + + + + + Custom display format must return only one column but it returned %1. + + + + + Octal number + Osmičkové číslo + + + + Round number + Zaokrouhlit číslo + + + + Unix epoch to date + Unix epoch na datum + + + + Upper case + Velká písmena + + + + Windows DATE to date + Windows DATE na datum + + + + Custom + Vlastní + + + + CondFormatManager + + + Conditional Format Manager + + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + + + + + Add new conditional format + + + + + &Add + Přidat + + + + Remove selected conditional format + + + + + &Remove + Odstranit + + + + Move selected conditional format up + + + + + Move &up + + + + + Move selected conditional format down + + + + + Move &down + + + + + Foreground + Popředí + + + + Text color + Barva textu + + + + Background + Pozadí + + + + Background color + Barva pozadí + + + + Font + Font + + + + Size + Velikost + + + + Bold + Tučný + + + + Italic + Kurzíva + + + + Underline + Podtržený + + + + Alignment + + + + + Condition + + + + + + Click to select color + + + + + Are you sure you want to clear all the conditional formats of this field? + + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + Prosím specifikujte jméno databáze, pod kterým chcete přistupovat k připojené databázi + + + + Invalid file format + Neplatný formát souboru + + + + Do you want to save the changes made to the database file %1? + Chcete uložit změny provedené do databázového souboru %1? + + + + Exporting database to SQL file... + Exportuji databázi do souboru SQL... + + + + + Cancel + Zrušit + + + + Executing SQL... + Provádím SQL... + + + + Action cancelled. + Akce zrušena. + + + + This database has already been attached. Its schema name is '%1'. + + + + + Do you really want to close this temporary database? All data will be lost. + + + + + Database didn't close correctly, probably still busy + + + + + The database is currently busy: + Databáze je právě zaneprázdněná: + + + + Do you want to abort that other operation? + + + + + + No database file opened + + + + + + Error in statement #%1: %2. +Aborting execution%3. + + + + + + and rolling back + + + + + didn't receive any output from %1 + + + + + could not execute command: %1 + + + + + Cannot delete this object + Nemohu smazat tento objekt + + + + Cannot set data on this object + + + + + + A table with the name '%1' already exists in schema '%2'. + + + + + No table with name '%1' exists in schema '%2'. + + + + + + Cannot find column %1. + + + + + Creating savepoint failed. DB says: %1 + + + + + Renaming the column failed. DB says: +%1 + + + + + + Releasing savepoint failed. DB says: %1 + + + + + Creating new table failed. DB says: %1 + + + + + Copying data to new table failed. DB says: +%1 + + + + + Deleting old table failed. DB says: %1 + + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + + + + + could not get list of db objects: %1 + + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + + + + + could not get list of databases: %1 + + + + + Error loading extension: %1 + Chyba při načítání přípony: %1 + + + + could not get column information + + + + + Error setting pragma %1 to %2: %3 + Chyba při nastavování pragma %1 na %2: %3 + + + + File not found. + Soubor nebyl nalezen. + + + + DbStructureModel + + + Name + Název + + + + Object + Objekt + + + + Type + Typ + + + + Schema + Schéma + + + + Database + Databáze + + + + Browsables + + + + + All + Všechny + + + + Temporary + Dočasný + + + + Tables (%1) + Tabulky (%1) + + + + Indices (%1) + Indexy (%1) + + + + Views (%1) + Pohledy (%1) + + + + Triggers (%1) + Triggery (%1) + + + + EditDialog + + + Edit database cell + Upravit buňku databáze + + + + Mode: + Mód: + + + + + Image + Obrázek + + + + Set as &NULL + Nastavit na &NULL + + + + Apply data to cell + + + + + This button saves the changes performed in the cell editor to the database cell. + + + + + Apply + Provést + + + + Text + Text + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + + + + + RTL Text + + + + + Binary + Binární + + + + JSON + + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + + + + + Auto-switch + + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + + + + + Open preview dialog for printing the data currently stored in the cell + + + + + Auto-format: pretty print on loading, compact on saving. + + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + + + + + Word Wrap + + + + + Wrap lines on word boundaries + + + + + + Open in default application or browser + + + + + Open in application + + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + + + + + Save file reference... + + + + + Save reference to file + + + + + + Open in external application + + + + + Autoformat + + + + + &Export... + + + + + + &Import... + + + + + + Import from file + Importovat ze souboru + + + + + Opens a file dialog used to import any kind of data to this database cell. + + + + + Export to file + Exportovat do souboru + + + + Opens a file dialog used to export the contents of this database cell to a file. + + + + + Erases the contents of the cell + Vymazat obsah buňky + + + + This area displays information about the data present in this database cell + Tato oblast zobrazuje informace o aktuálních datech v této databázové buňce + + + + Type of data currently in cell + Současný typ dat v buňce + + + + Size of data currently in table + Současná velikost dat v tabulce + + + + + Print... + Tisk... + + + + Open preview dialog for printing displayed image + + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + + + + + Copy Hex and ASCII + + + + + Copy selected hexadecimal and ASCII columns to the clipboard + + + + + Ctrl+Shift+C + + + + + Choose a filename to export data + Vyberte název souboru pro export dat + + + + Type of data currently in cell: %1 Image + Aktuální typ dat v buňce: %1 Obrázek + + + + %1x%2 pixel(s) + %1x%2 pixel/ů + + + + Type of data currently in cell: NULL + Aktuální typ dat v buňce: NULL + + + + + Type of data currently in cell: Text / Numeric + Aktuální typ dat v buňce: Text / Číselný + + + + + Image data can't be viewed in this mode. + + + + + + Try switching to Image or Binary mode. + + + + + + Binary data can't be viewed in this mode. + + + + + + Try switching to Binary mode. + Zkuste přepnout do binárního režimu. + + + + Couldn't save file: %1. + + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + + + + + + Image files (%1) + Soubory obrázků (%1) + + + + Binary files (*.bin) + Binární soubory (*.bin) + + + + Choose a file to import + Vyberte soubor pro import + + + + %1 Image + %1 Obrázek + + + + Invalid data for this mode + Neplatná data pro tento režim + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + + + + + + + %n character(s) + + %n znak + %n znaků + + + + + + Type of data currently in cell: Valid JSON + + + + + Type of data currently in cell: Binary + Aktuální typ dat v buňce: Binární + + + + + %n byte(s) + + %n byte + %n bytů + + + + + + EditIndexDialog + + + &Name + Název + + + + Order + Řadit + + + + &Table + Tabulka + + + + Edit Index Schema + Upravit schéma indexů + + + + &Unique + Unikátní + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + + + + + Partial inde&x clause + + + + + Colu&mns + Sloupce + + + + Table column + Sloupec tabulky + + + + Type + Typ + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + + + + + Index column + Index sloupce + + + + Deleting the old index failed: +%1 + + + + + Creating the index failed: +%1 + Vytváření indexu se nezdařilo: +%1 + + + + EditTableDialog + + + Edit table definition + Upravit definici tabulky + + + + Table + Tabulka + + + + Advanced + Pokročilé + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + + + + + Without Rowid + Bez id řádku + + + + Database sche&ma + + + + + Fields + Pole + + + + Add + + + + + Remove + + + + + Move to top + + + + + Move up + + + + + Move down + + + + + Move to bottom + + + + + + Name + Název + + + + + Type + Typ + + + + NN + NN + + + + Not null + Není null + + + + PK + PK + + + + Primary key + Primární klíč + + + + AI + AI + + + + Autoincrement + Autoincrement + + + + U + U + + + + + + Unique + Unikátní + + + + Default + Výchozí + + + + Default value + Výchozí hodnota + + + + + + Check + Zkontrolovat + + + + Check constraint + Zkontrolovat omezení + + + + Collation + + + + + + + Foreign Key + Cizí klíč + + + + Constraints + + + + + Add constraint + + + + + Remove constraint + + + + + Columns + Sloupce + + + + SQL + + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + + + + + + Primary Key + + + + + Add a primary key constraint + + + + + Add a foreign key constraint + + + + + Add a unique constraint + + + + + Add a check constraint + + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + + + + + Error creating table. Message from database engine: +%1 + Chyba při vytváření tabulky. Zpráva z databáze: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Pole s tímto názvem již existuje. Nejdříve jej přejmenujte, nebo vyberte pro toto pole jiný název, prosím. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Tento sloupec je použit jako cizí klíč v tabulce %1 a jeho název nemůže být změněn. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Existuje alespoň jeden řádek, který je nastaven na NULL. Z tohoto důvodu je nemožné nastavit tento flag. Nejprve změňte data v tabulce, prosím. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Existuje alespoň jeden řádek, který neobsahuje hodnotu typu integer. Z tohoto důvodu je nemožné nastavit AI flag. Nejprve změňte data v tabulce, prosím. + + + + Column '%1' has duplicate data. + + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + + + + + ExportDataDialog + + + Export data as CSV + Exportovat data do CSV + + + + Tab&le(s) + Tabulka/ky + + + + Colu&mn names in first line + Názvy sloupců v prvním řádku + + + + Fie&ld separator + Oddělovač pole + + + + , + , + + + + ; + ; + + + + Tab + Karta + + + + | + | + + + + + + Other + Ostatní + + + + &Quote character + &Uvozovka + + + + " + " + + + + ' + ' + + + + New line characters + Znaky nového řádku + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Pretty print + + + + + Could not open output file: %1 + Nemohu otevřít výstupní soubor: %1 + + + + + Choose a filename to export data + Vyberte název souboru pro export dat + + + + Export data as JSON + Exportovat data jako JSON + + + + exporting CSV + exportování CSV + + + + exporting JSON + exportování JSONu + + + + Please select at least 1 table. + Vyberte alespoň jednu tabulku, prosím. + + + + Choose a directory + Vybrat složku + + + + Export completed. + Export byl dokončen. + + + + ExportSqlDialog + + + Export SQL... + Exportovat SQL... + + + + Tab&le(s) + Tabulka/ky + + + + Select All + Vybrat vše + + + + Deselect All + Zrušit výběr + + + + &Options + Volby + + + + Keep column names in INSERT INTO + Zachovat názvy sloupců v INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Více řádků (VALUES) pro příkaz INSERT + + + + Export everything + Exportovat vše + + + + Export data only + Exportovat pouze data + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Přepsat staré schéma (DROP TABLE, then CREATE TABLE) + + + + Export schema only + Exportovat pouze schéma + + + + Please select at least one table. + Vyberte prosím aspoň jednu tabulku. + + + + Choose a filename to export + Vyberte název souboru pro export + + + + Export completed. + Export dokončen. + + + + Export cancelled or failed. + Export byl zrušen nebo selhal. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + + + + + Find and Replace... + Najít a nahradit... + + + + Print... + Tisk... + + + + ExtendedTableWidget + + + Use as Exact Filter + + + + + Containing + + + + + Not containing + + + + + Not equal to + + + + + Greater than + Větší než + + + + Less than + Menší než + + + + Greater or equal + Větší nebo rovno + + + + Less or equal + Menší nebo rovno + + + + Between this and... + Mezi tímto a... + + + + Regular expression + + + + + Edit Conditional Formats... + + + + + Set to NULL + Nastavit na NULL + + + + Copy + Kopírovat + + + + Copy with Headers + Kopírovat s hlavičkami + + + + Copy as SQL + Kopírovat jako SQL + + + + Paste + Vložit + + + + Print... + Tisk... + + + + Use in Filter Expression + + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + + + + + FileExtensionManager + + + File Extension Manager + + + + + &Up + Nahoru + + + + &Down + Dolů + + + + &Add + Přidat + + + + &Remove + Odstranit + + + + + Description + Popis + + + + Extensions + Rozšíření + + + + *.extension + *.extension + + + + FilterLineEdit + + + Filter + Filtr + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + + + + + Clear All Conditional Formats + + + + + Use for Conditional Format + + + + + Edit Conditional Formats... + + + + + Set Filter Expression + + + + + What's This? + Co je toto? + + + + Is NULL + je NULL + + + + Is not NULL + Není NULL + + + + Is empty + Je prázdný + + + + Is not empty + Není prázdný + + + + Not containing... + + + + + Equal to... + Rovný k... + + + + Not equal to... + Není rovný k... + + + + Greater than... + Větší než... + + + + Less than... + Menší než... + + + + Greater or equal... + Větší nebo rovno... + + + + Less or equal... + Menší nebo rovno... + + + + In range... + V rozmezí... + + + + Regular expression... + + + + + FindReplaceDialog + + + Find and Replace + Najít a nahradit + + + + Fi&nd text: + Najít text + + + + Re&place with: + Nahradit s: + + + + Match &exact case + + + + + Match &only whole words + + + + + When enabled, the search continues from the other end when it reaches one end of the page + + + + + &Wrap around + + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + + + + + Search &backwards + + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + + + + + &Selection only + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Use regular e&xpressions + + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + + + + + &Find Next + Najít další + + + + F3 + + + + + &Replace + Nahradit + + + + Highlight all the occurrences of the text in the page + + + + + F&ind All + Najít vše + + + + Replace all the occurrences of the text in the page + + + + + Replace &All + Nahradit vše + + + + The searched text was not found + Hledaný text nebyl nalezen + + + + The searched text was not found. + Hledaný text nebyl nalezen. + + + + The searched text was found one time. + Hledaný text byl nalezen jednou. + + + + The searched text was found %1 times. + Hledaný text byl nalezen %1 krát. + + + + The searched text was replaced one time. + Hledaný text byl nahrazen jednou. + + + + The searched text was replaced %1 times. + Hledaný text byl nahrazen %1 krát. + + + + ForeignKeyEditor + + + &Reset + + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + + + + + ImportCsvDialog + + + Import CSV file + Importovat soubor CSV + + + + Table na&me + Název tabulky + + + + &Column names in first line + &Názvy sloupců v prvním řádku + + + + Field &separator + Oddělovač pole + + + + , + , + + + + ; + ; + + + + + Tab + Karta + + + + | + | + + + + Other + Ostatní + + + + &Quote character + &Uvozovka + + + + + Other (printable) + + + + + + Other (code) + + + + + " + " + + + + ' + ' + + + + &Encoding + Kódování + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Ořezat pole? + + + + Separate tables + Oddělit tabulky + + + + Advanced + Pokročilé + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + + + + + Ignore default &values + Ignorovat výchozí hodnoty + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + + + + + Fail on missing values + + + + + Disable data type detection + + + + + Disable the automatic data type detection when creating a new table. + + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + + + + + Abort import + + + + + Ignore row + + + + + Replace existing row + + + + + Conflict strategy + + + + + + Deselect All + Zrušit celý výběr + + + + Match Similar + + + + + Select All + Vybrat vše + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + + + + + There is already a table named '%1'. Do you want to import the data into it? + + + + + Creating restore point failed: %1 + Vytváření bodu obnovy selhalo: %1 + + + + Creating the table failed: %1 + Vytváření tabulky selhalo: %1 + + + + importing CSV + importování CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + + + + + Inserting row failed: %1 + Vkládání řádku selhalo: %1 + + + + MainWindow + + + DB Browser for SQLite + DB Browser pro SQLite + + + + toolBar1 + toolBar1 + + + + Opens the SQLCipher FAQ in a browser window + Otevře SQLCipher FAQ v okně prohlížeče + + + + Export one or more table(s) to a JSON file + Export jedné nebo více tabulek do souboru JSON + + + + &File + &Soubor + + + + &Import + &Import + + + + &Export + &Export + + + + Open an existing database file in read only mode + + + + + &Edit + Upravit + + + + &View + Pohled + + + + &Help + Pomoc + + + + DB Toolbar + Panel nástrojů DB + + + + Edit Database &Cell + Upravit databázovou buňku + + + + DB Sche&ma + DB Schéma + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + Proveďte SQL + + + + + Execute current line + Provést aktuální řádek + + + + This button executes the SQL statement present in the current editor line + + + + + Shift+F5 + + + + + Sa&ve Project + Ulo&žit Projekt + + + + User + Uživatel + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Databázová Struktura + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Prohlížet data + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Editovat Pragma + + + + Application + Aplikace + + + + &Clear + &Vyčistit + + + + &New Database... + Nová databáze... + + + + + Create a new database file + Vytvořit nový databázový soubor + + + + This option is used to create a new database file. + Tato volba slouží k vytvoření nového souboru databáze. + + + + Ctrl+N + + + + + + &Open Database... + Otevřít databázi... + + + + + + + + Open an existing database file + Otevřít existující soubor databáze + + + + + + This option is used to open an existing database file. + Tato volba slouží k otevření existujícího souboru databáze. + + + + Ctrl+O + + + + + &Close Database + &Zavřít databázi + + + + This button closes the connection to the currently open database file + + + + + + Ctrl+W + + + + + + Revert database to last saved state + Vrátit databázi do posledního uloženého stavu + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + + + + + + Write changes to the database file + Zapsat změny do souboru databáze + + + + This option is used to save changes to the database file. + Tato volba slouží k uložení provedených změn do souboru databáze. + + + + Ctrl+S + + + + + Compact &Database... + + + + + Compact the database file, removing space wasted by deleted records + + + + + + Compact the database file, removing space wasted by deleted records. + + + + + E&xit + Exit + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Importovat data z textového souboru .sql do nové nebo již existující databáze. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Otevře průzkumníka, kde můžete importovat data z textového souboru, kde jsou data oddělena čárkami, do databázové tabulky. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + + + + + Export a database to a .sql dump text file. + Exportovat databázi do textového souboru .sql + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + + + + + Export a database table as a comma separated text file. + Exportovat databázovou tabulku jako textový soubor oddělený čárkami. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + + + + + + Delete Table + Smazat Tabulku + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + + + + + &Preferences... + &Možnosti... + + + + + Open the preferences window. + Otevřít okno s možnostmi. + + + + &DB Toolbar + Panel nástrojů DB + + + + Shows or hides the Database toolbar. + Zobrazí nebo skryje lištu Databáze. + + + + Shift+F1 + + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + Execute line + + + + + &Wiki + Wiki + + + + F1 + + + + + Bug &Report... + Nahlásit chybu... + + + + Feature Re&quest... + Požadavek na funkci... + + + + Web&site + Webová stránka + + + + &Donate on Patreon... + Přispět na Patreon... + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + This button lets you open a DB Browser for SQLite project file + + + + + Browse Table + + + + + &Attach Database... + Přiložit databázi... + + + + + Add another database file to the current database connection + + + + + This button lets you add another database file to the current database connection + + + + + &Set Encryption... + Nastavit šifrování... + + + + SQLCipher &FAQ + SQLCipher FAQ + + + + Table(&s) to JSON... + Tabulka(ky) do JSONu... + + + + Open Data&base Read Only... + + + + + Ctrl+Shift+O + + + + + Save results + Uložit výsledky + + + + Save the results view + + + + + This button lets you save the results of the last executed query + + + + + + Find text in SQL editor + Najít text v SQL editoru + + + + Find + + + + + This button opens the search bar of the editor + + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Najít a nahradit text v SQL editoru + + + + Find or replace + + + + + This button opens the find/replace dialog for the current editor tab + + + + + Ctrl+H + + + + + Export to &CSV + Export do CSV + + + + Save as &view + Uložit jako pohled + + + + Save as view + Uložit jako pohled + + + + Shows or hides the Project toolbar. + Zobrazit nebo skrýt lištu projektu + + + + Extra DB Toolbar + Extra DB Toolbar + + + + New In-&Memory Database + + + + + Drag && Drop Qualified Names + + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + + + + + Drag && Drop Enquoted Names + + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + + + + + &Integrity Check + + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + + + + + &Foreign-Key Check + + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + + + + + &Quick Integrity Check + + + + + Run a quick integrity check over the open DB + + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + + + + + &Optimize + + + + + Attempt to optimize the database + + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + + + + + + Print + Tisk + + + + Print text from current SQL editor tab + + + + + Open a dialog for printing the text in the current SQL editor tab + + + + + Print the structure of the opened database + + + + + Open a dialog for printing the structure of the opened database + + + + + &Save Project As... + + + + + + + Save the project in a file selected in a dialog + + + + + Save A&ll + + + + + + + Save DB file, project file and opened SQL files + + + + + Ctrl+Shift+S + + + + + &Recently opened + &Nedávno otevřené + + + + Open &tab + Otevřít kartu + + + + Ctrl+T + + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + + + + + Un/comment block of SQL code + + + + + Un/comment block + + + + + Comment or uncomment current line or selected block of code + + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + + + + + Ctrl+/ + + + + + Stop SQL execution + + + + + Stop execution + + + + + Stop the currently running SQL script + + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + + + + + &Tools + Nástroje + + + + SQL &Log + SQL &Log + + + + Show S&QL submitted by + + + + + Error Log + + + + + This button clears the contents of the SQL logs + + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + + + + + &Plot + + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + + + + + &Remote + Vzdálené + + + + + Project Toolbar + + + + + Extra DB toolbar + Extra DB toolbar + + + + + + Close the current database file + + + + + Ctrl+F4 + + + + + &Revert Changes + Vrátit Změny + + + + &Write Changes + Zapsat Změny + + + + &Database from SQL file... + Databáze z SQL souboru... + + + + &Table from CSV file... + Tabulka ze souboru CSV... + + + + &Database to SQL file... + Databáze do souboru SQL... + + + + &Table(s) as CSV file... + Tabulka/ky jako soubor CSV... + + + + &Create Table... + Vytvořit Tabulku... + + + + &Delete Table... + Smazat Tabulku... + + + + &Modify Table... + Upravit Tabulku... + + + + Create &Index... + Vytvořit Index... + + + + W&hat's This? + Co je toto? + + + + &About + O + + + + This button opens a new tab for the SQL editor + + + + + &Execute SQL + &Provést příkaz SQL + + + + Execute all/selected SQL + Provést všechny/vybrané SQL + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + + + + + + + Save SQL file + Uložit SQL soubor + + + + &Load Extension... + Načíst rozšíření... + + + + Ctrl+E + + + + + Export as CSV file + Exportovat jako soubor CSV + + + + Export table as comma separated values file + Exportovat tabulku do souboru jako hodnoty oddělené čárkami + + + + + Save the current session to a file + Uložit aktuální session do souboru + + + + Open &Project... + Otevřít projekt... + + + + + Load a working session from a file + + + + + + Save SQL file as + Uložit soubor SQL jako + + + + This button saves the content of the current SQL editor tab to a file + + + + + &Browse Table + &Prohlížet Tabulku + + + + Copy Create statement + Kopírovat příkaz Create + + + + Copy the CREATE statement of the item to the clipboard + Zkopírovat do schránky příkaz CREATE + + + + Ctrl+Return + + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Encrypted + Šifrováno + + + + Read only + Pouze pro čtení + + + + Database file is read only. Editing the database is disabled. + Soubor databáze je určen pouze pro čtení. Úprava databáze je zakázána. + + + + Database encoding + Kódování databáze + + + + Database is encrypted using SQLCipher + Databáze je šifrována přes SQLCipher + + + + + Choose a database file + Vyberte soubor databáze + + + + + + Choose a filename to save under + Vyberte název souboru pro uložení + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Jste si jisti, že chcete vrátit zpět všechny provedené změny v databázi '%1' od posledního uložení? + + + + Choose a file to import + Vyberte soubor pro import + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + + + + + Open Database or Project + + + + + Attach Database... + + + + + Import CSV file(s)... + + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + + + + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + + + + + Text files(*.sql *.txt);;All files(*) + Textové soubory(*.sql *.txt);;Všechny soubory(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + + + + + Do you want to save the changes made to the project file '%1'? + + + + + File %1 already exists. Please choose a different name. + Soubor %1 již existuje. Vyberte jiný název, prosím. + + + + Error importing data: %1 + Chyba při importu dat: %1 + + + + Import completed. + Import dokončen. + + + + Delete View + Smazat Pohled + + + + Modify View + + + + + Delete Trigger + Smazat Spoušť + + + + Modify Trigger + + + + + Delete Index + Smazat Index + + + + Modify Index + Změnit Index + + + + Modify Table + Změnit tabulku + + + + Do you want to save the changes made to SQL tabs in a new project file? + + + + + Do you want to save the changes made to the SQL file %1? + + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + + + + + Could not find resource file: %1 + + + + + Choose a project file to open + Vybrat soubor projektu k otevření + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + + + + + Could not open project file for writing. +Reason: %1 + + + + + Busy (%1) + + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + + + + + Window Layout + + + + + Reset Window Layout + + + + + Alt+0 + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + The database is currenctly busy. + + + + + Click here to interrupt the currently running query. + + + + + Could not open database file. +Reason: %1 + + + + + In-Memory database + + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + + + + + Are you sure you want to delete the view '%1'? + + + + + Are you sure you want to delete the trigger '%1'? + + + + + Are you sure you want to delete the index '%1'? + + + + + Error: could not delete the table. + + + + + Error: could not delete the view. + + + + + Error: could not delete the trigger. + + + + + Error: could not delete the index. + + + + + Message from database engine: +%1 + + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + + + + + -- EXECUTING SELECTION IN '%1' +-- + + + + + -- EXECUTING LINE IN '%1' +-- + + + + + -- EXECUTING ALL IN '%1' +-- + + + + + + At line %1: + + + + + Result: %1 + + + + + Result: %2 + + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Rename Tab + + + + + Duplicate Tab + + + + + Close Tab + + + + + Opening '%1'... + + + + + There was an error opening '%1'... + + + + + Value is not a valid URL or filename: %1 + + + + + %1 rows returned in %2ms + + + + + Choose text files + Vybrat textové soubory + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + + + + + Select SQL file to open + Vyberte soubor SQL k otevření + + + + Select file name + Vyberte název souboru + + + + Select extension file + Vyberte soubor s rozšířením + + + + Extension successfully loaded. + Rozšíření bylo úspěšně načteno. + + + + Error loading extension: %1 + Chyba při načítání přípony: %1 + + + + + Don't show again + Znovu nezobrazovat + + + + New version available. + Dostupná nová verze. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Nová verze DB Browseru pro SQLite je nyní dostupná (%1.%2.%3).<br/><br/>Stáhněte ji prosím na <a href='%4'>%4</a>. + + + + Project saved to file '%1' + + + + + Collation needed! Proceed? + Je potřeba provést collation! Potvrdit? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + + + + + creating collation + + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + + + + + Please specify the view name + Specifikujte název pohledu, prosím + + + + There is already an object with that name. Please choose a different name. + Objekt s tímto názvem již existuje. Vyberte jiný název, prosím. + + + + View successfully created. + Pohled byl úspěšně vytvořen. + + + + Error creating view: %1 + Chyba při vytváření pohledu: %1 + + + + This action will open a new SQL tab for running: + + + + + Press Help for opening the corresponding SQLite reference page. + + + + + DB Browser for SQLite project file (*.sqbpro) + DB Browser pro SQLite project file (*.sqbpro) + + + + Error checking foreign keys after table modification. The changes will be reverted. + + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + + + + + Execution finished with errors. + + + + + Execution finished without errors. + + + + + NullLineEdit + + + Set to NULL + Nastavit na NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + + + + + Columns + Sloupce + + + + X + X + + + + Y1 + + + + + Y2 + + + + + Axis Type + + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + + + + + Line type: + Typ řádku: + + + + + None + Žádná + + + + Line + Řádek + + + + StepLeft + KrokVlevo + + + + StepRight + KrokVpravo + + + + StepCenter + KrokDoprostřed + + + + Impulse + Impuls + + + + Point shape: + + + + + Cross + Kříž + + + + Plus + Plus + + + + Circle + Kruh + + + + Disc + Disk + + + + Square + Čtverec + + + + Diamond + Diamand + + + + Star + Hvězda + + + + Triangle + Trojúhelník + + + + TriangleInverted + ObrácenýTrojúhelník + + + + CrossSquare + + + + + PlusSquare + PlusČtverec + + + + CrossCircle + + + + + PlusCircle + + + + + Peace + + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + + + + + Save current plot... + + + + + + Load all data and redraw plot + + + + + + + Row # + Řádek # + + + + Copy + Kopírovat + + + + Print... + Tisk... + + + + Show legend + Zobrazit legendu + + + + Stacked bars + + + + + Date/Time + Datum/čas + + + + Date + Datum + + + + Time + Čas + + + + + Numeric + + + + + Label + Štítek + + + + Invalid + + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + + + + + Choose an axis color + Vyberte barvu osy + + + + Choose a filename to save under + Vyberte název souboru pro uložení + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Všechny Soubory(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + + + + + Loading all remaining data for this table took %1ms. + + + + + PreferencesDialog + + + Preferences + Možnosti + + + + &General + &Obecné + + + + Remember last location + Zapamatovat poslední umístění + + + + Always use this location + Vždy použít toto umístění + + + + Remember last location for session only + Pamatovat poslední umístění pouze po dobu trvání session + + + + + + ... + ... + + + + Default &location + Výchozí &umístění + + + + Lan&guage + Jazyk + + + + Automatic &updates + Automatické &aktualizace + + + + + + + + + + + + enabled + povoleno + + + + Show remote options + Zobrazit vzdálené možnosti + + + + &Database + &Databáze + + + + Database &encoding + Kódování &databáze + + + + Open databases with foreign keys enabled. + Otevře databázi s povolenými cizími klíči. + + + + &Foreign keys + &Cizí klíče + + + + SQ&L to execute after opening database + SQ&L k vykonání po otevření databáze + + + + Data &Browser + Prohlížeč Dat + + + + Remove line breaks in schema &view + + + + + Prefetch block si&ze + + + + + Default field type + Výchozí typ pole + + + + Font + Font + + + + &Font + &Font + + + + Content + Obsah + + + + Symbol limit in cell + Maximální počet znaků v buňce + + + + NULL + NULL + + + + Regular + Regulární + + + + Binary + Binární + + + + Background + Pozadí + + + + Filters + Filtry + + + + Threshold for completion and calculation on selection + + + + + Show images in cell + + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + + + + + Escape character + + + + + Delay time (&ms) + Zpoždění (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + + + + + &SQL + &SQL + + + + Settings name + Název možností + + + + Context + Kontext + + + + Colour + Barva + + + + Bold + Tučný + + + + Italic + Kurzíva + + + + Underline + Podtržený + + + + Keyword + Klíčové slovo + + + + Function + Funkce + + + + Table + Tabulka + + + + Comment + Komentář + + + + Identifier + Identifikátor + + + + String + String + + + + Current line + Aktuální řádek + + + + SQL &editor font size + velikost fontu SQL &editoru + + + + Tab size + + + + + SQL editor &font + &font SQL editoru + + + + Error indicators + + + + + Hori&zontal tiling + + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + + + + + Code co&mpletion + + + + + Toolbar style + + + + + + + + + Only display the icon + + + + + + + + + Only display the text + + + + + + + + + The text appears beside the icon + + + + + + + + + The text appears under the icon + + + + + + + + + Follow the style + + + + + DB file extensions + + + + + Manage + + + + + Main Window + + + + + Database Structure + Databázová Struktura + + + + Browse Data + Prohlížet data + + + + Execute SQL + Proveďte SQL + + + + Edit Database Cell + + + + + When this value is changed, all the other color preferences are also set to matching colors. + + + + + Follow the desktop style + + + + + Dark style + + + + + Application style + + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + + + + + Database structure font size + + + + + Font si&ze + Velikost písma + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + + + + + Field display + + + + + Displayed &text + + + + + + + + + + Click to set this color + + + + + Text color + Barva textu + + + + Background color + Barva pozadí + + + + Preview only (N/A) + + + + + Foreground + Popředí + + + + SQL &results font size + + + + + &Wrap lines + + + + + Never + Nikdy + + + + At word boundaries + + + + + At character boundaries + + + + + At whitespace boundaries + + + + + &Quotes for identifiers + + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + + + + + "Double quotes" - Standard SQL (recommended) + + + + + `Grave accents` - Traditional MySQL quotes + + + + + [Square brackets] - Traditional MS SQL Server quotes + + + + + Keywords in &UPPER CASE + + + + + When set, the SQL keywords are completed in UPPER CASE letters. + + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + &Extensions + &Rozšíření + + + + Select extensions to load for every database: + Vyberte rozšíření k načtení pro každou databázi: + + + + Add extension + Přidat rozšíření + + + + Remove extension + Odebrat rozšíření + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + + + + + Disable Regular Expression extension + Zakázat rozšíření pro regulární výrazy + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + + + + + Allow loading extensions from SQL code + + + + + Remote + Vzdálený + + + + CA certificates + certifikáty CA + + + + Proxy + + + + + Configure + + + + + + Subject CN + předmět CN + + + + Common Name + + + + + Subject O + předmět O + + + + Organization + Organizace + + + + + Valid from + Platné od + + + + + Valid to + Platné do + + + + + Serial number + Sériové číslo + + + + Your certificates + Vaše certifikáty + + + + File + Soubor + + + + Subject Common Name + + + + + Issuer CN + + + + + Issuer Common Name + + + + + Clone databases into + + + + + + Choose a directory + Vyberte složku + + + + The language will change after you restart the application. + Jazyk bude změněn po restartu aplikace. + + + + Select extension file + Vybrat soubor rozšíření + + + + Extensions(*.so *.dylib *.dll);;All files(*) + + + + + Import certificate file + Importovat soubor certifikátu + + + + No certificates found in this file. + V tomto souboru nebyly nalezeny žádné certifikáty. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Opravdu chcete smazat tento certifikát? Všechny data certifikátu budou smazány z nastavení aplikace! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + + + + + ProxyDialog + + + Proxy Configuration + + + + + Pro&xy Type + + + + + Host Na&me + + + + + Port + + + + + Authentication Re&quired + + + + + &User Name + + + + + Password + + + + + None + Žádná + + + + System settings + + + + + HTTP + + + + + Socks v5 + + + + + QObject + + + Error importing data + Chyba při importu dat + + + + from record number %1 + ze záznamu číslo %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + + + + + Cancel + Zrušit + + + + All files (*) + Všechny soubory (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + + + + + Left + + + + + Right + + + + + Center + + + + + Justify + + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + + + + + DB Browser for SQLite Project Files (*.sqbpro) + + + + + SQL Files (*.sql) + + + + + All Files (*) + + + + + Text Files (*.txt) + + + + + Comma-Separated Values Files (*.csv) + + + + + Tab-Separated Values Files (*.tsv) + + + + + Delimiter-Separated Values Files (*.dsv) + + + + + Concordance DAT files (*.dat) + + + + + JSON Files (*.json *.js) + + + + + XML Files (*.xml) + + + + + Binary Files (*.bin *.dat) + + + + + SVG Files (*.svg) + + + + + Hex Dump Files (*.dat *.bin) + + + + + Extensions (*.so *.dylib *.dll) + + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + Datum + + + + Author + + + + + Size + Velikost + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + + + + + Error creating local databases list. +%1 + + + + + RemoteDock + + + Remote + Vzdálený + + + + Identity + + + + + Push currently opened database to server + + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Local + + + + + Current Database + + + + + Clone + + + + + User + Uživatel + + + + Database + Databáze + + + + Branch + Větev + + + + Commits + + + + + Commits for + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + + + + + Back + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + Obnovit + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + Select an identity to connect + + + + + Public + Veřejný + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + Název + + + + Branch + Větev + + + + Last modified + Poslední změněné + + + + Size + Velikost + + + + Commit + + + + + File + Soubor + + + + RemoteModel + + + Name + Název + + + + Last modified + Poslední změněné + + + + Size + Velikost + + + + Commit + + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + + + + + Error: Invalid client certificate specified. + + + + + Please enter the passphrase for this client certificate in order to authenticate. + + + + + Cancel + Zrušit + + + + Uploading remote database to +%1 + Nahrávám vzdálenou databázi do +%1. {1?} + + + + Downloading remote database from +%1 + Stahuji vzdálenou databázi z +%1. {1?} + + + + + Error: The network is not accessible. + Chyba: síť není dostupná. + + + + Error: Cannot open the file for sending. + Chyba: Nemohu otevřít soubor k odeslání. + + + + RemotePushDialog + + + Push database + + + + + Database na&me to push to + + + + + Commit message + + + + + Database licence + + + + + Public + Veřejný + + + + Branch + Větev + + + + Force push + + + + + Username + + + + + Database will be public. Everyone has read access to it. + + + + + Database will be private. Only you have access to it. + + + + + Use with care. This can cause remote commits to be deleted. + + + + + RunSql + + + Execution aborted by user + + + + + , %1 rows affected + , %1 řádků bylo ovlivněno + + + + query executed successfully. Took %1ms%2 + + + + + executing query + + + + + SelectItemsPopup + + + A&vailable + + + + + Sele&cted + + + + + SqlExecutionArea + + + Form + Formulář + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + The found pattern must be a whole word + + + + + Whole Words + Celá slova + + + + Text pattern to find considering the checks in this frame + + + + + Find in editor + Najít v editoru + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + Regulární výraz + + + + + Close Find Bar + Zavřít lištu pro hledání + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + + + + + Results of the last executed statements + Výsledky naposledy provedených příkazů + + + + This field shows the results and status codes of the last executed statements. + + + + + Couldn't read file: %1. + + + + + + Couldn't save file: %1. + + + + + Your changes will be lost when reloading it! + + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) odstraní mezery z levé strany X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) Funkce s více parametry min() vrací parametr s minimální hodnotou. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) Funkce nullif(X,Y) vrací první parametr, pokud jsou parametry odlišné. NULL vrací, pokud jsou parametry stejné. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () Funkce random() vrací pseudo-náhodný integer v rozmezí -9223372036854775808 a +9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + + + + + (X) rtrim(X) removes spaces from the right side of X. + + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) odstraní mezery z obou stran X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) Agregační funkce max() vrací maximální hodnotu ze všech hodnot ve skupině. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) Agregační funkce min() vrací minimální hodnotu ze všech hodnot ve skupině, která není NULL. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Agregační funkce sum() a total() vrací součet všech hodnot ve skupině, které nejsou NULL. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + + + + + SqliteTableModel + + + reading rows + čtení sloupců + + + + loading... + načítání... + + + + References %1(%2) +Hold %3Shift and click to jump there + + + + + Error changing data: +%1 + Chyba při změně dat: +%1 + + + + retrieving list of columns + + + + + Fetching data... + Načítám data... + + + + + Cancel + Zrušit + + + + TableBrowser + + + Browse Data + Prohlížet data + + + + &Table: + &Tabulka: + + + + Select a table to browse data + Vyberte tabulku pro prohlížení dat + + + + Use this list to select a table to be displayed in the database view + Pro zobrazení v databázovém pohledu použijte pro výběr tabulky tento seznam + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + + + + + Text pattern to find considering the checks in this frame + + + + + Find in table + + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + The found pattern must be a whole word + + + + + Whole Cell + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + Regulární výraz + + + + + Close Find Bar + Zavřít lištu pro hledání + + + + Text to replace with + + + + + Replace with + + + + + Replace next match + + + + + + Replace + + + + + Replace all matches + + + + + Replace all + + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Posune na úplný začátek</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Kliknutím na toto tlačítko se přesunete na začátek pohledu tabulky výše.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 z 0 + + + + Scroll one page downwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + + + + + > + > + + + + Scroll to the end + Posunout na konec + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Kliknutím zde přeskočíte na určený záznam</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Toto tlačítko je určeno k navigaci k záznamu, jehož číslo je nastaveno v poli Jít na.</p></body></html> + + + + Go to: + Jít na: + + + + Enter record number to browse + Vložte číslo záznamu pro jeho procházení + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Napiště číslo záznamu do tohoto pole a klikněte na Jít na: tlačítko k zobrazení záznamu v pohledu databáze + + + + 1 + 1 + + + + Show rowid column + Zobrazit rowid sloupce + + + + Toggle the visibility of the rowid column + Přepnout viditelnost rowid sloupců + + + + Unlock view editing + + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + + + + + Edit display format + Upravit formát zobrazení + + + + Edit the display format of the data in this column + Upravit formát zobrazení dat v tomto sloupci + + + + + New Record + Nový záznam + + + + + Insert a new record in the current table + Vložit nový záznam do současné tabulky + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + + + + + + Delete Record + Smazat záznam + + + + Delete the current record + Smazat aktuální záznam + + + + + This button deletes the record or records currently selected in the table + + + + + + Insert new record using default values in browsed table + + + + + Insert Values... + Vložit hodnoty... + + + + + Open a dialog for inserting values in a new record + + + + + Export to &CSV + Export do CSV + + + + + Export the filtered data to CSV + + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + + + + + Save as &view + Uložit jako pohled + + + + + Save the current filter, sort column and display formats as a view + + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + + + + + Save Table As... + + + + + + Save the table as currently displayed + + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + + + + + Hide column(s) + Skrýt sloupec(ce) + + + + Hide selected column(s) + Skrýt vybraný sloupec(ce) + + + + Show all columns + Zobrazit všechny sloupce + + + + Show all columns that were hidden + + + + + + Set encoding + Nastavit kódování + + + + Change the encoding of the text in the table cells + Změnit kódování textu v buňkách tabulky + + + + Set encoding for all tables + Nastavit kódování pro všechny tabulky + + + + Change the default encoding assumed for all tables in the database + + + + + Clear Filters + + + + + Clear all filters + Vymazat všechny filtry + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + + + + + Clear Sorting + + + + + Reset the order of rows to the default + + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + + + + + Print + Tisk + + + + Print currently browsed table data + Tisk právě prohlížených dat tabulky + + + + Print currently browsed table data. Print selection if more than one cell is selected. + + + + + Ctrl+P + + + + + Refresh + Obnovit + + + + Refresh the data in the selected table + + + + + This button refreshes the data in the currently selected table. + Toto tlačítko obnoví data v aktuálně vybrané tabulce. + + + + F5 + + + + + Find in cells + + + + + Open the find tool bar which allows you to search for values in the table view below. + + + + + + Bold + Tučný + + + + Ctrl+B + + + + + + Italic + Kurzíva + + + + + Underline + Podtržený + + + + Ctrl+U + + + + + + Align Right + + + + + + Align Left + + + + + + Center Horizontally + + + + + + Justify + + + + + + Edit Conditional Formats... + + + + + Edit conditional formats for the current column + + + + + Clear Format + + + + + Clear All Formats + + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + + + + + + Font Color + + + + + + Background Color + + + + + Toggle Format Toolbar + + + + + Show/hide format toolbar + + + + + + This button shows or hides the formatting toolbar of the Data Browser + + + + + Select column + + + + + Ctrl+Space + + + + + Replace text in cells + + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + + + + + + + + , %n column(s) + + + + + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + + + + + Conditional formats for "%1" + + + + + determining row count... + + + + + %1 - %2 of >= %3 + + + + + %1 - %2 of %3 + %1 - %2 z %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + + + + + Delete Records + + + + + Duplicate records + + + + + Duplicate record + + + + + Ctrl+" + + + + + Adjust rows to contents + + + + + Error deleting record: +%1 + Chyba při mazání záznamu: +%1 + + + + Please select a record first + Prosím vyberte záznam jako první + + + + There is no filter set for this table. View will not be created. + + + + + Please choose a new encoding for all tables. + Vyberte nové kódování pro všechny tabulky, prosím. + + + + Please choose a new encoding for this table. + Vyberte nové kódování pro tuto tabulku, prosím. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Pro použití kódování databáze ponechte pole prázdné. + + + + This encoding is either not valid or not supported. + Toto kódování není buď platné, nebo podporováno. + + + + %1 replacement(s) made. + + + + + VacuumDialog + + + Compact Database + Compact Database + + + + Warning: Compacting the database will commit all of your changes. + Varování: Procesem 'compact the database' budou aplikovány všechny vaše provedené změny. + + + + Please select the databases to co&mpact: + Prosím vyberte databázi pro proces 'compact': + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_de.qm b/src/SqliteDBProcess/src/translations/sqlb_de.qm new file mode 100644 index 0000000..a5dd69a Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_de.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_de.ts b/src/SqliteDBProcess/src/translations/sqlb_de.ts new file mode 100644 index 0000000..c359697 --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_de.ts @@ -0,0 +1,7015 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + Über DB-Browser für SQLite + + + + Version + Version + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB-Browser für SQLite ist ein grafisches, freies Open-Source-Tool zum Erstellen, Entwerfen und Bearbeiten von SQLite-Datenbankdateien.</p><p>Es steht unter zwei Lizenzen zur Verfügung: der Mozilla Public License Version 2 und der GNU General Public License Version 3 oder aktueller. Sie können das Programm unter den Bedingungen dieser Lizenzen verändern und weiterverteilen.</p><p>Siehe <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> und <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> für Details.</p><p>Für mehr Informationen über dieses Programm besuchen Sie bitte unsere Website: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">Diese Software verwendet das GPL/LGPL QT Toolkit von </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Siehe </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> für Lizenzbedingungen und -informationen.</span></p><p><span style=" font-size:small;">Sie verwendet ebenso das Silk-Iconset von Mark James, welches unter einer Creative Commons Attribution 2.5 und 3.0 Lizenz verfügbar ist.<br/>Siehe </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> für Details.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Neue Zeile hinzufügen + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Geben Sie Werte für die neue Zeile unter Beachtung der Constraints ein. Fette Felder sind Pflichtfelder. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + In der Wertspalte können Sie den Wert für das durch die Namensspalte identifizierte Feld angeben. Die Typspalte zeigt den Feldtyp an. Standardwerte werden im Stil von NULL-Werten angezeigt. + + + + Name + Name + + + + Type + Typ + + + + Value + Wert + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Einzufügende Werte. Vorausgefüllte Standardwerte werden automatisch eingefügt, insofern sie nicht geändert wurden. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Wenn Sie die Werte im oberen Teil ändern, wird hier das SQL-Query für das Einfügen der neuen Zeile angezeigt. Sie können das Query vor dem Speichern manuell bearbeiten. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Speichern</span> wird das dargestellte SQL-Statement zum Einfügen des neuen Eintrags an die Datenbank übermitteln.</p><p><span style=" font-weight:600;">Voreinstellungen</span> wird die ursprünglichen Werte der <span style=" font-weight:600;">Wert</span>-Spalte wiederherstellen.</p><p><span style=" font-weight:600;">Abbrechen</span> schließt diesen Dialog, ohne die Query auszuführen.</p></body></html> + + + + Auto-increment + + Auto-Inkrement + + + + + Unique constraint + + Unique-Constraint + + + + + Check constraint: %1 + + Prüfungsconstraint: %1 + + + + + Foreign key: %1 + + Fremdschlüssel: %1 + + + + + Default value: %1 + + Standardwert: %1 + + + + + Error adding record. Message from database engine: + +%1 + Fehler beim Hinzufügen der Zeile. Mitteilung der Datenbank-Engine: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Sind Sie sicher, dass Sie alle eingegebenen Werte auf ihre Standardwerte zurücksetzen möchten? + + + + Application + + + Possible command line arguments: + Mögliche Kommandozeilen-Argumente: + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + Die Optionen -o/--option und -O/--save-option benötigen ein Argument der Form Gruppe/Einstellung=Wert + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + Die -s/--sql Option benötigt ein Argument + + + + The file %1 does not exist + Die Datei %1 existiert nicht + + + + The -t/--table option requires an argument + Die -t/--table Option benötigt ein Argument + + + + SQLite Version + SQLite-Version + + + + SQLCipher Version %1 (based on SQLite %2) + SQLCipher Version %1 (basierend auf SQLite %2) + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + Erstellt für %1, laufend unter %2 + + + + Qt Version %1 + + + + + Invalid option/non-existant file: %1 + Ungültige Option/nicht existente Datei: %1 + + + + CipherDialog + + + SQLCipher encryption + SQLCipher-Verschlüsselung + + + + &Password + &Passwort + + + + &Reenter password + Wiede&rhole Passwort + + + + Encr&yption settings + &Verschlüsselungs-Einstellungen + + + + SQLCipher &3 defaults + SQLCipher &3 Standardwerte + + + + SQLCipher &4 defaults + SQLCipher &4 Standardwerte + + + + Custo&m + &Benutzerdefiniert + + + + Page si&ze + Seiten&größe + + + + &KDF iterations + &KDF-Iterationen + + + + HMAC algorithm + HMAC-Algorithmus + + + + KDF algorithm + KDF-Algorithmus + + + + Plaintext Header Size + Plaintext-Headergröße + + + + Passphrase + Passphrase + + + + Raw key + Originalschlüssel + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Setzen Sie bitte einen Schlüssel zum Verschlüsseln der Datenbank. +Beachten Sie, dass bei Änderung der optionalen Einstellungen diese bei jedem Öffnen der Datenbank-Datei eingegeben werden müssen. +Lassen Sie die Passwortfelder leer, um die Verschlüsselung zu deaktivieren. +Der Verschlüsselungsprozess benötigt unter Umständen ein bisschen Zeit und Sie sollten ein Backup-Kopie Ihrer Datenbank haben! Ungespeicherte Änderungen werden vor der Änderung der Verschlüsselung übernommen. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Geben Sie bitte den zur Verschlüsselung der Datenbank genutzten Schlüssel ein. +Falls weitere Einstellungen für diese Datenbank-Datei vorgenommen worden sind, müssen Sie diese Informationen zusätzlich angeben. + + + + ColumnDisplayFormatDialog + + + Choose display format + Anzeigeformat auswählen + + + + Display format + Anzeigeformat + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Wählen Sie ein Anzeigeformat für die Spalte '%1', welches bei der Anzeige eines jeden Wertes angewendet wird. + + + + Default + Voreinstellung + + + + Decimal number + Dezimalzahl + + + + Exponent notation + Exponentnotation + + + + Hex blob + Hex-Blob + + + + Hex number + Hexwert + + + + Apple NSDate to date + Apple NSDate zu Datum + + + + Java epoch (milliseconds) to date + Java-Epoche (Millisekunden) zu Datum + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + Julianischer Tag zu Datum + + + + Unix epoch to local time + Unix-Epoche zu lokaler Zeit + + + + Date as dd/mm/yyyy + Datum als dd/mm/yyyy + + + + Lower case + Kleinschreibung + + + + Custom display format must contain a function call applied to %1 + Benutzerdefinierte Darstellungsformate benötigen einen Funktionsaufruf, der auf %1 angewendet wird + + + + Error in custom display format. Message from database engine: + +%1 + Fehler im benutzerdefinierten Anzeigeformat. Meldung von Datenbank: + +%1 + + + + Custom display format must return only one column but it returned %1. + Das benutzerdefinierte Anzeigeformat darf nur eine Spalte zurückgeben, es wurde aber %1 zurückgegeben. + + + + Octal number + Oktalwert + + + + Round number + Gerundeter Wert + + + + Unix epoch to date + Unix-Epoche zu Datum + + + + Upper case + Großschreibung + + + + Windows DATE to date + Windows DATUM zu Datum + + + + Custom + Benutzerdefiniert + + + + CondFormatManager + + + Conditional Format Manager + Verwaltung für bedingte Formatierung + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + Dieser Dialog erlaubt das Erstellen und Bearbeiten bedingter Formatierungen. Jeder Zellenstil wird anhand der ersten erfüllten Bedingung für diese Zelldaten ausgewählt. Bedingte Formatierungen können nach oben und unten bewegt werden, wobei jene weiter oben Vorrang vor jenen weiter unten haben. Der Syntax für Bedingungen ist der gleiche wie bei Filtern und eine leere Bedingung trifft auf alle Werte zu. + + + + Add new conditional format + Neue bedingte Formatierung hinzufügen + + + + &Add + &Hinzufügen + + + + Remove selected conditional format + Ausgewählte bedingte Formatierung entfernen + + + + &Remove + &Entfernen + + + + Move selected conditional format up + Ausgewählte bedingte Formatierung nach oben bewegen + + + + Move &up + Nach &oben + + + + Move selected conditional format down + Ausgewählte bedingte Formatierung nach unten bewegen + + + + Move &down + Nach &unten + + + + Foreground + Vordergrund + + + + Text color + Textfarbe + + + + Background + Hintergrund + + + + Background color + Hintergrundfarbe + + + + Font + Schrift + + + + Size + Größe + + + + Bold + Fett + + + + Italic + Kursiv + + + + Underline + Unterstreichung + + + + Alignment + Ausrichtung + + + + Condition + Bedingung + + + + + Click to select color + Zur Auswahl der Farbe klicken + + + + Are you sure you want to clear all the conditional formats of this field? + Sollen wirklich alle bedingten Formatierungen dieses Felds gelöscht werden? + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + Geben Sie bitte einen Datenbanknamen an, mit dem Sie auf die anhängte Datenbank zugreifen möchten + + + + Invalid file format + Ungültiges Dateiformat + + + + Do you want to save the changes made to the database file %1? + Sollen die getätigten Änderungen an der Datenbank-Datei %1 gespeichert werden? + + + + Exporting database to SQL file... + Datenbank in SQL-Datei exportieren... + + + + + Cancel + Abbrechen + + + + Executing SQL... + SQL ausführen... + + + + Action cancelled. + Vorgang abgebrochen. + + + + This database has already been attached. Its schema name is '%1'. + Diese Datenbank wurde bereits angehängt. Ihr Schemaname ist '%1'. + + + + Do you really want to close this temporary database? All data will be lost. + Möchten Sie diese temporäre Datenbank wirklich schließen? Alle Daten gehen damit verloren. + + + + Database didn't close correctly, probably still busy + Datenbank wurde nicht richtig geschlossen, vermutlich noch in Bearbeitung + + + + The database is currently busy: + Die Datenbank ist zur Zeit beschäfigt: + + + + Do you want to abort that other operation? + Möchten Sie die andere Operation abbrechen? + + + + + No database file opened + Keine Datenbankdatei geöffnet + + + + + Error in statement #%1: %2. +Aborting execution%3. + Fehler im Statement #%1: %2. +Ausführung wird abgebrochen %3. + + + + + and rolling back + und der Zustand zurückgesetzt + + + + didn't receive any output from %1 + keine Ausgabe von %1 erhalten + + + + could not execute command: %1 + Befehl konnte nicht ausgeführt werden: %1 + + + + Cannot delete this object + Dieses Objekt kann nicht gelöscht werden + + + + Cannot set data on this object + Daten können für dieses Objekt nicht gesetzt werden + + + + + A table with the name '%1' already exists in schema '%2'. + Es existiert eine Tabelle mit dem Namen '%1' im Schema '%2'. + + + + No table with name '%1' exists in schema '%2'. + Im Schema '%2' existiert keine Tabelle mit dem Namen '%1'. + + + + + Cannot find column %1. + Spalte %1 kann nicht gefunden werden. + + + + Creating savepoint failed. DB says: %1 + Erstellung des Sicherungspunktes fehlgeschlagen. DB meldet: %1 + + + + Renaming the column failed. DB says: +%1 + Umbenennung der Spalte fehlgeschlagen. DB meldet: +%1 + + + + + Releasing savepoint failed. DB says: %1 + Entsperren des Sicherungspunktes fehlgeschlagen. DB meldet: %1 + + + + Creating new table failed. DB says: %1 + Erstellen der neuen Tabelle ist fehlgeschlagen. DB meldet: %1 + + + + Copying data to new table failed. DB says: +%1 + Kopieren der Daten zur neuen Tabelle ist fehlgeschlagen. DB meldet: +%1 + + + + Deleting old table failed. DB says: %1 + Löschen der alten Tabelle ist fehlgeschlagen. DB meldet: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + Fehler beim Umbenennen der Tabelle '%1' zu '%2'. +Meldung von Datenbank: +%3 + + + + could not get list of db objects: %1 + Liste der DB-Objekte konnte nicht abgefragt werden: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + Wiederherstellung einiger mit dieser Tabelle verbundener Objekte fehlgeschagen. Dies passiert häufig durch geänderte Spaltennamen. SQL-Statement zum manuellen Reparieren und Ausführen: + + + + + + could not get list of databases: %1 + konnte keine Datenbankliste abrufen: %1 + + + + Error loading extension: %1 + Fehler beim Laden der Erweiterung: %1 + + + + could not get column information + Spalteninformationen konnten nicht errmittelt werden + + + + Error setting pragma %1 to %2: %3 + Fehler beim Setzen des Pragmas %1 auf %2: %3 + + + + File not found. + Datei nicht gefunden. + + + + DbStructureModel + + + Name + Name + + + + Object + Objekt + + + + Type + Typ + + + + Schema + Schema + + + + Database + Datenbank + + + + Browsables + Durchsuchbar + + + + All + Alle + + + + Temporary + Temporär + + + + Tables (%1) + Tabellen (%1) + + + + Indices (%1) + Indizes (%1) + + + + Views (%1) + Ansichten (%1) + + + + Triggers (%1) + Trigger (%1) + + + + EditDialog + + + Edit database cell + Datenbank-Zelle bearbeiten + + + + Mode: + Modus: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Dies ist die Liste der unterstützten Modi des Zelleneditors. Wählen Sie einen Modus für die Anzeige oder Bearbeitung der Daten der aktuellen Zelle aus. + + + + RTL Text + RTL-Text + + + + + Image + Bild + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + Den Editormodus automatisch dem geladenen Datentyp anpassen + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Dieser Button aktiviert oder deaktiviert den automatischen Wechsel des Editormodus. Wenn eine neue Zelle ausgewählt wird oder neue Daten importiert werden und der automatische Wechsel aktiviert ist, passt sich der Modus dem erkannten Datentyp an. Sie können den Editormodus danach manuell ändern. Falls Sie dies bei der Bewegung durch die Zellen im manuell eingestellten Modus behalten möchten, deaktivieren Sie den Button. + + + + Auto-switch + Auto-Wechsel + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + Der Text-Editor-Modus erlaubt das Bearbeiten von Reintext sowie JSON- oder XML-Daten mit Syntaxhervorhebung, automatischer Formatierung und Validierung vor dem Speichern. + +Fehler werden mittels eine roten Wellenlinie angezeigt. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Dieser Qt-Editor wird für rechts-nach-links-Eingaben verwendet, welche vom Standard-Texteditor nicht unterstützt werden. Das Vorhandensein von rechts-nach-links-Zeichen wird erkannt und dieser Editormodus wird automatisch ausgewählt. + + + + Open preview dialog for printing the data currently stored in the cell + Vorschau-Dialog öffnen, um die aktuell in der Zelle gespeicherten Daten auszugeben + + + + Auto-format: pretty print on loading, compact on saving. + Auto-Format: Druckoptimierung (Pretty Print) beim Laden, kompakt beim Speichern. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Falls aktiviert, formatiert die Auto-Format-Funktion die Daten beim Laden, bricht den Text in Zeilen und rückt ihn ein für maximale Lesbarkeit. Beim Speichern der Daten verdichtet die Auto-Format-Funktion die Daten durch das Entfernen der Zeilenumbrüche und unnötigen Leerzeichen. + + + + Word Wrap + Wortumbrüche + + + + Wrap lines on word boundaries + Zeilen an Wortgrenzen umbrechen + + + + + Open in default application or browser + Mit der Standardanwendung oder dem Browser öffnen + + + + Open in application + Mit Anwendung öffnen + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + Der Wert wird als Datei oder URL interpretiert und mit der Standardanwendung oder dem Web-Browser geöffnet. + + + + Save file reference... + Dateireferenz speichern... + + + + Save reference to file + Referenz in Datei speichern + + + + + Open in external application + Mit externer Anwendung öffnen + + + + Autoformat + Auto-Format + + + + &Export... + &Exportieren... + + + + + &Import... + &Importieren... + + + + + Import from file + Aus Datei importieren + + + + + Opens a file dialog used to import any kind of data to this database cell. + Öffnet einen Dateidialog, um jegliche Art von Daten in diese Datenbankzelle zu importieren. + + + + Export to file + In Datei exportieren + + + + Opens a file dialog used to export the contents of this database cell to a file. + Öffnet einen Dateidialog, um den Inhalt dieser Datenbankzelle in eine Datei zu exportieren. + + + + + Print... + Drucken... + + + + Open preview dialog for printing displayed image + Vorschaudialog zum Drucken des angezeigten Bildes öffnen + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Vorschaudialog zum Drucken des angezeigten Textes öffnen + + + + Copy Hex and ASCII + Hex und ASCII kopieren + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Ausgewählte hexadezimale und ASCII-Spalten in die Zwischenablage kopieren + + + + Ctrl+Shift+C + + + + + Set as &NULL + Auf &NULL setzen + + + + Apply data to cell + Daten auf Zelle anwenden + + + + This button saves the changes performed in the cell editor to the database cell. + Dieser Button speichert die im Zelleneditor für die Datenbankzelle durchgeführten Änderungen. + + + + Apply + Übernehmen + + + + Text + Text + + + + Binary + Binär + + + + Erases the contents of the cell + Löscht den Inhalt der Zelle + + + + This area displays information about the data present in this database cell + Dieser Bereich stellt Informationen über die Daten in dieser Datenbank-Zelle dar + + + + Type of data currently in cell + Art der Daten in dieser Zelle + + + + Size of data currently in table + Größe der Daten in dieser Tabelle + + + + Choose a filename to export data + Dateinamen für den Datenexport wählen + + + + Type of data currently in cell: %1 Image + Art der Daten in der aktuellen Zelle: %1 Bild + + + + %1x%2 pixel(s) + %1x%2 Pixel + + + + Type of data currently in cell: NULL + Art der Daten in dieser Zelle: NULL + + + + + Type of data currently in cell: Text / Numeric + Art der Daten in dieser Zelle: Text / Numerisch + + + + + Image data can't be viewed in this mode. + In diesem Modus können keine Bilddaten angezeigt werden. + + + + + Try switching to Image or Binary mode. + Versuchen Sie, in den Bild- oder Binär-Modus zu wechseln. + + + + + Binary data can't be viewed in this mode. + Binärdaten können in diesem Modus nicht angezeigt werden. + + + + + Try switching to Binary mode. + Versuchen Sie, in den Binär-Modus zu wechseln. + + + + Couldn't save file: %1. + Datei konnte nicht gespeichert werden: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + Die Daten wurden in einer temporären Datei gespeichert und jene wurde mit der Standardanwendung geöffnet. Die Datei kann nun bearbeitet werden. Am Ende der Bearbeitungen können die gespeicherten neuen Daten auf den Zelleneditor angewandt oder die Änderungen verworfen werden. + + + + + Image files (%1) + Bilddateien (%1) + + + + Binary files (*.bin) + Binärdateien (*.bin) + + + + Choose a file to import + Datei für Import auswählen + + + + %1 Image + %1 Bild + + + + Invalid data for this mode + Ungültige Daten für diesen Modus + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + Die Zelle enthält ungültige %1-Daten. Grund: %2. Möchten Sie diese wirklich auf die Zelle anwenden? + + + + + + %n character(s) + + %n Zeichen + %n Zeichen + + + + + Type of data currently in cell: Valid JSON + Aktueller Datentyp in dieser Zelle: Gültiges JSON + + + + Type of data currently in cell: Binary + Art der Daten in dieser Zelle: Binär + + + + + %n byte(s) + + %n Byte + %n Bytes + + + + + EditIndexDialog + + + &Name + &Name + + + + Order + Sortierung + + + + &Table + &Tabelle + + + + Edit Index Schema + Index-Schema bearbeiten + + + + &Unique + Einde&utig + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Zum Einschränken des Index auf einen Teil der Tabelle kann hier eine WHERE-Klausel angegeben werden, die den Teil der Tabelle auswählt, der indexiert werden soll + + + + Partial inde&x clause + Teilinde&x-Klausel + + + + Colu&mns + &Spalten + + + + Table column + Tabellenspalte + + + + Type + Typ + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Fügt eine neue Ausdrucksspalte zum Index hinzu. Ausdrucksspalten enthalten SQL-Ausdrücke statt Spaltennamen. + + + + Index column + Indexspalte + + + + Deleting the old index failed: +%1 + Löschen des alten Index fehlgeschlagen: %1 + + + + Creating the index failed: +%1 + Erstellen des Index fehlgeschlagen: +%1 + + + + EditTableDialog + + + Edit table definition + Tabellen-Definition bearbeiten + + + + Table + Tabelle + + + + Advanced + Erweitert + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Als 'WITHOUT rowid'-Tabelle markieren. Das Setzen dieses Flags erfordert ein Feld vom Typ INTEGER mit gesetzten Primärkey-Flag und nicht gesetztem Autoinkrement-Flag. + + + + Without Rowid + Ohne Rowid + + + + Fields + Felder + + + + Database sche&ma + Datenbank-Sche&ma + + + + Add + Hinzufügen + + + + Remove + Entfernen + + + + Move to top + Zum Beginn + + + + Move up + Nach oben + + + + Move down + Nach unten + + + + Move to bottom + Zum Ende + + + + + Name + Name + + + + + Type + Typ + + + + NN + NN + + + + Not null + Nicht Null + + + + PK + PK + + + + Primary key + Primärschlüssel + + + + AI + AI + + + + Autoincrement + Autoinkrement + + + + U + + + + + + + Unique + Eindeutig + + + + Default + Voreinstellung + + + + Default value + Voreingestellter Wert + + + + + + Check + Prüfen + + + + Check constraint + Beschränkung prüfen + + + + Collation + Kollation + + + + + + Foreign Key + Fremdschlüssel + + + + Constraints + Constraints + + + + Add constraint + Constraint hinzufügen + + + + Remove constraint + Constraint entfernen + + + + Columns + Spalten + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style="font-weight:600; color:#ff0000;">Warnung: </span>Diese Tabellendefinitionenthält Elemente, die unser Parser nicht vollständig versteht. Das Ändern und Speichern der Tabelle kann zu Problemen führen.</p></body></html> + + + + + Primary Key + Primärschlüssel + + + + Add a primary key constraint + Ein Constraint für den Primärschlüssel hinzufügen + + + + Add a foreign key constraint + Ein Constraint für den Fremdschlüssel hinzufügen + + + + Add a unique constraint + Ein Unique-Constraint hinzufügen + + + + Add a check constraint + Ein Prüfungs-Constraint hinzufügen + + + + Error creating table. Message from database engine: +%1 + Fehler beim Erstellen der Tabelle. Meldung der Datenbank: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Es existiert bereits ein Feld mit diesem Namen. Bitte benennen Sie es zunächst um oder wählen Sie einen anderen Namen für dieses Feld. + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Es kann nur einen Primärschlüssel für jede Tabelle geben. Bitte stattdessen den existierenden Primärschlüssel bearbeiten. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Diese Spalte wird in einem Fremdschlüssel in Tabelle %1 referenziert und kann aus diesem Grund nicht geändert werden. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Mindestens eine Reihe enthält ein Feld mit dem Wert NULL. Dies verhindert das Setzen dieser Markierung. Bitte zunächst die Tabellendaten ändern. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Mindestens eine Reihe enthält ein Feld mit einem nicht ganzzahligen Wert. Dies verhindert das Setzen der AI-Markierung. Bitte zunächst die Tabellendaten ändern. + + + + Column '%1' has duplicate data. + + Spalte '%1' hat doppelte Daten. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Dies macht das Aktivieren des 'Unique'-Flags unmöglich. Bitte die doppelten Daten entfernen, damit das 'Unique'-Flag dann aktiviert werden kann. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Soll das Feld '%1' wirklich gelöscht werden? +Alle aktuell in diesem Feld gespeicherten Daten gehen verloren. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Bitte fügen Sie vor dem Setzen des "Without rowid"-Flags ein Feld hinzu, welches folgenden Kriterien entspricht: + - Primärschlüssel-Flag gesetzt + - Autoinkrement deaktiviert + + + + ExportDataDialog + + + Export data as CSV + Daten als CSV exportieren + + + + Tab&le(s) + Tabe&lle(n) + + + + Colu&mn names in first line + &Spaltennamen in der ersten Zeile + + + + Fie&ld separator + Fe&ld-Separator + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + Anderer + + + + &Quote character + &String-Zeichen + + + + " + " + + + + ' + ' + + + + New line characters + Zeilenumbruchs-Zeichen + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Pretty Print + + + + + Could not open output file: %1 + Ausgabedatei konnte nicht geöffnet werden: %1 + + + + + Choose a filename to export data + Dateinamen für den Datenexport wählen + + + + Export data as JSON + Daten als JSON exportieren + + + + exporting CSV + exportiere CSV + + + + exporting JSON + exportiere JSON + + + + Please select at least 1 table. + Bitte mindestens eine Tabelle auswählen. + + + + Choose a directory + Verzeichnis wählen + + + + Export completed. + Export abgeschlossen. + + + + ExportSqlDialog + + + Export SQL... + SQL exportieren... + + + + Tab&le(s) + Tabe&lle(n) + + + + Select All + Alle auswählen + + + + Deselect All + Alle abwählen + + + + &Options + &Optionen + + + + Keep column names in INSERT INTO + Spaltennamen in INSERT INTO belassen + + + + Multiple rows (VALUES) per INSERT statement + Mehrere Reihen (VALUES) je INSERT-Statement + + + + Export everything + Alles exportieren + + + + Export schema only + Nur Schema exportieren + + + + Export data only + Nur Daten exportieren + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Altes Schema behalten (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Altes Schema überschreiben (DROP TABLE, dann CREATE TABLE) + + + + Please select at least one table. + Bitte wählen Sie mindestens eine Tabelle aus. + + + + Choose a filename to export + Dateinamen zum Export auswählen + + + + Export completed. + Export abgeschlossen. + + + + Export cancelled or failed. + Export abgebrochen oder fehlgeschlagen. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Suchen... + + + + Find and Replace... + Suchen und ersetzen... + + + + Print... + Drucken... + + + + ExtendedTableWidget + + + Use as Exact Filter + Als exakten Filter verwenden + + + + Containing + Enthält + + + + Not containing + Enthält nicht + + + + Not equal to + Ungleich zu + + + + Greater than + Größer als + + + + Less than + Kleiner als + + + + Greater or equal + Größer oder gleich + + + + Less or equal + Kleiner oder gleich + + + + Between this and... + Zwischen diesem und... + + + + Regular expression + Regulärer Ausdruck + + + + Edit Conditional Formats... + Bedingte Formatierungen bearbeiten... + + + + Set to NULL + Auf NULL setzen + + + + Copy + Kopieren + + + + Copy with Headers + Mit Headern kopieren + + + + Copy as SQL + Als SQL kopieren + + + + Paste + Einfügen + + + + Print... + Drucken... + + + + Use in Filter Expression + In Filterausdruck verwenden + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + Der Inhalt der Zwischenablage ist größer als der ausgewählte Bereich. Soll er dennoch eingefügt werden? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>Es wurden nicht alle Daten geladen. <b>Sollen vor dem Auswählen aller Zeilen alle Daten geladen werden?</b><p><p>Das Antworten von <b>Nein</b> wird keine weiteren Daten laden und die Auswahl nicht durchführen.</br>Das Antworten von <b>Ja</b> benötigt möglicherweise einige Zeit, während die Daten geladen werden, aber die Auswahl wird vollständig sein.</p>Warnung: Das Laden aller Daten benötigt bei großen Tabellen möglicherweise eine große Menge an Speicher. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + Auswahl kann nicht auf NULL gesetzt. Die Spalte %1 hat ein NOT NULL Constraint. + + + + FileExtensionManager + + + File Extension Manager + Dateierweiterungs-Manager + + + + &Up + H&och + + + + &Down + &Runter + + + + &Add + &Hinzufügen + + + + &Remove + &Entfernen + + + + + Description + Beschreibung + + + + Extensions + Erweiterungen + + + + *.extension + *.erweiterung + + + + FilterLineEdit + + + Filter + Filtern + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Diese Eingabefelder erlauben Ihnen das Anwenden von schnellen Filtern in der aktuell ausgewählten Tabelle. +Standardmäßig werden Zeilen, die den Eingabetext beinhalten, herausgefiltert. +Zudem werden die folgenden Operatoren unterstützt: +% Wildcard +> Größer als +< Kleiner als +>= Größer oder gleich +<= Kleiner oder gleich += Gleich: exakte Übereinstimmung +<> Ungleich:exakte inverse Übereinstimmung +x~y Bereich: Werte zwischen x und y +/regexp/ Werte, die dem regulären Ausdruck genügen + + + + Clear All Conditional Formats + Alle bedingten Formatierungen löschen + + + + Use for Conditional Format + Als bedingte Formatierung verwenden + + + + Edit Conditional Formats... + Bedingte Formatierungen bearbeiten... + + + + Set Filter Expression + Filterausdruck setzen + + + + What's This? + Was ist das? + + + + Is NULL + Ist NULL + + + + Is not NULL + Ist nicht NULL + + + + Is empty + Ist leer + + + + Is not empty + Ist nicht leer + + + + Not containing... + Enthält nicht... + + + + Equal to... + Gleich zu... + + + + Not equal to... + Ungleich zu... + + + + Greater than... + Größer als... + + + + Less than... + Kleiner als... + + + + Greater or equal... + Größer oder gleich... + + + + Less or equal... + Kleiner oder gleich... + + + + In range... + Im Bereich... + + + + Regular expression... + Regulärer Ausdruck... + + + + FindReplaceDialog + + + Find and Replace + Suchen und Ersetzen + + + + Fi&nd text: + Text fi&nden: + + + + Re&place with: + Er&setzen mit: + + + + Match &exact case + &Exakte Schreibung + + + + Match &only whole words + Nur &ganze Wörter + + + + When enabled, the search continues from the other end when it reaches one end of the page + Falls aktiviert, fährt die Suche am anderen Ende fort, wenn sie das Ende der Seite erreicht hat + + + + &Wrap around + &Umbrechen + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Falls gesetzt, erfolgt die Suche rückwärts von der Cursorposition, andernfalls erfolgt sie vorwärts + + + + Search &backwards + Rück&wärts suchen + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>Wenn ausgewählt, wird das gesuchte Muster nur in der aktuellen Auswahl gesucht.</p></body></html> + + + + &Selection only + Nur Au&swahl + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Falls aktiviert, wird das Suchmuster als regulärer Ausdruck (UNIX-Stil) interpretiert. Siehe <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks (englisch)</a>.</p></body></html> + + + + Use regular e&xpressions + Reguläre A&usdrücke verwenden + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Das nächste Auftreten ausgehend von der Cursorpositoin und in der durch "Rückwärts suchen" gesetzten Richtung finden + + + + &Find Next + Nächste &finden + + + + F3 + + + + + &Replace + &Ersetzen + + + + Highlight all the occurrences of the text in the page + Alle Auftreten des Textes auf der Seite hervorheben + + + + F&ind All + Alle f&inden + + + + Replace all the occurrences of the text in the page + Alle Auftreten des Textes auf der Seite ersetzen + + + + Replace &All + &Alle ersetzen + + + + The searched text was not found + Der gesuchte Text wurde nicht gefunden + + + + The searched text was not found. + Der gesuchte Text wurde nicht gefunden. + + + + The searched text was found one time. + Der gesuchte Text wurde einmal gefunden. + + + + The searched text was found %1 times. + Der gesuchte Text wurde %1-mal gefunden. + + + + The searched text was replaced one time. + Der gesuchte Text wurde einmal ersetzt. + + + + The searched text was replaced %1 times. + Der gesuchte Text wurde %1-mal ersetzt. + + + + ForeignKeyEditor + + + &Reset + Zu&rücksetzen + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Fremdschlüssel-Klauseln (ON UPDATE, ON DELETE etc.) + + + + ImportCsvDialog + + + Import CSV file + CSV-Datei importieren + + + + Table na&me + Tabellenna&me + + + + &Column names in first line + &Spaltennamen in erster Zeile + + + + Field &separator + Feld-&Separator + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + | + + + + Other + Anderer + + + + &Quote character + &String-Zeichen + + + + + Other (printable) + Anderer (darstellbar) + + + + + Other (code) + Anderer (Code) + + + + " + " + + + + ' + ' + + + + &Encoding + &Codierung + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Felder trimmen? + + + + Separate tables + Tabellen trennen + + + + Advanced + Erweitert + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + Beim Import eines leeren Wertes aus einer CSV-Datei in eine existierende Tabelle mit einem Standardwert für diese Spalte wird dieser Standardwert eingefügt. Aktivieren Sie diese Option, um stattdessen einen leeren Wert einzufügen. + + + + Ignore default &values + Standard&werte ignorieren + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Aktivieren Sie diese Option, um den Import zu stoppen, falls ein leerer Wert in eine NOT-NULL-Spalte ohne Standardwert importiert werden soll. + + + + Fail on missing values + Fehler bei fehlenden Werten + + + + Disable data type detection + Datentyp-Erkennung deaktivieren + + + + Disable the automatic data type detection when creating a new table. + Die automatische Datentyperkennung bei der Erstellung einer neuen Tabelle deaktivieren. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Beim Import von Daten in eine existierende Tabelle mit einem Primärschlüssel, Unique-Constraints oder einem eindeutigen Index besteht die Möglichkeit von Konflikten. Diese Option erlaubt die Auswahl einer Strategie für diesen Fall: Standardmäßig wird der Import abgebrochen und zurückgerollt, aber es besteht auch die Option des Ignorierens und somit Nicht-Importierens in Konflikt stehender Zeilen oder des Ersetzens existierender Zeilen der Tabelle. + + + + Abort import + Import abbrechen + + + + Ignore row + Zeile ignorieren + + + + Replace existing row + Existierende Zeile ersetzen + + + + Conflict strategy + Konflikt-Strategie + + + + + Deselect All + Alle abwählen + + + + Match Similar + Ähnliche suchen + + + + Select All + Alle auswählen + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Es gibt bereits eine Tabelle namens '%1' und ein Import in eine existierende Tabelle ist nur bei übereinstimmender Spaltenanzahl möglich. + + + + There is already a table named '%1'. Do you want to import the data into it? + Es gibt bereits eine Tabelle namens '%1'. Möchten Sie die Daten in diese importieren? + + + + Creating restore point failed: %1 + Erstellung des Wiederherstellungspunktes fehlgeschlagen: %1 + + + + Creating the table failed: %1 + Erstellung der Tabelle fehlgeschlagen: %1 + + + + importing CSV + importierte CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + Import der Datei '%1' benötigte %2ms. Davon wurden %3ms in der Zeilenfunktion verbracht. + + + + Inserting row failed: %1 + Einfügen der Zeile fehlgeschlagen: %1 + + + + MainWindow + + + toolBar1 + Toolbar1 + + + + Opens the SQLCipher FAQ in a browser window + Öffnt die SQLCiper FAQ in einem Browserfenster + + + + Export one or more table(s) to a JSON file + Exportiert eine oder mehrere Tabelle(n) in eine JSON-Datei + + + + DB Browser for SQLite + DB Browser für SQLite + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Dies ist die Struktur der geöffneten Datenbank. +Sie können SQL-Statements aus einer Objektzeile fassen und in anderen Anwendungen oder einer anderen 'DB-Browser für SQLite'-Instanz ablegen. + + + + + Un/comment block of SQL code + Kommentieren/Unkommentieren eines Block von SQL-Code + + + + Un/comment block + Block kommentieren/unkommentieren + + + + Comment or uncomment current line or selected block of code + Aktuelle Zeilen oder ausgewählten Codeblock kommentieren oder unkommentieren + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Aktuelle Zeilen oder aktuelle Zeile kommentieren oder unkommentieren, wenn es keine Auswahl gibt. Der gesamte Block wird entsprechend der ersten Zeile invertiert. + + + + Ctrl+/ + + + + + Stop SQL execution + SQL-Ausführung abbrechen + + + + Stop execution + Ausführung abbrechen + + + + Stop the currently running SQL script + Das aktuelle laufende SQL-Skript stoppen + + + + Error Log + Fehlerlog + + + + Ctrl+F4 + + + + + Compact &Database... + &Datenbank komprimieren... + + + + Execute all/selected SQL + Komplettes/ausgewähltes SQL ausführen + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Dieser Button führt das aktuell ausgewählte SQL-Statement aus. Falls kein Text ausgewählt ist, werden alle SQL-Statements ausgeführt. + + + + &Load Extension... + Erweiterung &laden... + + + + Execute line + Zeile ausführen + + + + &Wiki + &Wiki + + + + F1 + + + + + Bug &Report... + Fehle&rmeldung... + + + + Feature Re&quest... + Funktions&anfrage... + + + + Web&site + Web&seite + + + + &Donate on Patreon... + Über &Patreon spenden... + + + + Open &Project... + &Projekt öffnen... + + + + &Attach Database... + Datenbank &anhängen... + + + + + Add another database file to the current database connection + Eine andere Datenbankdatei zur aktuellen Datenbankverbindung hinzufügen + + + + This button lets you add another database file to the current database connection + Dieser Button erlaubt Ihnen das Hinzufügen einer anderen Datenbankdatei zur aktuellen Datenbankverbindung + + + + &Set Encryption... + Verschlüsselung &setzen... + + + + SQLCipher &FAQ + SQLCiper &FAQ + + + + Table(&s) to JSON... + Tabelle(&n) zu JSON... + + + + Open Data&base Read Only... + Daten&bank im Lesemodus öffnen... + + + + Ctrl+Shift+O + + + + + Save results + Ergebnisse speichern + + + + Save the results view + Ergebnisansicht speichern + + + + This button lets you save the results of the last executed query + Dieser Button erlaubt Ihnen das Speichern der Ergebnisse der zuletzt ausgeführten Query + + + + + Find text in SQL editor + Text im SQL-Editor finden + + + + Find + Suchen + + + + This button opens the search bar of the editor + Dieser Button öffnet die Suchleiste des Editors + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Text im SQL-Editor suchen oder ersetzen + + + + Find or replace + Suchen oder ersetzen + + + + This button opens the find/replace dialog for the current editor tab + Dieser Button öffnet den Suchen-/Ersetzen-Dialog für den aktuellen Editortab + + + + Ctrl+H + + + + + Export to &CSV + Nach &CSV exportieren + + + + Save as &view + Als &View speichern + + + + Save as view + Als View speichern + + + + Browse Table + Tabelle durchsuchen + + + + Shows or hides the Project toolbar. + Zeigt oder versteckt die Projekt-Werkzeugleiste. + + + + Extra DB Toolbar + Extra-DB-Werkzeugleiste + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + Dieser Button erlaubt Ihnen das Speichern aller mit der geöffneten DB verbundenen Einstellungen in einer DB-Browser für SQLite-Projektdatei + + + + This button lets you open a DB Browser for SQLite project file + Dieser Button erlaubt Ihnen das Öffnen einer DB-Browser für SQLite-Projektdatei + + + + New In-&Memory Database + Neue In-&Memory-Datenbank + + + + Drag && Drop Qualified Names + Drag && Drop qualifizierter Namen + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Qualifizierte Namen (z.B. "Tabelle."Feld") verwenden, wenn die Objekte gefasst und im Editor abgelegt werden + + + + Drag && Drop Enquoted Names + Drag && Drop zitierter Namen + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Geschützte Identifier (z.B. "Tabelle1") verwenden, wenn die Objekte gefasst und im Editor abgelegt werden + + + + &Integrity Check + &Integritätsprüfung + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Führt das integrity_check-Pragma auf der geöffneten Datenbank aus und gibt die Ergebnisse im SQL-Tab zurück. Dieses Pragma führt eine Integritätsprüfung der gesamten Datenbank durch. + + + + &Foreign-Key Check + &Fremdschlüssel-Prüfung + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Führt das foreign_key_check-Pragma auf der geöffneten Datenbank aus und gibt die Ergebnisse im SQL-Tab zurück + + + + &Quick Integrity Check + &Schnelle Integritätsprüfung + + + + Run a quick integrity check over the open DB + Führt eine schnelle Integritätsprüfung der geöffneten DB aus + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Führt das quick_check-Pragma auf der geöffneten Datenbank aus und gibt die Ergebnisse im SQL-Tab zurück. Dieser Befehl führt einen Großteil der Prüfung des integrity_check-Pragmas aus, ist aber deutlich schneller. + + + + &Optimize + &Optimieren + + + + Attempt to optimize the database + Versuchen, die Datenbank zu optimieren + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Führt das optimize-Pragma auf der geöffneten Datenbank aus. Dieses Pragma führt möglicherweise Optimierungen durch, die die Performanz zukünftiger Queries verbessern. + + + + + Print + Drucken + + + + Print text from current SQL editor tab + Den Text aus dem aktuellen SQL-Editortab drucken + + + + Open a dialog for printing the text in the current SQL editor tab + Einen Dialog zum Drucken des Textes im aktuellen SQL-Editortab öffnen + + + + Print the structure of the opened database + Die Struktur der geöffneten Datenbank drucken + + + + Open a dialog for printing the structure of the opened database + Einen Dialog zum Drucken der Struktur der geöffneten Datenbank öffnen + + + + &Save Project As... + Projekt &speichern als... + + + + + + Save the project in a file selected in a dialog + Das Projekt in einer in einem Dialog ausgewählten Datei speichern + + + + Save A&ll + &Alle speichern + + + + + + Save DB file, project file and opened SQL files + DB-Datei, Projektdatei und geöffnete SQL-Dateien speichern + + + + Ctrl+Shift+S + + + + + Open an existing database file in read only mode + Eine existierende Datenbank schreibgeschützt öffnen + + + + &File + &Datei + + + + &Import + &Import + + + + &Export + &Export + + + + &Edit + &Bearbeiten + + + + &View + &Ansicht + + + + &Help + &Hilfe + + + + Edit Database &Cell + Datenbank&zelle bearbeiten + + + + This button clears the contents of the SQL logs + Dieser Button löscht den Inhalt der SQL-Logs + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Dieses Panel erlaubt Ihnen das Betrachten eines Logs aller SQL-Kommandos, die von der Anwendung oder von Ihnen selbst ausgegangen sind + + + + DB Sche&ma + DB-Sche&ma + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Dies ist die Struktur der geöffneten Datenbank. +Sie können mehrere Objektnamen aus der Namensspalte nehmen und in den SQL-Editor ziehen und Sie können die Eigenschaften der abgelegten Namen über das Kontextmenü anpassen. Dies kann Sie bei der Erstellung von SQL-Statements unterstützen. +Sie können SQL-Statements aus der Schemaspalte nehmen und in den SQL-Editor oder in anderen Anwendungen ablegen. + + + + + &Remote + Entfe&rnt + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + SQL ausführen + + + + Open SQL file(s) + SQL-Datei(en) öffnen + + + + This button opens files containing SQL statements and loads them in new editor tabs + Dieser Button öffnet Dateien mit SQL-Anweisungen und lädt diese in neue Editortabs + + + + + Execute current line + Aktuelle Zeile ausführen + + + + This button executes the SQL statement present in the current editor line + Dieser Button führt das SQL-Statement in der aktuellen Editorzeile aus + + + + Shift+F5 + + + + + Sa&ve Project + &Projekt speichern + + + + + Save SQL file as + SQL-Datei speichern als + + + + This button saves the content of the current SQL editor tab to a file + Dieser Button speichert den Inhalt des aktuellen SQL-Editortabs in einer Datei + + + + &Browse Table + Tabelle &durchsuchen + + + + Copy Create statement + Create-Statement kopieren + + + + Copy the CREATE statement of the item to the clipboard + CREATE-Statement des Elements in die Zwischenablage kopieren + + + + User + Benutzer + + + + Application + Anwendung + + + + &Clear + &Leeren + + + + &New Database... + &Neue Datenbank... + + + + + Create a new database file + Neue Datenbank-Datei erstellen + + + + This option is used to create a new database file. + Diese Option wird zum Erstellen einer neuen Datenbank-Datei verwendet. + + + + Ctrl+N + + + + + + &Open Database... + Datenbank &öffnen... + + + + + + + + Open an existing database file + Existierende Datenbank-Datei öffnen + + + + + + This option is used to open an existing database file. + Diese Option wird zum Öffnen einer existierenden Datenbank-Datei verwendet. + + + + Ctrl+O + + + + + &Close Database + Datenbank &schließen + + + + This button closes the connection to the currently open database file + Dieser Button schließt die Verbindung zu der aktuell geöffneten Datenbankdatei + + + + + Ctrl+W + + + + + + Revert database to last saved state + Datenbank auf zuletzt gespeicherten Zustand zurücksetzen + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Diese Option wird zum Zurücksetzen der aktuellen Datenbank-Datei auf den zuletzt gespeicherten Zustand verwendet. Alle getätigten Änderungen gehen verloren. + + + + + Write changes to the database file + Änderungen in Datenbank-Datei schreiben + + + + This option is used to save changes to the database file. + Diese Option wird zum Speichern von Änderungen in der Datenbank-Datei verwendet. + + + + Ctrl+S + + + + + Compact the database file, removing space wasted by deleted records + Datenbank-Datei komprimieren, löscht Speicherplatz von gelöschten Zeilen + + + + + Compact the database file, removing space wasted by deleted records. + Datenbank-Datei komprimieren, löscht Speicherplatz von gelöschten Zeilen. + + + + E&xit + &Beenden + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Daten von einer .sql-Dump-Textdatei in eine neue oder existierende Datenbank importieren. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Diese Option wird zum Importieren von Daten von einer .sql-Dump-Textdatei in eine neue oder existierende Datenbank verwendet. SQL-Dumpdateien können von den meisten Datenbankanwendungen erstellt werden, inklusive MySQL und PostgreSQL. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Öffnet einen Assistenten zum Importieren von Daten aus einer kommaseparierten Textdatei in eine Datenbanktabelle. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Öffnet einen Assistenten zum Importieren von Daten aus einer kommaseparierten Textdatei in eine Datenbanktabelle. CSV-Dateien können von den meisten Datenbank- und Tabellenkalkulations-Anwendungen erstellt werden. + + + + Export a database to a .sql dump text file. + Daten in eine .sql-Dump-Textdatei exportieren. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Diese Option ermöglicht den Export einer Datenbank in eine .sql-Dump-Textdatei. SQL-Dumpdateien enthalten alle notwendigen Daten, um die Datenbank mit den meisten Datenbankanwendungen neu erstellen zu können, inklusive MySQL und PostgreSQL. + + + + Export a database table as a comma separated text file. + Datenbank als kommaseparierte Textdatei exportieren. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Exportiert die Datenbank als kommaseparierte Textdatei, fertig zum Import in andere Datenbank- oder Tabellenkalkulations-Anwendungen. + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Den Assistenten zum Erstellen einer Tabelle öffnen, wo der Name und die Felder für eine neue Tabelle in der Datenbank festgelegt werden können + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Den Assistenten zum Löschen einer Tabelle öffnen, wo eine zu entfernende Datenbanktabelle ausgewählt werden kann. + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Den Assistenten zum Ändern einer Tabelle öffnen, wo eine existierende Tabelle umbenannt werden kann. Ebenso können Felder hinzugefügt und gelöscht sowie Feldnamen und -typen geändert werden. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Den Assistenten zum Erstellen des Index öffnen, wo ein neuer Index für eine existierende Datenbanktabelle gewählt werden kann. + + + + &Preferences... + &Einstellungen... + + + + + Open the preferences window. + Das Einstellungsfenster öffnen. + + + + &DB Toolbar + &DB Toolbar + + + + Shows or hides the Database toolbar. + Zeigt oder versteckt die Datenbank-Toolbar. + + + + Shift+F1 + + + + + &Recently opened + &Kürzlich geöffnet + + + + Open &tab + &Tab öffnen + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Datenbankstruktur + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Daten durchsuchen + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Pragmas bearbeiten + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Warnung: dieses Pragma ist nicht lesbar und dieser Wert wurde abgeleitet. Das Schreiben des Pragmas überschreibt möglicherweise ein geändertes LIKE, welches von einer SQLite-Erweiterung zur Verfügung gestellt wird. + + + + &Tools + &Werkzeuge + + + + DB Toolbar + DB Toolbar + + + + SQL &Log + SQL-&Log + + + + Show S&QL submitted by + Anzeige des übergebenen S&QL von + + + + &Plot + &Diagramm + + + + + Project Toolbar + Projekt-Werkzeugleiste + + + + Extra DB toolbar + Extra-DB-Werkzeugleiste + + + + + + Close the current database file + Die aktuelle Datenbankdatei schließen + + + + &Revert Changes + Änderungen &rückgängig machen + + + + &Write Changes + Änderungen &schreiben + + + + &Database from SQL file... + &Datenbank aus SQL-Datei... + + + + &Table from CSV file... + &Tabelle aus CSV-Datei... + + + + &Database to SQL file... + &Datenbank als SQL-Datei... + + + + &Table(s) as CSV file... + &Tabelle(n) als CSV-Datei... + + + + &Create Table... + Tabelle &erstellen... + + + + &Delete Table... + Tabelle &löschen... + + + + &Modify Table... + Tabelle &ändern... + + + + Create &Index... + &Index erstellen... + + + + W&hat's This? + &Was ist das? + + + + &About + &Über + + + + This button opens a new tab for the SQL editor + Dieser Button öffnet einen neuen Tab im SQL-Editor + + + + &Execute SQL + SQL &ausführen + + + + + Save the current session to a file + Aktuelle Sitzung in einer Datei speichern + + + + + Load a working session from a file + Sitzung aus einer Datei laden + + + + + + Save SQL file + SQL-Datei speichern + + + + Ctrl+E + + + + + Export as CSV file + Als CSV-Datei exportieren + + + + Export table as comma separated values file + Tabelle als kommaseparierte Wertedatei exportieren + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Database encoding + Datenbank-Kodierung + + + + + Choose a database file + Eine Datenbankdatei auswählen + + + + Ctrl+Return + Strg+Return + + + + Ctrl+D + Strg+D + + + + Ctrl+I + Strg+I + + + + Window Layout + + + + + Reset Window Layout + Fensteranordnung zurücksetzen + + + + Alt+0 + + + + + The database is currenctly busy. + Die Datenbank ist aktuell beschäftigt. + + + + Click here to interrupt the currently running query. + Hier klicken, um die aktuell laufende Anfrage zu unterbrechen. + + + + Encrypted + Verschlüsselt + + + + Database is encrypted using SQLCipher + Datenbank ist mittels SQLCipher verschlüsselt + + + + Read only + Nur lesen + + + + Database file is read only. Editing the database is disabled. + Zugriff auf Datenbank nur lesend. Bearbeiten der Datenbank ist deaktiviert. + + + + Could not open database file. +Reason: %1 + Datenbankdatei konnte nicht geöffnet werden. Grund: %1 + + + + + + Choose a filename to save under + Dateinamen zum Speichern auswählen + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Fehler beim Speichern der Datenbankdatei. Dies bedeutet, dass nicht alle Änderungen an der Datenbank gespeichert wurden. Der folgende Fehler muss zuvor gelöst werden: + +%1 + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + Sollen die in den SQL-Tabs getätigten Änderungen in der Projektdatei '%1' gespeichert werden? + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Eine neue Version des DB Browsers für SQLite ist verfügbar (%1.%2.%3).<br/><br/>Bitte laden Sie diese von <a href='%4'>%4</a> herunter. + + + + DB Browser for SQLite project file (*.sqbpro) + DB Browser für SQLite Projektdatei (*.sqbpro) + + + + Error checking foreign keys after table modification. The changes will be reverted. + Fehler beim Prüfen von Fremdschlüsseln nach der Änderung an der Tabelle. Die Änderungen werden rückgängig gemacht. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Diese Tabelle hat die Fremdschlüsselprüfung nicht bestanden.<br/>Sie sollten 'Werkzeuge | Fremdschlüssel-Prüfng' ausführen und die gemeldeten Probleme beheben. + + + + Execution finished with errors. + Ausführung wurde mit Fehlern beendet. + + + + Execution finished without errors. + Ausführung wurde ohne Fehler beendet. + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Sollen wirklich alle Änderungen an der Datenbankdatei '%1' seit dem letzten Speichern rückgängig gemacht werden? + + + + Choose a file to import + Datei für Import auswählen + + + + Text files(*.sql *.txt);;All files(*) + Textdateien(*.sql *.txt);;Alle Dateien(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Soll für die importierten Daten eine neue Datenbank erstellt werden? +Bei der Antwort NEIN werden die Daten in die SQL-Datei der aktuellen Datenbank importiert. + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Es werden aktuell SQL-Statements ausgeführt. Das Schließen der Datenbank wird deren Ausführung stoppen, was die Datenbank möglicherweise in einem inkonsistenten Zustand belässt. Soll die Datenbank wirklich geschlossen werden? + + + + Do you want to save the changes made to the project file '%1'? + Sollen die an der Projektdatei '%1' getätigten Änderungen gespeichert werden? + + + + File %1 already exists. Please choose a different name. + Datei %1 existiert bereits. Bitte einen anderen Namen auswählen. + + + + Error importing data: %1 + Fehler beim Datenimport: %1 + + + + Import completed. + Import abgeschlossen. + + + + Delete View + Ansicht löschen + + + + Delete Trigger + Trigger löschen + + + + Delete Index + Index löschen + + + + + Delete Table + Tabelle löschen + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Das Setzen von PRAGMA-Werten übermittelt den aktuellen Vorgang. +Sind Sie sicher? + + + + In-Memory database + In-Memory-Datenbank + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + Möchten Sie die Tabelle '%1' wirklich löschen? +Alle mit dieser Tabelle verbundenen Daten gehen verloren. + + + + Are you sure you want to delete the view '%1'? + Möchten Sie die Ansicht '%1' wirklich löschen? + + + + Are you sure you want to delete the trigger '%1'? + Möchten Sie den Trigger '%1' wirklich löschen? + + + + Are you sure you want to delete the index '%1'? + Möchten Sie den Index '%1' wirklich löschen? + + + + Error: could not delete the table. + Fehler: Tabelle konnte nicht gelöscht werden. + + + + Error: could not delete the view. + Fehler: Ansicht konnte nicht gelöscht werden. + + + + Error: could not delete the trigger. + Fehler: Trigger konnte nicht gelöscht werden. + + + + Error: could not delete the index. + Fehler: Index konnte nicht gelöscht werden. + + + + Message from database engine: +%1 + Nachricht von Datenbank-Engine: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Das Bearbeiten der Tabelle setzt das Speichern aller ausstehenden Änderungen voraus. +Möchten Sie die Datenbank wirklich speichern? + + + + Edit View %1 + Ansicht %1 bearbeiten + + + + Edit Trigger %1 + Trigger %1 bearbeiten + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Es werden bereits SQL-Statements ausgeführt. Sollen diese gestoppt werden, um stattdessen die aktuellen Statements auszuführen? Dies führt möglicherweise zu einem inkonsistenten Zustand der Datenbank. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- FÜHRE AUSWAHL IN '%1' AUS +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- FÜHRE ZEILE IN '%1' AUS +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- FÜHRE ALLES IN '%1' AUS +-- + + + + + At line %1: + In Zeile %1: + + + + Result: %1 + Ergebnis: %1 + + + + Result: %2 + Ergebnis: %2 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Das Setzen von PRAGMA-Werten oder des Vakuumings wird Ihre aktuelle Transaktion committen. +Sind Sie sich sicher? + + + + Project saved to file '%1' + Projekt in Datei '%1' gespeichert + + + + This action will open a new SQL tab with the following statements for you to edit and run: + Diese Aktion öffnet einen neuen SQL-Tab mit den folgenden Anweisungen zum Bearbeiten und Ausführen: + + + + Rename Tab + Tab umbenennen + + + + Duplicate Tab + Tab duplizieren + + + + Close Tab + Tab schließen + + + + Opening '%1'... + Öffne '%1'... + + + + There was an error opening '%1'... + Fehler beim Öffnen von '%1'... + + + + Value is not a valid URL or filename: %1 + Wert ist keine gültige URL bzw. kein gültiger Dateiname: %1 + + + + %1 rows returned in %2ms + %1 Zeilen in %2ms zurückgegeben + + + + Choose text files + Textdateien auswählen + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Import vollständig. Ein paar Fremdschlüssel wurden verletzt. Bitten beheben Sie diese vor dem Speichern. + + + + Modify View + Ansicht verändern + + + + Modify Trigger + Trigger verändern + + + + Modify Index + Index verändern + + + + Modify Table + Tabelle verändern + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (nur lesend) + + + + Open Database or Project + Datenbank oder Projekt öffnen + + + + Attach Database... + Datenbank anhängen... + + + + Import CSV file(s)... + CSV-Datei(en) importieren... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Auf die Datei anzuwendende Aktion auswählen. <br/>Hinweis: Nur 'Import' kann mehr als eine Datei verarbeiten. + Auf die Dateien anzuwendende Aktion auswählen. <br/>Hinweis: Nur 'Import' kann mehr als eine Datei verarbeiten. + + + + + Do you want to save the changes made to SQL tabs in a new project file? + Sollen die an den SQL-Tabs getätigten Änderungen in einer neuen Projektdatei gespeichert werden? + + + + Do you want to save the changes made to the SQL file %1? + Sollen die getätigten Änderungen in der SQL-Datei %1 gespeichert werden? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + Es werden aktuell SQL-Statements ausgeführt. Das Schließen des Tabs wird deren Ausführung stoppen, was die Datenbank möglicherweise in einem inkonsistenten Zustand belässt. Soll der Tab wirklich geschlossen werden? + + + + Select SQL file to open + SQL-Datei zum Öffnen auswählen + + + + Select file name + Dateinamen auswählen + + + + Select extension file + Erweiterungsdatei auswählen + + + + Extension successfully loaded. + Erweiterung erfolgreich geladen. + + + + Error loading extension: %1 + Fehler beim Laden der Erweiterung: %1 + + + + Could not find resource file: %1 + Ressourcen-Datei konnte nicht gefunden werden: %1 + + + + + Don't show again + Nicht wieder anzeigen + + + + New version available. + Neue Version verfügbar. + + + + Choose a project file to open + Wählen Sie die zu öffnende Projektdatei + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Diese Projektdatei verwendet ein altes Dateiformat, da es mit DB-Browser für SQLite Version 3.10 oder niedriger erstellt wurde. Das Laden dieses Dateiformats wird noch vollständig unterstützt, wird empfehlen Ihnen allerdings, alle Ihre Projektdateien in das neue Dateiformat zu überführen, da die Unterstützung für ältere Formate in Zukunft möglicherweise entfernt wird. Sie können Ihre Dateien einfach durch Öffnen und Neuspeichern umwandeln. + + + + Could not open project file for writing. +Reason: %1 + Projekt-Datei konnte nicht schreibend geöffnet werden. +Grund: %1 + + + + Collation needed! Proceed? + Kollation notwendig! Fortführen? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Eine Tabelle in dieser Datenbank benötigt eine spezielle Kollationsfunktion '%1', welche diese Anwendung ohne weiterem Wissen nicht zur Verfügung stellen kann. +Wenn Sie fortfahren, sollten Sie im Hinterkopf behalten, dass mit Ihrer Datenbank unerwartete Dinge geschehen können. +Erstellen Sie ein Backup! + + + + creating collation + erstelle Kollation + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Vergeben Sie einen Namen für den SQL-Tab. Verwenden Sie das '&&'-Zeichen, um das folgende Zeichen als Tastaturkürzel zu verwenden. + + + + Please specify the view name + Geben Sie bitte einen Namen für Ansicht an + + + + There is already an object with that name. Please choose a different name. + Es gibt bereits ein Objekt mit diesem Namen. Bitte wählen Sie einen anderen aus. + + + + View successfully created. + Ansicht erfolgreich erstellt. + + + + Error creating view: %1 + Fehler beim Erstellen der Ansicht: %1 + + + + This action will open a new SQL tab for running: + Diese Aktion öffnet einen neuen SQL-Tab zur Ausführung: + + + + Press Help for opening the corresponding SQLite reference page. + Drücken Sie auf 'Hilfe', um die entsprechende SQLite-Referenzseite zu öffnen. + + + + Busy (%1) + Beschäftigt (%1) + + + + NullLineEdit + + + Set to NULL + Auf NULL setzen + + + + Alt+Del + + + + + PlotDock + + + Plot + Diagramm + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>Dieses Pane zeigt die Liste der Spalten der aktuell ausgewählten Tabelle oder des soeben ausgeführtne Queries. Sie können die für die X- und Y-Achse gewünschten Spalten für das Plot-Pane unten auswählen. Die Tabelle zeigt den erkannten Axentyp, der den entstehenden Plot beeinflusst. Für die Y-Achse sind nur numerische Spalten zulässig, während Sie für die X-Achse aus folgenden Optionen auswählen können:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Datum/Zeit</span>: Strings im Format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Datum</span>: Strings im Format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Zeit</span>: Strings im Format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Beschriftung</span>: andere Stringformate. Die Auswahl dieser Spalte als X-Achse erzeugt einen Barplot mit den Spaltenwerten als Beschriftungen der Bars.</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numerisch</span>: Integer- oder Real-Werte</li></ul><p>Ein Doppelklick auf die Y-Zellen ermöglicht Ihnen das Ändern der für den Graph verwendeten Farbe.</p></body></html> + + + + Columns + Spalten + + + + X + X + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + Achsentyp + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Hier wird ein Plot angezeigt, wenn Sie oben die x- und y-Werte auswählen. + +Klicken Sie auf Punkte, um diese im Plot und in der Tabelle auszuwählen. Strg+Klick zur Auswahl eines Punktebereichs. + +Verwenden Sie das Mausrad zum Zoomen und Ziehen Sie mit der Maus, um den Achsenbereich zu ändern. + +Wählen Sie die Achsen oder Achsenbeschriftungen aus, um nur in diese Richtung zu zoomen oder zu verschieben. + + + + Line type: + Linientyp: + + + + + None + Keine + + + + Line + Linie + + + + StepLeft + Linksschritt + + + + StepRight + Rechtsschritt + + + + StepCenter + Mittelschritt + + + + Impulse + Impuls + + + + Point shape: + Punktform: + + + + Cross + Kreuz + + + + Plus + Plus + + + + Circle + Kreis + + + + Disc + Scheibe + + + + Square + Quadrat + + + + Diamond + Diamant + + + + Star + Stern + + + + Triangle + Dreieck + + + + TriangleInverted + Invertiertes Dreieck + + + + CrossSquare + Quadrat mit Kreuz + + + + PlusSquare + Quadrat mit Plus + + + + CrossCircle + Kreis mit Kreuz + + + + PlusCircle + Kreis mit Plus + + + + Peace + Peace + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Aktuelles Diagramm speichern...</p><p>Dateiformat durch Endung auswählen (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Aktuelles Diagramm speichern... + + + + + Load all data and redraw plot + Alle Daten laden und Plot neu zeichnen + + + + + + Row # + Zeile # + + + + Copy + Kopieren + + + + Print... + Drucken... + + + + Show legend + Legende anzeigen + + + + Stacked bars + Gestapelte Bars + + + + Date/Time + Datum/Zeit + + + + Date + Datum + + + + Time + Zeit + + + + + Numeric + Numerisch + + + + Label + Beschriftung + + + + Invalid + Ungültig + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Alle Daten laden und Plot neu zeichnen. +Warnung: es wurden aufgrund der partiellen Abrufmechanismus noch nicht alle Daten aus der Tabelle abgerufen. + + + + Choose an axis color + Eine Achsenfarbe wählen + + + + Choose a filename to save under + Dateinamen zum Speichern auswählen + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Alle Dateien(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + Dieser Plot enthält Kurven und der ausgewählte Linienstil kann nur auf nach X sortierte Graphen angewendet werden. Sortieren Sie entweder die Tabelle oder Query nach X oder entfernen Sie die Kurven oder wählen Sie eine der Stile, die von Kurven unterstützt werden: Keiner oder Linie. + + + + Loading all remaining data for this table took %1ms. + Das Laden aller verbleibender Daten dieser Tabelle benötigte %1ms. + + + + PreferencesDialog + + + Preferences + Einstellungen + + + + &General + All&gemeines + + + + Remember last location + Letztes Verzeichnis merken + + + + Always use this location + Immer dieses Verzeichnis verwenden + + + + Remember last location for session only + Letztes Verzeichnis nur innerhalb der Sitzung merken + + + + Lan&guage + &Sprache + + + + Show remote options + Fernzugriffs-Optionen anzeigen + + + + Automatic &updates + Automatische &Updates + + + + &Database + &Datenbank + + + + Database &encoding + Datenbank-&Kodierung + + + + Open databases with foreign keys enabled. + Öffnen von Datenbanken mit Fremdschlüsseln aktiviert. + + + + &Foreign keys + &Fremdschlüssel + + + + + + + + + + + + enabled + aktiviert + + + + Default &location + Voreingestellter &Speicherort + + + + + + ... + ... + + + + Remove line breaks in schema &view + Zeilenumbrüche in der Schema&ansicht entfernen + + + + Prefetch block si&ze + Block&größe für Prefetch + + + + SQ&L to execute after opening database + Nach dem Öffnen einer Datenbank auszuführendes SQ&L + + + + Default field type + Voreingestellter Feldtyp + + + + Data &Browser + Daten&auswahl + + + + Font + Schrift + + + + &Font + Schri&ft + + + + Content + Inhalt + + + + Symbol limit in cell + Symbolbegrenzung in Zelle + + + + NULL + NULL + + + + Regular + Normal + + + + Binary + Binär + + + + Background + Hintergrund + + + + Filters + Filter + + + + Threshold for completion and calculation on selection + Schwellwert für die Vervollständigung und Berechnung bei Auswahl + + + + Show images in cell + Bilder in Zelle anzeigen + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Diese Option aktivieren, um eine Vorschau von BLOBs mit Bilddaten in den Zellen anzuzeigen. Dies kann allerdings die Performanz der Anwendung beeinflussen. + + + + Escape character + Escape-Zeichen + + + + Delay time (&ms) + Verzögerung (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Verzögerung vor der Anwendung eines neuen Filters setzen. Kann auf 0 gesetzt werden, um dies zu deaktivieren. + + + + &SQL + &SQL + + + + Settings name + Einstellungsname + + + + Context + Kontext + + + + Colour + Farbe + + + + Bold + Fett + + + + Italic + Kursiv + + + + Underline + Unterstreichung + + + + Keyword + Schlüsselwort + + + + Function + Funktion + + + + Table + Tabelle + + + + Comment + Kommentar + + + + Identifier + Bezeichner + + + + String + String + + + + Current line + Aktuelle Zeile + + + + SQL &editor font size + SQL-&Editor Schriftgröße + + + + Tab size + Tab-Größe + + + + SQL editor &font + SQL Editor &Schrift + + + + Error indicators + Fehleranzeige + + + + Hori&zontal tiling + Hori&zontale Anordnung + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Im aktivierten Zustand werden der SQL-Codeeditor und die Ergebnistabelle neben- statt untereinander angezeigt. + + + + Code co&mpletion + &Codevervollständung + + + + Toolbar style + Werkzeugleisten-Stil + + + + + + + + Only display the icon + Nur das Symbol anzeigen + + + + + + + + Only display the text + Nur den Text anzeigen + + + + + + + + The text appears beside the icon + Der Text erscheint neben dem Symbol + + + + + + + + The text appears under the icon + Der Text erscheint unter dem Symbol + + + + + + + + Follow the style + Dem Stil folgen + + + + DB file extensions + DB-Datei-Erweiterungen + + + + Manage + Verwalten + + + + Main Window + Hauptfenster + + + + Database Structure + Datenbankstruktur + + + + Browse Data + Daten durchsuchen + + + + Execute SQL + SQL ausführen + + + + Edit Database Cell + Datenbankzelle bearbeiten + + + + When this value is changed, all the other color preferences are also set to matching colors. + Wenn dieser Wert geändert wird, werden alle anderen Farbeinstellungen auch auf die entsprechenden Farben gesetzt. + + + + Follow the desktop style + Dem Desktop-Stil folgen + + + + Dark style + Dunkler Stil + + + + Application style + Anwendungs-Stil + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Falls aktiviert, werden die Zeilenumbrüche in der Schemaspalte des DB-Strukturtabs, Docks und der gedruckten Ausgabe entfernt. + + + + Database structure font size + + + + + Font si&ze + Schrift&größe + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Dies ist die maximale Elementanzahl, die für die Aktivierung von ein paar berechnungsintensiven Funktionalitäten erlaubt ist: +Maximale Zeilenanzahl in einer Tabelle für die Wertvervollständig basierend auf den aktuellen Werten in dieser Spalte. +Maximale Indexanzahl einer Auswahl für die Berechnung von Summe und Durchschnitt. +Kann auf 0 gesetzt werden, um diese Funktionalitäten zu deaktivieren. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Dies ist die maximale Anzahl an Zeilen in einer Tabelle, die zur Wertvervollständigung basierend auf aktuellen Werten in dieser Spalte erlaubt ist. +Kann auf 0 gesetzt werden, um die Vervollständigung zu deaktivieren. + + + + Field display + Feldanzeige + + + + Displayed &text + Angezeigter &Text + + + + + + + + + Click to set this color + Zur Auswahl der Farbe klicken + + + + Text color + Textfarbe + + + + Background color + Hintergrundfarbe + + + + Preview only (N/A) + Nur Vorschau (N/A) + + + + Foreground + Vordergrund + + + + SQL &results font size + Schriftgröße SQL-&Ergebnisse + + + + &Wrap lines + Zeilen &umbrechen + + + + Never + Nie + + + + At word boundaries + An Wortgrenzen + + + + At character boundaries + An Zeichengrenzen + + + + At whitespace boundaries + An Leerzeichengrenzen + + + + &Quotes for identifiers + &Anführungszeichen für Identifiers + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Wählen Sie den Zitiermechanismus aus, der von der Anwendung für Identifier im SQL-Code verwendet wird. + + + + "Double quotes" - Standard SQL (recommended) + "Doppelt Anführungszeichen" - Standard-SQL (empfohlen) + + + + `Grave accents` - Traditional MySQL quotes + `Akzente` - Traditionelle MySQL-Anführungszeichen + + + + [Square brackets] - Traditional MS SQL Server quotes + [Eckige Klammern] - Traditionelle MS-SQL-Server-Anführungszeichen + + + + Keywords in &UPPER CASE + Schlüsselwörter in &GROSSSCHREIBUNG + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Falls gesetzt, werden die SQL-Schlüsselwörter in GROßSCHREIBUNG vervollständigt. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Falls gesetzt, werden die SQL-Codezeilen, die während der letzten Ausführung Fehler verursacht haben, hervorgehoben und das Ergebnisfenster zeigt den Fehler im Hintergrund an + + + + Close button on tabs + Schließen-Button für Tabs + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + Wenn aktiviert, werden die SQL-Editor-Tabs einen Schließen-Button haben. In allen Fällen können Sie zum Schließen auch das Kontextmenü oder die Tastenkombination verwenden. + + + + &Extensions + &Erweiterungen + + + + Select extensions to load for every database: + Bei jeder Datenbank zu ladende Erweiterungen auswählen: + + + + Add extension + Erweiterung hinzufügen + + + + Remove extension + Erweiterung entfernen + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Auch wenn der REGEXP-Operator unterstützt wird, implementiert SQLite keinerlei Algorithmus für reguläre<br/>Ausdrücke, sondern leitet diese an die laufende Anwendung weiter. DB Browser für SQLite implementierte diesen<br/>Algorithmus für Sie, um REGEXP ohne Zusätze verwenden zu können. Allerdings gibt es viele mögliche<br/>Implementierungen und Sie möchten unter Umständen eine andere wählen, dann können Sie die<br/>Implementierung der Anwendung deaktivieren und Ihre eigene durch Laden einer Erweiterung verwenden. Ein Neustart der Anwendung ist notwendig.</p></body></html> + + + + Disable Regular Expression extension + Erweiterung für reguläre Ausdrücke deaktivieren + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite bietet eine SQL-Funktion an, um Erweiterungen aus einer Shared-Library-Datei zu laden. Aktivieren Sie dies, falls Sie die <span style=" font-style:italic;">load_extension()</span>-Funktion aus SQL-Code heraus benutzen möchten.</p><p>Aus Sicherheitsgründen ist das Laden von Erweiterungen standardmäßig deaktiviert und muss durch diese Einstellung aktiviert werden. Sie können alternativ immer die gewünschten Erweiterungen über die GUI laden, auch wenn diese Option deaktiviert ist.</p></body></html> + + + + Allow loading extensions from SQL code + Erlaube das Laden von Erweiterungen aus SQL-Code + + + + Remote + Entfernt + + + + CA certificates + CA-Zertifikate + + + + Proxy + Proxy + + + + Configure + Konfigurieren + + + + + Subject CN + Subject CN + + + + Common Name + Common Name + + + + Subject O + Subject O + + + + Organization + Organisation + + + + + Valid from + Gültig ab + + + + + Valid to + Gültig bis + + + + + Serial number + Seriennummer + + + + Your certificates + Ihre Zertifikate + + + + File + Datei + + + + Subject Common Name + Subject Common Name + + + + Issuer CN + CN des Ausstellers + + + + Issuer Common Name + Common Name des Ausstellers + + + + Clone databases into + Datenbank klonen nach + + + + + Choose a directory + Verzeichnis wählen + + + + The language will change after you restart the application. + Die Sprache wird nach einem Neustart der Anwendung geändert. + + + + Select extension file + Erweiterungsdatei wählen + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Erweiterungen(*.so *.dylib *.dll);;Alle Dateien(*) + + + + Import certificate file + Zertifikatsdatei importieren + + + + No certificates found in this file. + In dieser Datei wurden keine Zertifikate gefunden. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Soll dieses Zertifikat wirklich entfernt werden? Jegliche Zertifikatdaten werden aus den Anwendungseinstellungen gelöscht! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Möchten Sie wirklich alle gespeicherten Einstellungen löschen? +Alle Ihre Einstellungen gehen dadurch verloren und die Standardwerte werden verwendet. + + + + ProxyDialog + + + Proxy Configuration + Proxy-Konfiguration + + + + Pro&xy Type + Pro&xy-Typ + + + + Host Na&me + Hostna&me + + + + Port + Port + + + + Authentication Re&quired + Anmeldung not&wendig + + + + &User Name + &Benutzername + + + + Password + Passwort + + + + None + Keiner + + + + System settings + Systemeinstellungen + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + Fehler beim Datenimport + + + + from record number %1 + von Zeilennummer %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + Importiere CSV-Datei... + + + + Cancel + Abbrechen + + + + All files (*) + Alle Dateien (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + SQLite Datenbankdateien (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + Links + + + + Right + Rechts + + + + Center + Zentriert + + + + Justify + Blocksatz + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + SQLite-Datenbankdateien (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + DB Browser für SQLite Projektdateien (*.sqbpro) + + + + SQL Files (*.sql) + SQL-Dateien (*.sql) + + + + All Files (*) + Alle Dateien (*) + + + + Text Files (*.txt) + Text-Dateien (*.txt) + + + + Comma-Separated Values Files (*.csv) + Kommaseparierte Datendateien (*.csv) + + + + Tab-Separated Values Files (*.tsv) + Tabulator-separierte Datendateien (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Trenner-separierte Datendateien (*.dsv) + + + + Concordance DAT files (*.dat) + Konkordanz DAT-Dateien (*.dat) + + + + JSON Files (*.json *.js) + JSON-Dateien (*.json *.js) + + + + XML Files (*.xml) + XML-Dateien (*.xml) + + + + Binary Files (*.bin *.dat) + Binärdateien (*.bin *.dat) + + + + SVG Files (*.svg) + SVG-Dateien (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Hex-Dump-Dateien (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + Erweiterungen (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + Datum + + + + Author + + + + + Size + Größe + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Fehler beim Öffnen der lokalen Datenbankliste. +%1 + + + + Error creating local databases list. +%1 + Fehler beim Erstellen der lokalen Datenbankliste. +%1 + + + + RemoteDock + + + Remote + Entfernt + + + + Local + Lokal + + + + Identity + Identität + + + + Push currently opened database to server + Aktuell geöffnete Datenbank an den Server übertragen + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>In diesem Fensterbereich können entfernte Datenbanken von der dbhub.io-Webseite zu DB-Browser für SQLite hinzugefügt werden. Zunächst benötigen Sie eine Identität:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Melden Sie sich auf der dbhub.io-Webseite an (unter Verwendung Ihrer GitHub-Daten oder wie gewünscht)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Klicken Sie auf den Button &quot;Generate client certificate&quot;, um ein Zertifikat zu erstellen (das ist Ihre Identität). Speichern Sie die erzeugte Zertifikatdatei auf ihrer lokalen Festplatte.</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Öffnen Sie den Entfernt-Tab in den DB-Browser für SQLite-Einstellungen. Klicken Sie auf den Button, um ein neues Zertifikat hinzuzufügen und wählen Sie die soeben heruntergeladene Zertifikatdatei aus.</li></ol><p>Jetzt zeigt der Entfernt-Fensterbereich Ihre Identität und Sie können entfernte Datenbanken hinzufügen.</p></body></html> + + + + Current Database + + + + + Clone + + + + + User + Benutzer + + + + Database + Datenbank + + + + Branch + Branch + + + + Commits + + + + + Commits for + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + Aktualisieren + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>Aktuell wird eine eingebaute, nur lesend verwendbare Identität verwendet. Zum Hochladen einer Datenbank muss ein DBHub.io-Konto konfiguriert und verwendet werden.</p><p>Noch kein DBHub.io-Konto vorhanden? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Jetzt ein Konto erstellen</span></a> und das Zertifikat <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">hier</span></a> hochladen, um Datenbanken zu teilen.</p><p>Eine englische Online-Hilfe ist <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">hier</span></a> verfügbar.</p></body></html> + + + + Back + Zurück + + + + Select an identity to connect + + + + + Public + Öffentlich + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + Name + + + + Branch + Branch + + + + Last modified + Letzte Änderung + + + + Size + Größe + + + + Commit + Commit + + + + File + Datei + + + + RemoteModel + + + Name + Name + + + + Last modified + Letzte Änderung + + + + Size + Größe + + + + Commit + Commit + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + Fehler beim Öffnen der entfernten Datei unter %1. +%2 + + + + Error: Invalid client certificate specified. + Fehler: Ungültiges Benutzerzertifikat angegeben. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Bitte die Passphrase für diese Benutzerzertifikat eingeben, um die Authentifizierung durchzuführen. + + + + Cancel + Abbrechen + + + + Uploading remote database to +%1 + Entfernte Datenbank wird hochgeladen zu +%1 + + + + Downloading remote database from +%1 + Entfernte Datenbank wird heruntergeladen von +%1 + + + + + Error: The network is not accessible. + Fehler: Netzwerkzugriff nicht möglich. + + + + Error: Cannot open the file for sending. + Fehler: Öffnen der Datei zum Senden nicht möglich. + + + + RemotePushDialog + + + Push database + Datenbank übertragen + + + + Database na&me to push to + Datenbankna&me am Zielort + + + + Commit message + Commit-Nachricht + + + + Database licence + Datenbanklizenz + + + + Public + Öffentlich + + + + Branch + Branch + + + + Force push + Push erzwingen + + + + Username + + + + + Database will be public. Everyone has read access to it. + Datenbank wird öffentlich sein. Jeder hat Lesezugriff darauf. + + + + Database will be private. Only you have access to it. + Datenbank wird privat sein. Nur Sie haben Zugriff darauf. + + + + Use with care. This can cause remote commits to be deleted. + Verwenden Sie dies mit Vorsicht. Dadurch können entfernte Commits gelöscht werden. + + + + RunSql + + + Execution aborted by user + Ausführung durch Benutzer abgebrochen + + + + , %1 rows affected + , %1 Zeilen betroffen + + + + query executed successfully. Took %1ms%2 + Query erfolgreich ausgeführt. Benötigte %1ms%2 + + + + executing query + führe Query aus + + + + SelectItemsPopup + + + A&vailable + &Verfügbar + + + + Sele&cted + &Ausgewählt + + + + SqlExecutionArea + + + Form + Formular + + + + Find previous match [Shift+F3] + Vorherige Übereinstimmung finden [Umschalt+F3] + + + + Find previous match with wrapping + Vorherige Übereinstimmung mit Mapping finden + + + + Shift+F3 + + + + + The found pattern must be a whole word + Das Pattern muss ein ganzes Wort sein + + + + Whole Words + Ganze Wörter + + + + Text pattern to find considering the checks in this frame + Zu findendes Textpattern unter Einbeziehung der Prüfungen in diesem Fenster + + + + Find in editor + Im Editor finden + + + + The found pattern must match in letter case + Das Fundpattern muss in Groß-/Kleinschreibung übereinstimmen + + + + Case Sensitive + Schreibungsabhängig + + + + Find next match [Enter, F3] + Nächste Übereinstimmung finden [Enter, F3] + + + + Find next match with wrapping + Nächste Übereinstimmung mit Umbruch finden + + + + F3 + + + + + Interpret search pattern as a regular expression + Suchpattern als regulären Ausdruck interpretieren + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Falls aktiviert, wird das Suchmuster als regulärer Ausdruck (UNIX-Stil) interpretiert. Siehe <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks (englisch)</a>.</p></body></html> + + + + Regular Expression + Regulärer Ausdruck + + + + + Close Find Bar + Suchbar schließen + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>Ergebnisse der zuletzt ausgeführten Statements.</p><p>Dieses Panel kann zusammengeklappt und stattdessen der <span style=" font-style:italic;">SQL-Log</span>-Dock mit der Auswahl <span style=" font-style:italic;">Benutzer</span> verwendet werden.</p></body></html> + + + + Results of the last executed statements + Ergebnisse des zuletzt ausgeführten Statements + + + + This field shows the results and status codes of the last executed statements. + Dieses Feld zeigt die Ergebnisse und Statuscodes der zuletzt ausgeführten Statements. + + + + Couldn't read file: %1. + Datei konnte nicht gelesen werden: %1. + + + + + Couldn't save file: %1. + Datei konnte nicht gespeichert werden: %1. + + + + Your changes will be lost when reloading it! + Beim Neuladen gehen die Änderungen verloren! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + Die Datei "%1" wurde durch ein anderes Programm geändert. Soll es neu geladen werden?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) Die abs(X)-Funktion gibt einen absoluten Wert des numerischen Arguments X zurück. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () Die changes()-Funktion gibt die Anzahl der Datenbankzeilen zurück, die mit dem zuletzt abgeschlossenen INSERT-, DELETE- oder UPDATE-Statement geändert, einfügt oder gelöscht worden sind. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) Die char(X1,X2,...,XN)-Funktion gibt eine Zeichenkette zurück, die aus den Zeichen der Unicode-Werte der Ganzzahlen X1 bis XN zusammengesetzt ist. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) Die coalesce()-Funktion gibt eine Kopie des ersten nicht-NULL-Arguments zurück, oder NULL wenn alle Argumente NULL sind + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) Die glob(X,Y)-Funktion ist äquivalent zum Ausdruck "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) Die ifnull()-Funktion gibt eine Kopie des ersten nicht-NULL-Arguments zurück, oder NULL, wenn beide Argumente NULL sind. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) Die instr(X,Y)-Funktion sucht das erste Auftreten von Zeichenkette Y innerhalb der Zeichenkette X und gibt die Anzahl vorhergehender Charakter plus 1 zurück, oder 0, wenn Y in X nicht gefunden werden konnte. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) Die hex()-Funktion interpretiert ihr Argument als BLOB und gibt eine Zeichenkette zurück, die die Hexadezimaldarstellung des Blob-Inhaltes in Großbuchstaben enthält. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () Die last_insert_rowid()-Funktion gibt die ROWID der letzte Zeile zurück, die von der diese Funktion aufrufenden Datenbankverbindung eingefügt wurde. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) Für eine Zeichenkette X gibt die length(X)-Funktion die Anzahl der Zeichen (keine Bytes) von X zurück, die sich for dem ersten NUL-Zeichen befinden. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) Die like()-Funktion wird als Implementierung des "Y LIKE X"-Ausdrucks verwendet. + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) Die like()-Funktion wird als Implementierung des "Y LIKE X ESCAPE Z"-Ausdrucks verwendet. + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) Die load_extension(X)-Funktion lädt SQLite-Erweiterungen aus der Shared-Library-Datei namens X. +Die Verwendung dieser Funktion muss in den Einstellungen authorisiert werden. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) Die load_extension(X,Y)-Funktion lädt SQLite-Erweiterungen aus der Shared-Library-Datei namens X unter Verwendung des Eintrittspunktes Y. +Die Verwendung dieser Funktion muss in den Einstellungen authorisiert werden. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) Die lower(X)-Funktion gibt eine Kopie der Zeichenkette X mit allen ASCII-Zeichen in Kleinschreibung zurück. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) entfernt Leerzeichen aus der linken Seite von X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) Die ltrim(X,Y)-Funktion gibt eine Zeichenkette zurück, die durch Entfernen aller Zeichen innerhalb von Y aus der linken Seite von X gebildet wird. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) Die max()-Funktion mit mehreren Argumenten gibt das Argument mit dem größten Wert zurück, oder NULL, wenn ein Argument NULL ist. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) Die max()-Funktion mit mehreren Argumenten gibt das Argument mit dem kleinsten Wert zurück. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) Die nullif(X,Y)-FUnktion gibt ihr erstes Argument zurück, wenn die Argumente verschieden sind und NULL, wenn die Argumente gleich sind. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) Die printf(FORMAT,...) SQL-Funktion arbeitet wie die sqlite3_mprintf() C-Funktion und die printf()-Funktion aus der C-Standardbibliothek. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) Die quote(X)-Funktion gibt den Text eines SQL-Literals zurück, wobei der Wert des Arguments zum Einfügen in ein SQL-Statement geeignet ist. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () Die random()-Funktion gibt eine pseudo-zufällige Ganzzahl zwischen -9223372036854775808 und +9223372036854775807 zurück. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) Die randomblob(N)-Funktion gibt einen N-Byte Blob aus pseudo-zufälligen Bytes zurück. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) Die replace(X,Y,Z)-Funktion gibt einen String zurück, der durch Ersetzen der Zeichenkette Z bei jedem Auftreten von Zeichenkette Y in Zeichenkette X gebildet wird. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) Die round(X)-Funktion gibt einen Gleitkommawert X auf nulll Nachkommastellen gerundet zurück. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) Die round(X,Y)-Funktion gibt eine Gleitkommazahl X auf Y Nachkommastellen gerundet zurück. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X) entfernt Leerzeichen aus der rechten Seite von X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) Die rtrim(X,Y)-Funktion gibt eine Zeichenkette zurück, die durch Entfernen aller Zeichen innerhalb von Y aus der rechten Seite von X gebildet wird. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) Die soundex(X)-Funktion gibt eine Zeichenkette zurück, die aus der Soundex-Kodierung von Zeichenkette X besteht. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) gibt alle Zeichen bis zum Ende der Zeichenkette X zurück, beginnend mit dem Y-ten. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) Die substr(X,Y)-Funktion gibt einen Teil der Zeichenkette X zurück, die mit dem Y-ten Zeichen beginnt und Z Zeichen lang ist. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () Die changes()-Funktion gibt die Anzahl dergeänderten Datenbankzeilen zurück, die seit dem Öffnen der aktuellen Datenbankverbindung mit INSERT-, DELETE- oder UPDATE-Statement geändert, einfügt oder gelöscht worden sind. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) entfernt Leerzeichen an beiden Enden von X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) Die ltrim(X,Y)-Funktion gibt eine Zeichenkette zurück, die durch Entfernen aller Zeichen innerhalb von Y aus der von beiden Seiten von X gebildet wird. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) Die typeof(X)-Funktion gibt einen String zurück, der den Datentyp des Ausdruckes X angibt. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) Die unicode(X)-Funktion gibt einen numerischen Unicode-Wert zurück, der dem ersten Zeichen der Zeichenkette X entspricht. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) Die lower(X)-Funktion gibt eine Kopie der Zeichenkette X mit allen ASCII-Zeichen in Großschreibung zurück. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) Die zeroblob(N)-Funktion gibt einen BLOB aus N Bytes mit 0x00 zurück. + + + + + + + (timestring,modifier,modifier,...) + (Zeitstring,Modifikation,Modifikation,...) + + + + (format,timestring,modifier,modifier,...) + (Format,Zeitstring,Modifikation,Modifikation,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) Die avg()-Funktion gibt den Durchschnittswert alle nicht-NULL X in einer Gruppe zurück. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) Die count(X)-Funktion gibt die Anzahl der nicht-NULL-Elemente von X in einer Gruppe zurück. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) Die group_conact()-Funktion gibt eine Zeichenkette zurück, die eine Verkettung aller nicht-NULL-Werte von X ist. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) Die group_conact()-Funktion gibt eine Zeichenkette zurück, die eine Verkettung aller nicht-NULL-Werte von X ist. Wenn der Parameter Y aktiv ist, wird dieser als Trennzeichen zwischen Instanzen von X behandelt. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) Die max()-Sammelfunktion gibt den Maximalwert aller Werte in der Gruppe zurück. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) Die min()-Sammelfunktion gibt den Minimalwert aller nicht-NULL-Werte in der Gruppe zurück. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Die sum()- und total()-Sammelfunktionen geben die Summe aller nicht-NULL-Werte in der Gruppe zurück. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () Die Anzahl der Zeilen in der aktuellen Partition. Zeilen werden beginnend bei 1 in der durch den ORDER-BY-Befehl in der Fensterdefinition nummeriert, ansonsten in willkürlicher Reihenfolge. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Die row_number() des ersten Peer in jeder Gruppe - der Rang der aktuellen Zeile mit Lücken. Falls es keinen ORDER-BY-Befehl gibt, dann werden alle Zeilen als Peers angesehen und diese Funktion gibt immer 1 zurück. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Die Nummer der Peer-Gruppe der aktuellen Zeile in der Partition - der Rang der aktuellen Reihe ohne Lücken. Partitionen werden mit 1 startend nummeriert in der Reihenfolge, wie sie durch den ORDER-BY-Befehl in der Fensterdefinition festgelegt ist. Falls es keinen ORDER-BY-Befehl gibt, werden alle Zeilen als Peers angesehen und diese Funktion gibt immer 1 zurück. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () Ungeachtet des Namens gibt diese Funktion immer einen Wert zwischen 0.0 und 1.0 identisch zu (Rang - 1)/(Partitionszeilen - 1) zurück, wobei Rang der Wert der eingebauten Fensterfunktion rank() und Partitionszeilen die Gesamtanzahl der Zeilen in der Partition ist. Falls die Partition nur eine Zeile enthält, gibt diese Funktion 0.0 zurück. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () Die kumulative Verteilung. Berechnet als Zeilenanzahl/Partitionszeilen, wobei Zeilenanzahl der durch row_number() zurückgegebene Wert für den letzten Peer in der Gruppe ist und Partitionszeilen die Anzahl der Zeilen in der Partition. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) Das Argument N wird als Integer behandelt. Diese Funktion teilt die Partition in N Gruppen so gleichmäßig wie möglich auf und weist jeder Gruppe einen Integer zwischen 1 und N zu, in der Reihenfolge, die durch den ORDER-BY-Befehl definiert ist, ansonsten in beliebiger Reihenfolge. Falls notwendig tauchen größere Gruppen als erstes auf. Diese Funktion gibt einen Integerwert zurück, der der Gruppe zugewiesen ist, zu der die aktuelle Zeile gehört. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Gibt das Ergebnis der Evaluation des Ausdrucks expr gegen die vorherige Zeile in der Partition zurück. Falls es keine vorhergehende Zeile gibt (weil die aktuelle Zeile die erste ist), wird NULL zurückgegeben. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) Falls das Offset-Argument angegeben ist, dann muss dieses ein nicht-negativer Integerwert sein. In diesem Fall ist der Rückgabewert das Ergebnis der Evaluation von expr gegen die Zeile, die innerhalb der Partition offset Zeilen weiter oben liegt. Falls offset 0 ist, wird expr gegen die aktuelle Zeile evaluiert. Falls vor der aktuellen Zeile nicht genügend Zeilen vorhanden sind, wird NULL zurückgegeben. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) Falls auch default angegeben ist, dann wird dieser Wert anstatt NULL zurückgegeben, falls die durch offset angegebene Zeile nicht existiert. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Gibt das Ergebnis der Evaluation des Ausdrucks expr gegen die nächste Zeile in der Partition zurück. Falls es keine nächste Zeile gibt (weil die aktuelle Zeile die letzte ist), wird NULL zurückgegeben. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) Falls das Offset-Argument angegeben ist, dann muss dieses ein nicht-negativer Integerwert sein. In diesem Fall ist der Rückgabewert das Ergebnis der Evaluation von expr gegen die Zeile, die innerhalb der Partition offset Zeilen weiter unten liegt. Falls offset 0 ist, wird expr gegen die aktuelle Zeile evaluiert. Falls nach der aktuellen Zeile nicht genügend Zeilen vorhanden sind, wird NULL zurückgegeben. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Diese eingebaute Fensterfunktion berechnet das Windowframe für jede Zeile auf die gleiche Art wie ein aggregierte Fensterfunktion. Sie gibt den Wert von expr evaluiert gegen die erste Zeile des Windowframes für jede Zeile zurück. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Diese eingebaute Fensterfunktion berechnet das Windowframe für jede Zeile auf die gleiche Art wie ein aggregierte Fensterfunktion. Sie gibt den Wert von expr evaluiert gegen die letzte Zeile des Windowframes für jede Zeile zurück. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) Diese eingebaute Fensterfunktion berechnet das Windowframe für jede Zeile auf die gleiche Art wie ein aggregierte Fensterfunktion. Sie gibt den Wert von expr evaluiert gegen die N-te Zeile des Windowframes für zurück. Die Zeilen werden beginnend bei 1 in der durch den ORDER-BY-Befehl definierten Reihenfolge nummeriert, falls dieser vorhanden ist, ansonsten in beliebiger Reihenfolge. Falls es keine N-te Zeile in der Partition gibt, dann wird NULL zurückgegeben. + + + + SqliteTableModel + + + reading rows + lese Zeilen + + + + loading... + lade... + + + + References %1(%2) +Hold %3Shift and click to jump there + Referenzen %1(%2) +Halten Sie %3Umschalt und klicken Sie, um hierher zu springen + + + + Error changing data: +%1 + Fehler beim Ändern der Daten: +%1 + + + + retrieving list of columns + ermittle Liste der Spalten + + + + Fetching data... + Rufe Daten ab... + + + + + Cancel + Abbrechen + + + + TableBrowser + + + Browse Data + Daten durchsuchen + + + + &Table: + &Tabelle: + + + + Select a table to browse data + Anzuzeigende Tabelle auswählen + + + + Use this list to select a table to be displayed in the database view + Diese Liste zur Auswahl der in der Datenbankansicht anzuzeigenden Tabelle verwenden + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Dies ist die Datenbanktabellen-Ansicht. Sie können die folgenden Aktionen durchführen: + - Mit dem Schreiben beginnen, um die Werte Inline zu bearbeiten. + - Doppelt auf einen Eintrag klicken, um dessen Inhalte im Zelleneditor-Fenster zu bearbeiten. + - Alt+Entf zum Löschen des Zellinhaltes zu NULL. + - Strg+" zur Duplizierung des aktuellen Eintrags. + - Strg+' zum Kopieren des Wertes der darüberliegenden Zelle. + - Standardmäßige Auswahl- und Kopieren/Einfügen-Operationen. + + + + Text pattern to find considering the checks in this frame + Zu findendes Textpattern unter Einbeziehung der Prüfungen in diesem Fenster + + + + Find in table + In Tabelle suchen + + + + Find previous match [Shift+F3] + Vorherige Übereinstimmung finden [Umschalt+F3] + + + + Find previous match with wrapping + Vorherige Übereinstimmung mit Umbruch finden + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Nächste Übereinstimmung finden [Enter, F3] + + + + Find next match with wrapping + Nächste Übereinstimmung mit Umbruch finden + + + + F3 + + + + + The found pattern must match in letter case + Das Suchpattern muss in Groß-/Kleinschreibung übereinstimmen + + + + Case Sensitive + Schreibungsabhängig + + + + The found pattern must be a whole word + Das Pattern muss ein ganzes Wort sein + + + + Whole Cell + Gesamte Zelle + + + + Interpret search pattern as a regular expression + Suchpattern als regulären Ausdruck interpretieren + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Falls aktiviert, wird das Suchmuster als regulärer Ausdruck (UNIX-Stil) interpretiert. Siehe <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks (englisch)</a>.</p></body></html> + + + + Regular Expression + Regulärer Ausdruck + + + + + Close Find Bar + Suchbar schließen + + + + Text to replace with + Ersetzungstext + + + + Replace with + Ersetzen mit + + + + Replace next match + Nächste Übereinstimmung ersetzen + + + + + Replace + Ersetzen + + + + Replace all matches + Alle Übereinstimmungen ersetzen + + + + Replace all + Alle ersetzen + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Zum Anfang scrollen</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Ein Klick auf diesen Button navigiert zum Anfang der oben angezeigten Tabelle.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Eine Seite nach oben scrollen + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Ein Klick auf diesen Button navigiert in den Einträgen der Tabellenansicht oben eine Seite nach oben.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 von 0 + + + + Scroll one page downwards + Eine Seite nach unten scrollen + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Ein Klick auf diesen Button navigiert in den Einträgen der Tabellenansicht oben eine Seite nach unten.</p></body></html> + + + + > + > + + + + Scroll to the end + Zum Ende scrollen + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>Ein Klick auf diesen Button navigiert zum Ende der oben angezeigten Tabelle.</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html></head><body><p>Klicken Sie hier, um zu einer bestimmten Zeile zu springen</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html></head><body><p>Dieser Button kann zum Navigieren zu einer im "Springe zu"-Bereich festgelegten Zeile verwendet werden.</p></body></html> + + + + Go to: + Springe zu: + + + + Enter record number to browse + Zeilennummer zum Suchen auswählen + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Geben Sie eine Zeilennummer in diesem Bereich ein und klicken Sie auf den "Springe zu:"-Button, um die Zeile in der Datenbankansicht anzuzeigen + + + + 1 + 1 + + + + Show rowid column + Rowid-Spalte anzeigen + + + + Toggle the visibility of the rowid column + Sichtbarkeit der Rowid-Spalte umschalten + + + + Unlock view editing + Ansicht zur Bearbeitung entsperren + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Dies entsperrt die aktuelle Ansicht zur Bearbeitung. Allerdings werden zur Bearbeitung passende Trigger benötigt. + + + + Edit display format + Anzeigeformat bearbeiten + + + + Edit the display format of the data in this column + Anzeigeformat der Daten in dieser Spalte bearbeiten + + + + + New Record + Neue Zeile + + + + + Insert a new record in the current table + Fügt eine neue Zeile zur aktuellen Tabelle hinzu + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Dieser Button erstellt eine neue Zeile in der Datenbank. Halten sie die Maustaste gedrückt, um ein Popup-Menü mit verschiedenen Optionen zu öffnen:</p><ul><li><span style=" font-weight:600;">Neuer Eintrag</span>: eine neue Zeile mit Standardwerten in die Datenbank einfügen.</li><li><span style=" font-weight:600;">Werte einfügen...</span>: einen Dialog zur Eingabe von Werten öffnen, bevor diese in die Datenbank eingefügt werden. Dies erlaubt die Eingabe von Werten, die den Constraints Genüge tun. Dieser Dialog wird auch geöffnet, falls die <span style=" font-weight:600;">Neuer Eintrag</span>-Option aufgrund dieser Constraints fehlschlägt.</li></ul></body></html> + + + + + Delete Record + Zeile löschen + + + + Delete the current record + Aktuelle Zeile löschen + + + + + This button deletes the record or records currently selected in the table + Dieser Button löscht die Zeile oder Zeilen, die aktuell in der Tabelle ausgewählt sind + + + + + Insert new record using default values in browsed table + Eine neue Zeile mit den Standardwerten in den ausgewählte Tabelle einfügen + + + + Insert Values... + Werte einfügen... + + + + + Open a dialog for inserting values in a new record + Einen Dialog zum Einfügen von Werten in eine neue Zeile öffnen + + + + Export to &CSV + Nach &CSV exportieren + + + + + Export the filtered data to CSV + Die gefilterten Daten als CSV exportieren + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Dieser Button exportiert die Daten der ausgewählten Tabelle wie aktuell angezeigt (gefiltert, Anzeigeformate und Spaltenreihenfolge) als CSV-Datei. + + + + Save as &view + Als &View speichern + + + + + Save the current filter, sort column and display formats as a view + Den aktuellen Filter, die Spaltenreihenfolge und Anzeigeformate als View speichern + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Dieser Button speichert die aktuellen Einstellungen der ausgewählten Tabelle (Filter, Anzeigeformate und Spaltenreihenfolge) als SQL-View, welche Sie später durchsuchen oder in SQL-Statements verwenden können. + + + + Save Table As... + Tabelle speichern als... + + + + + Save the table as currently displayed + Tabelle wie aktuell angezeigt speichern + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>Dieses Popup-Menü bietet die folgenden Optionen zur Anwendung auf die aktuell ausgewählte und gefilterte Tabelle:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">CSV exportieren: diese Option exportiert die Daten der ausgewählten Tabelle wie aktuell angezeigt (gefiltert, Anzeigeformat und Spaltenreihenfolge) in eine CSV-Datei.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Als Ansicht speichern: diese Option speichert die aktuelle Einstellung der ausgewählten Tabelle (Filter, Anzeigeformat und Spaltenreihenfolge) als eine SQL-View, die Sie später durchsuchen oder in SQL-Statements verwenden können.</li></ul></body></html> + + + + Hide column(s) + Spalte(n) verbergen + + + + Hide selected column(s) + Ausgewählte Spalte(n) verbergen + + + + Show all columns + Alle Spalten anzeigen + + + + Show all columns that were hidden + Alle versteckten Spalten anzeigen + + + + + Set encoding + Kodierung setzen + + + + Change the encoding of the text in the table cells + Kodierung des Textes in den Tabellenzellen ändern + + + + Set encoding for all tables + Kodierung für alle Tabellen setzen + + + + Change the default encoding assumed for all tables in the database + Voreingestellte Kodierung für alle Tabellen in der Datenbank ändern + + + + Clear Filters + Filter löschen + + + + Clear all filters + Alle Filter löschen + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Dieser Button löscht alle gesetzten Filter in den Header-Eingabefeldern der aktuell angezeigten Tabelle. + + + + Clear Sorting + Sortierung löschen + + + + Reset the order of rows to the default + Die Zeilenreihenfolge auf den Standardzustand zurücksetzen + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Dieser Button setzt die angegebene Spaltensortierung für die aktuell angezeigte Tabelle zurück und verwendet die Standardreihenfolge. + + + + Print + Drucken + + + + Print currently browsed table data + Aktuell angezeigte Tabellendaten drucken + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Die aktuell angezeigten Tabellendaten drucken. Druckauswahl, falls mehr als eine Zelle ausgewählt ist. + + + + Ctrl+P + + + + + Refresh + Aktualisieren + + + + Refresh the data in the selected table + Die Daten in der ausgewählten Tabelle aktualisieren + + + + This button refreshes the data in the currently selected table. + Dieser Button aktualisiert die Daten der aktuellen Tabellenansicht. + + + + F5 + + + + + Find in cells + In Zellen suchen + + + + Open the find tool bar which allows you to search for values in the table view below. + Die Such-Toolbar öffnen, welche das Suchen nach Werten in der Tabellenansicht unten erlaubt. + + + + + Bold + Fett + + + + Ctrl+B + + + + + + Italic + Kursiv + + + + + Underline + Unterstreichung + + + + Ctrl+U + + + + + + Align Right + Rechts ausrichten + + + + + Align Left + Links ausrichten + + + + + Center Horizontally + Horizontal zentrieren + + + + + Justify + Blocksatz + + + + + Edit Conditional Formats... + Bedingte Formatierungen bearbeiten... + + + + Edit conditional formats for the current column + Bedingte Formatierungen der aktuellen Spalte bearbeiten + + + + Clear Format + Formatierung löschen + + + + Clear All Formats + Alle Formatierungen löschen + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Jegliche Zellenformatierung für die ausgewählten Zellen und alle bedingten Formatierungen für die ausgewählten Spalten löschen + + + + + Font Color + Schriftfarbe + + + + + Background Color + Hintergrundfarbe + + + + Toggle Format Toolbar + Formatierungs-Toolbar umschalten + + + + Show/hide format toolbar + Formatierungs-Toolbar anzeigen/verstecken + + + + + This button shows or hides the formatting toolbar of the Data Browser + Dieser Button zeigt oder versteckt die Formatierungs-Toolbar im Datenbrowser + + + + Select column + Spalte auswählen + + + + Ctrl+Space + + + + + Replace text in cells + Text in Zellen ersetzen + + + + Filter in any column + In allen Spalten filtern + + + + Ctrl+R + + + + + %n row(s) + + %n row + %n rows + + + + + , %n column(s) + + , %n Spalte + , %n Spalten + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Summe: %1; Durchschnitt: %2; Minimum: %3; Maximum: %4 + + + + Conditional formats for "%1" + Bedingte Formatierung for "%1" + + + + determining row count... + bestimme Zeilenanzahl... + + + + %1 - %2 of >= %3 + %1 - %2 von >= %3 + + + + %1 - %2 of %3 + %1 - %2 von %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Bitte einen Pseudo-Primärschlüssel eingeben, um die Bearbeitung dieser Ansicht zu ermöglichen. Dies sollte der Name der eindeutigen Spalte dieser Ansicht sein. + + + + Delete Records + Einträge löschen + + + + Duplicate records + Einträge duplizieren + + + + Duplicate record + Eintrag duplizieren + + + + Ctrl+" + + + + + Adjust rows to contents + Zeilen an Inhalte anpassen + + + + Error deleting record: +%1 + Fehler beim Löschen des Eintrags: +%1 + + + + Please select a record first + Bitte zuerst einen Eintrag auswählen + + + + There is no filter set for this table. View will not be created. + Es gibt keinen Filtersatz für diese Tabelle. Die Ansicht wird nicht erstellt. + + + + Please choose a new encoding for all tables. + Bitte wählen Sie eine neue Kodierung für alle Tabellen. + + + + Please choose a new encoding for this table. + Bitte wählen Sie eine neue Kodierung für diese Tabelle. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Lassen Sie das Feld leer, um die Datenbank-Kodierung zu verwenden. + + + + This encoding is either not valid or not supported. + Diese Kodierung ist entweder nicht gültig oder nicht unterstützt. + + + + %1 replacement(s) made. + %1 Ersetzung(en) durchgeführt. + + + + VacuumDialog + + + Compact Database + Datenbank komprimieren + + + + Warning: Compacting the database will commit all of your changes. + Warnung: Das Verdichten der Datenbank wird alle Ihre Änderungen übermitteln. + + + + Please select the databases to co&mpact: + Bitte wählen Sie die zu ver&dichtenden Datenbanken aus: + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_en_GB.qm b/src/SqliteDBProcess/src/translations/sqlb_en_GB.qm new file mode 100644 index 0000000..e1bf23d Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_en_GB.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_en_GB.ts b/src/SqliteDBProcess/src/translations/sqlb_en_GB.ts new file mode 100644 index 0000000..40ddcbe --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_en_GB.ts @@ -0,0 +1,6927 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + + + + + Version + + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + + + + + AddRecordDialog + + + Add New Record + + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + + + + + Name + + + + + Type + + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + + + + + Auto-increment + + + + + + Unique constraint + + + + + + Check constraint: %1 + + + + + + Foreign key: %1 + + + + + + Default value: %1 + + + + + + Error adding record. Message from database engine: + +%1 + + + + + Are you sure you want to restore all the entered values to their defaults? + + + + + Application + + + Possible command line arguments: + + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + + + + + The file %1 does not exist + + + + + The -t/--table option requires an argument + + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + + + + + Invalid option/non-existant file: %1 + + + + + SQLite Version + + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + + + + + Qt Version %1 + + + + + CipherDialog + + + SQLCipher encryption + + + + + &Password + + + + + &Reenter password + + + + + Encr&yption settings + + + + + SQLCipher &3 defaults + + + + + SQLCipher &4 defaults + + + + + Custo&m + + + + + Page si&ze + + + + + &KDF iterations + + + + + HMAC algorithm + + + + + KDF algorithm + + + + + Plaintext Header Size + + + + + Passphrase + + + + + Raw key + + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + + + + + ColumnDisplayFormatDialog + + + Choose display format + + + + + Display format + + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + + + + + Default + + + + + Decimal number + + + + + Exponent notation + + + + + Hex blob + + + + + Hex number + + + + + Apple NSDate to date + + + + + Java epoch (milliseconds) to date + + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + + + + + Unix epoch to local time + + + + + Date as dd/mm/yyyy + + + + + Lower case + + + + + Custom display format must contain a function call applied to %1 + + + + + Error in custom display format. Message from database engine: + +%1 + + + + + Custom display format must return only one column but it returned %1. + + + + + Octal number + + + + + Round number + + + + + Unix epoch to date + + + + + Upper case + + + + + Windows DATE to date + + + + + Custom + + + + + CondFormatManager + + + Conditional Format Manager + + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + + + + + Add new conditional format + + + + + &Add + + + + + Remove selected conditional format + + + + + &Remove + + + + + Move selected conditional format up + + + + + Move &up + + + + + Move selected conditional format down + + + + + Move &down + + + + + Foreground + + + + + Text color + Text colour + + + + Background + + + + + Background color + Background colour + + + + Font + + + + + Size + + + + + Bold + + + + + Italic + + + + + Underline + + + + + Alignment + + + + + Condition + + + + + + Click to select color + + + + + Are you sure you want to clear all the conditional formats of this field? + + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + + + + + Invalid file format + + + + + Do you really want to close this temporary database? All data will be lost. + + + + + Do you want to save the changes made to the database file %1? + + + + + Database didn't close correctly, probably still busy + + + + + The database is currently busy: + + + + + Do you want to abort that other operation? + + + + + Exporting database to SQL file... + + + + + + Cancel + + + + + + No database file opened + + + + + Executing SQL... + + + + + Action cancelled. + + + + + + Error in statement #%1: %2. +Aborting execution%3. + + + + + + and rolling back + + + + + didn't receive any output from %1 + + + + + could not execute command: %1 + + + + + Cannot delete this object + + + + + Cannot set data on this object + + + + + + A table with the name '%1' already exists in schema '%2'. + + + + + No table with name '%1' exists in schema '%2'. + + + + + + Cannot find column %1. + + + + + Creating savepoint failed. DB says: %1 + + + + + Renaming the column failed. DB says: +%1 + + + + + + Releasing savepoint failed. DB says: %1 + + + + + Creating new table failed. DB says: %1 + + + + + Copying data to new table failed. DB says: +%1 + + + + + Deleting old table failed. DB says: %1 + + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + + + + + could not get list of databases: %1 + + + + + Error loading extension: %1 + + + + + could not get column information + + + + + This database has already been attached. Its schema name is '%1'. + + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + + + + + could not get list of db objects: %1 + + + + + Error setting pragma %1 to %2: %3 + + + + + File not found. + + + + + DbStructureModel + + + Name + + + + + Object + + + + + Type + + + + + Schema + + + + + Database + + + + + Browsables + + + + + All + + + + + Temporary + + + + + Tables (%1) + + + + + Indices (%1) + + + + + Views (%1) + + + + + Triggers (%1) + + + + + EditDialog + + + Edit database cell + + + + + Mode: + + + + + + Image + + + + + Set as &NULL + + + + + Apply data to cell + + + + + This button saves the changes performed in the cell editor to the database cell. + + + + + Apply + + + + + Text + + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + + + + + RTL Text + + + + + Binary + + + + + JSON + + + + + XML + + + + + + Automatically adjust the editor mode to the loaded data type + + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + + + + + Auto-switch + + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + + + + + Open preview dialog for printing the data currently stored in the cell + + + + + Auto-format: pretty print on loading, compact on saving. + + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + + + + + Word Wrap + + + + + Wrap lines on word boundaries + + + + + + Open in default application or browser + + + + + Open in application + + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + + + + + Save file reference... + + + + + Save reference to file + + + + + + Open in external application + + + + + Autoformat + + + + + &Export... + + + + + + &Import... + + + + + + Import from file + + + + + + Opens a file dialog used to import any kind of data to this database cell. + + + + + Export to file + + + + + Opens a file dialog used to export the contents of this database cell to a file. + + + + + Erases the contents of the cell + + + + + This area displays information about the data present in this database cell + + + + + Type of data currently in cell + + + + + Size of data currently in table + + + + + + Print... + + + + + Open preview dialog for printing displayed image + + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + + + + + Copy Hex and ASCII + + + + + Copy selected hexadecimal and ASCII columns to the clipboard + + + + + Ctrl+Shift+C + + + + + Choose a filename to export data + + + + + Type of data currently in cell: %1 Image + + + + + %1x%2 pixel(s) + + + + + Type of data currently in cell: NULL + + + + + + Type of data currently in cell: Text / Numeric + + + + + + Image data can't be viewed in this mode. + + + + + + Try switching to Image or Binary mode. + + + + + + Binary data can't be viewed in this mode. + + + + + + Try switching to Binary mode. + + + + + + Image files (%1) + + + + + Binary files (*.bin) + + + + + Choose a file to import + + + + + %1 Image + + + + + Invalid data for this mode + + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + + + + + + + %n character(s) + + %n character + %n characters + + + + + Type of data currently in cell: Valid JSON + + + + + Type of data currently in cell: Binary + + + + + Couldn't save file: %1. + + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + + + + + + %n byte(s) + + %n byte + %n bytes + + + + + EditIndexDialog + + + &Name + + + + + Order + + + + + &Table + + + + + Edit Index Schema + + + + + &Unique + + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + + + + + Partial inde&x clause + + + + + Colu&mns + + + + + Table column + + + + + Type + + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + + + + + Index column + + + + + Deleting the old index failed: +%1 + + + + + Creating the index failed: +%1 + + + + + EditTableDialog + + + Edit table definition + + + + + Table + + + + + Advanced + + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + + + + + Without Rowid + + + + + Database sche&ma + + + + + Fields + + + + + Add + + + + + Remove + + + + + Move to top + + + + + Move up + + + + + Move down + + + + + Move to bottom + + + + + + Name + + + + + + Type + + + + + NN + + + + + Not null + + + + + PK + + + + + Primary key + + + + + AI + + + + + Autoincrement + + + + + U + + + + + + + Unique + + + + + Default + + + + + Default value + + + + + + + Check + + + + + Check constraint + + + + + Collation + + + + + + + Foreign Key + + + + + Constraints + + + + + Add constraint + + + + + Remove constraint + + + + + Columns + + + + + SQL + + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + + + + + + Primary Key + + + + + Add a primary key constraint + + + + + Add a foreign key constraint + + + + + Add a unique constraint + + + + + Add a check constraint + + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + + + + + Error creating table. Message from database engine: +%1 + + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + + + + + Column '%1' has duplicate data. + + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + + + + + ExportDataDialog + + + Export data as CSV + + + + + Tab&le(s) + + + + + Colu&mn names in first line + + + + + Fie&ld separator + + + + + , + + + + + ; + + + + + Tab + + + + + | + + + + + + + Other + + + + + &Quote character + + + + + " + + + + + ' + + + + + New line characters + + + + + Windows: CR+LF (\r\n) + + + + + Unix: LF (\n) + + + + + Pretty print + + + + + + Could not open output file: %1 + + + + + + Choose a filename to export data + + + + + Export data as JSON + + + + + exporting CSV + + + + + exporting JSON + + + + + Please select at least 1 table. + + + + + Choose a directory + + + + + Export completed. + + + + + ExportSqlDialog + + + Export SQL... + + + + + Tab&le(s) + + + + + Select All + + + + + Deselect All + + + + + &Options + + + + + Keep column names in INSERT INTO + + + + + Multiple rows (VALUES) per INSERT statement + + + + + Export everything + + + + + Export data only + + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + + + + + Export schema only + + + + + Please select at least one table. + + + + + Choose a filename to export + + + + + Export completed. + + + + + Export cancelled or failed. + + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + + + + + Find and Replace... + + + + + Print... + + + + + ExtendedTableWidget + + + Use as Exact Filter + + + + + Containing + + + + + Not containing + + + + + Not equal to + + + + + Greater than + + + + + Less than + + + + + Greater or equal + + + + + Less or equal + + + + + Between this and... + + + + + Regular expression + + + + + Edit Conditional Formats... + + + + + Set to NULL + + + + + Copy + + + + + Copy with Headers + + + + + Copy as SQL + + + + + Paste + + + + + Print... + + + + + Use in Filter Expression + + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + + + + + FileExtensionManager + + + File Extension Manager + + + + + &Up + + + + + &Down + + + + + &Add + + + + + &Remove + + + + + + Description + + + + + Extensions + + + + + *.extension + + + + + FilterLineEdit + + + Filter + + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + + + + + Clear All Conditional Formats + + + + + Use for Conditional Format + + + + + Edit Conditional Formats... + + + + + Set Filter Expression + + + + + What's This? + + + + + Is NULL + + + + + Is not NULL + + + + + Is empty + + + + + Is not empty + + + + + Not containing... + + + + + Equal to... + + + + + Not equal to... + + + + + Greater than... + + + + + Less than... + + + + + Greater or equal... + + + + + Less or equal... + + + + + In range... + + + + + Regular expression... + + + + + FindReplaceDialog + + + Find and Replace + + + + + Fi&nd text: + + + + + Re&place with: + + + + + Match &exact case + + + + + Match &only whole words + + + + + When enabled, the search continues from the other end when it reaches one end of the page + + + + + &Wrap around + + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + + + + + Search &backwards + + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + + + + + &Selection only + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Use regular e&xpressions + + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + + + + + &Find Next + + + + + F3 + + + + + &Replace + + + + + Highlight all the occurrences of the text in the page + + + + + F&ind All + + + + + Replace all the occurrences of the text in the page + + + + + Replace &All + + + + + The searched text was not found + + + + + The searched text was not found. + + + + + The searched text was found one time. + + + + + The searched text was found %1 times. + + + + + The searched text was replaced one time. + + + + + The searched text was replaced %1 times. + + + + + ForeignKeyEditor + + + &Reset + + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + + + + + ImportCsvDialog + + + Import CSV file + + + + + Table na&me + + + + + &Column names in first line + + + + + Field &separator + + + + + , + + + + + ; + + + + + + Tab + + + + + | + + + + + Other + + + + + &Quote character + + + + + + Other (printable) + + + + + + Other (code) + + + + + " + + + + + ' + + + + + &Encoding + + + + + UTF-8 + + + + + UTF-16 + + + + + ISO-8859-1 + + + + + Trim fields? + + + + + Separate tables + + + + + Advanced + + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + + + + + Ignore default &values + + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + + + + + Fail on missing values + + + + + Disable data type detection + + + + + Disable the automatic data type detection when creating a new table. + + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + + + + + Abort import + + + + + Ignore row + + + + + Replace existing row + + + + + Conflict strategy + + + + + + Deselect All + + + + + Match Similar + + + + + Select All + + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + + + + + There is already a table named '%1'. Do you want to import the data into it? + + + + + Creating restore point failed: %1 + + + + + Creating the table failed: %1 + + + + + importing CSV + + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + + + + + Inserting row failed: %1 + + + + + MainWindow + + + DB Browser for SQLite + + + + + toolBar1 + + + + + Opens the SQLCipher FAQ in a browser window + + + + + Export one or more table(s) to a JSON file + + + + + &File + + + + + &Import + + + + + &Export + + + + + &Edit + + + + + &View + + + + + &Help + + + + + DB Toolbar + + + + + Edit Database &Cell + + + + + DB Sche&ma + + + + + &Remote + + + + + + Execute current line + + + + + This button executes the SQL statement present in the current editor line + + + + + Shift+F5 + + + + + Sa&ve Project + + + + + Open an existing database file in read only mode + + + + + User + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + + + + + Un/comment block of SQL code + + + + + Un/comment block + + + + + Comment or uncomment current line or selected block of code + + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + + + + + Ctrl+/ + + + + + Stop SQL execution + + + + + Stop execution + + + + + Stop the currently running SQL script + + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + + + + + &Tools + + + + + Application + + + + + Error Log + + + + + This button clears the contents of the SQL logs + + + + + &Clear + + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + + + + + + Project Toolbar + + + + + Extra DB toolbar + + + + + + + Close the current database file + + + + + &New Database... + + + + + + Create a new database file + + + + + This option is used to create a new database file. + + + + + Ctrl+N + + + + + + &Open Database... + + + + + + + + + Open an existing database file + + + + + + + This option is used to open an existing database file. + + + + + Ctrl+O + + + + + &Close Database + + + + + This button closes the connection to the currently open database file + + + + + + Ctrl+W + + + + + + Revert database to last saved state + + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + + + + + + Write changes to the database file + + + + + This option is used to save changes to the database file. + + + + + Ctrl+S + + + + + Compact &Database... + + + + + Compact the database file, removing space wasted by deleted records + + + + + + Compact the database file, removing space wasted by deleted records. + + + + + E&xit + + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + + + + + Export a database to a .sql dump text file. + + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + + + + + Export a database table as a comma separated text file. + + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + + + + + + Delete Table + + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + + + + + &Preferences... + + + + + + Open the preferences window. + + + + + &DB Toolbar + + + + + Shows or hides the Database toolbar. + + + + + Shift+F1 + + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + Execute line + + + + + &Wiki + + + + + F1 + + + + + Bug &Report... + + + + + Feature Re&quest... + + + + + Web&site + + + + + &Donate on Patreon... + + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + This button lets you open a DB Browser for SQLite project file + + + + + Ctrl+Shift+O + + + + + &Save Project As... + + + + + + + Save the project in a file selected in a dialog + + + + + Save A&ll + + + + + + + Save DB file, project file and opened SQL files + + + + + Ctrl+Shift+S + + + + + Browse Table + + + + + &Attach Database... + + + + + + Add another database file to the current database connection + + + + + This button lets you add another database file to the current database connection + + + + + &Set Encryption... + + + + + SQLCipher &FAQ + + + + + Table(&s) to JSON... + + + + + Open Data&base Read Only... + + + + + Save results + + + + + Save the results view + + + + + This button lets you save the results of the last executed query + + + + + + Find text in SQL editor + + + + + Find + + + + + This button opens the search bar of the editor + + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + + + + + Find or replace + + + + + This button opens the find/replace dialog for the current editor tab + + + + + Ctrl+H + + + + + Export to &CSV + + + + + Save as &view + + + + + Save as view + + + + + Shows or hides the Project toolbar. + + + + + Extra DB Toolbar + + + + + New In-&Memory Database + + + + + Drag && Drop Qualified Names + + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + + + + + Drag && Drop Enquoted Names + + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + + + + + &Integrity Check + + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + + + + + &Foreign-Key Check + + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + + + + + &Quick Integrity Check + + + + + Run a quick integrity check over the open DB + + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + + + + + &Optimize + + + + + Attempt to optimize the database + + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + + + + + + Print + + + + + Print text from current SQL editor tab + + + + + Open a dialog for printing the text in the current SQL editor tab + + + + + Print the structure of the opened database + + + + + Open a dialog for printing the structure of the opened database + + + + + &Recently opened + + + + + Open &tab + + + + + Ctrl+T + + + + + SQL &Log + + + + + Show S&QL submitted by + + + + + &Plot + + + + + Ctrl+F4 + + + + + &Revert Changes + + + + + &Write Changes + + + + + &Database from SQL file... + + + + + &Table from CSV file... + + + + + &Database to SQL file... + + + + + &Table(s) as CSV file... + + + + + &Create Table... + + + + + &Delete Table... + + + + + &Modify Table... + + + + + Create &Index... + + + + + W&hat's This? + + + + + &About + + + + + This button opens a new tab for the SQL editor + + + + + &Execute SQL + + + + + Execute all/selected SQL + + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + + + + + + + Save SQL file + + + + + &Load Extension... + + + + + Ctrl+E + + + + + Export as CSV file + + + + + Export table as comma separated values file + + + + + + Save the current session to a file + + + + + Open &Project... + + + + + + Load a working session from a file + + + + + + Save SQL file as + + + + + This button saves the content of the current SQL editor tab to a file + + + + + &Browse Table + + + + + Copy Create statement + + + + + Copy the CREATE statement of the item to the clipboard + + + + + Ctrl+Return + + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Encrypted + + + + + Read only + + + + + Database file is read only. Editing the database is disabled. + + + + + Database encoding + + + + + Database is encrypted using SQLCipher + + + + + + Choose a database file + + + + + + + Choose a filename to save under + + + + + Error checking foreign keys after table modification. The changes will be reverted. + + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + + + + + + At line %1: + + + + + Result: %2 + + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + + + + + Choose a file to import + + + + + Text files(*.sql *.txt);;All files(*) + + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + + + + + Window Layout + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + + + + + Do you want to save the changes made to the project file '%1'? + + + + + File %1 already exists. Please choose a different name. + + + + + Error importing data: %1 + + + + + Import completed. + + + + + Delete View + + + + + Modify View + + + + + Delete Trigger + + + + + Modify Trigger + + + + + Delete Index + + + + + Modify Index + + + + + Modify Table + + + + + Do you want to save the changes made to SQL tabs in a new project file? + + + + + Do you want to save the changes made to the SQL file %1? + + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + + + + + Could not find resource file: %1 + + + + + Choose a project file to open + + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + + + + + Could not open project file for writing. +Reason: %1 + + + + + Busy (%1) + + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + + + + + Reset Window Layout + + + + + Alt+0 + + + + + The database is currenctly busy. + + + + + Click here to interrupt the currently running query. + + + + + Could not open database file. +Reason: %1 + + + + + In-Memory database + + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + + + + + Are you sure you want to delete the view '%1'? + + + + + Are you sure you want to delete the trigger '%1'? + + + + + Are you sure you want to delete the index '%1'? + + + + + Error: could not delete the table. + + + + + Error: could not delete the view. + + + + + Error: could not delete the trigger. + + + + + Error: could not delete the index. + + + + + Message from database engine: +%1 + + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + + + + + -- EXECUTING SELECTION IN '%1' +-- + + + + + -- EXECUTING LINE IN '%1' +-- + + + + + -- EXECUTING ALL IN '%1' +-- + + + + + Result: %1 + + + + + %1 rows returned in %2ms + + + + + Choose text files + + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + &%1 %2%3 + + + + + (read only) + + + + + Open Database or Project + + + + + Attach Database... + + + + + Import CSV file(s)... + + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + + + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + + + + + Select SQL file to open + + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Rename Tab + + + + + Duplicate Tab + + + + + Close Tab + + + + + Opening '%1'... + + + + + There was an error opening '%1'... + + + + + Value is not a valid URL or filename: %1 + + + + + Select file name + + + + + Select extension file + + + + + Extension successfully loaded. + + + + + Error loading extension: %1 + + + + + + Don't show again + + + + + New version available. + + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + + + + + Project saved to file '%1' + + + + + Collation needed! Proceed? + + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + + + + + creating collation + + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + + + + + Please specify the view name + + + + + There is already an object with that name. Please choose a different name. + + + + + View successfully created. + + + + + Error creating view: %1 + + + + + This action will open a new SQL tab for running: + + + + + Press Help for opening the corresponding SQLite reference page. + + + + + DB Browser for SQLite project file (*.sqbpro) + + + + + Execution finished with errors. + + + + + Execution finished without errors. + + + + + NullLineEdit + + + Set to NULL + + + + + Alt+Del + + + + + PlotDock + + + Plot + + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used colour for that graph.</p></body></html> + + + + Columns + + + + + X + + + + + Y1 + + + + + Y2 + + + + + Axis Type + + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + + + + + Line type: + + + + + + None + + + + + Line + + + + + StepLeft + + + + + StepRight + + + + + StepCenter + + + + + Impulse + + + + + Point shape: + + + + + Cross + + + + + Plus + + + + + Circle + + + + + Disc + + + + + Square + + + + + Diamond + + + + + Star + + + + + Triangle + + + + + TriangleInverted + + + + + CrossSquare + + + + + PlusSquare + + + + + CrossCircle + + + + + PlusCircle + + + + + Peace + + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + + + + + Save current plot... + + + + + + Load all data and redraw plot + + + + + + + Row # + + + + + Copy + + + + + Print... + + + + + Show legend + + + + + Stacked bars + + + + + Date/Time + + + + + Date + + + + + Time + + + + + + Numeric + + + + + Label + + + + + Invalid + + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + + + + + Choose an axis color + Choose an axis colour + + + + Choose a filename to save under + + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + + + + + Loading all remaining data for this table took %1ms. + + + + + PreferencesDialog + + + Preferences + + + + + &General + + + + + Remember last location + + + + + Always use this location + + + + + Remember last location for session only + + + + + + + ... + + + + + Default &location + + + + + Lan&guage + + + + + Automatic &updates + + + + + + + + + + + + + enabled + + + + + Show remote options + + + + + &Database + + + + + Database &encoding + + + + + Open databases with foreign keys enabled. + + + + + &Foreign keys + + + + + SQ&L to execute after opening database + + + + + Data &Browser + + + + + Remove line breaks in schema &view + + + + + Prefetch block si&ze + + + + + Default field type + + + + + Font + + + + + &Font + + + + + Content + + + + + Symbol limit in cell + + + + + NULL + + + + + Regular + + + + + Binary + + + + + Background + + + + + Filters + + + + + Threshold for completion and calculation on selection + + + + + Escape character + + + + + Delay time (&ms) + + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + + + + + &SQL + + + + + Settings name + + + + + Context + + + + + Colour + + + + + Bold + + + + + Italic + + + + + Underline + + + + + Keyword + + + + + Function + + + + + Table + + + + + Comment + + + + + Identifier + + + + + String + + + + + Current line + + + + + SQL &editor font size + + + + + Tab size + + + + + SQL editor &font + + + + + Error indicators + + + + + Hori&zontal tiling + + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + + + + + Code co&mpletion + + + + + Toolbar style + + + + + + + + + Only display the icon + + + + + + + + + Only display the text + + + + + + + + + The text appears beside the icon + + + + + + + + + The text appears under the icon + + + + + + + + + Follow the style + + + + + DB file extensions + + + + + Manage + + + + + Main Window + + + + + Database Structure + + + + + Browse Data + + + + + Execute SQL + + + + + Edit Database Cell + + + + + When this value is changed, all the other color preferences are also set to matching colors. + + + + + Follow the desktop style + + + + + Dark style + + + + + Application style + + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + + + + + Database structure font size + + + + + Font si&ze + + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + + + + + Show images in cell + + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + + + + + Field display + + + + + Displayed &text + + + + + + + + + + Click to set this color + + + + + Text color + Text colour + + + + Background color + Background colour + + + + Preview only (N/A) + + + + + Foreground + + + + + SQL &results font size + + + + + &Wrap lines + + + + + Never + + + + + At word boundaries + + + + + At character boundaries + + + + + At whitespace boundaries + + + + + &Quotes for identifiers + + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + + + + + "Double quotes" - Standard SQL (recommended) + + + + + `Grave accents` - Traditional MySQL quotes + + + + + [Square brackets] - Traditional MS SQL Server quotes + + + + + Keywords in &UPPER CASE + + + + + When set, the SQL keywords are completed in UPPER CASE letters. + + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + &Extensions + + + + + Select extensions to load for every database: + + + + + Add extension + + + + + Remove extension + + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + + + + + Disable Regular Expression extension + + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + + + + + Allow loading extensions from SQL code + + + + + Remote + + + + + CA certificates + + + + + Proxy + + + + + Configure + + + + + + Subject CN + + + + + Common Name + + + + + Subject O + + + + + Organization + + + + + + Valid from + + + + + + Valid to + + + + + + Serial number + + + + + Your certificates + + + + + File + + + + + Subject Common Name + + + + + Issuer CN + + + + + Issuer Common Name + + + + + Clone databases into + + + + + + Choose a directory + + + + + The language will change after you restart the application. + + + + + Select extension file + + + + + Extensions(*.so *.dylib *.dll);;All files(*) + + + + + Import certificate file + + + + + No certificates found in this file. + + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + + + + + ProxyDialog + + + Proxy Configuration + + + + + Pro&xy Type + + + + + Host Na&me + + + + + Port + + + + + Authentication Re&quired + + + + + &User Name + + + + + Password + + + + + None + + + + + System settings + + + + + HTTP + + + + + Socks v5 + + + + + QObject + + + Error importing data + + + + + from record number %1 + + + + + . +%1 + + + + + Importing CSV file... + + + + + Cancel + + + + + All files (*) + + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + + + + + Left + + + + + Right + + + + + Center + + + + + Justify + + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + + + + + DB Browser for SQLite Project Files (*.sqbpro) + + + + + SQL Files (*.sql) + + + + + All Files (*) + + + + + Text Files (*.txt) + + + + + Comma-Separated Values Files (*.csv) + + + + + Tab-Separated Values Files (*.tsv) + + + + + Delimiter-Separated Values Files (*.dsv) + + + + + Concordance DAT files (*.dat) + + + + + JSON Files (*.json *.js) + + + + + XML Files (*.xml) + + + + + Binary Files (*.bin *.dat) + + + + + SVG Files (*.svg) + + + + + Hex Dump Files (*.dat *.bin) + + + + + Extensions (*.so *.dylib *.dll) + + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + + + + + Author + + + + + Size + + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + + + + + Error creating local databases list. +%1 + + + + + RemoteDock + + + Remote + + + + + Identity + + + + + Push currently opened database to server + + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Local + + + + + Current Database + + + + + Clone + + + + + User + + + + + Database + + + + + Branch + + + + + Commits + + + + + Commits for + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + + + + + Back + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + Select an identity to connect + + + + + Public + + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + + + + + Branch + + + + + Last modified + + + + + Size + + + + + Commit + + + + + File + + + + + RemoteModel + + + Name + + + + + Commit + + + + + Last modified + + + + + Size + + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + + + + + Error: Invalid client certificate specified. + + + + + Please enter the passphrase for this client certificate in order to authenticate. + + + + + Cancel + + + + + Uploading remote database to +%1 + + + + + Downloading remote database from +%1 + + + + + + Error: The network is not accessible. + + + + + Error: Cannot open the file for sending. + + + + + RemotePushDialog + + + Push database + + + + + Database na&me to push to + + + + + Commit message + + + + + Database licence + + + + + Public + + + + + Branch + + + + + Force push + + + + + Username + + + + + Database will be public. Everyone has read access to it. + + + + + Database will be private. Only you have access to it. + + + + + Use with care. This can cause remote commits to be deleted. + + + + + RunSql + + + Execution aborted by user + + + + + , %1 rows affected + + + + + query executed successfully. Took %1ms%2 + + + + + executing query + + + + + SelectItemsPopup + + + A&vailable + + + + + Sele&cted + + + + + SqlExecutionArea + + + Form + + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + The found pattern must be a whole word + + + + + Whole Words + + + + + Text pattern to find considering the checks in this frame + + + + + Find in editor + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + + + + + Results of the last executed statements + + + + + This field shows the results and status codes of the last executed statements. + + + + + Couldn't read file: %1. + + + + + + Couldn't save file: %1. + + + + + Your changes will be lost when reloading it! + + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + + + + + (X) ltrim(X) removes spaces from the left side of X. + + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + + + + + (X) rtrim(X) removes spaces from the right side of X. + + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + + + + + (X) trim(X) removes spaces from both ends of X. + + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + + + + + SqliteTableModel + + + reading rows + + + + + loading... + + + + + References %1(%2) +Hold %3Shift and click to jump there + + + + + Error changing data: +%1 + + + + + retrieving list of columns + + + + + Fetching data... + + + + + + Cancel + + + + + TableBrowser + + + Browse Data + + + + + &Table: + + + + + Select a table to browse data + + + + + Use this list to select a table to be displayed in the database view + + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + + + + + Text pattern to find considering the checks in this frame + + + + + Find in table + + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + The found pattern must be a whole word + + + + + Whole Cell + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + Text to replace with + + + + + Replace with + + + + + Replace next match + + + + + + Replace + + + + + Replace all matches + + + + + Replace all + + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + + + + + |< + + + + + Scroll one page upwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + + + + + < + + + + + 0 - 0 of 0 + + + + + Scroll one page downwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + + + + + > + + + + + Scroll to the end + + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + + + + + Go to: + + + + + Enter record number to browse + + + + + Type a record number in this area and click the Go to: button to display the record in the database view + + + + + 1 + + + + + Show rowid column + + + + + Toggle the visibility of the rowid column + + + + + Unlock view editing + + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + + + + + Edit display format + + + + + Edit the display format of the data in this column + + + + + + New Record + + + + + + Insert a new record in the current table + + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + + + + + + Delete Record + + + + + Delete the current record + + + + + + This button deletes the record or records currently selected in the table + + + + + + Insert new record using default values in browsed table + + + + + Insert Values... + + + + + + Open a dialog for inserting values in a new record + + + + + Export to &CSV + + + + + + Export the filtered data to CSV + + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + + + + + Save as &view + + + + + + Save the current filter, sort column and display formats as a view + + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + + + + + Save Table As... + + + + + + Save the table as currently displayed + + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + + + + + Hide column(s) + + + + + Hide selected column(s) + + + + + Show all columns + + + + + Show all columns that were hidden + + + + + + Set encoding + + + + + Change the encoding of the text in the table cells + + + + + Set encoding for all tables + + + + + Change the default encoding assumed for all tables in the database + + + + + Clear Filters + + + + + Clear all filters + + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + + + + + Clear Sorting + + + + + Reset the order of rows to the default + + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + + + + + Print + + + + + Print currently browsed table data + + + + + Print currently browsed table data. Print selection if more than one cell is selected. + + + + + Ctrl+P + + + + + Refresh + + + + + Refresh the data in the selected table + + + + + This button refreshes the data in the currently selected table. + + + + + F5 + + + + + Find in cells + + + + + Open the find tool bar which allows you to search for values in the table view below. + + + + + + Bold + + + + + Ctrl+B + + + + + + Italic + + + + + + Underline + + + + + Ctrl+U + + + + + + Align Right + + + + + + Align Left + + + + + + Center Horizontally + + + + + + Justify + + + + + + Edit Conditional Formats... + + + + + Edit conditional formats for the current column + + + + + Clear Format + + + + + Clear All Formats + + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + + + + + + Font Color + + + + + + Background Color + + + + + Toggle Format Toolbar + + + + + Show/hide format toolbar + + + + + + This button shows or hides the formatting toolbar of the Data Browser + + + + + Select column + + + + + Ctrl+Space + + + + + Replace text in cells + + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + %n row + %n rows + + + + + , %n column(s) + + , %n column + , %n columns + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + + + + + Conditional formats for "%1" + + + + + determining row count... + + + + + %1 - %2 of >= %3 + + + + + %1 - %2 of %3 + + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + + + + + Delete Records + + + + + Duplicate records + + + + + Duplicate record + + + + + Ctrl+" + + + + + Adjust rows to contents + + + + + Error deleting record: +%1 + + + + + Please select a record first + + + + + There is no filter set for this table. View will not be created. + + + + + Please choose a new encoding for all tables. + + + + + Please choose a new encoding for this table. + + + + + %1 +Leave the field empty for using the database encoding. + + + + + This encoding is either not valid or not supported. + + + + + %1 replacement(s) made. + + + + + VacuumDialog + + + Compact Database + + + + + Warning: Compacting the database will commit all of your changes. + + + + + Please select the databases to co&mpact: + + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_es_ES.qm b/src/SqliteDBProcess/src/translations/sqlb_es_ES.qm new file mode 100644 index 0000000..cf849f0 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_es_ES.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_es_ES.ts b/src/SqliteDBProcess/src/translations/sqlb_es_ES.ts new file mode 100644 index 0000000..00d716f --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_es_ES.ts @@ -0,0 +1,7034 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + Acerca de «DB Browser for SQLite» + + + + Version + Versión + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>«DB Browser for SQLite» es una herramienta visual, libre y de fuente abierta usada para crear, diseñar y editar archivos de bases de datos SQLite.</p><p>Está licenciada dualmente con la Mozilla Public License Versión 2, y con la GNU General Public License Versión 3 o posterior. Puede modificarla o redistribuirla bajo las condiciones de estas licencias.</p><p>Vea <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> y <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> para más detalles.</p><p>Para más información sobre este programa visite nuestra página web: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">Esta aplicación utiliza GPL/LGPL Qt Toolkit de </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Vea </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> para los términos de licencia e información.</span></p><p><span style=" font-size:small;">Además utiliza el conjunto de iconos Silk de Mark James licenciado bajo la licencia Creative Commons Attribution 2.5 y 3.0.<br/>Vea </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> para los detalles.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Añadir nuevo registro + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Introduzca valores para el nuevo registro teniendo en cuenta las restricciones. Los campos en negrita son obligatorios. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + En la columna Valor puede especificar el valor del campo identificado en la columna Nombre. La columna Tipo indica el tipo de campo. Los valores por defecto se muestran en la misma tipografía que los valores NULL. + + + + Name + Nombre + + + + Type + Tipo + + + + Value + Valor + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Valores a insertar. Los valores mostrados por defecto son insertados automáticamente a menos que se cambien. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Cuando se editan los valores en el cuadro superior, aquí se muestra la consulta SQL para insertar este nuevo registro. Puede editarla antes de guardar. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Guardar</span> enviará a la base de datos la sentencia SQL mostrada para insertar el nuevo registro.</p><p><span style=" font-weight:600;">Restituir valores por Defecto</span> restituirá los valores iniciales en la columna <span style=" font-weight:600;">Valor</span></p><p><span style=" font-weight:600;">Cancelar</span> cierra este diálogo sin ejecutar la consulta.</p></body></html> + + + + Auto-increment + + Auto-incremento + + + + + Unique constraint + + Restricción UNIQUE + + + + + Check constraint: %1 + + Restricción CHECK: %1 + + + + + Foreign key: %1 + + Clave foránea: %1 + + + + + Default value: %1 + + Valor por defecto: %1 + + + + + Error adding record. Message from database engine: + +%1 + Error añadiendo registro. Mensaje de la base de datos: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + ¿Está seguro de que quiere restaurar todos los valores introducidos a sus valores por defecto? + + + + Application + + + Possible command line arguments: + Argumentos de línea de comandos disponibles: + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + Las opciones -o/--option y -O/--save-option requieren un argumento de la forma grupo/ajuste=valor + + + + Usage: %1 [options] [<database>|<project>] + + Uso: %1 [opciones] [<base de datos>|<proyecto>] + + + + + -h, --help Show command line options + -h, --help Mostrar opciones de línea de comandos + + + + -q, --quit Exit application after running scripts + -q, --quit Salir de la aplicación tras ejecutar los scripts + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <archivo> Ejecuta este archivo de SQL tras abrir la base de datos + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <tabla> Mostrar esta tabla en la hoja de datos tras abrir la base de datos + + + + -R, --read-only Open database in read-only mode + -R, --read-only Abrir base de datos en modo de solo-lectura + + + + -o, --option <group>/<setting>=<value> + -o, --option <grupo>/<ajuste>=<valor> + + + + Run application with this setting temporarily set to value + Ejecutar la aplicación con este ajuste establecido temporalmente a este valor + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <grupo>/<ajuste>=<valor> + + + + Run application saving this value for this setting + Ejecutar la aplicación guardando este valor para este ajuste + + + + -v, --version Display the current version + -v, --version Mostrar la versión actual + + + + <database> Open this SQLite database + <base de datos> Abrir esta base de datos SQLite + + + + <project> Open this project file (*.sqbpro) + <proyecto> Abrir este archivo de proyecto (*.sqbpro) + + + + The -s/--sql option requires an argument + La opción -s/--sql necesita un argumento + + + + The file %1 does not exist + El archivo %1 no existe + + + + The -t/--table option requires an argument + La opción -t/--table necesita un argumento + + + + SQLite Version + Versión de SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + Versión de SQLCipher %1 (basado en SQLite %2) + + + + DB Browser for SQLite Version %1. + «DB Browser for SQLite» Versión %1. + + + + Built for %1, running on %2 + Compilado para %1, ejecutándose en %2 + + + + Qt Version %1 + Versión de Qt %1 + + + + Invalid option/non-existant file: %1 + Opción inválida o archivo inexistente: %1 + + + + CipherDialog + + + SQLCipher encryption + Cifrado con SQLCipher + + + + &Password + &Clave + + + + &Reenter password + &Reintroducir clave + + + + Encr&yption settings + Ajustes de &cifrado + + + + SQLCipher &3 defaults + Predeterminados de SQLCipher &3 + + + + SQLCipher &4 defaults + Predeterminados de SQLCipher &4 + + + + Custo&m + &Personalizado + + + + Page si&ze + &Tamaño de página + + + + &KDF iterations + Iteraciones &KDF + + + + HMAC algorithm + Algoritmo HMAC + + + + KDF algorithm + Algoritmo KDF + + + + Plaintext Header Size + Tamaño de la cabecera del texto en claro + + + + Passphrase + Frase de contraseña + + + + Raw key + Clave en bruto + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Por favor, elija una clave para cifrar la base de datos. +Tenga en cuenta que: +- Si modifica cualquiera de los otros ajustes opcionales necesitará + reintroducirlos también cada vez que abra la base de datos. +- Puede dejar los campos de clave en blanco para no usar cifrado. +- El proceso de cifrado puede llevar algún tiempo. +- ¡Debería hacer una copia de respaldo de la base de datos! +- Los cambios no guardados son aplicados antes de modificar el cifrado. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Por favor, introduzca la clave a usar en el cifrado de la base de datos. +Si se modificaron cualquiera de los otros ajustes para este archivo de base de datos, también tendrá que proporcionar esta información. + + + + ColumnDisplayFormatDialog + + + Choose display format + Elija el formato de presentación + + + + Display format + Formato de presentación + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Elija el formato para la columna «%1» el cual se aplicará a cada valor antes de mostrarlo. + + + + Default + Por defecto + + + + Decimal number + Número decimal + + + + Exponent notation + Notación exponencial + + + + Hex blob + Secuencia hexadecimal + + + + Hex number + Número hexadecimal + + + + Apple NSDate to date + Fecha de Apple NSDate a fecha + + + + Java epoch (milliseconds) to date + Tiempo Java (milisegundos) a fecha + + + + .NET DateTime.Ticks to date + DateTime.Ticks de .NET a fecha + + + + Julian day to date + Fecha juliana a fecha + + + + Unix epoch to local time + Tiempo Unix a hora local + + + + Date as dd/mm/yyyy + Fecha dd/mm/aaaa + + + + Lower case + Minúsculas + + + + Custom display format must contain a function call applied to %1 + El formato de presentación a medida tiene que contener una llamada de función aplicada a %1 + + + + Error in custom display format. Message from database engine: + +%1 + Error en el formato de presentación a medida. Mensaje del motor de la base de datos: + +%1 + + + + Custom display format must return only one column but it returned %1. + El formato de presentación a medida debe devolver sólo una columna pero ha devuelto %1. + + + + Octal number + Número octal + + + + Round number + Número redondeado + + + + Unix epoch to date + Tiempo Unix a fecha + + + + Upper case + Mayúsculas + + + + Windows DATE to date + Fecha Windows a fecha + + + + Custom + A medida + + + + CondFormatManager + + + Conditional Format Manager + Gestor de Formato Condicional + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + Este diálogo permite crear y editar formatos condicionales. Cada estilo de celda será seleccionado por la primera condición que se cumpla para los datos de esa celda. Los formatos condicionales se pueden mover arriba y abajo, teniendo precedencia aquellos en líneas superiores sobre los inferiores. La sintaxis es la misma que para los filtros y se aplica una condición vacía a todos los valores. + + + + Add new conditional format + Añadir un nuevo formato condicional + + + + &Add + &Añadir + + + + Remove selected conditional format + Elimina el formato condicional seleccionado + + + + &Remove + &Eliminar + + + + Move selected conditional format up + Mueve arriba el formato condicional seleccionado + + + + Move &up + Mueve a&rriba + + + + Move selected conditional format down + Mueve abajo el formato condicional seleccionado + + + + Move &down + Mueve a&bajo + + + + Foreground + Texto + + + + Text color + Color del texto + + + + Background + Fondo + + + + Background color + Color del fondo + + + + Font + Tipo de letra + + + + Size + Tamaño + + + + Bold + Negrita + + + + Italic + Cursiva + + + + Underline + Subrayado + + + + Alignment + Justificado + + + + Condition + Condición + + + + + Click to select color + Haga clic para seleccionar el color + + + + Are you sure you want to clear all the conditional formats of this field? + ¿Está seguro de que quiere borrar todos los formatos condicionales de este campo? + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + Por favor, especifique el nombre con el que acceder a la base de datos anexada + + + + Invalid file format + Formato de archivo inválido + + + + Do you want to save the changes made to the database file %1? + ¿Guardar los cambios hechos al archivo de base de datos «%1»? + + + + Exporting database to SQL file... + Exportando base de datos a un archivo SQL... + + + + + Cancel + Cancelar + + + + Executing SQL... + Ejecutando SQL... + + + + Action cancelled. + Acción cancelada. + + + + This database has already been attached. Its schema name is '%1'. + Esta base de datos ya ha sido anexada. Su nombre de esquema es «%1». + + + + Do you really want to close this temporary database? All data will be lost. + ¿Está seguro de que quiere cerrar esta base de datos temporal? Todos los datos se perderán. + + + + Database didn't close correctly, probably still busy + La base de datos no se ha cerrado correctamente, probablemente todavía está ocupada + + + + The database is currently busy: + La base de datos está actualmente ocupada: + + + + Do you want to abort that other operation? + ¿Desea abortar la otra operación? + + + + + No database file opened + No hay una base de datos abierta + + + + + Error in statement #%1: %2. +Aborting execution%3. + Error en la sentencia #%1: %2. +Abortando ejecución%3. + + + + + and rolling back + y deshaciendo cambios + + + + didn't receive any output from %1 + no se recibió ninguna salida de «%1» + + + + could not execute command: %1 + no se pudo ejecutar el comando: «%1» + + + + Cannot delete this object + No se puede borrar este objeto + + + + Cannot set data on this object + No se pueden poner datos en este objeto + + + + + A table with the name '%1' already exists in schema '%2'. + Una tabla con el nombre «%1» ya existe en el esquema «%2». + + + + No table with name '%1' exists in schema '%2'. + No existe una tabla con el nombre «%1» en el esquema «%2». + + + + + Cannot find column %1. + No se puede encontrar la columna %1. + + + + Creating savepoint failed. DB says: %1 + Creación del punto de guardado fallido. La base de datos dice: %1 + + + + Renaming the column failed. DB says: +%1 + Renombrado de la columna fallido. La base de datos dice: +%1 + + + + + Releasing savepoint failed. DB says: %1 + Liberación del punto de guardado fallido. La base de datos dice: %1 + + + + Creating new table failed. DB says: %1 + Creación de la nueva tabla fallida. La base de datos dice: %1 + + + + Copying data to new table failed. DB says: +%1 + Copia de datos a la nueva table fallida. La base de datos dice: +%1 + + + + Deleting old table failed. DB says: %1 + Borrado de tabla fallido. La base de datos dice: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + Error renombrando la tabla «%1» a «%2». +Mensaje de la base de datos: +%3 + + + + could not get list of db objects: %1 + No se pudo obtener la lista de objetos de la base de datos: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + La restitución de algunos de los objetos asociados con esta tabla ha fallado. Lo más probable es que esto suceda porque los nombres de algunas columnas han cambiado. Esta es la sentencia SQL que puede que quiera corregir y ejecutar manualmente: + + + + + + could not get list of databases: %1 + no se pudo obtener lista de bases de datos: %1 + + + + Error loading extension: %1 + Error cargando la extensión: %1 + + + + could not get column information + No se pudo obtener información de la columna + + + + Error setting pragma %1 to %2: %3 + Error definiendo pragma %1 como %2: %3 + + + + File not found. + Archivo no encontrado. + + + + DbStructureModel + + + Name + Nombre + + + + Object + Objeto + + + + Type + Tipo + + + + Schema + Esquema + + + + Database + Base de datos + + + + Browsables + Navegables + + + + All + Todos + + + + Temporary + Temporal + + + + Tables (%1) + Tablas (%1) + + + + Indices (%1) + Índices (%1) + + + + Views (%1) + Vistas (%1) + + + + Triggers (%1) + Disparadores (%1) + + + + EditDialog + + + Edit database cell + Editar celda de la base de datos + + + + Mode: + Modo: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Esta es la lista de modos admitidos en el editor de celdas. Elija un modo para visualizar o editar los datos de la celda actual. + + + + RTL Text + Texto RTL + + + + + Image + Imagen + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + Ajustar automáticamente el modo de edición al tipo de datos cargados + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Esta casilla activa o desactiva el cambio automático del modo de edición. Cuando se selecciona una nueva celda o se importan nuevos datos y la selección automática está activada, el modo de edición se ajusta al tipo de datos detectados. El modo de edición para la celda se puede cambiar manualmente. Si prefiere mantener el modo de edición seleccionado manualmente mientras se mueve por las celdas, desmarque la casilla. + + + + Auto-switch + Auto-selección + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + Los modos de edición de texto permiten editar texto plano, y también JSON o XML con resaltado de sintaxis, formato automático y validación previa a guardar. + +Los errores se indican con un subrayado ondulado en rojo. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Este editor Qt se usa para scripts de derecha-a-izquierda, que no están soportados por el editor de Texto por defecto. Al detectar la presencia de caracteres de derecha-a-izquierda este modo de edición se activa automáticamente. + + + + Open preview dialog for printing the data currently stored in the cell + Abrir diálogo de previsualización para imprimir los datos actualmente almacenados en la celda + + + + Auto-format: pretty print on loading, compact on saving. + Auto-formato: dar formato al cargar, compactar al guardar. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Si se habilita, la opción de auto-formato da formato a los datos al cargarlos, rompiendo y sangrando las líneas de texto para una legibilidad máxima. Al guardar los datos, esta opción los compacta, eliminando fines de línea y espacio en blanco innecesario. + + + + Word Wrap + Ajuste del Texto + + + + Wrap lines on word boundaries + Ajustar las líneas en palabras completas + + + + + Open in default application or browser + Abrir en la aplicacion por defecto o navegador + + + + Open in application + Abrir en una aplicacion + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + El valor es interpretado como un nombre de archivo o URL y abierto en la aplicación por defecto del sistema o el navegador de internet. + + + + Save file reference... + Guardar referencia de archivo... + + + + Save reference to file + Guardar referencia a archivo + + + + + Open in external application + Abrir en una aplicación externa + + + + Autoformat + Auto-formato + + + + &Export... + &Exportar... + + + + + &Import... + &Importar... + + + + + Import from file + Importar desde archivo + + + + + Opens a file dialog used to import any kind of data to this database cell. + Abre un diálogo para elegir el archivo para importar cualquier tipo de datos a esta celda. + + + + Export to file + Exportar a archivo + + + + Opens a file dialog used to export the contents of this database cell to a file. + Abre un diálogo para elegir el archivo al que exportar el contenido de esta celda de la base de datos. + + + + + Print... + Imprimir... + + + + Open preview dialog for printing displayed image + Abre un diálogo de previsualización para imprimir la imagen mostrada + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Abre un diálogo de previsualización para imprimir el texto mostrado + + + + Copy Hex and ASCII + Copiar hex. y ASCII + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Copia las columnas seleccionadas en hexadecimal y ASCII al portapapeles + + + + Ctrl+Shift+C + + + + + Set as &NULL + Borrar a &NULL + + + + Apply data to cell + Aplicar los datos a la celda + + + + This button saves the changes performed in the cell editor to the database cell. + Este botón guarda los cambios realizados en el editor a la celda de la base de datos. + + + + Apply + Aplicar + + + + Text + Texto + + + + Binary + Binario + + + + Erases the contents of the cell + Borra el contenido de la celda + + + + This area displays information about the data present in this database cell + Esta zona muestra información acerca de los datos presentes en esta celda de la base de datos + + + + Type of data currently in cell + Tipo de datos actualmente en la celda + + + + Size of data currently in table + Tamaño de los datos actualmente en la tabla + + + + Choose a filename to export data + Seleccione un nombre de archivo para exportar los datos + + + + + Image data can't be viewed in this mode. + Datos de imagen no se puede visualizar en este modo. + + + + + Try switching to Image or Binary mode. + Intente cambiando al modo «Imagen» o «Binario». + + + + + Binary data can't be viewed in this mode. + Datos binarios no se puede visualizar en este modo. + + + + + Try switching to Binary mode. + Intente cambiando al modo «Binario». + + + + + Image files (%1) + Archivos de imagen (%1) + + + + Binary files (*.bin) + Archivos binarios (*.bin) + + + + Choose a file to import + Seleccione el archivo a importar + + + + %1 Image + %1 Imagen + + + + Invalid data for this mode + Datos inválidos para este modo + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + La celda contiene datos de tipo %1 inválidos. Razón: «%2». ¿Realmente desea aplicarlos a la celda? + + + + Type of data currently in cell: %1 Image + El tipo de datos en la celda es: Imagen %1 + + + + %1x%2 pixel(s) + %1×%2 píxel(s) + + + + Type of data currently in cell: NULL + El tipo de datos en la celda es: NULL + + + + Type of data currently in cell: Valid JSON + Tipo de datos actualmente en la celda: JSON válido + + + + Couldn't save file: %1. + No se pudo guardar el archivo: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + Los datos se han guardado en un archivo temporal y se ha abierto con la aplicación por defecto. Ahora puede editar ese archivo y cuado termine puede aplicar los nuevos datos guardados a la celda o cancelar los cambios. + + + + + Type of data currently in cell: Text / Numeric + Tipo de datos actualmente en la celda: Texto / Numérico + + + + + + %n character(s) + + %n carácter + %n caracteres + + + + + Type of data currently in cell: Binary + Tipo de datos actualmente en la celda: Binario + + + + + %n byte(s) + + %n byte + %n bytes + + + + + EditIndexDialog + + + &Name + &Nombre + + + + Order + Orden + + + + &Table + &Tabla + + + + Edit Index Schema + Editar índice del esquema + + + + &Unique + &Único + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Para restringir el índice exclusivamente a una parte de la tabla hay que especificar aquí una cláusula WHERE que seleccione la parte de la tabla que será indexada + + + + Partial inde&x clause + Cláusula para inde&xado parcial + + + + Colu&mns + Colu&mnas + + + + Table column + Columna de la tabla + + + + Type + Tipo + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Añade una nueva columna computada al índice. Las columnas computadas contienen una expresión SQL en lugar de nombres de columna. + + + + Index column + Columna de índice + + + + Deleting the old index failed: +%1 + Borrado del índice previo fallido: +%1 + + + + Creating the index failed: +%1 + Creación de índice fallida: +%1 + + + + EditTableDialog + + + Edit table definition + Editar la definición de la tabla + + + + Table + Tabla + + + + Advanced + Avanzado + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Hacer de esta una tabla «SIN rowid». Para activar este flag es necesario un campo de tipo ENTERO con la clave primaria activada y el indicador de autoincremento desactivado. + + + + Without Rowid + Sin Rowid + + + + Fields + Campos + + + + Database sche&ma + Esque&ma de la base de datos + + + + Add + Añadir + + + + Remove + Eliminar + + + + Move to top + Mover al principio + + + + Move up + Mover hacia arriba + + + + Move down + Mover hacia abajo + + + + Move to bottom + Mover al final + + + + + Name + Nombre + + + + + Type + Tipo + + + + NN + NN + + + + Not null + No nulo + + + + PK + PK + + + + Primary key + Clave primaria + + + + AI + AI + + + + Autoincrement + Autoincremento + + + + U + U + + + + + + Unique + Único + + + + Default + Por defecto + + + + Default value + Valor por defecto + + + + + + Check + Check + + + + Check constraint + Restricción de «check» + + + + Collation + Comparación + + + + + + Foreign Key + Clave foránea + + + + Constraints + Restricciones + + + + Add constraint + Añadir restricción + + + + Remove constraint + Eliminar restricción + + + + Columns + Columnas + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Aviso: </span>algo ocurre con la definición de esta tabla que nuestro intérprete no entiende completamente. Modificar y guardar esta tabla podría traer problemas.</p></body></html> + + + + + Primary Key + Clave Primaria + + + + Add a primary key constraint + Añadir una restricción de clave primaria + + + + Add a foreign key constraint + Añadir una restricción de clave foránea + + + + Add a unique constraint + Añadir una restricción de único" + + + + Add a check constraint + Añadir una restricción de «check» + + + + Error creating table. Message from database engine: +%1 + Error creando la tabla. Mensaje de la base de datos: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Ya hay un campo con este nombre. Por favor, renómbrelo antes o elija un nombre diferente para este campo. + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Sólo puede existir una clave primaria en cada tabla. Por favor, modifique la clave primaria existente. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Esta columna está referenciada en una clave foránea en la tabla %1 y por tanto no se le puede cambiar el nombre. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Hay al menos una línea con este campo NULO. Esto hace imposible activar este flag. Por favor, modifique antes los datos de la tabla. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Hay al menos una línea con un valor no entero en este campo. Esto hace imposible activar el flag AI. Por favor, modifique antes los datos de la tabla. + + + + Column '%1' has duplicate data. + + La columna «%1» tiene datos duplicados. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Como en otros textos, pasamos los términos estándar de SQL a mayúsculas para evitar traducirlos, lo que podría ser más confuso para el usuario experto y no tener beneficio para el inexperto. + Esto imposibilita la habilitación de la restricción UNIQUE. Por favor, elimine primero los datos duplicados, lo cual permitirá habilitar la restricción UNIQUE. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + ¿Está seguro de que quiere borrar este campo «%1»? +Todos los datos actualmente almacenados en este campo se perderán. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Por favor añada un campo que cumpla las siguientes condiciones antes de activar el indicador «sin rowid»: + - Indicador de clave primaria activado + - Indicador de autoincremento desactivado + + + + ExportDataDialog + + + Export data as CSV + Exportar datos como CSV + + + + Tab&le(s) + Tab&la(s) + + + + Colu&mn names in first line + Nombres de las &columnas en la primera línea + + + + Fie&ld separator + &Separador de campos + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + Otro + + + + &Quote character + &Entrecomillado + + + + " + " + + + + ' + ' + + + + New line characters + Caracteres de nueva línea + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Impresión formateada + + + + + Could not open output file: %1 + No se puede abrir el archivo de salida: %1 + + + + + Choose a filename to export data + Seleccione un nombre de archivo para exportar los datos + + + + Export data as JSON + Exportar datos como JSON + + + + exporting CSV + exportando CSV + + + + exporting JSON + exportando JSON + + + + Please select at least 1 table. + Por favor, seleccione al menos 1 tabla. + + + + Choose a directory + Seleccione una carpeta + + + + Export completed. + Exportación completada. + + + + ExportSqlDialog + + + Export SQL... + Exportar SQL... + + + + Tab&le(s) + Tab&la(s) + + + + Select All + Seleccionar Todo + + + + Deselect All + Deseleccionar Todo + + + + &Options + &Opciones + + + + Keep column names in INSERT INTO + Mantener el nombre de la columna en INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Múltiples líneas (VALUES) en cada sentencia INSERT + + + + Export everything + Exportar todo + + + + Export data only + Exportar solo los datos + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Mantener esquema previo (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Sobrescribir esquema previo (DROP TABLE, después CREATE TABLE) + + + + Export schema only + Exportar solo el esquema + + + + Please select at least one table. + Por favor, seleccione al menos una tabla. + + + + Choose a filename to export + Seleccione un nombre de archivo al que exportar + + + + Export completed. + Exportación completada. + + + + Export cancelled or failed. + Exportación cancelada o fallida. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Buscar... + + + + Find and Replace... + Buscar y reemplazar... + + + + Print... + Imprimir... + + + + ExtendedTableWidget + + + Use as Exact Filter + Usar como filtro exacto + + + + Containing + Conteniendo + + + + Not containing + Que no contenga + + + + Not equal to + No igual a + + + + Greater than + Mayor que + + + + Less than + Menor que + + + + Greater or equal + Mayor o igual + + + + Less or equal + Menor o igual + + + + Between this and... + Entre esto y... + + + + Regular expression + Expresión regular + + + + Edit Conditional Formats... + Editar formatos condicionales... + + + + Set to NULL + Poner a NULL + + + + Copy + Copiar + + + + Copy with Headers + Copiar con cabeceras + + + + Copy as SQL + Copiar como SQL + + + + Paste + Pegar + + + + Print... + Imprimir... + + + + Use in Filter Expression + Usar en expresión de filtro + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>No se han cargado todos los datos. <b>¿Quiere cargar todos los datos antes de seleccionar todas las filas?</b><p><p>Responder <b>No</b> significa que no se cargarán mas datos y la selección no se se realizará.<br/>Responder <b>Sí</b> puede tardar un tiempo mientras los datos se cargan pero la selección se realizará en su totalidad.</p>Precaución: Cargar todos los datos puede necesitar una gran cantidad de memoria para tablas grandes. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + No se puede ajustar la selección a NULL. La columna %1 tiene una restricción NOT NULL. + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + El contenido del portapapeles es mayor que el rango seleccionado. +¿Quiere insertarlo de todos modos? + + + + FileExtensionManager + + + File Extension Manager + Gestor de extensiones de archivos + + + + &Up + &Subir + + + + &Down + &Bajar + + + + &Add + &Añadir + + + + &Remove + &Eliminar + + + + + Description + Descripción + + + + Extensions + Extensiones + + + + *.extension + *.extensión + + + + FilterLineEdit + + + Filter + Filtro + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Estos campos de texto permiten realizar filtros rápidos sobre la tabla actualmente seleccionada. +Por defecto, las filas que contengan el texto introducido se muestran. +Los siguientes operadores también se admiten: +% Comodín +> Mayor que +< Menor que +>= Igual o mayor que +<= Igual o menor que += Igual a: correspondencia exacta +<> Distinto: correspondencia inversa exacta +x~y Rango: valores entre x e y + + + + Clear All Conditional Formats + Eliminar todos los formatos condicionales + + + + Use for Conditional Format + Usar para formato condicional + + + + Edit Conditional Formats... + Editar formatos condicionales... + + + + Set Filter Expression + Establecer expresión de filtro + + + + What's This? + ¿Qué es esto? + + + + Is NULL + Es nulo + + + + Is not NULL + No es nulo + + + + Is empty + Es vacío + + + + Is not empty + No es vacío + + + + Not containing... + No contiene... + + + + Equal to... + Igual a... + + + + Not equal to... + No igual a... + + + + Greater than... + Mayor que... + + + + Less than... + Menor que... + + + + Greater or equal... + Mayor o igual... + + + + Less or equal... + Menor o igual... + + + + In range... + En el rango... + + + + Regular expression... + Expresión regular... + + + + FindReplaceDialog + + + Find and Replace + Buscar y reemplazar + + + + Fi&nd text: + &Buscar texto: + + + + Re&place with: + &Reemplazar con: + + + + Match &exact case + Distinguir &mayús. y minús. + + + + Match &only whole words + &Solo palabras completas + + + + When enabled, the search continues from the other end when it reaches one end of the page + Si se habilita, la búsqueda continua desde el otro extremo cuando llega a un extremo de la página + + + + &Wrap around + &Dar la vuelta + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Si se marca, la búsqueda va hacia atrás desde la posición del cursor. De lo contrario va hacia adelante + + + + Search &backwards + Buscar hacia &atrás + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>Si se marca, el patrón de búsqueda se limita a buscar sólo en la selección.</p></body></html> + + + + &Selection only + En la &selección + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Si se marca, el patrón de búsqueda se interpreta como una expresión regular UNIX. Véase <a href="https://es.wikipedia.org/wiki/Expresi%C3%B3n_regular">«Expresión regular» en Wikipedia</a>.</p></body></html> + + + + Use regular e&xpressions + Usar e&xpresiones regulares + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Encontrar la siguiente ocurrencia desde la posición del cursor y en la dirección definida por «Buscar hacia atrás» + + + + &Find Next + Buscar &siguiente + + + + F3 + + + + + &Replace + R&eemplazar + + + + Highlight all the occurrences of the text in the page + Resaltar todas las ocurrencias del texto en la página + + + + F&ind All + Encontrar &todo + + + + Replace all the occurrences of the text in the page + Reemplazar todas las ocurrencias del texto en la página + + + + Replace &All + Reem&plazar todo + + + + The searched text was not found + El texto buscado no fue encontrado + + + + The searched text was not found. + El texto buscado no fue encontrado. + + + + The searched text was found one time. + El texto buscado fue encontrado una vez. + + + + The searched text was found %1 times. + El texto buscado fue encontrado %1 veces. + + + + The searched text was replaced one time. + El texto buscado fue reemplazado una vez. + + + + The searched text was replaced %1 times. + El texto buscado fue reemplazado %1 veces. + + + + ForeignKeyEditor + + + &Reset + &Reiniciar + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Cláusulas de clave foránea (ON UPDATE, ON DELETE etc.) + + + + ImportCsvDialog + + + Import CSV file + Importar archivo CSV + + + + Table na&me + &Nombre de la tabla + + + + &Column names in first line + Nombres de &columna en la primera línea + + + + Field &separator + &Separador de campos + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + | + + + + Other + Otro + + + + &Quote character + &Entrecomillado + + + + + Other (printable) + Otro (imprimible) + + + + + Other (code) + Otro (código) + + + + " + " + + + + ' + ' + + + + &Encoding + &Codificación + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + ¿Recortar campos? + + + + Separate tables + Tablas separadas + + + + Advanced + Avanzado + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + Cuando se importe un valor vacío desde el archivo CSV a una tabla existente con un valor por defecto para la columna, ese valor por defecto es insertado. Active esta opción si, por el contrario, desea insertar un valor vacío para esta columna. + + + + Ignore default &values + Ignorar &valores por defecto + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Active esta opción para para la importación cuando se intente importar un valor vacío a una columna NOT NULL sin un valor por defecto. + + + + Fail on missing values + Fallar cuando falten valores + + + + Disable data type detection + Deshabilitar detección de tipo + + + + Disable the automatic data type detection when creating a new table. + Deshabilitar la detección automática de tipo cuando se esté creando una nueva tabla. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Cuando se importa a una tabla existente con una clave primaria, restricciones de único o un índice de único, existe la posibilidad de que se genere un conflicto. Esta opción le permite elegir la estrategia en esos casos: Por defecto la importación se aborta y se deshacen los cambios pero también puede elegir ignorar y no importar las filas conflictivas o reemplazar las filas existentes en la tabla. + + + + Abort import + Abortar importación + + + + Ignore row + Ignorar fila + + + + Replace existing row + Reemplazar la fila existente + + + + Conflict strategy + Estrategia para conflictos + + + + + Deselect All + Deseleccionar Todo + + + + Match Similar + Emparejar Similares + + + + Select All + Seleccionar Todo + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Ya existe una tabla con nombre «%1» y una importación a una tabla existente solo es posible si el número de columnas coincide. + + + + There is already a table named '%1'. Do you want to import the data into it? + Ya existe una tabla con nombre «%1». ¿Desea importar los datos cargándolos en ella? + + + + Creating restore point failed: %1 + Creación del punto de restauración fallido: %1 + + + + Creating the table failed: %1 + Creación de la tabla fallido: %1 + + + + importing CSV + importando CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + Importar el archivo «%1» tardó %2ms. De ellos, %3ms se gastaron en la función fila. + + + + Inserting row failed: %1 + Inserción de línea fallido: %1 + + + + MainWindow + + + DB Browser for SQLite + DB Browser for SQLite + + + + toolBar1 + toolBar1 + + + + This button clears the contents of the SQL logs + Este botón limpia el contenido del historial SQL + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Este panel le permite examinar el histórico de todos los comandos SQL ordenados por la aplicación o por usted mismo + + + + + Project Toolbar + Barra de herramientas de proyectos + + + + Extra DB toolbar + Barra de herramientas extra + + + + + + Close the current database file + Cierra el archivo de base de datos actual + + + + This button closes the connection to the currently open database file + Este botón cierra la conexión con el archivo de base de datos actualmente abierto + + + + Ctrl+F4 + + + + + Compact &Database... + Compactar base de &datos... + + + + &About + &Acerca de + + + + This button opens a new tab for the SQL editor + Este botón abre una nueva pestaña para el editor SQL + + + + Execute all/selected SQL + Ejecuta todo el SQL (o la selección) + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Este botón ejecuta las sentencias SQL actualmente seleccionadas. Si no hay ningún texto seleccionado, se ejecutan todas las sentencias. + + + + &Load Extension... + &Cargar extensión... + + + + Execute line + Ejecutar línea + + + + This button executes the SQL statement present in the current editor line + Este botón ejecuta la sentencia SQL presente en la línea actual del editor + + + + &Wiki + &Wiki + + + + F1 + + + + + Bug &Report... + &Informar de fallos... + + + + Feature Re&quest... + Solicitud de &mejoras... + + + + Web&site + &Sitio web + + + + &Donate on Patreon... + &Donar en Patreon... + + + + Open &Project... + Abrir &proyecto... + + + + &Attach Database... + Ane&xar base de datos... + + + + + Add another database file to the current database connection + Añade un archivo de base de datos adicional a la conexión actual + + + + This button lets you add another database file to the current database connection + Este botón le permite añadir otro archivo de base de datos a la conexión de base de datos actual + + + + &Set Encryption... + &Establecer cifrado... + + + + This button saves the content of the current SQL editor tab to a file + Este botón guarda el contenido de la pestaña actual del editor SQL a un archivo + + + + SQLCipher &FAQ + SQLCipher &FAQ + + + + Find + Buscar + + + + Find or replace + Buscar o reemplazar + + + + Ctrl+H + + + + + Open SQL file(s) + Abrir archivo(s) SQL + + + + This button opens files containing SQL statements and loads them in new editor tabs + Este botón abre archivos que contengan sentencias SQL y los carga en pestañas nuevas del editor + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + Este botón le permite guardar todos los ajustes asociados a la base de datos abierta a un archivo de proyecto de «DB Browser for SQLite» + + + + This button lets you open a DB Browser for SQLite project file + Este botón le permite abrir un archivo de proyecto «DB Browser for SQLite» + + + + New In-&Memory Database + Nueva base de datos en &memoria + + + + Drag && Drop Qualified Names + Arrastrar y soltar nombres calificados + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Usa nombres calificados (p.ej. "Tabla"."Campo") al arrastrar los objetos y soltarlos en el editor + + + + Drag && Drop Enquoted Names + Arrastrar y soltar nombres entrecomillados + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Usa identificadores escapados (p.ej. "Tabla1") al arrastrar los objetos y soltarlos en el editor + + + + &Integrity Check + Comprobar &integridad + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Ejecuta el pragma integrity_check en la base de datos abierta y devuelve los resultados en la pestaña Ejecutar SQL. Este pragma realiza una comprobación de integridad de toda la base de datos. + + + + &Foreign-Key Check + Comprobar clave &foránea + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Ejecuta el pragma foreign_key_check con la base de datos abierta y devuelve los resultados en la pestaña Ejecutar SQL. + + + + &Quick Integrity Check + Comprobar integridad &rápido + + + + Run a quick integrity check over the open DB + Ejecuta una comprobación de integridad rápida en la base de datos abierta + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Ejecuta el pragma quick_check en la base de datos abierta y devuelve los resultados en la pestaña Executar SQL. Este comando hace la mayoría de comprobaciones de PRAGMA integrity_check pero se ejecuta mucho más rápido. + + + + &Optimize + &Optimizar + + + + Attempt to optimize the database + Intenta optimizar la base de datos + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Ejecuta el pragma optimize en la base de datos abierta. Este pragma realiza optimizaciones que pueden mejorar el rendimiento de consultas futuras. + + + + + Print + Imprimir + + + + Print text from current SQL editor tab + Imprime el texto de la pestaña actual del editor SQL + + + + Open a dialog for printing the text in the current SQL editor tab + Abre un diálogo para imprimir el texto de la pestaña actual del editor SQL + + + + Print the structure of the opened database + Imprime la estructura de la base de datos abierta + + + + Open a dialog for printing the structure of the opened database + Abre un diálogo para imprimir la estructura de la base de datos abierta + + + + Un/comment block of SQL code + Des/comentar bloque de código SQL + + + + Un/comment block + Des/comentar bloque de código + + + + Comment or uncomment current line or selected block of code + Comenta o descomenta la línea actual o el bloque de código seleccionado + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Comenta o descomenta las líneas seleccionadas o la línea actual cuando no hay selección. El estado de todo el bloque es intercambiado en función de la primera línea. + + + + Ctrl+/ + + + + + Stop SQL execution + Detener ejecución de SQL + + + + Stop execution + Detener ejecución + + + + Stop the currently running SQL script + Detener el script SQL que está ejecutándose + + + + &Save Project As... + &Guardar proyecto como... + + + + + + Save the project in a file selected in a dialog + Guarda el proyecto en un archivo seleccionado en una ventana de diálogo + + + + Save A&ll + Guardar &todo + + + + + + Save DB file, project file and opened SQL files + Guarda los archivos de la base de datos, el proyecto y los archivos SQL abiertos + + + + Ctrl+Shift+S + + + + + Browse Table + Navegar Tabla + + + + Shows or hides the Project toolbar. + Muestra u oculta la barra de herramientas de proyecto. + + + + Extra DB Toolbar + Barra de herramientas extra + + + + Export one or more table(s) to a JSON file + Exportar una o más tablas a un archivo JSON + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Esta es la estructura de la base de datos abierta. +Puede arrastrar sentencias SQL desde una fila de objeto y soltarlas en otras aplicaciones o en otra instancia de «DB Browser for SQLite». + + + + + Table(&s) to JSON... + Tabla(&s) a JSON... + + + + Open Data&base Read Only... + Abrir &base de datos como solo lectura... + + + + Ctrl+Shift+O + + + + + Save results + Guardar resultados + + + + Save the results view + Guarda la vista de resultados + + + + This button lets you save the results of the last executed query + Este botón le permite guardar los resultados de la última consulta ejecutada + + + + + Find text in SQL editor + Buscar texto en el editor SQL + + + + This button opens the search bar of the editor + Este botón abre la barra de búsqueda del editor + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Buscar o reemplazar texto en el editor SQL + + + + This button opens the find/replace dialog for the current editor tab + Este botón abre el diálogo de buscar/reemplazar para la pestaña actual del editor + + + + Export to &CSV + Exportar a &CSV + + + + Save as &view + Guardar como &vista + + + + Save as view + Guardar como vista + + + + Open an existing database file in read only mode + Abre una base de datos existente en modo de solo lectura + + + + &File + &Archivo + + + + &Import + &Importar + + + + &Export + E&xportar + + + + &Edit + &Editar + + + + &View + &Ver + + + + &Help + Ay&uda + + + + &Tools + &Herramientas + + + + DB Toolbar + DB Toolbar + + + + Edit Database &Cell + Editar &celda + + + + Error Log + Registro de errores + + + + DB Sche&ma + Esque&ma + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Esta es la estructura de la base de datos abierta. +Puede arrastrar múltiples objetos de la columna Nombre, soltarlos en el editor SQL y ajustar sus propiedades usando el menú contextual. Esto le ayudará a componer sentencias SQL. +Puede arrastrar sentencias SQL desde la columna Esquema y soltarlas en el editor SQL o en otras aplicaciones. + + + + + &Remote + &Remoto + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + Ejecutar SQL + + + + + Execute current line + Ejecuta la línea actual + + + + Shift+F5 + + + + + Sa&ve Project + &Guardar proyecto + + + + User + Usuario + + + + Application + Aplicación + + + + &Clear + &Limpiar + + + + &New Database... + &Nueva base de datos... + + + + + Create a new database file + Crea un nuevo archivo de base de datos + + + + This option is used to create a new database file. + Esta opción se usa para crear un nuevo archivo de base de datos. + + + + Ctrl+N + + + + + + &Open Database... + &Abrir base de datos... + + + + + + + + Open an existing database file + Abre un archivo de base de datos + + + + + + This option is used to open an existing database file. + Esta opción se usa para abrir un archivo de base de datos. + + + + Ctrl+O + + + + + &Close Database + &Cerrar base de datos + + + + + Ctrl+W + + + + + Opens the SQLCipher FAQ in a browser window + Abre la FAQ de SQLCipher en una ventana del navegador + + + + + Revert database to last saved state + Deshace los cambios al último estado guardado + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Esta opción se usa para deshacer los cambios en la base de datos actual al último estado guardado. Todos los cambios hechos desde la última vez que se guardó se perderán. + + + + + Write changes to the database file + Escribe los cambios al archivo de la base de datos + + + + This option is used to save changes to the database file. + Esta opción se usa para guardar los cambios en el archivo de la base de datos. + + + + Ctrl+S + + + + + Compact the database file, removing space wasted by deleted records + Compacta el archivo de la base de datos eliminando el espacio malgastado por los registros borrados + + + + + Compact the database file, removing space wasted by deleted records. + Compacta el archivo de la base de datos, eliminando el espacio malgastado por los registros borrados. + + + + E&xit + &Salir + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Importa datos de un archivo de texto con un volcado .sql en una base de datos nueva o existente. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Esta opción se usa para importar datos de un archivo de texto con un volcado .sql en una base de datos nueva o existente. Los archivos de volcado SQL se pueden crear en la mayoría de los motores de base de datos, incluyendo MySQL y PostgreSQL. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Abre un asistente que le permite importar datos desde un archivo de texto con valores separado por comas a una tabla de una base de datos. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Abre un asistente que le permite importar datos desde un archivo de texto con valores separado por comas a una tabla de una base de datos. Los archivos CSV se pueden crear en la mayoría de las aplicaciones de bases de datos y hojas de cálculo. + + + + Export a database to a .sql dump text file. + Exporta la base de datos como un volcado .sql a un archivo de texto. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Esta opción le permite exportar la base de datos como un volcado .sql a un archivo de texto. Los archivos de volcado SQL contienen todos los datos necesarios para recrear la base de datos en la mayoría de los motores de base de datos, incluyendo MySQL y PostgreSQL. + + + + Export a database table as a comma separated text file. + Exporta la base de datos como un archivo de texto con valores separados por comas. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Exporta la base de datos como un archivo de texto con valores separados por comas, listo para ser importado en otra base de datos o aplicaciones de hoja de cálculo. + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Abre el asistente para Crear una Tabla, donde se puede definir el nombre y los campos de una nueva tabla en la base de datos + + + + + Delete Table + Borrar tabla + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Abre el asistente para «Borrar tabla», donde se puede seleccionar una tabla de la base de datos para borrar. + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Abre el asistente «Modificar tabla», donde se puede renombrar una tabla existente de la base de datos. También se pueden añadir o borrar campos de la tabla, así como modificar los nombres de los campos y sus tipos. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Abre el asistente «Crear índice», donde se puede definir un nuevo índice de una tabla existente de la base de datos. + + + + &Preferences... + &Preferencias... + + + + + Open the preferences window. + Abrir la ventana de preferencias. + + + + &DB Toolbar + &Barra de herramientas + + + + Shows or hides the Database toolbar. + Muestra u oculta la barra de herramientas de la base de datos. + + + + Shift+F1 + + + + + &Recently opened + Archivos &recientes + + + + Open &tab + Abrir &pestaña + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Estructura + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Hoja de datos + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Editar pragmas + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Aviso: este pragma no es legible y este valor se ha supuesto. Escribir el pragma puede sobreescribir un LIKE redefinido que proporcione una extensión de SQLite. + + + + SQL &Log + Historial de &SQL + + + + Show S&QL submitted by + Mostrar S&QL ejecutado por + + + + &Plot + &Gráfica + + + + &Revert Changes + &Deshacer cambios + + + + &Write Changes + &Guardar cambios + + + + &Database from SQL file... + Base de datos de &archivo SQL... + + + + &Table from CSV file... + &Tabla de archivo CSV... + + + + &Database to SQL file... + &Base de datos a archivo SQL... + + + + &Table(s) as CSV file... + &Tabla(s) a archivo CSV... + + + + &Create Table... + &Crear tabla... + + + + &Delete Table... + &Borrar tabla... + + + + &Modify Table... + &Modificar tabla... + + + + Create &Index... + Crear &índice... + + + + W&hat's This? + ¿&Qué es esto? + + + + &Execute SQL + &Ejecutar SQL + + + + + + Save SQL file + Guardar archivo SQL + + + + Ctrl+E + + + + + Export as CSV file + Exportar como archivo CSV + + + + Export table as comma separated values file + Exportar tabla como archivo de valores separados por comas + + + + + Save the current session to a file + Guarda la sesión actual en un archivo + + + + + Load a working session from a file + Carga una sesión de trabajo de un archivo + + + + + Save SQL file as + Guardar archivo SQL como + + + + &Browse Table + &Mostrar datos + + + + Copy Create statement + Copiar sentencia CREATE + + + + Copy the CREATE statement of the item to the clipboard + Copia la sentencia CREATE del ítem al portapapeles + + + + Ctrl+Return + + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Encrypted + Cifrado + + + + Read only + Solo lectura + + + + Database file is read only. Editing the database is disabled. + El archivo de la base de datos es de solo lectura. La edición de la base de datos está desactivada. + + + + Database encoding + Codificación de la base de datos + + + + Database is encrypted using SQLCipher + La base de datos está cifrada usando SQLCipher + + + + + Choose a database file + Seleccione un archivo de base de datos + + + + + + Choose a filename to save under + Seleccione un nombre de archivo en el que guardar + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Error mientras se guardaba el archivo de la base de datos. Esto significa que no todos lo cambios hechos a la base de datos se han guardado. Antes tiene que solucionar el siguiente error. +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + ¿Está seguro de que quiere deshacer todos los cambios hechos al archivo de la base de datos «%1» desde la última vez que se guardó? + + + + Choose a file to import + Seleccione el archivo a importar + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (sólo lectura) + + + + Open Database or Project + Abrir base de datos o proyecto + + + + Attach Database... + Ane&xar base de datos... + + + + Import CSV file(s)... + Importar archivo(s) CSV... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Seleccione la acción a aplicar al archivo. + Seleccione la acción a aplicar a los archivos <br/>Nota: sólo 'Importar' procesará más de un archivo. + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + ¿Quiere guardar los cambios hechos a las pestañas SQL en el archivo de proyecto «%1»? + + + + Text files(*.sql *.txt);;All files(*) + Archivos de texto(*.sql *.txt);;Todos los archivos(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + ¿Quiere crear un nuevo archivo de base de datos donde poner los datos importados? +Si responde no se intentarán importar los datos del archivo SQL en la base de datos actual. + + + + Do you want to save the changes made to the project file '%1'? + ¿Quiere guardar los cambios hechos al archivo de proyecto «%1»? + + + + Edit View %1 + Editar vista %1 + + + + Edit Trigger %1 + Editar disparador %1 + + + + Result: %1 + Resultado: %1 + + + + File %1 already exists. Please choose a different name. + El archivo %1 ya existe. Por favor elija un nombre diferente. + + + + Error importing data: %1 + Error importando datos: %1 + + + + Import completed. + Importación completada. + + + + Delete View + Borrar vista + + + + Modify View + Modificar vista + + + + Delete Trigger + Borrar disparador + + + + Modify Trigger + Modificar disparador + + + + Delete Index + Borrar índice + + + + Modify Index + Modificar índice + + + + Modify Table + Modificar tabla + + + + Opened '%1' in read-only mode from recent file list + Se ha abierto «%1» en modo de sólo lectura desde la lista de archivos recientes + + + + Opened '%1' from recent file list + Se ha abierto «%1» desde la lista de archivos recientes + + + + This action will open a new SQL tab with the following statements for you to edit and run: + Esta acción abrirá una nueva pestaña SQL con las siguientes sentencias para que usted las pueda modificar y ejecutar: + + + + Rename Tab + Renombrar Pestaña + + + + Duplicate Tab + Duplicar Pestaña + + + + Close Tab + Cerrar Pestaña + + + + Opening '%1'... + Abriendo «%1»... + + + + There was an error opening '%1'... + Hubo un error abriendo «%1»... + + + + Value is not a valid URL or filename: %1 + Valor no es un nombre de archivo o URL válido: %1 + + + + Do you want to save the changes made to SQL tabs in a new project file? + ¿Quiere guardar los cambios hechos a las pestañas SQL en un nuevo archivo de proyecto? + + + + Do you want to save the changes made to the SQL file %1? + ¿Quiere guardar los cambios hechos al archivo SQL %1? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + Las sentencias en esta pestaña todavía se están ejecutando. Al cerrar la pestaña detendrá la ejecución. Esto puede dejar la base de datos en un estado inconsistente. ¿Está seguro de que quiere cerrar la pestaña? + + + + Could not find resource file: %1 + No se pudo encontrar el archivo de recursos: %1 + + + + Choose a project file to open + Seleccione un archivo de proyecto para abrir + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Este archivo de proyecto está usando un formato antiguo porque fue creado usando una versión 3.10 o inferior de «DB Browser for SQLite». La carga de este archivo aún está completamente soportada pero le recomendamos convertir todos sus archivos de proyecto al nuevo formato porque el soporte de formatos antiguos podría ser descartado en algún momento futuro. Puede convertir sus archivos simplemente abriéndolos y guardándolos de nuevo. + + + + Could not open project file for writing. +Reason: %1 + No se pudo abrir el archivo de proyecto para escritura. +Motivo: %1 + + + + Collation needed! Proceed? + ¡Es necesaria una función de comparación! ¿Proceder? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Una tabla en esta base de datos necesita una función de comparación especial «%1» que esta aplicación no puede proporcionar sin más información. +Si decide continuar, está avisado de que la base de datos se puede dañar. +¡Cree una copia de respaldo! + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Al definir los valores de PRAGMA se consolidará la transacción actual. +¿Está seguro? + + + + Window Layout + Disposición de la ventana + + + + Reset Window Layout + Reiniciar disposición + + + + Alt+0 + + + + + Simplify Window Layout + Simplificar disposición + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + Acoplar ventanas en la parte inferior + + + + Dock Windows at Left Side + Acoplar ventanas en la parte izquierda + + + + Dock Windows at Top + Acoplar ventanas en la parte superior + + + + The database is currenctly busy. + La base de datos está ocupada + + + + Click here to interrupt the currently running query. + Haga clic aquí para interrumpir la consulta que se está ejecutando + + + + Could not open database file. +Reason: %1 + No se pudo abrir el archivo de base de datos. +Razón: %1 + + + + In-Memory database + Base de datos en memoria + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Todavía se están ejecutando sentencias SQL. Al cerrar la base de datos se detendrá la ejecución. Esto puede dejar la base de datos en un estado inconsistente. ¿Está seguro de que quiere cerrar la base de datos? + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + ¿Está seguro de que quiere borrar la tabla «%1»? +Se perderán todos los datos asociados con la tabla. + + + + Are you sure you want to delete the view '%1'? + ¿Está seguro de que quiere borrar la vista «%1»? + + + + Are you sure you want to delete the trigger '%1'? + ¿Está seguro de que quiere borrar el disparador «%1»? + + + + Are you sure you want to delete the index '%1'? + ¿Está seguro de que quiere borrar el índice «%1»? + + + + Error: could not delete the table. + Error: no se pudo borrar la tabla. + + + + Error: could not delete the view. + Error: no se pudo borrar la vista. + + + + Error: could not delete the trigger. + Error: no se pudo borrar el disparador. + + + + Error: could not delete the index. + Error: no se pudo borrar el índice. + + + + Message from database engine: +%1 + Mensaje de la base de datos: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Para editar la tabla es necesario guardar antes todos los cambios pendientes. +¿Está seguro de que quiere guardar la base de datos? + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Ya se están ejecutando sentencias SQL. ¿Quiere detenerlas para en su lugar ejecutar las sentencias actuales?. Esto puede dejar la base de datos en un estado inconsistente. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- EJECUTANDO SELECCIÓN DE «%1» +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- EJECUTANDO LÍNEA DE «%1» +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- EJECUTANDO TODO «%1» +-- + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Establecer valores PRAGMA o realizar una limpieza consolidará la transacción actual. +¿Está seguro? + + + + Busy (%1) + Ocupado (%1) + + + + %1 rows returned in %2ms + %1 filas devueltas en %2ms + + + + Choose text files + Elija archivos de texto + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Importación completada. Algunas restricciones de las claves foráneas se han infringido. Por favor arréglelas antes de guardar. + + + + Select SQL file to open + Seleccione el archivo SQL a abrir + + + + Select file name + Seleccione el nombre del archivo + + + + Select extension file + Seleccione el archivo de extensión + + + + Extension successfully loaded. + Extensiones cargadas con éxito. + + + + Error loading extension: %1 + Error cargando la extensión: %1 + + + + + Don't show again + No volver a mostrar + + + + New version available. + Hay una nueva versión disponible. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Hay disponible una nueva versión de «DB Browser for SQLite» (%1.%2.%3).<br/><br/>Por favor, descárguela de <a href='%4'>%4</a>. + + + + Project saved to file '%1' + Proyecto guardado en el archivo «%1» + + + + creating collation + creando comparación + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Establezca el nuevo nombre para la pestaña SQL. Use el carácter «&&» para permitir usar el carácter siguiente como un atajo de teclado. + + + + Please specify the view name + Por favor, especifique el nombre de la vista + + + + There is already an object with that name. Please choose a different name. + Ya hay un objeto con ese nombre. Por favor, elija un nombre diferente. + + + + View successfully created. + Vista creada con éxito. + + + + Error creating view: %1 + Error creando la vista: %1 + + + + This action will open a new SQL tab for running: + Esta acción abrirá una nueva pestaña SQL para ejecutar: + + + + Press Help for opening the corresponding SQLite reference page. + Pulse Ayuda para abrir la página correspondiente de la referencia de SQLite. + + + + DB Browser for SQLite project file (*.sqbpro) + Archivo de proyecto de «DB Browser for SQLite» (*.sqbpro) + + + + Error checking foreign keys after table modification. The changes will be reverted. + Error comprobando las claves foráneas tras la modificación de la tabla. Los cambios se desharán. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Esta tabla no ha pasado la comprobación de claves foráneas.<br/>Debería ejecutar 'Herramientas | Comprobar Claves foráneas' y arreglar los problemas mostrados. + + + + + At line %1: + En la línea %1: + + + + Result: %2 + Resultado: %2 + + + + Execution finished with errors. + Ejecución terminada con errores. + + + + Execution finished without errors. + Ejecución terminada sin errores. + + + + NullLineEdit + + + Set to NULL + Poner a NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + Gráfica + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>Esta tabla muestra la lista de columnas de la tabla actualmente visualizada o de la consulta recién ejecutada. Puede seleccionar las columnas que desea usar como ejes X o Y en el gráfico del panel inferior. La tabla muestra el tipo de eje detectado, el cual afectará al gráfico resultante. Para los ejes Y solo se pueden seleccionar columnas numéricas, pero para el eje X se pueden seleccionar :</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Fecha/Hora</span>: texto con formato &quot;aaaa-MM-dd hh:mm:ss&quot; o &quot;aaaa-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Fecha</span>: texto con formato &quot;aaaa-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: texto con formato &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Etiqueta</span>: texto con otros formatos. Seleccionado esta columna como eje X se dibuja un gráfico de barras con los valores de la columna usados como etiquetas de las barras.</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numérico</span>: valores reales o enteros</li></ul><p>Haciendo doble clic sobre las celdas Y se puede cambiar el color usado para la gráfica correspondiente.</p></body></html> + + + + Columns + Columnas + + + + X + X + + + + Y1 + + + + + Y2 + + + + + Axis Type + Tipo de eje + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Aquí se dibuja un gráfico cuando se seleccionan los valores de X e Y en la parte superior. + +Con un clic sobre los puntos se seleccionan en el gráfico y en la tabla. Con Ctrl+Clic se pueden seleccionar rangos de puntos. + +Use la rueda del ratón para aumentar y disminuir el gráfico y arrastre con el ratón para cambiar el rango del eje. + +Seleccione los ejes o sus etiquetas para arrastrar y aumentar/disminuir solo en esa orientación. + + + + Line type: + Tipo de línea: + + + + + None + Ninguno + + + + Line + Línea + + + + StepLeft + EscalónIzquierda + + + + StepRight + EscalónDerecha + + + + StepCenter + EscalónCentrado + + + + Impulse + Impulso + + + + Point shape: + Forma de punto: + + + + Cross + Aspa es más específico que cruz. El signo más también es una cruz (una cruz griega). + Aspa + + + + Plus + Más + + + + Circle + Circunferencia + + + + Disc + Círculo + + + + Square + Cuadrado + + + + Diamond + Diamante + + + + Star + Estrella + + + + Triangle + Triángulo + + + + TriangleInverted + TriánguloInvertido + + + + CrossSquare + AspaCuadrado + + + + PlusSquare + MásCuadrado + + + + CrossCircle + AspaCircunferencia + + + + PlusCircle + MásCircunferencia + + + + Peace + Paz + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Guarda la gráfica actual...</p><p>El formato del archivo es elegido por la extensión (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Guarda la gráfica actual... + + + + + Load all data and redraw plot + Cargar todos los datos y redibujar el gráfico + + + + + + Row # + Nº de línea + + + + Copy + Copiar + + + + Print... + Imprimir... + + + + Show legend + Mostrar leyenda + + + + Stacked bars + Barras apiladas + + + + Date/Time + Fecha/hora + + + + Date + Fecha + + + + Time + Tiempo + + + + + Numeric + Numérico + + + + Label + Etiqueta + + + + Invalid + Inválido + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Cargar todos los datos y redibujar el gráfico. +Aviso: aún no se han cargado todos los datos desde la tabla debido al mecanismo de lectura parcial. + + + + Choose an axis color + Elija un color para el eje + + + + Choose a filename to save under + Seleccione un nombre de archivo en el que guardar + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Todos los archivos(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + Existen lazos en este gráfico y el estilo de línea seleccionado solo se puede aplicar a gráficos ordenados por X. Debe ordenar la tabla o consulta por X para eliminar los lazos o seleccionar uno de los estilos soportados por los lazos: Ninguno o Línea. + + + + Loading all remaining data for this table took %1ms. + Cargar todos los datos restantes para esta tabla tardó %1ms. + + + + PreferencesDialog + + + Preferences + Preferencias + + + + &General + &General + + + + Remember last location + Recordar la última posición + + + + Always use this location + Usar siempre esta posición + + + + Remember last location for session only + Recordar la última posición solamente para esta sesión + + + + + + ... + ... + + + + Default &location + &Posición por defecto + + + + Lan&guage + &Idioma + + + + Automatic &updates + &Actualizaciones automáticas + + + + + + + + + + + + enabled + activado + + + + Show remote options + Mostrar opciones del remoto + + + + &Database + &Base de datos + + + + Database &encoding + Co&dificación de la base de datos + + + + Open databases with foreign keys enabled. + Abrir base de datos con claves foráneas activadas. + + + + &Foreign keys + Claves &foráneas + + + + Data &Browser + &Hoja de datos + + + + Remove line breaks in schema &view + Elimina los saltos de línea en la &vista del esquema + + + + Prefetch block si&ze + &Tamaño del bloque de precarga + + + + SQ&L to execute after opening database + SQ&L a ejecutar tras abrir la base de datos + + + + Default field type + Tipo de campo por defecto + + + + Font + Tipo de letra + + + + &Font + &Tipo de letra + + + + Content + Contenido + + + + Symbol limit in cell + Límite de símbolos en la celda + + + + NULL + NULL + + + + Regular + Normal + + + + Binary + Binario + + + + Background + Fondo + + + + Filters + Filtros + + + + Toolbar style + Estilo de barra de herramientas + + + + + + + + Only display the icon + Solo mostrar el icono + + + + + + + + Only display the text + Solo mostrar el texto + + + + + + + + The text appears beside the icon + El texto aparece junto al icono + + + + + + + + The text appears under the icon + El texto aparece bajo el icono + + + + + + + + Follow the style + Seguir el estilo predefinido + + + + DB file extensions + Extensiones de archivos de BB.DD. + + + + Manage + Gestionar + + + + Main Window + Ventana principal + + + + Database Structure + Estructura + + + + Browse Data + Hoja de datos + + + + Execute SQL + Ejecutar SQL + + + + Edit Database Cell + Editar celda + + + + When this value is changed, all the other color preferences are also set to matching colors. + Cuando se cambia este valor, también se ajustan con colores a juego todas las otras prefencias de color. + + + + Follow the desktop style + Usa el estilo del escritorio + + + + Dark style + Estilo oscuro + + + + Application style + Estilo de la aplicación + + + + This sets the font size for all UI elements which do not have their own font size option. + Esto establece el tamaño de tipografía para todos los elementos de la interfaz de usuario que no tienen su propia opción. + + + + Font size + Tamaño de fuente + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Cuando está activado, se omiten los saltos de línea en la columna Esquema, tanto en la pestaña Estructura en pantalla, como al imprimir. + + + + Database structure font size + Tamaño de fuente de la estructura de base de datos + + + + Font si&ze + &Tamaño de fuente + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Este es el máximo número ocurrencias permitidos para que algunas funcionalidades computacionalmente costosas sean activadas: +Máximo número de filas en una tabla para activar el autocompletado basado en los valores actuales en la columna. +Máximo número de índices en una selección para calcular la suma y la media. +Pueden ajustarse a 0 parar desactivar las funcionalidades. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Este el el número máximo de filas en una tabla para activar el autocompletado basado en los valores actuales en la columna. +Se puede poner a 0 para desactivar el autocompletado. + + + + Close button on tabs + Botón de cerrar en pestañas + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + Si se habilita, las pestañas del editor SQL tendrán un botón para cerrarlas. En cualquier caso, usted siempre podrá usar el menú contextual o el atajo de teclado para cerrarlas. + + + + Proxy + Proxy + + + + Configure + Configurar + + + + Field display + Estilo de las celdas + + + + Displayed &text + &Texto presentado + + + + + + + + + Click to set this color + Haga clic para ajustar este color + + + + Text color + Color del texto + + + + Background color + Color del fondo + + + + Preview only (N/A) + Solo vista previa (N/A) + + + + Escape character + Carácter de escape + + + + Delay time (&ms) + Tiempo de retardo (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Define el tiempo de espera antes de que se aplique un nuevo valor de filtro. Se puede poner a 0 para desactivar la espera. + + + + &SQL + &SQL + + + + Settings name + Nombre de los ajustes + + + + Context + Contexto + + + + Colour + Color + + + + Bold + Negrita + + + + Italic + Cursiva + + + + Underline + Subrayado + + + + Keyword + Palabra clave + + + + Function + Función + + + + Table + Tabla + + + + Comment + Comentario + + + + Identifier + Identificador + + + + String + Cadena + + + + Current line + Línea actual + + + + SQL &editor font size + Tamaño de letra del &editor SQL + + + + Tab size + Tamaño del tabulador + + + + &Wrap lines + Ajuste de líneas + + + + Never + Nunca + + + + At word boundaries + En los límites de palabra + + + + At character boundaries + En los límites de caracteres + + + + At whitespace boundaries + En los límites de espacios en blanco + + + + &Quotes for identifiers + &Comillas para identificadores + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Elija el mecanismo de entrecomillado usado por la aplicación para los identificadores en el código SQL. + + + + "Double quotes" - Standard SQL (recommended) + "Dobles comillas" - SQL estándar (recomendado) + + + + `Grave accents` - Traditional MySQL quotes + `Acentos graves` - Entrecomillado tradicional de MySQL + + + + [Square brackets] - Traditional MS SQL Server quotes + [Corchetes] - Entrecomillado tradicional de MS SQL Server + + + + Keywords in &UPPER CASE + Palabras claves en &MAYÚSCULAS + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Si se activa, las palabras claves de SQL se completan en letras MAYÚSCULAS. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Si se activa, las líneas de código SQL que causaron errores durante la última ejecución se destacan y el marco de resultados indica el error mediante el color del fondo + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite proporciona una función SQL para cargar extensiones desde un archivo de biblioteca compartida. Active esta opción si desea usar la función <span style=" font-style:italic;">load_extension()</span> desde código SQL.</p><p>Por razónes de seguridad, la carga de extensiones está desactivada por defecto y debe ser habilitada usando esta configuración. Siempre puede cargar extensiones a través de la interfaz de usuario, incluso aunque esta opción esté deshabilitada.</p></body></html> + + + + Allow loading extensions from SQL code + Permitir cargar extensiones desde código SQL + + + + Remote + Remoto + + + + CA certificates + Certificados CA + + + + + Subject CN + Sujeto CN + + + + Common Name + Nombre común + + + + Subject O + Sujeto O + + + + Organization + Organización + + + + + Valid from + Válido desde + + + + + Valid to + Válido hasta + + + + + Serial number + Número de serie + + + + Your certificates + Sus certificados + + + + File + Archivo + + + + Subject Common Name + Nombre común del sujeto + + + + Issuer CN + Emisor CN + + + + Issuer Common Name + Nombre común del emisor + + + + Clone databases into + Clonar las bases de datos en + + + + SQL editor &font + &Tipo de letra del editor SQL + + + + Error indicators + Indicadores de error + + + + Hori&zontal tiling + Mosaico hori&zontal + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Si se activa, el editor de código SQL y la vista de la tabla de resultados se muestran de lado a lado en lugar de una sobre la otra. + + + + Code co&mpletion + Co&mpletar código + + + + Threshold for completion and calculation on selection + Umbral para cálculos al seleccionar y completación + + + + Show images in cell + Mostrar imágenes en la celda + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Active esta opción para mostrar una previsualización de los BLOBs que contengan datos de imagen en las celdas. Tenga en cuenta que esto puede afectar el desempeño del navegador de la hoja de datos. + + + + Foreground + Texto + + + + SQL &results font size + Tamaño de letra de resultados + + + + &Extensions + E&xtensiones + + + + Select extensions to load for every database: + Seleccione extensiones a cargar para cada base de datos: + + + + Add extension + Añadir extensión + + + + Remove extension + Eliminar extensión + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + +<html><head/><body><p> +Aunque SQLite admite el operador REGEXP, no implementa en sí ningún algoritmo de expresiones<br/> +regulares sino que llama a los de la aplicación en ejecución. «DB Browser for SQLite» implementa este<br/> +método para permitirle usar REGEXP de fábrica. Sin embargo, como hay múltiples posibles<br/> +implementaciones y puede querer usar otra, puede desactivar este método y cargar el suyo propio<br/> +usando una extensión. Necesitará reiniciar la aplicación.</p> +</body></html> + + + + Disable Regular Expression extension + Desactivar extensión de expresiones regulares + + + + + Choose a directory + Seleccione una carpeta + + + + The language will change after you restart the application. + El idioma cambiará al reiniciar la aplicación. + + + + Select extension file + Seleccione archivo de extensión + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Extensiones (*.so *.dll);;Todos los archivos (*) + + + + Import certificate file + Importar archivo de certificado + + + + No certificates found in this file. + No hay certificados en este archivo. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + ¿Está seguro de que quiere eliminar este certificado? ¡Todos los datos del certificado se borrarán de los ajustes de la aplicación! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + ¿Está seguro de que desea borrar todos los ajustes guardadas? +Todas sus preferencias se perderán y se usarán valores predeterminados. + + + + ProxyDialog + + + Proxy Configuration + Configuración del proxy + + + + Pro&xy Type + Tipo de pro&xy + + + + Host Na&me + No&mbre del host + + + + Port + Puerto + + + + Authentication Re&quired + Autentificación re&querida + + + + &User Name + Nombre de &usuario + + + + Password + Contraseña + + + + None + Ninguno + + + + System settings + Ajustes del sistema + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + Error importando datos + + + + from record number %1 + del registro número %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + Importando archivo CSV... + + + + Cancel + Cancelar + + + + All files (*) + Todos los archivos (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + Archivos de BB.DD. SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + Izquierda + + + + Right + Derecha + + + + Center + Centrado + + + + Justify + Justificado + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + Archivos de BB.DD. SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + Archivos de proyecto de DB Browser for SQLite (*.sqbpro) + + + + SQL Files (*.sql) + Archivos SQL (*.sql) + + + + All Files (*) + Todos los archivos (*) + + + + Text Files (*.txt) + Archivos de texto (*.txt) + + + + Comma-Separated Values Files (*.csv) + Archivos de valores separados por comas (*.csv) + + + + Tab-Separated Values Files (*.tsv) + Archivos de valores separados por tabuladores (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Archivos de Valores Separados por Delimitador (*.dsv) + + + + Concordance DAT files (*.dat) + Archivos DAT de Concordance (*.dat) + + + + JSON Files (*.json *.js) + Archivos JSON (*.json *.js) + + + + XML Files (*.xml) + Archivos XML (*.xml) + + + + Binary Files (*.bin *.dat) + Archivos binarios (*.bin *.dat) + + + + SVG Files (*.svg) + Archivos SVG (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Archivos de volcado Hex (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + Extensiones (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + ID versión + + + + Message + Mensaje + + + + Date + Fecha + + + + Author + Autor + + + + Size + Tamaño + + + + Authored and committed by %1 + Escrito y registrado por %1 + + + + Authored by %1, committed by %2 + Escrito por %1, registrado por %2 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Error abriendo la lista de bases de datos locales. +%1 + + + + Error creating local databases list. +%1 + Error creando la lista de bases de datos locales. +%1 + + + + RemoteDock + + + Remote + Remoto + + + + Local + Local + + + + Identity + Identidad + + + + Push currently opened database to server + Volcar la base de datos actualmente abierta al servidor + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>En este panel, las BB.DD. remotas del sitio web dbhub.io se pueden añadir a «DB Browser for SQLite». En primer lugar necesita una identidad:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ingrese en el sitio web dbhub.io (use sus credenciales de GitHub o las que desee)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Haga clic en el botón de crear un certificado de cliente (esa es su identidad). Eso le proporcionará un archivo de certificado (guárdelo en su disco local).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Vaya a la pestaña «Remoto» de las preferencias de «DB Browser for SQLite». Haga clic en el botón para añadir el nuevo certificado a la aplicación y elija el archivo de certificado recién descargado.</li></ol><p>Ahora el panel «Remoto» le mostrará su identidad y podrá añadir BB.DD. remotas.</p></body></html> + + + + Current Database + Base de datos actual + + + + Clone + Clonar + + + + User + Usuario + + + + Database + Base de datos + + + + Branch + Rama + + + + Commits + Versiones + + + + Commits for + Versiones para + + + + Delete Database + Borrar base de datos + + + + Delete the local clone of this database + Borrar el clon local de la base de datos + + + + Open in Web Browser + Abrir en el navegador web + + + + Open the web page for the current database in your browser + Abrir la página web de la base de datos actual en su navegador + + + + Clone from Link + Clonar desde enlace + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + Use esto para descargar una base de datos remota y editarla localmente usando una URL provista por la página web de la base de datos. + + + + Refresh + Refrescar + + + + Reload all data and update the views + Recargar todos los datos y actualizar las vistas + + + + F5 + + + + + Clone Database + Clonar base de datos + + + + Open Database + Abrir base de datos + + + + Open the local copy of this database + Abrir la copia local de esta base de datos + + + + Check out Commit + Obtener versión + + + + Download and open this specific commit + Descargar y abrir esta versión específica + + + + Check out Latest Commit + Obtener la última versión + + + + Check out the latest commit of the current branch + Obtener la última versión de la rama actual + + + + Save Revision to File + Guardar versión en un archivo + + + + Saves the selected revision of the database to another file + Guarda la versión seleccionada de la base de datos a otro archivo + + + + Upload Database + Cargar base de datos + + + + Upload this database as a new commit + Cargar en el servidor esta base de datos como una nueva versión + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>Está usando una identidad integrada de sólo lectura. Para subir su base de datos necesita configurar y usar su cuenta DBHub.io.</p><p>¿Todavía no tiene una cuenta en DBHub.io? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Cree una ahora</span></a> e importe su certificado <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">aquí</span></a> para compartir sus bases de datos.</p><p>Tiene ayuda en línea <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">aquí</span></a>.</p></body></html> + + + + Back + Retroceder + + + + Select an identity to connect + Seleccione una identidad para conectar + + + + Public + Pública + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + Esto descarga una base de datos desde un servidor remoto para edición local. +Por favor, introduzca la URL desde la que clonar. Puede obtener esta URL +haciendo clic en el botón «Clonar base de datos en DB4S» de la página web +de la base de datos. + + + + Invalid URL: The host name does not match the host name of the current identity. + URL inválida: El nombre de 'host' no encaja con el de la identidad actual. + + + + Invalid URL: No branch name specified. + URL inválida: No se ha especificado el nombre de rama. + + + + Invalid URL: No commit ID specified. + URL inválida: No se ha especificado el ID de versión. + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + Ha realizado cambios en el clon local de la base de datos. Al obtener esta versión sobreescribiría los cambios locales. +¿Está seguro de querer proceder? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + La base de datos tiene cambios sin guardar. ¿Está seguro de enviarlos sin guardar? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + La base de datos que pretende borrar está actualmente abierta. Por favor, ciérrela antes de borrarla. + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + Esto borra la versión local de esta base de datos con todos los cambios que aún no ha registrado. ¿Está seguro de querer borrarla? + + + + RemoteLocalFilesModel + + + Name + Nombre + + + + Branch + Rama + + + + Last modified + Última modificación + + + + Size + Tamaño + + + + Commit + Versión + + + + File + Archivo + + + + RemoteModel + + + Name + Nombre + + + + Last modified + Última modificación + + + + Size + Tamaño + + + + Commit + Versión + + + + Size: + Tamaño: + + + + Last Modified: + Última modificación: + + + + Licence: + Licencia: + + + + Default Branch: + Rama por defecto: + + + + RemoteNetwork + + + Choose a location to save the file + Seleccione una localización para guardar el archivo + + + + Error opening remote file at %1. +%2 + Error abriendo el archivo remoto en %1. +%2 + + + + Error: Invalid client certificate specified. + Error: El certificado del cliente es inválido. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Por favor, introduzca la frase de contraseña de este certificado de cliente para autenticarse. + + + + Cancel + Cancelar + + + + Uploading remote database to +%1 + Subiendo base de datos remota a +%1 + + + + Downloading remote database from +%1 + Descargando base de datos remota desde +%1 + + + + + Error: The network is not accessible. + Error: La red no está accesible. + + + + Error: Cannot open the file for sending. + Error: No se puede abrir el archivo para enviar. + + + + RemotePushDialog + + + Push database + Remitir base de datos + + + + Database na&me to push to + No&mbre de la base de datos de destino + + + + Commit message + Mensaje de versión + + + + Database licence + Licencia de la base de datos + + + + Public + Pública + + + + Branch + Rama + + + + Force push + Forzar remisión + + + + Username + Nombre de usuario + + + + Database will be public. Everyone has read access to it. + La base de datos será pública. Todo el mundo podrá leerla. + + + + Database will be private. Only you have access to it. + La base de datos será privada. Sólo usted tendrá acceso. + + + + Use with care. This can cause remote commits to be deleted. + Usar con cuidado. Esto puede provocar borrados de versiones remotas. + + + + RunSql + + + Execution aborted by user + Ejecución abortada por el usuario + + + + , %1 rows affected + , %1 filas afectadas + + + + query executed successfully. Took %1ms%2 + consulta ejecutada con éxito. Tardó %1ms%2 + + + + executing query + ejecutando consulta + + + + SelectItemsPopup + + + A&vailable + &Disponible + + + + Sele&cted + &Seleccionado + + + + SqlExecutionArea + + + Form + Formulario + + + + Find previous match [Shift+F3] + Buscar la siguiente ocurrencia [Shift+F3] + + + + Find previous match with wrapping + Buscar la siguiente ocurrencia + + + + Shift+F3 + + + + + The found pattern must be a whole word + El patrón de búsqueda debe ser una palabra completa + + + + Whole Words + Palabras completas + + + + Text pattern to find considering the checks in this frame + El patrón de texto buscado considerando las opciones de este marco + + + + Find in editor + Buscar en el editor + + + + The found pattern must match in letter case + El patrón de búsqueda debe coincidir en mayúsculas y minúsculas + + + + Case Sensitive + Distinguir mayús./minús. + + + + Find next match [Enter, F3] + Buscar la siguiente ocurrencia [Enter, F3] + + + + Find next match with wrapping + Encontrar la siguiente ocurrencia volviendo al principio si es necesario + + + + F3 + + + + + Interpret search pattern as a regular expression + Interpretar el patrón de búsqueda como una expresión regular + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Si se activa, el patrón de búsqueda se interpreta como una expresión regular UNIX. Véase <a href="https://es.wikipedia.org/wiki/Expresi%C3%B3n_regular">«Expresión regular» en Wikipedia</a>.</p></body></html> + + + + Regular Expression + Expresión regular + + + + + Close Find Bar + Cerrar la barra de búsqueda + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>Resultados de las útimas sentencias ejecutadas.</p><p>Puede que prefiera colapsar este panel y en su lugar usar el <span style=" font-style:italic;">Registro SQL</span> con selección de <span style=" font-style:italic;">Usuario</span>.</p></body></html> + + + + Results of the last executed statements + Resultados de las últimas sentencias ejecutadas + + + + This field shows the results and status codes of the last executed statements. + Este campo muestra los resultados y códigos de estado de las últimas sentencias ejecutadas. + + + + Couldn't read file: %1. + No se pudo leer el archivo: %1. + + + + + Couldn't save file: %1. + No se pudo guardar el archivo: %1. + + + + Your changes will be lost when reloading it! + ¡Los cambios se perderán al recargarlo! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + El archivo "%1" ha sido modificado por otro programa. ¿Quiere recargarlo?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) La función abs(X) devuelve el valor absoluto del argumento numérico X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () La función changes() devuelve el número de líneas de la base de datos que se modificaron, insertaron o borraron por la consulta INSERT, DELETE, o UPDATE más reciente. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) La función char(X1,X2,...,XN) devuelve una cadena compuesta por caracteres que tienen el valor numérico del código de punto unicode los enteros X1 hasta XN, respectivamente. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) La función coalesce() devuelve una copia de su primer argumento no nulo, o NULL si todos los argumentos son NULL + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) La función glob(X,Y) es equivalente a la expresión "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) La función ifnull() devuelve una copia de su primer argumento no nulo, o NULL si ambos argumentos son NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) La función instr(X,Y) busca la primera coincidencia de la cadena Y en la cadena X y devuelve el número de caracteres precedentes más 1, ó 0 si Y no se encuentra en X. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) La función hex() interpreta su argumento como un BLOB y devuelve una cadena que es el equivalente codificado en hexadecimal en mayúsculas del contenido del BLOB. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () La función last_insert_rowid() devuelve el ROWID del la última línea insertada desde la conexión de la base de datos que invocó la función. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) La función length(X) devuelve el número de caracteres (no bytes) en X anteriores al primer carácter NUL. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + X,Y) La función like() se usa para implementar la expresión "Y LIKE X". + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) La función like() se usa para implementar la expresión "Y LIKE X ESCAPE Z". + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) La función load_extension(X) carga extensiones SQLite del archivo de la biblioteca compartida llamada X usando el punto de entrada Y. +El uso de esta función tiene que ser autorizado desde las Preferencias. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) La función load_extension(X,Y) carga extensiones SQLite del archivo de la biblioteca compartida llamado X usando el punto de entrada Y. +El uso de esta función tiene que ser autorizado desde las Preferencias. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) La función lower(X) devuelve una copia de la cadena X con todos los caracteres ASCII convertidos a minúsculas. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) La función ltrim(X) quita los espacios a la izquierda de X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) La función ltrim(X,Y) devuelve una cadena formada quitando todos los caracteres que aparecen en Y de la izquierda de X. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) La función multi-argumento max() devuelve el argumento con el valor máximo, o NULL si cualquier argumento es NULL. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) La función multi-argumento max() devuelve el argumento con el valor mínimo. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) La función nullif(X,Y) devuelve su primer argumento si los argumentos son diferentes y NULL si los argumentos son el mismo. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) La función SQL printf(FORMAT,...) funciona como la función de lenguaje C sqlite3_mprintf() y la función printf() de la biblioteca C estándar. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) La función quote(X) devuelve el texto de un literal SQL, que es el valor de su argumento, apropiado para la inclusión en una sentencia SQL. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () La función random() devuelve un entero pseudo-aleatorio entre -9223372036854775808 y +9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) La función randomblob(N) devuelve un BLOB de N bytes que contiene bytes pseudo-aleatorios. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) La función replace(X,Y,Z) devuelve una cadena formada substituyendo en la cadena Z cada coincidencia con la subcadena Y por la subcadena X. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) La función round(X) devuelve un valor en coma flotante X redondeado a cero dígitos a la derecha de la coma decimal. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) La función round(X,Y) devuelve un valor en coma flotante X redondeado a Y dígitos a la derecha de la coma decimal. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) La función rtrim(X) quita los espacios a la derecha de X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) La función rtrim(X,Y) devuelve una cadena formada quitando todos los caracteres que aparecen en Y de la derecha de X. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) La función soundex(X) devuelve una cadena que es la codificación soundex de la cadena X. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) La función substr(X,Y) devuelve una subcadena con todos los caracteres de la cadena X desde el Y-ésimo hasta el último. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y) La función substr(X,Y) devuelve una subcadena de la cadena X desde el Y-ésimo y que es Z caracteres de largo. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () La función total_changes() devuelve el número de cambios en las líneas causadas por sentencias INSERT, UPDATE o DELETE desde que la conexión con la base de datos actual se abrió. + + + + (X) trim(X) removes spaces from both ends of X. + (X) La función trim(X) quita los espacios de ambos lados de X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) La función trim(X,Y) devuelve una cadena formada quitando todos los caracteres que aparecen en Y de ambos lados de X. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) La función typeof(X) devuelve una cadena que indica el tipo de datos de la expresión X. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) La función unicode(X) devuelve el valor numérico del código de punto unicode correspondiente al primer carácter de la cadena X. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) La función upper(X) devuelve una copia de la cadena X con todos los caracteres ASCII convertidos a mayúsculas. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) La función zeroblob(N) devuelve un BLOB consistente en N bytes de 0x00. + + + + + + + (timestring,modifier,modifier,...) + (timestring,modificador,modificador,...) + + + + (format,timestring,modifier,modifier,...) + (formato,timestring,modificador,modificador,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) La función avg() devuelve el valor medio de todos los valores no nulos del grupo X. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) La función count(X) devuelve el conteo del número de veces que X no es nulo en un grupo. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) La función group_concat() devuelve una cadena que es la concatenación de todos los valores no nulos X. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) La función group_concat() devuelve una cadena que es la concatenación de todos los valores no nulos X, usando el parámetro Y como separador entre las instancias de X. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) La función agregada max() devuelve el máximo valor de entre todos los valores en el grupo. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) La función agregada min() devuelve el mínimo valor no NULO de entre todos los valores en el grupo. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Las funciones agregadas sum() y total() devuelven la suma de todos los valores no NULOS en el grupo. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () El número de fila dentro de la partición actual. Las filas se numeran empezando por 1 en el orden definido por la cláusula ORDER BY en la ventana de definición, o sino en un orden arbitrario. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () El row_number() del primer par (igual) en cada grupo - el rango de la fila actual con huecos. Si no hay una cláusula ORDER BY, entonces todas las filas son consideradas pares y esta función siempre devuelve 1. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () El número del grupo de pares de la fila actual dentro de su partición - el rango de la fila actual sin huecos. Las particiones se numeran empezando por 1 en el orden definido por la cláusula ORDER BY en la ventana de definición. Si no hay una cláusula ORDER BY, entonces todas las filas son consideradas pares y esta función siempre devuelve 1. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () A pesar del nombre, esta función siempre devuelve un valor entre 0.0 y 1.0 igual a (rank - 1)/(partition-rows - 1), donde rank es el valor devuelto por la función de ventana incorporada rank() y partition-rows es el número total de filas en la partición. Si la partición contiene sólo una fila, esta función devuelve 0.0. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () La distribución acumulada. Calculada como row-number/partition-rows, donde row-number es el valor devuelto por row_number() para el último par (igual) en el grupo y partition-rows el número de filas en la partición. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) El argumento N es tratado como un entero. Esta función divide la partición en N grupos tan equitativamente como sea posible y asigna un entero entre 1 y N a cada grupo, en el orden definido por la cláusula ORDER BY, o sino en un orden arbitrario. Si es necesario, los grupos mayores aparecen primero. Esta función devuelve un valor entero asignado al grupo del que la fila actual es parte. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Devuelve el resultado de evaluar la expresión expr con la fila anterior en la partición. Si no hay fila anterior (porque la fila actual es la primera) devuelve NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) Si se proporciona un offset, éste debe ser un entero no negativo. En este caso el valor devuelto es el resultado de evaluar expr con la fila offset veces anterior a la fila actual dentro de la partición. Si offset es 0, entonces expr se evalua con la fila actual. Si no hay fila offset veces anterior devuelve NULL. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) Si también se proporciona un default, entonces éste es devuelto en lugar de NULL si no existe la fila identificada por offet. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Devuelve el resultado de evaluar la expresión expr con la siguiente fila en la partición. Si no hay fila siguiente (porque la fila actual es la última) devuelve NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) Si se proporciona un offset, éste debe ser un entero no negativo. En este caso el valor devuelto es el resultado de evaluar expr con la fila offset veces posterior a la fila actual dentro de la partición. Si offset es 0, entonces expr se evalua con la fila actual. Si no hay fila offset veces siguiente devuelve NULL. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Esta función de ventana incorporada calcula el marco de la ventana para cada fila de la misma forma que una función agregada de ventana. Devuelve el valor de expr evaluada con la primera fila en el marco de la ventana para cada fila. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Esta función de ventana incorporada calcula el marco de la ventana para cada fila de la misma forma que una función agregada de ventana. Devuelve el valor de expr evaluada con la última fila en el marco de la ventana para cada fila. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) Esta función de ventana incorporada calcula el marco de la ventana para cada fila de la misma forma que una función agregada de ventana. Devuelve el valor de expr evaluada con la fila N del marco de la ventana. Las columnas se numeran dentro del marco de la ventana empezando por 1 en el orden definico por la cláusula ORDER BY, o sino en orden arbitrario. Si no hay fila N-ava en la partición, entonces devuelve NULL. + + + + SqliteTableModel + + + reading rows + leyendo filas + + + + loading... + cargando... + + + + References %1(%2) +Hold %3Shift and click to jump there + Referencia %1(%2) +Mantenga pulsado %3Mayús. y haga clic para ir ahí + + + + Error changing data: +%1 + Error modificando datos: +%1 + + + + retrieving list of columns + obteniendo lista de columnas + + + + Fetching data... + Obteniendo datos... + + + + + Cancel + Cancelar + + + + TableBrowser + + + Browse Data + Hoja de datos + + + + &Table: + &Tabla: + + + + Select a table to browse data + Seleccione una tabla para ver sus datos + + + + Use this list to select a table to be displayed in the database view + Use esta lista para seleccionar la tabla a mostrar en la vista de la base de datos + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Este es el visor de la tabla de la base de datos. Puede realizar lo siguiente: + - Escribir y editar valores. + - Doble-clic en cualquier registro para editar su contenido en la ventana del editor de celdas. + - Alt+Supr para borrar el contenido de la celda a NULL. + - Ctrl+" para duplicar el registro actual. + - Ctrl+' para copiar el valor de la celda de arriba. + - Las operaciones de copiar y pegar usuales. + + + + Text pattern to find considering the checks in this frame + El patrón de texto a buscar según las opciones seleccionadas en este marco + + + + Find in table + Buscar en la tabla + + + + Find previous match [Shift+F3] + Buscar la anterior ocurrencia [Mayús.+F3] + + + + Find previous match with wrapping + Buscar la anterior ocurrencia volviendo al final si es necesario + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Buscar la siguiente ocurrencia [Intro, F3] + + + + Find next match with wrapping + Buscar la siguiente ocurrencia volviendo al principio si es necesario + + + + F3 + + + + + The found pattern must match in letter case + El patrón de búsqueda tiene que coincidir en mayúsculas y minúsculas + + + + Case Sensitive + Distinguir mayús./minús. + + + + The found pattern must be a whole word + El patrón de búsqueda tiene que ser una palabra completa + + + + Whole Cell + Toda la celda + + + + Interpret search pattern as a regular expression + Interpretar el patrón de búsqueda como una expresión regular + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Si se marca, el patrón de búsqueda se interpreta como una expresión regular UNIX. Véase <a href="https://es.wikipedia.org/wiki/Expresi%C3%B3n_regular">«Expresión regular» en Wikipedia</a>.</p></body></html> + + + + Regular Expression + Expresión regular + + + + + Close Find Bar + Cerrar la barra de búsqueda + + + + Text to replace with + Texto con el que reemplazar + + + + Replace with + Reemplazar con + + + + Replace next match + Reemplazar la siguiente coincidencia + + + + + Replace + Reemplazar + + + + Replace all matches + Reemplazar todas las coincidencias + + + + Replace all + Reemplazar todo + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Desplazarse hasta el principio</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Pulsando este botón se mueve hasta el principio en la vista de tabla de arriba.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Retroceder una página + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Pulsando este botón se retrocede una página de registros en la vista de tabla de arriba.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 de 0 + + + + Scroll one page downwards + Avanzar una página + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Pulsando este botón se avanza una página de registros en la vista de tabla de arriba.</p></body></html> + + + + > + > + + + + Scroll to the end + Desplazarse hasta el final + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>Pulsando este botón se mueve al final de la vista de tabla de arriba.</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Pulse aquí para saltar al registro especificado</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Este botón se usa para moverse al número de registro especificado en la casilla Ir a.</p></body></html> + + + + Go to: + Ir a: + + + + Enter record number to browse + Introduzca el número de registro al que navegar + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Escriba un número de registro en esta casilla y haga clic en el botón «Ir a:» para mostrar el registro en la vista de la base de datos + + + + 1 + 1 + + + + Show rowid column + Mostrar la columna rowid + + + + Toggle the visibility of the rowid column + Cambia la visibilidad de la columna rowid + + + + Unlock view editing + Desbloquear edición de vistas + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Esto desbloquea la vista actual para edición. Aunque para la edición se necesitarán los disparadores adecuados. + + + + Edit display format + Editar el formato de presentación + + + + Edit the display format of the data in this column + Editar el formato de presentación de los datos en esta columna + + + + + New Record + Nuevo registro + + + + + Insert a new record in the current table + Inserta un nuevo registro en la tabla actual + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Este botón crea un nuevo registro en la base de datos. Mantenga pulsado el botón del ratón para abrir un menú emergente con varias opciones:</p><ul><li><span style=" font-weight:600;">Nuevo Registro</span>: inserta en la base de datos un nuevo registro con valores por defecto.</li><li><span style=" font-weight:600;">Introduce Valores...</span>: abre un diálogo para introducir valores antes de insertarlos en la base de datos. Esto permite introducir valores que cumplan con las restricciones. Este diálogo también se abre si la opción de <span style=" font-weight:600;">Nuevo Registro</span> falla debido a esas restricciones.</li></ul></body></html> + + + + + Delete Record + Borrar registro + + + + Delete the current record + Borra el registro actual + + + + + This button deletes the record or records currently selected in the table + Este botón borra el registro seleccionado (o los registros seleccionados) actualmente en la base de datos + + + + + Insert new record using default values in browsed table + Inserta un nuevo registro usando valores por defecto en la tabla visualizada + + + + Insert Values... + Introducir valores... + + + + + Open a dialog for inserting values in a new record + Abre un diálogo para introducir valores en un nuevo registro + + + + Export to &CSV + Exportar a &CSV + + + + + Export the filtered data to CSV + Exportar los datos filtrados a CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Este botón exporta los datos de la tabla mostrada tal como se presentan (después de filtros, formatos de presentación y columna de orden) como un archivo CSV. + + + + Save as &view + Guardar como &vista + + + + + Save the current filter, sort column and display formats as a view + Guardar el filtro actual, la columna de orden y los formatos de presentación como una vista + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Este botón guarda los ajustes actuales de la tabla visualizada (filtros, formatos de presentación y la columna de orden) como una vista SQL que más tarde puede visualizar o usar en sentencias SQL. + + + + Save Table As... + Guardar Tabla Como... + + + + + Save the table as currently displayed + Guarda la tabla tal como se presenta + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>Este menú contextual provee las siguientes opciones que se aplican a la tabla actualmente visualizada y filtrada:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Exportar a CSV: esta opción exporta los datas de la tabla tal cual se presentan actualmente (después de filtros, formatos de presentación y columna de orden) a un archivo CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Guardar como vista: esta opción guarda la configuración actual de la tabla visualizada (filtros, formatos de presentación y columna de orden) como una vista SQL que luego puede visualizar o usar en sentencias SQL.</li></ul></body></html> + + + + Hide column(s) + Ocultar columna(s) + + + + Hide selected column(s) + Ocultar columna(s) seleccionada(s) + + + + Show all columns + Mostrar todas las columnas + + + + Show all columns that were hidden + Mostrar todas las columnas que están ocultas + + + + + Set encoding + Definir codificación + + + + Change the encoding of the text in the table cells + Cambia la codificación del texto de las celdas de la tabla + + + + Set encoding for all tables + Definir la codificación para todas las tablas + + + + Change the default encoding assumed for all tables in the database + Cambia la codificación por defecto para todas las tablas en la base de datos + + + + Clear Filters + Borrar Filtros + + + + Clear all filters + Borra todos los filtros + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Este botón elimina todos los filtros establecidos en la cabecera para la tabla mostrada actualmente. + + + + Clear Sorting + Eliminar ordenación + + + + Reset the order of rows to the default + Reinicia el orden de las filas al orden por defecto + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Este botón elimina la ordenación de las columnas especificadas para la tabla mostrada actualmente y vuelve al orden por defecto. + + + + Print + Imprimir + + + + Print currently browsed table data + Imprime los datos de la tabla mostrada actualmente + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Imprime los datos de la tabla mostrada actualmente. Imprime la selección si se ha seleccionado más de una celda. + + + + Ctrl+P + + + + + Refresh + Refrescar + + + + Refresh the data in the selected table + Refresca los datos en la tabla seleccionada + + + + This button refreshes the data in the currently selected table. + Este botón refresca los datos de la tabla seleccionada actualmente. + + + + F5 + + + + + Find in cells + Buscar en celdas + + + + Open the find tool bar which allows you to search for values in the table view below. + Abre la barra de búsqueda que permite buscar valores en la vista de la tabla de abajo. + + + + + Bold + Negrita + + + + Ctrl+B + + + + + + Italic + Cursiva + + + + + Underline + Subrayado + + + + Ctrl+U + + + + + + Align Right + Alineado derecha + + + + + Align Left + Alineado izquierda + + + + + Center Horizontally + Centrado horizontal + + + + + Justify + Justificar + + + + + Edit Conditional Formats... + Editar formatos condicionales... + + + + Edit conditional formats for the current column + Edita formatos condicionales para la columna actual + + + + Clear Format + Eliminar formato + + + + Clear All Formats + Eliminar todos los formatos + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Elimina todo el formato de las celdas seleccionadas y los formatos condicionales de las columnas seleccionadas + + + + + Font Color + Color del texto + + + + + Background Color + Color del fondo + + + + Toggle Format Toolbar + Conmutar barra de formato + + + + Show/hide format toolbar + Mostrar/ocultar la barra de formato + + + + + This button shows or hides the formatting toolbar of the Data Browser + Este botón muestra u oculta la barra de formato de la Hoja de Datos + + + + Select column + Seleccionar columna + + + + Ctrl+Space + + + + + Replace text in cells + Reemplazar texto en las celdas + + + + Filter in any column + Filtrar en cualquier columna + + + + Ctrl+R + + + + + %n row(s) + + %n fila + %n filas + + + + + , %n column(s) + + , %n columna + , %n columnas + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Suma: %1; Media: %2; Mín: %3; Máx: %4 + + + + Conditional formats for "%1" + Formatos condicionales para "%1" + + + + determining row count... + determinando nº de filas... + + + + %1 - %2 of >= %3 + %1 - %2 de >= %3 + + + + %1 - %2 of %3 + %1 - %2 de %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Introduzca una clave pseudo-primaria para activar la edición en esta vista. Esta debería ser el nombre de una columna única en la vista. + + + + Delete Records + Borrar registros + + + + Duplicate records + Duplicar registros + + + + Duplicate record + Duplicar registro + + + + Ctrl+" + + + + + Adjust rows to contents + Ajustar las filas al contenido + + + + Error deleting record: +%1 + Error borrando registro: +%1 + + + + Please select a record first + Por favor, antes seleccione un registro + + + + There is no filter set for this table. View will not be created. + No existe un filtro para esta tabla. La vista no será creada. + + + + Please choose a new encoding for all tables. + Por favor, elija una nueva codificación para todas las tablas. + + + + Please choose a new encoding for this table. + Por favor, elija una nueva codificación para esta tabla. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Deje este campo vacío para usar la codificación de la base de datos. + + + + This encoding is either not valid or not supported. + Esta codificación no es válida o no está soportada. + + + + %1 replacement(s) made. + Se realizaron %1 sustitucion(es). + + + + VacuumDialog + + + Compact Database + Compactar base de datos + + + + Warning: Compacting the database will commit all of your changes. + Aviso: compactar la base de datos provocará la consolidación de todos sus cambios. + + + + Please select the databases to co&mpact: + Seleccione las bases de datos que desea co&mpactar: + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_fa.ts b/src/SqliteDBProcess/src/translations/sqlb_fa.ts new file mode 100644 index 0000000..0bda49c --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_fa.ts @@ -0,0 +1,6922 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + + + + + Version + + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + + + + + AddRecordDialog + + + Add New Record + + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + + + + + Name + + + + + Type + + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + + + + + Auto-increment + + + + + + Unique constraint + + + + + + Check constraint: %1 + + + + + + Foreign key: %1 + + + + + + Default value: %1 + + + + + + Error adding record. Message from database engine: + +%1 + + + + + Are you sure you want to restore all the entered values to their defaults? + + + + + Application + + + Possible command line arguments: + + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + + + + + The file %1 does not exist + + + + + The -t/--table option requires an argument + + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + + + + + SQLite Version + + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + + + + + Qt Version %1 + + + + + Invalid option/non-existant file: %1 + + + + + CipherDialog + + + SQLCipher encryption + + + + + &Password + + + + + &Reenter password + + + + + Passphrase + + + + + Raw key + + + + + Encr&yption settings + + + + + SQLCipher &3 defaults + + + + + SQLCipher &4 defaults + + + + + Custo&m + + + + + Page si&ze + + + + + &KDF iterations + + + + + HMAC algorithm + + + + + KDF algorithm + + + + + Plaintext Header Size + + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + + + + + ColumnDisplayFormatDialog + + + Choose display format + + + + + Display format + + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + + + + + Default + + + + + Decimal number + + + + + Exponent notation + + + + + Hex blob + + + + + Hex number + + + + + Octal number + + + + + Round number + + + + + Apple NSDate to date + + + + + Java epoch (milliseconds) to date + + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + + + + + Unix epoch to date + + + + + Unix epoch to local time + + + + + Windows DATE to date + + + + + Date as dd/mm/yyyy + + + + + Lower case + + + + + Upper case + + + + + Custom + + + + + Custom display format must contain a function call applied to %1 + + + + + Error in custom display format. Message from database engine: + +%1 + + + + + Custom display format must return only one column but it returned %1. + + + + + CondFormatManager + + + Conditional Format Manager + + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + + + + + Add new conditional format + + + + + &Add + + + + + Remove selected conditional format + + + + + &Remove + + + + + Move selected conditional format up + + + + + Move &up + + + + + Move selected conditional format down + + + + + Move &down + + + + + Foreground + + + + + Text color + + + + + Background + + + + + Background color + + + + + Font + + + + + Size + + + + + Bold + + + + + Italic + + + + + Underline + + + + + Alignment + + + + + Condition + + + + + + Click to select color + + + + + Are you sure you want to clear all the conditional formats of this field? + + + + + DBBrowserDB + + + This database has already been attached. Its schema name is '%1'. + + + + + Please specify the database name under which you want to access the attached database + + + + + Invalid file format + + + + + Do you really want to close this temporary database? All data will be lost. + + + + + Do you want to save the changes made to the database file %1? + + + + + Database didn't close correctly, probably still busy + + + + + The database is currently busy: + + + + + Do you want to abort that other operation? + + + + + Exporting database to SQL file... + + + + + + Cancel + + + + + + No database file opened + + + + + Executing SQL... + + + + + Action cancelled. + + + + + + Error in statement #%1: %2. +Aborting execution%3. + + + + + + and rolling back + + + + + didn't receive any output from %1 + + + + + could not execute command: %1 + + + + + Cannot delete this object + + + + + Cannot set data on this object + + + + + + A table with the name '%1' already exists in schema '%2'. + + + + + No table with name '%1' exists in schema '%2'. + + + + + + Cannot find column %1. + + + + + Creating savepoint failed. DB says: %1 + + + + + Renaming the column failed. DB says: +%1 + + + + + + Releasing savepoint failed. DB says: %1 + + + + + Creating new table failed. DB says: %1 + + + + + Copying data to new table failed. DB says: +%1 + + + + + Deleting old table failed. DB says: %1 + + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + + + + + could not get list of db objects: %1 + + + + + could not get list of databases: %1 + + + + + Error setting pragma %1 to %2: %3 + + + + + File not found. + + + + + Error loading extension: %1 + + + + + could not get column information + + + + + DbStructureModel + + + Name + + + + + Object + + + + + Type + + + + + Schema + + + + + Database + + + + + Browsables + + + + + All + + + + + Temporary + + + + + Tables (%1) + + + + + Indices (%1) + + + + + Views (%1) + + + + + Triggers (%1) + + + + + EditDialog + + + Edit database cell + + + + + Mode: + + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + + + + + Text + + + + + RTL Text + + + + + Binary + + + + + + Image + + + + + JSON + + + + + XML + + + + + + Automatically adjust the editor mode to the loaded data type + + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + + + + + Auto-switch + + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + + + + + Open preview dialog for printing the data currently stored in the cell + + + + + Auto-format: pretty print on loading, compact on saving. + + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + + + + + Word Wrap + + + + + Wrap lines on word boundaries + + + + + + Open in default application or browser + + + + + Open in application + + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + + + + + Save file reference... + + + + + Save reference to file + + + + + + Open in external application + + + + + Autoformat + + + + + &Export... + + + + + + &Import... + + + + + + Import from file + + + + + + Opens a file dialog used to import any kind of data to this database cell. + + + + + Export to file + + + + + Opens a file dialog used to export the contents of this database cell to a file. + + + + + Erases the contents of the cell + + + + + Set as &NULL + + + + + This area displays information about the data present in this database cell + + + + + Type of data currently in cell + + + + + Size of data currently in table + + + + + Apply data to cell + + + + + This button saves the changes performed in the cell editor to the database cell. + + + + + Apply + + + + + + Print... + + + + + Open preview dialog for printing displayed image + + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + + + + + Copy Hex and ASCII + + + + + Copy selected hexadecimal and ASCII columns to the clipboard + + + + + Ctrl+Shift+C + + + + + + Image data can't be viewed in this mode. + + + + + + Try switching to Image or Binary mode. + + + + + + Binary data can't be viewed in this mode. + + + + + + Try switching to Binary mode. + + + + + + Image files (%1) + + + + + Binary files (*.bin) + + + + + Choose a file to import + + + + + %1 Image + + + + + Choose a filename to export data + + + + + Invalid data for this mode + + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + + + + + + Type of data currently in cell: Text / Numeric + + + + + + + %n character(s) + + + + + + + Type of data currently in cell: %1 Image + + + + + %1x%2 pixel(s) + + + + + Type of data currently in cell: NULL + + + + + + %n byte(s) + + + + + + + Type of data currently in cell: Valid JSON + + + + + Type of data currently in cell: Binary + + + + + Couldn't save file: %1. + + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + + + + + EditIndexDialog + + + Edit Index Schema + + + + + &Name + + + + + &Table + + + + + &Unique + + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + + + + + Partial inde&x clause + + + + + Colu&mns + + + + + Table column + + + + + Type + + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + + + + + Index column + + + + + Order + + + + + Deleting the old index failed: +%1 + + + + + Creating the index failed: +%1 + + + + + EditTableDialog + + + Edit table definition + + + + + Table + + + + + Advanced + + + + + Without Rowid + + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + + + + + Fields + + + + + Database sche&ma + + + + + Add + + + + + Remove + + + + + Move to top + + + + + Move up + + + + + Move down + + + + + Move to bottom + + + + + + Name + + + + + + Type + + + + + NN + + + + + Not null + + + + + PK + + + + + Primary key + + + + + AI + + + + + Autoincrement + + + + + U + + + + + + + Unique + + + + + Default + + + + + Default value + + + + + + + Check + + + + + Check constraint + + + + + Collation + + + + + + + Foreign Key + + + + + Constraints + + + + + Add constraint + + + + + Remove constraint + + + + + Columns + + + + + SQL + + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + + + + + + Primary Key + + + + + Add a primary key constraint + + + + + Add a foreign key constraint + + + + + Add a unique constraint + + + + + Add a check constraint + + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + + + + + Error creating table. Message from database engine: +%1 + + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + + + + + Column '%1' has duplicate data. + + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + + + + + ExportDataDialog + + + Export data as CSV + + + + + Tab&le(s) + + + + + Colu&mn names in first line + + + + + Fie&ld separator + + + + + , + + + + + ; + + + + + Tab + + + + + | + + + + + + + Other + + + + + &Quote character + + + + + " + + + + + ' + + + + + New line characters + + + + + Windows: CR+LF (\r\n) + + + + + Unix: LF (\n) + + + + + Pretty print + + + + + Export data as JSON + + + + + exporting CSV + + + + + + Could not open output file: %1 + + + + + exporting JSON + + + + + + Choose a filename to export data + + + + + Please select at least 1 table. + + + + + Choose a directory + + + + + Export completed. + + + + + ExportSqlDialog + + + Export SQL... + + + + + Tab&le(s) + + + + + Select All + + + + + Deselect All + + + + + &Options + + + + + Keep column names in INSERT INTO + + + + + Multiple rows (VALUES) per INSERT statement + + + + + Export everything + + + + + Export schema only + + + + + Export data only + + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + + + + + Please select at least one table. + + + + + Choose a filename to export + + + + + Export completed. + + + + + Export cancelled or failed. + + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + + + + + Find and Replace... + + + + + Print... + + + + + ExtendedTableWidget + + + Use as Exact Filter + + + + + Containing + + + + + Not containing + + + + + Not equal to + + + + + Greater than + + + + + Less than + + + + + Greater or equal + + + + + Less or equal + + + + + Between this and... + + + + + Regular expression + + + + + Edit Conditional Formats... + + + + + Set to NULL + + + + + Copy + + + + + Copy with Headers + + + + + Copy as SQL + + + + + Paste + + + + + Print... + + + + + Use in Filter Expression + + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + + + + + FileExtensionManager + + + File Extension Manager + + + + + &Up + + + + + &Down + + + + + &Add + + + + + &Remove + + + + + + Description + + + + + Extensions + + + + + *.extension + + + + + FilterLineEdit + + + Filter + + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + + + + + Clear All Conditional Formats + + + + + Use for Conditional Format + + + + + Set Filter Expression + + + + + What's This? + + + + + Is NULL + + + + + Is not NULL + + + + + Is empty + + + + + Is not empty + + + + + Not containing... + + + + + Equal to... + + + + + Not equal to... + + + + + Greater than... + + + + + Less than... + + + + + Greater or equal... + + + + + Less or equal... + + + + + In range... + + + + + Regular expression... + + + + + Edit Conditional Formats... + + + + + FindReplaceDialog + + + Find and Replace + + + + + Fi&nd text: + + + + + Re&place with: + + + + + Match &exact case + + + + + Match &only whole words + + + + + When enabled, the search continues from the other end when it reaches one end of the page + + + + + &Wrap around + + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + + + + + Search &backwards + + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + + + + + &Selection only + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Use regular e&xpressions + + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + + + + + &Find Next + + + + + F3 + + + + + &Replace + + + + + Highlight all the occurrences of the text in the page + + + + + F&ind All + + + + + Replace all the occurrences of the text in the page + + + + + Replace &All + + + + + The searched text was not found + + + + + The searched text was not found. + + + + + The searched text was replaced one time. + + + + + The searched text was found one time. + + + + + The searched text was replaced %1 times. + + + + + The searched text was found %1 times. + + + + + ForeignKeyEditor + + + &Reset + + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + + + + + ImportCsvDialog + + + Import CSV file + + + + + Table na&me + + + + + &Column names in first line + + + + + Field &separator + + + + + , + + + + + ; + + + + + + Tab + + + + + | + + + + + Other + + + + + &Quote character + + + + + + Other (printable) + + + + + + Other (code) + + + + + " + + + + + ' + + + + + &Encoding + + + + + UTF-8 + + + + + UTF-16 + + + + + ISO-8859-1 + + + + + Trim fields? + + + + + Separate tables + + + + + Advanced + + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + + + + + Ignore default &values + + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + + + + + Fail on missing values + + + + + Disable data type detection + + + + + Disable the automatic data type detection when creating a new table. + + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + + + + + Abort import + + + + + Ignore row + + + + + Replace existing row + + + + + Conflict strategy + + + + + + Deselect All + + + + + Match Similar + + + + + Select All + + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + + + + + There is already a table named '%1'. Do you want to import the data into it? + + + + + Creating restore point failed: %1 + + + + + Creating the table failed: %1 + + + + + importing CSV + + + + + Inserting row failed: %1 + + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + + + + + MainWindow + + + DB Browser for SQLite + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + + + + + toolBar1 + + + + + &File + + + + + &Import + + + + + &Export + + + + + &Edit + + + + + &View + + + + + &Help + + + + + &Tools + + + + + DB Toolbar + + + + + Edit Database &Cell + + + + + SQL &Log + + + + + Show S&QL submitted by + + + + + User + + + + + Application + + + + + Error Log + + + + + This button clears the contents of the SQL logs + + + + + &Clear + + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + + + + + &Plot + + + + + DB Sche&ma + + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + + + + + &Remote + + + + + + Project Toolbar + + + + + Extra DB toolbar + + + + + + + Close the current database file + + + + + &New Database... + + + + + + Create a new database file + + + + + This option is used to create a new database file. + + + + + Ctrl+N + + + + + + &Open Database... + + + + + + + + + Open an existing database file + + + + + + + This option is used to open an existing database file. + + + + + Ctrl+O + + + + + &Close Database + + + + + This button closes the connection to the currently open database file + + + + + + Ctrl+W + + + + + &Revert Changes + + + + + + Revert database to last saved state + + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + + + + + &Write Changes + + + + + + Write changes to the database file + + + + + This option is used to save changes to the database file. + + + + + Ctrl+S + + + + + Compact &Database... + + + + + Compact the database file, removing space wasted by deleted records + + + + + + Compact the database file, removing space wasted by deleted records. + + + + + E&xit + + + + + Ctrl+Q + + + + + &Database from SQL file... + + + + + Import data from an .sql dump text file into a new or existing database. + + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + + + + + &Table from CSV file... + + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + + + + + &Database to SQL file... + + + + + Export a database to a .sql dump text file. + + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + + + + + &Table(s) as CSV file... + + + + + Export a database table as a comma separated text file. + + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + + + + + &Create Table... + + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + + + + + &Delete Table... + + + + + + Delete Table + + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + + + + + &Modify Table... + + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + + + + + Create &Index... + + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + + + + + &Preferences... + + + + + + Open the preferences window. + + + + + &DB Toolbar + + + + + Shows or hides the Database toolbar. + + + + + Ctrl+T + + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + Sa&ve Project + + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + This button lets you open a DB Browser for SQLite project file + + + + + Ctrl+Shift+O + + + + + &Save Project As... + + + + + + + Save the project in a file selected in a dialog + + + + + Save A&ll + + + + + + + Save DB file, project file and opened SQL files + + + + + Ctrl+Shift+S + + + + + Browse Table + + + + + W&hat's This? + + + + + Ctrl+F4 + + + + + Shift+F1 + + + + + &About + + + + + &Recently opened + + + + + Open &tab + + + + + This button opens a new tab for the SQL editor + + + + + &Execute SQL + + + + + Execute all/selected SQL + + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + + + + + Ctrl+Return + + + + + + + Save SQL file + + + + + &Load Extension... + + + + + + Execute current line + + + + + Execute line + + + + + This button executes the SQL statement present in the current editor line + + + + + Shift+F5 + + + + + Export as CSV file + + + + + Export table as comma separated values file + + + + + &Wiki + + + + + F1 + + + + + Bug &Report... + + + + + Feature Re&quest... + + + + + Web&site + + + + + &Donate on Patreon... + + + + + + Save the current session to a file + + + + + Open &Project... + + + + + + Load a working session from a file + + + + + &Attach Database... + + + + + + Add another database file to the current database connection + + + + + This button lets you add another database file to the current database connection + + + + + &Set Encryption... + + + + + + Save SQL file as + + + + + This button saves the content of the current SQL editor tab to a file + + + + + &Browse Table + + + + + Copy Create statement + + + + + Copy the CREATE statement of the item to the clipboard + + + + + SQLCipher &FAQ + + + + + Opens the SQLCipher FAQ in a browser window + + + + + Table(&s) to JSON... + + + + + Export one or more table(s) to a JSON file + + + + + Open Data&base Read Only... + + + + + Open an existing database file in read only mode + + + + + Save results + + + + + Save the results view + + + + + This button lets you save the results of the last executed query + + + + + + Find text in SQL editor + + + + + Find + + + + + This button opens the search bar of the editor + + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + + + + + Find or replace + + + + + This button opens the find/replace dialog for the current editor tab + + + + + Ctrl+H + + + + + Export to &CSV + + + + + Save as &view + + + + + Save as view + + + + + Shows or hides the Project toolbar. + + + + + Extra DB Toolbar + + + + + New In-&Memory Database + + + + + Drag && Drop Qualified Names + + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + + + + + Drag && Drop Enquoted Names + + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + + + + + &Integrity Check + + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + + + + + &Foreign-Key Check + + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + + + + + &Quick Integrity Check + + + + + Run a quick integrity check over the open DB + + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + + + + + &Optimize + + + + + Attempt to optimize the database + + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + + + + + + Print + + + + + Print text from current SQL editor tab + + + + + Open a dialog for printing the text in the current SQL editor tab + + + + + + Ctrl+P + + + + + Print the structure of the opened database + + + + + Open a dialog for printing the structure of the opened database + + + + + Un/comment block of SQL code + + + + + Un/comment block + + + + + Comment or uncomment current line or selected block of code + + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + + + + + Ctrl+/ + + + + + Stop SQL execution + + + + + Stop execution + + + + + Stop the currently running SQL script + + + + + Ctrl+L + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Ctrl+E + + + + + Window Layout + + + + + Reset Window Layout + + + + + Alt+0 + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + The database is currenctly busy. + + + + + Click here to interrupt the currently running query. + + + + + Encrypted + + + + + Database is encrypted using SQLCipher + + + + + Read only + + + + + Database file is read only. Editing the database is disabled. + + + + + Database encoding + + + + + + Choose a database file + + + + + Could not open database file. +Reason: %1 + + + + + + + Choose a filename to save under + + + + + In-Memory database + + + + + Could not open project file for writing. +Reason: %1 + + + + + Project saved to file '%1' + + + + + Rename Tab + + + + + Duplicate Tab + + + + + Close Tab + + + + + Opening '%1'... + + + + + There was an error opening '%1'... + + + + + Value is not a valid URL or filename: %1 + + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + + + + + Are you sure you want to delete the view '%1'? + + + + + Are you sure you want to delete the trigger '%1'? + + + + + Are you sure you want to delete the index '%1'? + + + + + Error: could not delete the table. + + + + + Error: could not delete the view. + + + + + Error: could not delete the trigger. + + + + + Error: could not delete the index. + + + + + Message from database engine: +%1 + + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + + + + + Error checking foreign keys after table modification. The changes will be reverted. + + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + + + + + -- EXECUTING SELECTION IN '%1' +-- + + + + + -- EXECUTING LINE IN '%1' +-- + + + + + -- EXECUTING ALL IN '%1' +-- + + + + + %1 rows returned in %2ms + + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + + + + + Execution finished with errors. + + + + + Execution finished without errors. + + + + + Choose text files + + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + + + + + Choose a file to import + + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + &%1 %2%3 + + + + + (read only) + + + + + Open Database or Project + + + + + Attach Database... + + + + + Import CSV file(s)... + + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + + + + + + Do you want to save the changes made to SQL tabs in a new project file? + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + + + + + Do you want to save the changes made to the SQL file %1? + + + + + Text files(*.sql *.txt);;All files(*) + + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + + + + + Do you want to save the changes made to the project file '%1'? + + + + + + At line %1: + + + + + Result: %1 + + + + + Result: %2 + + + + + File %1 already exists. Please choose a different name. + + + + + Error importing data: %1 + + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + + + + + Import completed. + + + + + Delete View + + + + + Modify View + + + + + Delete Trigger + + + + + Modify Trigger + + + + + Delete Index + + + + + Modify Index + + + + + Modify Table + + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + + + + + Select SQL file to open + + + + + Select file name + + + + + Select extension file + + + + + Extension successfully loaded. + + + + + Error loading extension: %1 + + + + + Could not find resource file: %1 + + + + + + Don't show again + + + + + New version available. + + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + + + + + Choose a project file to open + + + + + DB Browser for SQLite project file (*.sqbpro) + + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + + + + + Collation needed! Proceed? + + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + + + + + creating collation + + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + + + + + Please specify the view name + + + + + There is already an object with that name. Please choose a different name. + + + + + View successfully created. + + + + + Error creating view: %1 + + + + + This action will open a new SQL tab for running: + + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Press Help for opening the corresponding SQLite reference page. + + + + + Busy (%1) + + + + + NullLineEdit + + + Set to NULL + + + + + Alt+Del + + + + + PlotDock + + + Plot + + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + + + + + Columns + + + + + X + + + + + Y1 + + + + + Y2 + + + + + Axis Type + + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + + + + + Line type: + + + + + + None + + + + + Line + + + + + StepLeft + + + + + StepRight + + + + + StepCenter + + + + + Impulse + + + + + Point shape: + + + + + Cross + + + + + Plus + + + + + Circle + + + + + Disc + + + + + Square + + + + + Diamond + + + + + Star + + + + + Triangle + + + + + TriangleInverted + + + + + CrossSquare + + + + + PlusSquare + + + + + CrossCircle + + + + + PlusCircle + + + + + Peace + + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + + + + + Save current plot... + + + + + + Load all data and redraw plot + + + + + Copy + + + + + Print... + + + + + Show legend + + + + + Stacked bars + + + + + Date/Time + + + + + Date + + + + + Time + + + + + + Numeric + + + + + Label + + + + + Invalid + + + + + + + Row # + + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + + + + + Choose an axis color + + + + + Choose a filename to save under + + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + + + + + Loading all remaining data for this table took %1ms. + + + + + PreferencesDialog + + + Preferences + + + + + &General + + + + + Default &location + + + + + Remember last location + + + + + Always use this location + + + + + Remember last location for session only + + + + + + + ... + + + + + Lan&guage + + + + + Toolbar style + + + + + + + + + Only display the icon + + + + + + + + + Only display the text + + + + + + + + + The text appears beside the icon + + + + + + + + + The text appears under the icon + + + + + + + + + Follow the style + + + + + + + + + + + + + enabled + + + + + Automatic &updates + + + + + DB file extensions + + + + + Manage + + + + + Show remote options + + + + + &Database + + + + + Database &encoding + + + + + Open databases with foreign keys enabled. + + + + + &Foreign keys + + + + + Remove line breaks in schema &view + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + + + + + Prefetch block si&ze + + + + + SQ&L to execute after opening database + + + + + Default field type + + + + + Main Window + + + + + Database Structure + + + + + Browse Data + + + + + Execute SQL + + + + + Edit Database Cell + + + + + When this value is changed, all the other color preferences are also set to matching colors. + + + + + Follow the desktop style + + + + + Dark style + + + + + Application style + + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + Database structure font size + + + + + Data &Browser + + + + + Font + + + + + &Font + + + + + Font si&ze + + + + + Content + + + + + Symbol limit in cell + + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + + + + + Threshold for completion and calculation on selection + + + + + Show images in cell + + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + + + + + Field display + + + + + Displayed &text + + + + + Binary + + + + + NULL + + + + + Regular + + + + + + + + + + Click to set this color + + + + + Text color + + + + + Background color + + + + + Preview only (N/A) + + + + + Filters + + + + + Escape character + + + + + Delay time (&ms) + + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + + + + + &SQL + + + + + Settings name + + + + + Context + + + + + Colour + + + + + Bold + + + + + Italic + + + + + Underline + + + + + Keyword + + + + + Function + + + + + Table + + + + + Comment + + + + + Identifier + + + + + String + + + + + Current line + + + + + Background + + + + + Foreground + + + + + SQL editor &font + + + + + SQL &editor font size + + + + + SQL &results font size + + + + + Tab size + + + + + &Wrap lines + + + + + Never + + + + + At word boundaries + + + + + At character boundaries + + + + + At whitespace boundaries + + + + + &Quotes for identifiers + + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + + + + + "Double quotes" - Standard SQL (recommended) + + + + + `Grave accents` - Traditional MySQL quotes + + + + + [Square brackets] - Traditional MS SQL Server quotes + + + + + Code co&mpletion + + + + + Keywords in &UPPER CASE + + + + + When set, the SQL keywords are completed in UPPER CASE letters. + + + + + Error indicators + + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + + + + + Hori&zontal tiling + + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + &Extensions + + + + + Select extensions to load for every database: + + + + + Add extension + + + + + Remove extension + + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + + + + + Disable Regular Expression extension + + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + + + + + Allow loading extensions from SQL code + + + + + Remote + + + + + Your certificates + + + + + File + + + + + + Subject CN + + + + + Subject Common Name + + + + + Issuer CN + + + + + Issuer Common Name + + + + + + Valid from + + + + + + Valid to + + + + + + Serial number + + + + + CA certificates + + + + + Common Name + + + + + Subject O + + + + + Organization + + + + + Clone databases into + + + + + Proxy + + + + + Configure + + + + + + Choose a directory + + + + + The language will change after you restart the application. + + + + + Select extension file + + + + + Extensions(*.so *.dylib *.dll);;All files(*) + + + + + Import certificate file + + + + + No certificates found in this file. + + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + + + + + ProxyDialog + + + Proxy Configuration + + + + + Pro&xy Type + + + + + Host Na&me + + + + + Port + + + + + Authentication Re&quired + + + + + &User Name + + + + + Password + + + + + None + + + + + System settings + + + + + HTTP + + + + + Socks v5 + + + + + QObject + + + All files (*) + + + + + Error importing data + + + + + from record number %1 + + + + + . +%1 + + + + + Importing CSV file... + + + + + Cancel + + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + + + + + Left + + + + + Right + + + + + Center + + + + + Justify + + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + + + + + DB Browser for SQLite Project Files (*.sqbpro) + + + + + SQL Files (*.sql) + + + + + All Files (*) + + + + + Text Files (*.txt) + + + + + Comma-Separated Values Files (*.csv) + + + + + Tab-Separated Values Files (*.tsv) + + + + + Delimiter-Separated Values Files (*.dsv) + + + + + Concordance DAT files (*.dat) + + + + + JSON Files (*.json *.js) + + + + + XML Files (*.xml) + + + + + Binary Files (*.bin *.dat) + + + + + SVG Files (*.svg) + + + + + Hex Dump Files (*.dat *.bin) + + + + + Extensions (*.so *.dylib *.dll) + + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + + + + + Author + + + + + Size + + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + + + + + Error creating local databases list. +%1 + + + + + RemoteDock + + + Remote + + + + + Identity + + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Local + + + + + Current Database + + + + + Clone + + + + + User + + + + + Database + + + + + Branch + + + + + Commits + + + + + Commits for + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + + + + + Back + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + Push currently opened database to server + + + + + Select an identity to connect + + + + + Public + + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + + + + + Branch + + + + + Last modified + + + + + Size + + + + + Commit + + + + + File + + + + + RemoteModel + + + Name + + + + + Commit + + + + + Last modified + + + + + Size + + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + + + + + Error: Invalid client certificate specified. + + + + + Please enter the passphrase for this client certificate in order to authenticate. + + + + + Cancel + + + + + Uploading remote database to +%1 + + + + + Downloading remote database from +%1 + + + + + + Error: The network is not accessible. + + + + + Error: Cannot open the file for sending. + + + + + RemotePushDialog + + + Push database + + + + + Database na&me to push to + + + + + Commit message + + + + + Database licence + + + + + Public + + + + + Branch + + + + + Force push + + + + + Username + + + + + Database will be public. Everyone has read access to it. + + + + + Database will be private. Only you have access to it. + + + + + Use with care. This can cause remote commits to be deleted. + + + + + RunSql + + + Execution aborted by user + + + + + , %1 rows affected + + + + + query executed successfully. Took %1ms%2 + + + + + executing query + + + + + SelectItemsPopup + + + A&vailable + + + + + Sele&cted + + + + + SqlExecutionArea + + + Form + + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + The found pattern must be a whole word + + + + + Whole Words + + + + + Text pattern to find considering the checks in this frame + + + + + Find in editor + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + + + + + Results of the last executed statements + + + + + This field shows the results and status codes of the last executed statements. + + + + + Couldn't read file: %1. + + + + + + Couldn't save file: %1. + + + + + Your changes will be lost when reloading it! + + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + + + + + (X) ltrim(X) removes spaces from the left side of X. + + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + + + + + (X) rtrim(X) removes spaces from the right side of X. + + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + + + + + (X) trim(X) removes spaces from both ends of X. + + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + + + + + SqliteTableModel + + + reading rows + + + + + loading... + + + + + References %1(%2) +Hold %3Shift and click to jump there + + + + + Error changing data: +%1 + + + + + retrieving list of columns + + + + + Fetching data... + + + + + + Cancel + + + + + TableBrowser + + + Browse Data + + + + + &Table: + + + + + Select a table to browse data + + + + + Use this list to select a table to be displayed in the database view + + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + + + + + Text pattern to find considering the checks in this frame + + + + + Find in table + + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + The found pattern must be a whole word + + + + + Whole Cell + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + Text to replace with + + + + + Replace with + + + + + Replace next match + + + + + + Replace + + + + + Replace all matches + + + + + Replace all + + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + + + + + |< + + + + + Scroll one page upwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + + + + + < + + + + + 0 - 0 of 0 + + + + + Scroll one page downwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + + + + + > + + + + + Scroll to the end + + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + + + + + Go to: + + + + + Enter record number to browse + + + + + Type a record number in this area and click the Go to: button to display the record in the database view + + + + + 1 + + + + + Show rowid column + + + + + Toggle the visibility of the rowid column + + + + + Unlock view editing + + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + + + + + Edit display format + + + + + Edit the display format of the data in this column + + + + + + New Record + + + + + + Insert a new record in the current table + + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + + + + + + Delete Record + + + + + Delete the current record + + + + + + This button deletes the record or records currently selected in the table + + + + + + Insert new record using default values in browsed table + + + + + Insert Values... + + + + + + Open a dialog for inserting values in a new record + + + + + Export to &CSV + + + + + + Export the filtered data to CSV + + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + + + + + Save as &view + + + + + + Save the current filter, sort column and display formats as a view + + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + + + + + Save Table As... + + + + + + Save the table as currently displayed + + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + + + + + Hide column(s) + + + + + Hide selected column(s) + + + + + Show all columns + + + + + Show all columns that were hidden + + + + + + Set encoding + + + + + Change the encoding of the text in the table cells + + + + + Set encoding for all tables + + + + + Change the default encoding assumed for all tables in the database + + + + + Clear Filters + + + + + Clear all filters + + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + + + + + Clear Sorting + + + + + Reset the order of rows to the default + + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + + + + + Print + + + + + Print currently browsed table data + + + + + Print currently browsed table data. Print selection if more than one cell is selected. + + + + + Ctrl+P + + + + + Refresh + + + + + Refresh the data in the selected table + + + + + This button refreshes the data in the currently selected table. + + + + + F5 + + + + + Find in cells + + + + + Open the find tool bar which allows you to search for values in the table view below. + + + + + + Bold + + + + + Ctrl+B + + + + + + Italic + + + + + + Underline + + + + + Ctrl+U + + + + + + Align Right + + + + + + Align Left + + + + + + Center Horizontally + + + + + + Justify + + + + + + Edit Conditional Formats... + + + + + Edit conditional formats for the current column + + + + + Clear Format + + + + + Clear All Formats + + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + + + + + + Font Color + + + + + + Background Color + + + + + Toggle Format Toolbar + + + + + Show/hide format toolbar + + + + + + This button shows or hides the formatting toolbar of the Data Browser + + + + + Select column + + + + + Ctrl+Space + + + + + Replace text in cells + + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + + + + + + , %n column(s) + + + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + + + + + Conditional formats for "%1" + + + + + determining row count... + + + + + %1 - %2 of >= %3 + + + + + %1 - %2 of %3 + + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + + + + + Delete Records + + + + + Duplicate records + + + + + Duplicate record + + + + + Ctrl+" + + + + + Adjust rows to contents + + + + + Error deleting record: +%1 + + + + + Please select a record first + + + + + There is no filter set for this table. View will not be created. + + + + + Please choose a new encoding for all tables. + + + + + Please choose a new encoding for this table. + + + + + %1 +Leave the field empty for using the database encoding. + + + + + This encoding is either not valid or not supported. + + + + + %1 replacement(s) made. + + + + + VacuumDialog + + + Compact Database + + + + + Warning: Compacting the database will commit all of your changes. + + + + + Please select the databases to co&mpact: + + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_fr.qm b/src/SqliteDBProcess/src/translations/sqlb_fr.qm new file mode 100644 index 0000000..589b9f6 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_fr.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_fr.ts b/src/SqliteDBProcess/src/translations/sqlb_fr.ts new file mode 100644 index 0000000..031adce --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_fr.ts @@ -0,0 +1,7039 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + À propos de DB-Browser pour SQLite + + + + Version + Version + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB Browser pour SQLite est un logiciel libre, open-source utilisé pour créer, concevoir et modifier des Bases de Données SQLite.</p><p>Ce programme vous est proposé sous une double licence : Mozilla Public License Version 2 et GNU General Public License Version 3 ou suivante. Vous pouvez le modifier ou le redistribuer en respectant les conditions de ces licences.</p><p>Voir : <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> et <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> pour plus de détails</p><p>Pour plus d'information concernant ce programme, visitez notre site Internet : <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">Ce logiciel utilise le GPL/LGPL Qt Toolkit fourni par </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Voir : </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> pour les conditions de licence et toute autre information.</span></p><p><span style=" font-size:small;">Il utilise le jeu d&apos;icones Silk créé par Mark James disponible selon la licence Creative Commons Attribution 2.5 and 3.0.<br/>Voir </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> pour plus de details.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Ajouter un nouvel enregistrement + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Saisissez les valeurs en tenant compte des contraintes. Les champs en gras sont obligatoires. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + Dans la colonne Valeur, vous pouvez spécifier la valeur du champ identifié dans la colonne Nom. La colonne Type indique le type du champ. Les valeurs par défaut sont affichées dans le même style que les valeurs NULL. + + + + Name + Nom + + + + Type + Type + + + + Value + Valeur + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Valeurs à insérer. Les valeurs par défaut pré-remplies sont insérées automatiquement à moins qu'elles ne soient modifiées. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Lorsque vous éditez les valeurs dans le cadre supérieur, la requête SQL d'insersion du nouvel enregistrement est affichée ici. Vous pouvez l'éditer manuellement avant de l'enregistrer. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Enregistrer</span> soumettra l'instruction SQL affichée à la Base de Données pour créer le nouvel enregistrement..</p><p><span style=" font-weight:600;">Restaurer les valeurs par défaut</span> restaurera les valeurs par défaut dans la <span style=" font-weight:600;">colonne</span> Valeur.</p><p><span style=" font-weight:600;">Annuler</span> fermera cette boîte de dialogue sans exécuter la requête.</p></body></html> + + + + Auto-increment + + Incrément automatique + + + + + Unique constraint + + Contrainte unique + + + + + Check constraint: %1 + + Vérifier les contraintes : %1 + + + + + Foreign key: %1 + + Clé étrangère : %1 + + + + + Default value: %1 + + Valeur par défaut : %1 + + + + + Error adding record. Message from database engine: + +%1 + Erreur lors de l'ajout d'un enregistrement. Message du moteur de Base de Données : + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Êtes-vous sûr de vouloir restaurer toutes les valeurs saisies à leurs valeurs par défaut ? + + + + Application + + + Possible command line arguments: + Arguments utilisables en ligne de commande : + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + Les options de commande -o/--option et -O/--save-option nécessitent un argument sous la forme groupe/paramètre=valeur + + + + Usage: %1 [options] [<database>|<project>] + + Usage: %1 [options] [<basededonnees>|<projet>] + + + + + -h, --help Show command line options + -h, --help Affiche les options utilisables de la ligne de commande + + + + -q, --quit Exit application after running scripts + -q, --quit Quitte l'application après l'exécution des scripts + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <fichier> Execute ce fichier SQL après avoir ouvert la BdD + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <table> Parcourt cette table après avoir ouvert la BdD + + + + -R, --read-only Open database in read-only mode + -R, --read-only Ouvre la Base de Données en lectyure seule + + + + -o, --option <group>/<setting>=<value> + -o, --option <groupe>/<paramètre>=<valeur> + + + + Run application with this setting temporarily set to value + Lance l'application en utilisant temporairement la valeur de ce paramètre + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <groupe>/<paramètre>=<valeur> + + + + Run application saving this value for this setting + Lance l'application en sauvegardant la valeur de ce paramètre + + + + -v, --version Display the current version + -v, --version Affiche la version de l'application + + + + <database> Open this SQLite database + <database> Ouvre cette Base de Données SQLite + + + + <project> Open this project file (*.sqbpro) + <projet> Ouvre ce fichier projet (*.sqbpro) + + + + The -s/--sql option requires an argument + L'option -s/--sql nécessite un argument + + + + The file %1 does not exist + Le fichier %1 n'existe pas + + + + The -t/--table option requires an argument + L'option -t/--table nécessite un argument + + + + Invalid option/non-existant file: %1 + Option invalide ou fichier %1 inexistant + + + + SQLite Version + Version de SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + SQLCipher Version %1 (basé sur SQLite %2) + + + + DB Browser for SQLite Version %1. + DB Browser pour SQLite Version %1. + + + + Built for %1, running on %2 + Compilé pour %1, fonctionnant sur %2 + + + + Qt Version %1 + Version de Qt %1 + + + + CipherDialog + + + SQLCipher encryption + Chiffrement par SQLCipher + + + + &Password + Mot de &Passe + + + + &Reenter password + &Retaper le mot de passe + + + + Encr&yption settings + Para&mètre de chiffrement + + + + SQLCipher &3 defaults + SQLCipher &3 par défaut + + + + SQLCipher &4 defaults + SQLCipher &4 par défaut + + + + Custo&m + Pers&onnalisé + + + + Page si&ze + &Taille de page + + + + &KDF iterations + Itérations &KDF + + + + HMAC algorithm + Algorithme HMAC + + + + KDF algorithm + Algorithme KDF + + + + Plaintext Header Size + Taille En-tête texte en clair + + + + Passphrase + The button size is not large enought to handle the whole "french text", if #Passphrase must be translate + Phrase Secrète + + + + Raw key + Same comment as for Passphrase + Clé de Chiffrement + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Veuillez définir une clé pour chiffrer la Base de Données. +Notez que si vous modifiez les autres paramètres, optionnels, vous devrez les ressaisir chaque fois que vous ouvrirez la Base de Données. +Laisser les champs Mot de passe à blanc pour désactiver le chiffrement. +Le processus de chiffrement peut prendre un certain temps. Vous devriez avoir une copie de sauvegarde de votre Base de Données ! +Les modifications non enregistrées seront appliquées avant la modification du chiffrement. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Veuillez entrer la clé utilisée pour le chiffrement de la Base de Données. +Si d'autres paramètres ont été modifiés pour cette Base de Données, vous devrez aussi fournir ces informations. + + + + ColumnDisplayFormatDialog + + + Choose display format + Choisir un format d'affichage + + + + Display format + Format d'affichage + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Choisissez le format d'affichage pour la colonne '%1'. +Il sera appliqué à chaque valeur avant son affichage. + + + + Default + Défaut + + + + Decimal number + Nombre décimal + + + + Exponent notation + Notation scientifique + + + + Hex blob + Blob Hexadécimal + + + + Hex number + Nombre Hexadécimal + + + + Apple NSDate to date + Apple NSDate vers date + + + + Java epoch (milliseconds) to date + Java epoch (milliseconds) en date + + + + .NET DateTime.Ticks to date + .NET DateTime.Ticks en date + + + + Julian day to date + Date jullienne vers Date + + + + Unix epoch to local time + Heure Unix epoch vers heure locale + + + + Date as dd/mm/yyyy + Date au format DD/MM/AAAA + + + + Lower case + Minuscule + + + + Custom display format must contain a function call applied to %1 + Le format d'affichage personnalisé doit contenir un appel de fonction appliqué à %1 + + + + Error in custom display format. Message from database engine: + +%1 + Erreur dans le format d'affichage personnalisé. Message du moteur de Base de Données : + +%1 + + + + Custom display format must return only one column but it returned %1. + Le format d'affichage personnalisé ne doit renvoyer qu'une seule colonne, mais il a renvoyé %1. + + + + Octal number + Nombre en Octal + + + + Round number + Nombre arrondi + + + + Unix epoch to date + Date Unix epoch en Date + + + + Upper case + Majuscule + + + + Windows DATE to date + Date Windows en Date + + + + Custom + Personnalisé + + + + CondFormatManager + + + Conditional Format Manager + Gestion des formats conditionnels + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + Cette fenêtre de dialogue permet de créer et de modifier des formats conditionnels. Chaque style de cellule sera sélectionné par la première condition remplie pour les données de cette cellule. Les formats conditionnels peuvent être déplacés vers le haut et vers le bas. Ceux des rangées supérieures ont la priorité sur ceux des rangées inférieures. La syntaxe des conditions est la même que celle des filtres et une condition vide s'applique à toutes les valeurs. + + + + Add new conditional format + Ajouter un nouveau format conditionnel + + + + &Add + &Ajouter + + + + Remove selected conditional format + Supprime le format conditionnel sélectionné + + + + &Remove + &Supprimer + + + + Move selected conditional format up + Déplace le format conditionnel vers le haut + + + + Move &up + &Monter + + + + Move selected conditional format down + Déplace le format conditionnel vers le bas + + + + Move &down + &Descendre + + + + Foreground + Avant Plan + + + + Text color + Couleur de texte + + + + Background + Arrière plan + + + + Background color + Couleur d'arrière plan + + + + Font + Police + + + + Size + Taille + + + + Bold + Gras + + + + Italic + Italique + + + + Underline + Souligné + + + + Alignment + Alignement + + + + Condition + Condition + + + + + Click to select color + Cliquer pour sélectionner une couleur + + + + Are you sure you want to clear all the conditional formats of this field? + Êtes-vous sûr de vouloir effacer tous les formats conditionnels de ce champ ? + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + Veuillez spécifier le nom de la Base de Données sous laquelle vous voulez accéder à la Base de Données attachée + + + + Invalid file format + Format de fichier invalide + + + + Do you want to save the changes made to the database file %1? + Voulez-vous enregistrer les changements effectués dans la Base de Données %1 ? + + + + Exporting database to SQL file... + Exporter la Base de Données dans un fichier SQL... + + + + + Cancel + Annuler + + + + Executing SQL... + Exécution du SQL... + + + + Action cancelled. + Action annulée. + + + + This database has already been attached. Its schema name is '%1'. + Cette Base de Données a déjà été attachée. Son nom de schéma est '%1'. + + + + Do you really want to close this temporary database? All data will be lost. + Voulez-vous vraiment fermer cette Base de Données temporaire ? Toutes les données seront perdues. + + + + Database didn't close correctly, probably still busy + La Base de Données ne s'est pas fermée correctement; Elle est probablement encore occupée + + + + The database is currently busy: + La Base de Données est actuellement occupée : + + + + Do you want to abort that other operation? + Voulez-vous annuler cette autre opération ? + + + + + No database file opened + Aucun fichier de Base de Données ouvert + + + + + Error in statement #%1: %2. +Aborting execution%3. + Erreur dans le traitement #%1 : %2. +Exécution de %3 abandonnée. + + + + + and rolling back + et annulation des changements + + + + didn't receive any output from %1 + n'a pas reçu toutes les sorties de %1 + + + + could not execute command: %1 + ne peut pas exécuter les commandes : %1 + + + + Cannot delete this object + Impossible de supprimer cet objet + + + + Cannot set data on this object + 170726 MVT Has to be checked in real context + Définition des données impossible pour cet objet + + + + + A table with the name '%1' already exists in schema '%2'. + Une table portant le nom " %1 " existe déjà dans le schéma " %2 ". + + + + No table with name '%1' exists in schema '%2'. + Il n'existe pas de table nommée " %1 " dans le schéma " %2 ". + + + + + Cannot find column %1. + La colonne %1 n'a pas été trouvée. + + + + Creating savepoint failed. DB says: %1 + La création du point de restauration a échoué. DB indique : %1 + + + + Renaming the column failed. DB says: +%1 + Le changement de nom de la colonne a échoué. DB indique : +%1 + + + + + Releasing savepoint failed. DB says: %1 + La libération du point de sauvegarde a échoué. DB indique : %1 + + + + Creating new table failed. DB says: %1 + La création d'une nouvelle table a échoué. DB indique : %1 + + + + Copying data to new table failed. DB says: +%1 + La copie des données dans une nouvelle table a échoué. DB indique : %1 + + + + Deleting old table failed. DB says: %1 + La suppression d'une ancienne table a échoué. DB indique : %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + Erreur lors du changement de nom de la table %1 vers %2. +Message du moteur de Base de Données : +%3 + + + + could not get list of db objects: %1 + La liste des objets de la Base de Données ne peut être obtenue : %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + La restauration de certains des objets associés à cette table a échoué. Cela est le plus souvent dû au changement du nom de certaines colonnes. Voici l'instruction SQL que vous pourrez corriger et exécuter manuellement : + + + + + + could not get list of databases: %1 + n'a pas pu obtenir la liste des bases de données : %1 + + + + Error loading extension: %1 + Erreur lors du chargement de l'extension %1 + + + + could not get column information + 170726 MVT Has to be checked in real context + ne peut obtenir les informations sur la colonne + + + + Error setting pragma %1 to %2: %3 + Erreur dans les paramètres des pragma %1 à %2 : %3 + + + + File not found. + Fichier non trouvé. + + + + DbStructureModel + + + Name + Nom + + + + Object + Objet + + + + Type + Type + + + + Schema + Schéma + + + + Database + Base de Données + + + + Browsables + Consultables + + + + All + Tout + + + + Temporary + Temporaire + + + + Tables (%1) + Tables (%1) + + + + Indices (%1) + Index (%1) + + + + Views (%1) + Vues (%1) + + + + Triggers (%1) + Déclencheurs (%1) + + + + EditDialog + + + Edit database cell + Éditer le contenu d'une cellule + + + + Mode: + Mode : + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Voici la liste des modes pris en charge par l'éditeur de cellules. Choisissez un mode d'affichage ou d'édition des données de la cellule courante. + + + + RTL Text + Remark : there is not acronym in french for Right to Left Text (DàG : Droite à Gauche ?). If DçG is not correct, we should use the HTML dir parameter RTL + Texte DàG + + + + + Image + Image + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + Ajuster automatiquement le mode éditeur au type de données chargé + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Ce bouton à cocher active ou désactive le changement automatique du mode éditeur. Lorsqu'une nouvelle cellule est sélectionnée ou de nouvelles données sont importées et que la commutation automatique est activée, le mode s'adapte au type de données détecté. Vous pouvez ensuite changer le mode éditeur manuellement. Si vous souhaitez conserver ce mode de commutation manuelle pendant que vous vous déplacez dans les cellules, éteignez le bouton. + + + + Auto-switch + Auto-switch + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + Les modes éditeur de texte vous permettent de modifier du texte brut, ainsi que des données JSON ou XML avec une mise en évidence de la syntaxe, un formatage automatique et une validation avant l'enregistrement. + +Les erreurs sont signalées par un trait de soulignement rouge. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Cet éditeur Qt est utilisé pour les scripts écrits de droite à gauche. Ils ne sont pas pris en charge par l'éditeur de texte par défaut. La présence de caractères de droite à gauche est détectée et ce mode d'édition est automatiquement sélectionné. + + + + Open preview dialog for printing the data currently stored in the cell + Ouvrir la fenêtre de prévisualisation pour imprimer les données actuellement stockées dans la cellule + + + + Auto-format: pretty print on loading, compact on saving. + Auto-format : formater au chargement, compacter à l'enregistrement. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Lorsqu'elle est activée, la fonction de formatage automatique met en forme les données lors du chargement, transforme le texte en lignes et ajoute des retraits pour une lisibilité maximale. Lors de la sauvegarde des données, la fonction de formatage automatique compacte les données en supprimant les fins des lignes et les espaces inutiles. + + + + Word Wrap + Coupure des mots + + + + Wrap lines on word boundaries + Coupe les lignes aux limites des mots + + + + + Open in default application or browser + Ouvrir dans l'application ou le navigateur par défaut + + + + Open in application + Ouvrir dans l'application + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + La valeur est interprétée comme étant un fichier ou une URL. Elle sera ouverte dans l'application ou le navigateur web par défaut. + + + + Save file reference... + Enregistrer la référence du fichier... + + + + Save reference to file + Enregistre la référence au fichier + + + + + Open in external application + Ouvrir dans une application externe + + + + Autoformat + Format Automatique + + + + &Export... + &Exporter... + + + + + &Import... + &Importer... + + + + + Import from file + Importer depuis un fichier + + + + + Opens a file dialog used to import any kind of data to this database cell. + Ouvre une boîte de dialogue pour importer n'importe quel type de données dans cette cellule de Base de Données. + + + + Export to file + Exporter vers un fichier + + + + Opens a file dialog used to export the contents of this database cell to a file. + Ouvrir la boîte de dialogue pour exporter le contenu de cette cellule de la Base de Données vers un fichier. + + + + + Print... + Imprimer... + + + + Open preview dialog for printing displayed image + Ouvrir un apperçu de l'image pour son impression + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Ouvrir un apperçu du texte avant son impression + + + + Copy Hex and ASCII + Copier l'Hex et l'ASCII + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Copier les colonnes hexadécimales et ASCII sélectionnées dans le presse-papiers + + + + Ctrl+Shift+C + Ctrl+Maj+C + + + + Set as &NULL + Définir comme &NULL + + + + Apply data to cell + Appliquer les données à la cellule + + + + This button saves the changes performed in the cell editor to the database cell. + Ce bouton permet d'enregistrer les modifications effectuées dans l'éditeur de cellule dans la cellule de Base de Données. + + + + Apply + Appliquer + + + + Text + Texte + + + + Binary + Binaire + + + + Erases the contents of the cell + Effacer le contenu de la cellule + + + + This area displays information about the data present in this database cell + Cette zone affiche des informations à propos des données contenues dans la cellule de la Base de Données + + + + Type of data currently in cell + Type actuel des données dans la cellule + + + + Size of data currently in table + Taille actuelle des données dans la table + + + + Choose a filename to export data + Choisir un nom de fichier pour exporter les données + + + + Type of data currently in cell: %1 Image + Type actuel des données de la cellule. Image %1 + + + + %1x%2 pixel(s) + %1x%2 pixel(s) + + + + Type of data currently in cell: NULL + Type actuel des données de la cellule : NULL + + + + + Type of data currently in cell: Text / Numeric + Type actuel des données de la cellule : Texte / Numérique + + + + + Image data can't be viewed in this mode. + L'image ne peut être affichée dans ce mode. + + + + + Try switching to Image or Binary mode. + Essayez de basculer vers le mode Image ou le mode Binaire. + + + + + Binary data can't be viewed in this mode. + Les données Binaires ne peuvent être affichées dans ce mode. + + + + + Try switching to Binary mode. + Essayez de basculer vers le mode Binaire. + + + + Couldn't save file: %1. + Le fichier %1 ne peut être sauvegardé. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + Les données ont été enregistrées dans un fichier temporaire. Elles ont été ouvertes avec l'application par défaut. Vous pouvez maintenant modifier le fichier et, lorsque vous serez prêt, appliquer les nouvelles données enregistrées à l'éditeur de cellules ou annuler les modifications. + + + + + Image files (%1) + Fichiers image (%1) + + + + Binary files (*.bin) + Fichiers Binaires (*.bin) + + + + Choose a file to import + Choisir un fichier à importer + + + + %1 Image + %1 Image + + + + Invalid data for this mode + Les données sont invalides pour ce mode + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + La cellule contient des données %1 invalides. Raison : %2. Vouslez-vous vraiment l'appliquer à la cellule ? + + + + + + %n character(s) + + %n caractère + %n caractères + + + + + Type of data currently in cell: Valid JSON + Type de données actuellement dans la cellule : JSON valide + + + + Type of data currently in cell: Binary + Type actuel des données de la cellule : Binaire + + + + + %n byte(s) + + %n octet + %n octets + + + + + EditIndexDialog + + + &Name + &Nom + + + + Order + Ordre + + + + &Table + &Table + + + + Edit Index Schema + Éditer le schéma d'index + + + + &Unique + &Unique + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Pour restreindre l'index à un sous-ensemble de la table, vous pouvez spécifier une clause WHERE ici. Elle sélectionnera le sous-ensemble de la table qui sera indexé + + + + Partial inde&x clause + Clause d'inde&x partiel + + + + Colu&mns + &Colonnes + + + + Table column + Colonne de table + + + + Type + Type + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + 170726 MVT Has to be checked in real context + Ajouter une nouvelle expression de colonne à l'index. Les expressions de colonnes contiennent des expressions SQL plutôt que des noms de colonnes. + + + + Index column + Colonne d'Index + + + + Deleting the old index failed: +%1 + La suppression de l'ancien index a échoué : +%1 + + + + Creating the index failed: +%1 + La création de l'index a échoué : +%1 + + + + EditTableDialog + + + Edit table definition + Éditer la définition de la table + + + + Table + Table + + + + Advanced + Avancé + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Faire cette table "SANS RowId". Positionner cette option nécessite un champ de type INTEGER défini comme clé primaire ET pour lequel l'incrément automatique a été désactivé. + + + + Without Rowid + Sans RowId + + + + Fields + Champs + + + + Database sche&ma + Sché&ma de la Base de Données + + + + Add + Ajouter + + + + Remove + Supprimer + + + + Move to top + Monter au début + + + + Move up + Monter + + + + Move down + Descendre + + + + Move to bottom + Descendre à la fin + + + + + Name + Nom + + + + + Type + Type + + + + NN + NN + + + + Not null + Non-Null + + + + PK + CP + + + + Primary key + Clé primaire + + + + AI + IA + + + + Autoincrement + Incrément automatique + + + + U + U + + + + + + Unique + Unique + + + + Default + Défaut + + + + Default value + Valeur par défaut + + + + + + Check + Vérifier + + + + Check constraint + Vérifier les contraintes + + + + Collation + Séquence + + + + + + Foreign Key + Clé étrangère + + + + Constraints + Contraintes + + + + Add constraint + Ajouter une contrainte + + + + Remove constraint + Supprimer une contrainte + + + + Columns + Colonnes + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Attention : </span>Il y a quelque chose dans la définition de cette table que notre analyseur syntaxique n'a pas complètement compris. La modification et l'enregistrement de cette table peuvent créer des problèmes.</p></body></html> + + + + + Primary Key + Clé primaire + + + + Add a primary key constraint + Ajoute une clé primaire à la contrainte + + + + Add a foreign key constraint + Ajoute une clé étrangère à la contrainte + + + + Add a unique constraint + Ajoute une contrainte unique + + + + Add a check constraint + Ajouter une contrainte de contrôle + + + + Error creating table. Message from database engine: +%1 + Erreur lors de la création de la table. Message du moteur de la Base de Données : +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Il existe déjà un champ avec ce nom. Veuillez le renommer avant ou choisir un autre nom pour ce champ. + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Une table ne peut avoir qau'une seule clé primaire. Veuillez modifier la clé primaire existante à la place. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Cette colonne est référencée dans une clé étrangère dans la table %1. Son nom ne peut être changé. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Il existe au moins un enregistrement avec ce champ autorisant des valeurs nulles (NULL). Il est donc impossible de définir cet indicateur. Veuillez modifier les données de la table au préalable. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Il existe au moins un enregistrement avec une valeur qui n'est pas un nombre entier dans ce champ. Il est donc impossible de définir l'indicateur AI (Incrément automatique) sur ce champ. Veuillez modifier les données de la table au préalable. + + + + Column '%1' has duplicate data. + + La colonne %1 a des des données en double. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Il est donc impossible d'activer l'indicateur "Unique". Veuillez supprimer les données en double, cela vous permettra d'activer l'indicateur "Unique". + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Êtes-vous sûr de vouloir supprimer le champ "%1" ? +Toutes les données contenues dans ce champ seront perdues. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Veuillez ajouter un champ ayant les caractéristiques suivant avant de positionner l'option Sans RowId : +- Défini comme clé primaire ; +- Incrément automatique désactivé + + + + ExportDataDialog + + + Export data as CSV + Exporter au format CSV + + + + Tab&le(s) + &Table(s) + + + + Colu&mn names in first line + Nom des &Col. en 1ère ligne + + + + Fie&ld separator + &Séparateur de champ + + + + , + , + + + + ; + ; + + + + Tab + Tabulation + + + + | + | + + + + + + Other + Autre + + + + &Quote character + T&ype de guillemet + + + + " + " + + + + ' + ' + + + + New line characters + Saut de ligne + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Formatter + + + + + Could not open output file: %1 + Le fichier de destination %1 ne peut être ouvert + + + + + Choose a filename to export data + Choisir un nom de fichier pour exporter les données + + + + Export data as JSON + Exporter au format JSON + + + + exporting CSV + Exporter au format CSV + + + + exporting JSON + Exporter au format JSON + + + + Please select at least 1 table. + Veuillez sélectionner au moins une table. + + + + Choose a directory + Choisir un répertoire + + + + Export completed. + Export terminé. + + + + ExportSqlDialog + + + Export SQL... + Same as defined in English... But converted to uniformize with other dialog boxes. + Exporter au format SQL... + + + + Tab&le(s) + Tab&le(s) + + + + Select All + Sélectionner tout + + + + Deselect All + Déselectionner tout + + + + &Options + &Options + + + + Keep column names in INSERT INTO + Conserver les noms des colonnes dans INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Plusieurs enregistrements (VALUES) par INSERT + + + + Export everything + Exporter tout + + + + Export schema only + Exporter uniquement le schéma + + + + Export data only + Exporter uniquement les données + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Conserver l'ancien schéma (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Écraser l'ancien schéma (DROP TABLE, puis CREATE TABLE) + + + + Please select at least one table. + Veuillez sélectionner au moins une table. + + + + Choose a filename to export + Choisir un nom de fichier pour l'export + + + + Export completed. + Export terminé. + + + + Export cancelled or failed. + L'export a été annulé ou a échoué. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Rechercher... + + + + Find and Replace... + Chercher et remplacer... + + + + Print... + Imprimer... + + + + ExtendedTableWidget + + + Use as Exact Filter + Utiliser comme filtre exact + + + + Containing + Contenant + + + + Not containing + Ne contenant pas + + + + Not equal to + Différent de + + + + Greater than + Plus grand que + + + + Less than + Plus petit que + + + + Greater or equal + Plus grand ou égal à + + + + Less or equal + Plus petit ou égal à + + + + Between this and... + Entre ceci et... + + + + Regular expression + Expression régulière + + + + Edit Conditional Formats... + Éditer les formats conditionnels... + + + + Set to NULL + Définir comme NULL + + + + Copy + Copier + + + + Copy with Headers + Copier avec les Entêtes + + + + Copy as SQL + Copier comme du SQL + + + + Paste + Coller + + + + Print... + Imprimer... + + + + Use in Filter Expression + Utiliser dans l'expression du Filtre + + + + Alt+Del + Alt+Supp + + + + Ctrl+Shift+C + Ctrl+Maj+C + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + Le contenu du presse-papier est plus grand que la plage sélectionnée. +Voulez-vous poursuivre l'insertion malgré tout ? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>Toutes les données n'ont pas été chargées. <b>Voulez-vous charger toutes les données avant de sélectionner toutes les lignes ? </b><p><p>Répondre <b>Non</b> signifie qu'aucune autre donnée ne sera chargée et que la sélection ne sera pas effectuée.<br/>Répondre <b>Oui</b> peut prendre un certain temps pendant le chargement des données mais la sélection sera complète.</p>Avertissement : Le chargement de toutes les données peut nécessiter une grande quantité de mémoire pour les grandes tables. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + La sélection ne peut être à NULL. La colonne %1 à une contrainte NOT NULL. + + + + FileExtensionManager + + + File Extension Manager + Gestionnaire d'extension de fichier + + + + &Up + &Monter + + + + &Down + &Descendre + + + + &Add + &Ajouter + + + + &Remove + &Supprimer + + + + + Description + Description + + + + Extensions + Extensions + + + + *.extension + *.extension + + + + FilterLineEdit + + + Filter + Filtre + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Ces champs de saisie vous permettent d'effectuer des filtres rapides dans le tableau actuellement sélectionné. +Par défaut, les lignes contenant le texte de saisie sont filtrées. +Les opérateurs suivants sont également pris en charge : +% Joker (métacaractère) +> Supérieur à +< Inférieur à +>= Supérieur ou Égal à +<= Inférieur oiu Égal à += Égal à : correspondance exacte +<> Différent de: correspondance inverse exacte +x~y Fourchette : valeurs entre x et y +/regexp/ Valeurs correspondant à l'expression régulière + + + + Clear All Conditional Formats + Effacer tous les Formats Conditionnels + + + + Use for Conditional Format + Utilisé pour le Format Conditionnel + + + + Edit Conditional Formats... + Editer un Format Conditionnel... + + + + Set Filter Expression + Définir l'expression du filtre + + + + What's This? + Qu'est-ce que c'est ? + + + + Is NULL + Est NULL + + + + Is not NULL + Est non NULL + + + + Is empty + Est Vide + + + + Is not empty + Est non Vide + + + + Not containing... + Ne contenant pas... + + + + Equal to... + Egal à... + + + + Not equal to... + Différent de... + + + + Greater than... + Plus grand que... + + + + Less than... + Plus petit que... + + + + Greater or equal... + Plus grand ou égal à... + + + + Less or equal... + Plus petit ou égal à... + + + + In range... + Peut être aussi traduit par "dans la plage..." ou "Entre..." + Entre les valeurs... + + + + Regular expression... + Expression régulière... + + + + FindReplaceDialog + + + Find and Replace + Chercher et remplacer + + + + Fi&nd text: + &Rechercher : + + + + Re&place with: + Re&mplacer avec : + + + + Match &exact case + &Expression exacte + + + + Match &only whole words + M&ots entiers uniquement + + + + When enabled, the search continues from the other end when it reaches one end of the page + Lorsque la Recherche circulaire est activée, la recherche recommence au début une fois atteinte la fin de la page + + + + &Wrap around + Recherche &Circulaire + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Lorsqu'elle est activée, la recherche s'effectue en remontant à partir de la position du curseur, sinon elle se fait en descendant + + + + Search &backwards + Rechercher vers le &haut + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>Lorsque cette case est cochée, la recherche ne se fait que dans la sélection actuelle.</p></body></html> + + + + &Selection only + &Sélection uniquement + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + La version française de https://en.wikibooks.org/wiki/Regular_Expressions n'existe pas + <html><head/><body><p>Lorsqu'elle est cochée, le motif à trouver est interprété comme une expression régulière UNIX. Voir <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + Use regular e&xpressions + Utiliser les e&xpressions régulières + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Trouver l'occurrence suivante à partir de la position du curseur et dans la direction définie par "Rechercher vers le haut" + + + + &Find Next + &Suivant + + + + F3 + + + + + &Replace + Rem&placer + + + + Highlight all the occurrences of the text in the page + Surligner toutes les occurrences du texte dans la page + + + + F&ind All + Rechercher &Tout + + + + Replace all the occurrences of the text in the page + Remplace toutes les occurrences du texte dans la page + + + + Replace &All + Remplacer To&ut + + + + The searched text was not found + Le texte recherché n'a pas été trouvé + + + + The searched text was not found. + Le texte recherché n'a pas été trouvé. + + + + The searched text was found one time. + Le texte recherché a été trouvé une fois. + + + + The searched text was found %1 times. + Le texte recherché a été trouvé %1 fois. + + + + The searched text was replaced one time. + Le texte recherché a été remplacé une fois. + + + + The searched text was replaced %1 times. + Le texte recherché a été remplacé %1 fois. + + + + ForeignKeyEditor + + + &Reset + &Réinitialiser + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Clauses de clé étrangère (ON UPDATE, ON DELETE etc.) + + + + ImportCsvDialog + + + Import CSV file + Importer un fichier CSV + + + + Table na&me + No&m de la Table + + + + &Column names in first line + Nom des &Col. en 1ère ligne + + + + Field &separator + &Séparateur de champ + + + + , + , + + + + ; + ; + + + + + Tab + Tabulation + + + + | + | + + + + Other + Autre + + + + &Quote character + T&ype de guillemet + + + + + Other (printable) + Autre (imprimable) + + + + + Other (code) + Autre (code) + + + + " + " + + + + ' + ' + + + + &Encoding + &Encodage + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Réduire les champs ? + + + + Separate tables + Tables distinctes + + + + Advanced + Avancé + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + Lorsque vous importez une valeur vide du fichier CSV dans une table existante avec une valeur par défaut pour cette colonne, cette valeur par défaut est insérée. Activez cette option pour insérer une valeur vide à la place. + + + + Ignore default &values + Ignorer les &valeurs par défaut + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Activez cette option pour arrêter l'importation lorsque vous essayez d'importer une valeur vide dans une colonne NON NULL sans valeur par défaut. + + + + Fail on missing values + Erreur sur les valeurs manquantes + + + + Disable data type detection + Désactiver la détection du type de données + + + + Disable the automatic data type detection when creating a new table. + Désactive la détection automatique du type de données lors de la création d'une nouvelle table. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Lors de l'importation dans une table existante possédant une clé primaire, des contraintes uniques ou un index unique, il y a un risque de conflit. Cette option vous permet de sélectionner une stratégie pour ce cas : Par défaut, l'importation est interrompue et annulée, mais vous pouvez également choisir d'ignorer et de ne pas importer les lignes en conflit ou de remplacer la ligne existante dans la table. + + + + Abort import + Abandonner l'import + + + + Ignore row + Ignorer l'enregistrement + + + + Replace existing row + Remplacer l'enregistrement existant + + + + Conflict strategy + En conflit avec la stratégie + + + + + Deselect All + Déselectionner tout + + + + Match Similar + 170726 MVT Has to be checked in real context or after explanation of this function. I suppose this function permits, with data names on the first line to "prefill a corresponding names" in an existing object ? + Appairer + + + + Select All + Sélectionner tout + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Il existe déjà une table nommée'%1' et une importation dans une table existante n'est possible que si le nombre de colonnes correspond. + + + + There is already a table named '%1'. Do you want to import the data into it? + Il existe déjà une table appelée "%1". Voulez-vous y importer les données ? + + + + Creating restore point failed: %1 + La création du point de restauration a échoué : %1 + + + + Creating the table failed: %1 + La création de la table a échoué %1 + + + + importing CSV + Importer au format CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + L'importation du fichier'%1' a pris %2ms. %3ms ont été dépensés dans la fonction enregistrement. + + + + Inserting row failed: %1 + L'insertion de l'enregistrement a échoué : %1 + + + + MainWindow + + + toolBar1 + Barre d'outils1 + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Attention : ce pragma n'est pas lisible et cette valeur a été déduite. Ecrire le pragma pourrait écraser un LIKE redéfini fourni par une extension SQLite. + + + + &Tools + &Outils + + + + Edit Database &Cell + Éditer le contenu d'une &Cellule + + + + Opens the SQLCipher FAQ in a browser window + Ouvre la FAQ de SQLCipher dans la fenêtre d'un navigateur + + + + Export one or more table(s) to a JSON file + Exporter une ou plusieurs tables vers un fichier JSON + + + + DB Browser for SQLite + DB Browser pour SQLite + + + + &File + &Fichier + + + + &Import + &Importer + + + + &Export + &Exporter + + + + &Edit + É&dition + + + + &View + &Vue + + + + &Help + &Aide + + + + User + Utilisateur + + + + Application + Application + + + + This button clears the contents of the SQL logs + Ce bouton supprime le contenu des logs SQL + + + + &Clear + &Effacer + + + + &New Database... + &Nouvelle Base de Données... + + + + + Create a new database file + Créer une nouvelle Base de Données + + + + This option is used to create a new database file. + Cette option est utilisée pour créer un nouveau fichier de Base de Données. + + + + Ctrl+N + + + + + + &Open Database... + &Ouvrir une Base de Données... + + + + + + + + Open an existing database file + Ouvre une Base de Données existante + + + + + + This option is used to open an existing database file. + Cette option est utilisée pour ouvrir une Base de Données existante. + + + + Ctrl+O + + + + + &Close Database + &Fermer la Base de Données + + + + This button closes the connection to the currently open database file + Ce bouton ferme la connexion à la Base de Données actuellement ouverte + + + + + Ctrl+W + + + + + &Revert Changes + &Annuler les modifications + + + + + Revert database to last saved state + Revenir à la dernière version sauvegardée de la Base de Données + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Cette option permet de restaurer la Base de Données dans l'état de sa dernière sauvegarde. Tous les changements effectués depuis cette dernière sauvegarde seront perdus. + + + + &Write Changes + Enregistrer les &modifications + + + + + Write changes to the database file + Enregistrer les modifications dans la Base de Données + + + + This option is used to save changes to the database file. + Cette option est utilisée pour enregistrer les modifications dans la Base de Données. + + + + Ctrl+S + + + + + Execute all/selected SQL + Exécuter Tout ou seulement le SQL sélectionné + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Ce bouton lance l'exécution des commandes SQL actuellement sélectionnées. Si aucun texte n'est sélectionné, toutes les commandes SQL seront éxécutées. + + + + Execute line + Exécuter la ligne + + + + &Wiki + &Wiki + + + + F1 + + + + + Bug &Report... + &Rapport d'erreur... + + + + Feature Re&quest... + &Demande de fonctionnalités... + + + + Web&site + &Site Internet + + + + &Donate on Patreon... + Effectuer une &Donation sur Patreon... + + + + Open &Project... + Ouvrir un &Projet... + + + + &Attach Database... + Attac&her une Base de Données... + + + + + Add another database file to the current database connection + Ajouter un autre fichier de Base de Données à la connexion de la Base de Données en cours + + + + This button lets you add another database file to the current database connection + Ce bouton vous permet d'ajouter un autre fichier de Base de Données à la connexion de la Base de Données en cours + + + + &Set Encryption... + Chi&ffrer... + + + + SQLCipher &FAQ + &Faq SQLCipher + + + + Table(&s) to JSON... + Table(&s) vers JSON... + + + + Open Data&base Read Only... + Ouvrir la Base de Données en &Lecture seule... + + + + Ctrl+Shift+O + Ctrl+Maj+O + + + + Save results + Enregistrer les résultats + + + + Save the results view + Enregistrer la vue des résultats + + + + This button lets you save the results of the last executed query + Ce bouton vous permet d'enregistrer les résultats de la dernière requête exécutée + + + + + Find text in SQL editor + Rechercher du texte dans l'éditeur SQL + + + + Find + Rechercher + + + + This button opens the search bar of the editor + Ce bouton ouvre la barre de recherche dans l'éditeur + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Rechercher ou remplacer du texte dans l'éditeur SQL + + + + Find or replace + Chercher et remplacer + + + + This button opens the find/replace dialog for the current editor tab + Ce bouton ouvre la boîte de dialogue Rechercher/Remplacer pour l'onglet en cours de l'éditeur + + + + Ctrl+H + + + + + Export to &CSV + Exporter au format &CSV + + + + Save as &view + Enregistrer comme une &vue + + + + Save as view + Enregistrer comme une vue + + + + Browse Table + Parcourir la table + + + + Shows or hides the Project toolbar. + Afficher ou masquer la barre d'outil Projet. + + + + Extra DB Toolbar + Extra DB Toolbar + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + Ce bouton vous permet d'enregistrer tous les paramètres associés à la Base de Données ouverte dans un fichier projet DB Browser pour SQLite + + + + This button lets you open a DB Browser for SQLite project file + Ce bouton vous permet d'ouvrir un fichier projet DB Browser pour SQLite + + + + New In-&Memory Database + Nouvelle Base de Données en &Mémoire + + + + Drag && Drop Qualified Names + Glisser && Déposer les noms qualifiés + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Utilisez des noms qualifiés (par ex. "Table", "Champ") lorsque vous faites glisser les objets et pour les déposez dans l'éditeur + + + + Drag && Drop Enquoted Names + Glisser && Déposer les noms cités + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Utiliser les identificateurs par défaut (par ex. "Table1") lors du glisser-déposer des objets dans l'éditeur + + + + &Integrity Check + Vérifier l'&Intégrité + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Exécute le pragma integrity_check sur la Base de Données ouverte et retourne les résultats dans l'onglet Exécuter SQL. Ce pragma effectue un contrôle d'intégrité de l'ensemble de la Base de Données. + + + + &Foreign-Key Check + Vérifier les clés &Etrangères + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Exécute le pragma foreign_key_check_check sur la Base de Données ouverte et retourne les résultats dans l'onglet Exécuter SQL + + + + &Quick Integrity Check + Vérification &rapide de l'intégrité + + + + Run a quick integrity check over the open DB + Effectuer un rapide contrôle d'intégrité sur la Base de Données ouverte + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Exécute le pragma quick_check sur la Base de Données ouverte et retourne les résultats dans l'onglet Exécuter SQL. Cette commande effectue la plupart des vérifications de PRAGMA integrity_check mais s'exécute beaucoup plus rapidement. + + + + &Optimize + &Optimiser + + + + Attempt to optimize the database + Tente d'optimiser la Base de Données + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Exécute le pragma d'optimisation sur la Base de Données ouverte. Ce pragma pourrait effectuer des optimisations qui amélioreront la performance des requêtes futures. + + + + + Print + Imprimer + + + + Print text from current SQL editor tab + Imprime le contenu de l'onglet en cours de l'éditeur SQL [Ctrp+P] + + + + Open a dialog for printing the text in the current SQL editor tab + Ouvre une boite de dialogue pour imprimer le contenu de l'onglet en cours de l'éditeur SQL + + + + Print the structure of the opened database + Imprime la structure de la Base de Données ouverte + + + + Open a dialog for printing the structure of the opened database + Ouvre une boite de dialogue pour imprimer la structure de la Base de Données ouverte + + + + &Save Project As... + Enr&egistrer le projet sous... + + + + + + Save the project in a file selected in a dialog + Enregistrer le projet dans un fichier sélectionné dans une boite de dialogue + + + + Save A&ll + Enregistrer &Tout + + + + + + Save DB file, project file and opened SQL files + Enregistre la Base de Données, le fichier projet et les fichiers SQL ouverts + + + + Ctrl+Shift+S + Ctrl+Maj+S + + + + Compact the database file, removing space wasted by deleted records + Compacter la base de donnée, récupérer l'espace perdu par les enregistrements supprimés + + + + + Compact the database file, removing space wasted by deleted records. + Compacter la base de donnée, récupérer l'espace perdu par les enregistrements supprimés. + + + + E&xit + &Quitter + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Importer les données depuis un fichier sql résultant d'un vidage (sql dump) dans une nouvelle Base de Données ou une base existante. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Cette option vous permet d'importer un fichier sql de vidage d'une Base de Données (SQL dump) dans une nouvelle Base de Données ou une base existante. Ce fichier peut être créé par la plupart des moteurs de Base de Données, y compris MySQL et PostgreSQL. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Ouvrir un Assistant vous permettant d'importer des données dans une table de la Base de Données à partir d'un fichier texte séparé par des virgules (csv). + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Ouvre un Assistant vous permettant d'importer des données dans une table de la Base de Données à partir d'un fichier texte séparé par des virgules (csv). Les fichiers CSV peuvent être créés par la plupart des outils de gestion de Base de Données et les tableurs. + + + + Export a database to a .sql dump text file. + Exporter la Base de Données vers un fichier de vidage sql (SQL dump) au format texte. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Exporter la Base de Données vers un fichier de vidage sql (SQL dump) au format texte. Ce fichier (SQL dump) contient toutes les informations nécessaires pour recréer une Base de Données par la plupart des moteurs de Base de Données, y compris MySQL et PostgreSQL. + + + + Export a database table as a comma separated text file. + Exporter la table vers un fichier texte séparé par des virgules (CSV). + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Exporter la table vers un fichier texte séparé par des virgules (CSV), prêt à être importé dans une autre Base de Données ou un tableur. + + + + &Create Table... + &Créer une table... + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Ouvrir l'assistant de création d'une table dans lequel il sera possible de définir les noms et les champs d'une nouvelle table dans la Base de Données + + + + &Delete Table... + &Supprimer une table... + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Ouvrir l'assistant de suppression d'une table avec lequel vous pourrez sélectionner la table à supprimer. + + + + &Modify Table... + &Modifier une table... + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Ouvrir l'assistant de modification d'une table avec lequel il sera possible de renommer une table existante. Il est aussi possible d'ajouter ou de supprimer des champs de la table, tout comme modifier le nom des champs et leur type. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Ouvrir l'assistant de création d'un index avec lequel il sera possible de définir un nouvel index dans une table préexistante de la Base de Données. + + + + &Preferences... + &Préférences... + + + + + Open the preferences window. + Ouvrir la fenêtre des préférences. + + + + &DB Toolbar + &Barre d'outils BdD + + + + Shows or hides the Database toolbar. + Affiche ou masque la barre d'outils Base de Données. + + + + Shift+F1 + Maj+F1 + + + + &Recently opened + Ouvert &récemment + + + + Open &tab + vérifier le contexte + Ouvrir un on&glet + + + + Ctrl+T + + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Ceci est la structure de la Base de Données ouverte. +Vous pouvez faire glisser plusieurs noms d'objets de la colonne Nom et les déposer dans l'éditeur SQL et vous pouvez ajuster les propriétés des noms déposés en utilisant le menu contextuel. Cela pourrait vous aider à composer des instructions SQL. +Vous pouvez faire glisser les instructions SQL de la colonne Schéma et les déposer dans l'éditeur SQL ou dans d'autres applications. + + + + + + Project Toolbar + Barre d'outil Projet + + + + Extra DB toolbar + Extra DB Toolbar + + + + + + Close the current database file + Fermer la Base de Données en cours + + + + Ctrl+F4 + + + + + Compact &Database... + Compacter la Base de &Données... + + + + &About + À &propos + + + + This button opens a new tab for the SQL editor + Ce bouton ouvre un nouvel onglet dans l'éditeur SQL + + + + &Execute SQL + &Exécuter le SQL + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + Exécuter le SQL + + + + + Save the current session to a file + Enregistrer la session courante dans un fichier + + + + + Load a working session from a file + Charger une session de travail depuis un fichier + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Structure de la Base de Données + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Ceci est la structure de la Base de Données ouverte. +Vous pouvez faire glisser les instructions SQL d'une ligne d'objet et les déposer dans d'autres applications ou dans une autre instance de'DB Browser pour SQLite'. + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Parcourir les données + + + + Error Log + Journal des erreurs + + + + Un/comment block of SQL code + Dé/commenter un bloc de code SQL + + + + Un/comment block + Dé/commenter un bloc + + + + Comment or uncomment current line or selected block of code + Commenter ou décommenter la ligne actuelle ou le bloc de code sélectionné + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Commenter ou décommenter les lignes sélectionnées ou la ligne en cours, lorsqu'il n'y a pas de sélection. Tout le bloc est basculé en fonction de la première ligne. + + + + Ctrl+/ + + + + + Stop SQL execution + Arrête l'exécution du SQL + + + + Stop execution + Arrêter l'exécution + + + + Stop the currently running SQL script + Arrête le script SQL en cours d'exécution + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Éditer les Pragmas + + + + DB Toolbar + Barre d'outils BdD + + + + SQL &Log + &Journal SQL + + + + Show S&QL submitted by + A&fficher le SQL soumis par + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Ce panneau vous permet d'examiner un journal de toutes les commandes SQL émises par l'application ou par vous-même + + + + &Plot + Gra&phique + + + + DB Sche&ma + DB Sche&ma + + + + &Remote + Serveur &distant + + + + &Database from SQL file... + &Base de Données à partir du fichier SQL... + + + + &Table from CSV file... + &Table depuis un fichier CSV... + + + + &Database to SQL file... + Base de &Données vers un fichier SQL... + + + + &Table(s) as CSV file... + &Table vers un fichier CSV... + + + + Create &Index... + Créer un &Index... + + + + W&hat's This? + &Qu'est-ce que c'est ? + + + + Open SQL file(s) + Ouvrir un fichier SQL + + + + This button opens files containing SQL statements and loads them in new editor tabs + Ce bouton ouvre un fichier contenant des instructions SQL et le charge dans un nouvel onglet de l'éditeur + + + + + + Save SQL file + Enregistrer le fichier SQL + + + + &Load Extension... + Charger l'&Extension... + + + + + Execute current line + Exécuter la ligne courante (Maj+F5) + + + + This button executes the SQL statement present in the current editor line + Ce bouton exécute l'instruction SQL présente dans la ligne courante de l'éditeur + + + + Shift+F5 + Maj+F5 + + + + Sa&ve Project + Enre&gistrer le projet + + + + + Save SQL file as + Enregistrer le fichier SQL comme + + + + This button saves the content of the current SQL editor tab to a file + Ce bouton enregistre le contenu de l'onglet actuel de l'éditeur SQL dans un fichier + + + + &Browse Table + &Parcourir la table + + + + Copy Create statement + Copier l'instruction CREATE + + + + Copy the CREATE statement of the item to the clipboard + Copie l'instruction CREATE de cet item dans le presse-papier + + + + Open an existing database file in read only mode + Ouvrir une Base de Données existante en mode Lecture seule + + + + Ctrl+E + + + + + Export as CSV file + Exporter les données au format CSV + + + + Export table as comma separated values file + Exporter la table vers un fichier texte séparé par des virgules (CSV) + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Database encoding + Encodage de la Base de Données + + + + + Choose a database file + Choisir une Base de Données + + + + Ctrl+Return + Ctrl+Entrée + + + + Ctrl+D + + + + + Ctrl+I + + + + + Reset Window Layout + Rétablir la disposition des fenêtres + + + + Alt+0 + + + + + The database is currenctly busy. + La Base de Données est actuellement occupée. + + + + Click here to interrupt the currently running query. + Cliquez ici pour interrompre la requête en cours. + + + + Encrypted + Chiffré + + + + Database is encrypted using SQLCipher + La Base de Données a été chiffrée avec SQLCipher + + + + Read only + Lecture seule + + + + Database file is read only. Editing the database is disabled. + La Base de Données est ouverte en lecture seule. Il n'est pas possible de la modifier. + + + + Could not open database file. +Reason: %1 + La Base de Données ne peut être ouverte. +Motif : %1 + + + + + + Choose a filename to save under + Choisir un nom de fichier pour enregistrer sous + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Erreur lors de l'enregistrement de la Base de Données. Cela sous-entend qu'aucun changement n'a été sauvegardé. Vous devez corriger au préalable l'erreur suivante : + +%1 + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + Voulez-vous enregistrer les modifications apportées aux onglets SQL dans le fichier du projet '%1' ? + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Une nouvelle version de DB Browser pour SQLite est disponible (%1.%2.%3).<br/><br/>Vous pouvez la télécharger sur <a href='%4'>%4</a>. + + + + DB Browser for SQLite project file (*.sqbpro) + Fichier de projet DB Browser pour SQLite (*.sqbpro) + + + + Error checking foreign keys after table modification. The changes will be reverted. + Erreur de vérification des clés étrangères après modification de la table. Les modifications seront annulées. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Cette table n'a pas passé avec succès un contrôle de clé étrangère.<br/>Vous devez exécuter l'Outil | Contrôle des clés étrangères' et corriger les problèmes rapportés. + + + + Execution finished with errors. + L'exécution s'est terminée avec des erreurs. + + + + Execution finished without errors. + L'exécution s'est terminée sans erreur. + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Êtes-vous sûr de vouloir annuler tous les changements effectués dans la Base de Données %1 depuis la dernière sauvegarde ? + + + + Choose a file to import + Choisir un fichier à importer + + + + Text files(*.sql *.txt);;All files(*) + Fichiers Texte (*.sql *.txt);;Tous les fichiers(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Voulez vous créer une nouvelle base de donnée pour gérer les données importées ? +Si vous répondez non, nous essaierons d'importer les données du fichier SQL dans la Base de Données courante. + + + + Window Layout + Disposition des fenêtres + + + + Simplify Window Layout + Simplifier la disposition des fenêtres + + + + Shift+Alt+0 + Maj+Alt+0 + + + + Dock Windows at Bottom + Ancrer les fenêtres en Bas + + + + Dock Windows at Left Side + Ancrer les fenêtres à Gauche + + + + Dock Windows at Top + Ancrer les fenêtres en Haut + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Des traitements SQL sont en cours d'exécution. Fermer la Base de Données maintrenant arrêtera ces traitements. Cela risque de laisser la Base de Données dans un état incohérent. Êtes-vous sûr de vouloir fermer la Base de Données ? + + + + Do you want to save the changes made to the project file '%1'? + Voulez-vous enregistrer les changements effectués dans la dans le fichier projet '%1' ? + + + + File %1 already exists. Please choose a different name. + Le fichier %1 existe déjà. Veuillez choisir un nom de fichier différent. + + + + Error importing data: %1 + Erreur lors de l'import des données : %1 + + + + Import completed. + Import terminé. + + + + Delete View + Supprimer la Vue + + + + Delete Trigger + Supprimer le Déclencheur + + + + Delete Index + Supprimer l'Index + + + + + Delete Table + Supprimer la Table + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Paramétrer les valeurs du PRAGMA enregistrera les actions de votre transaction courante. +Êtes-vous sûr ? + + + + In-Memory database + Base de Données en mémoire + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + Êtes vous sûr de vouloir supprimer la table %1 ? +Toutes les données de la table seront perdues. + + + + Are you sure you want to delete the view '%1'? + Êtes vous sûr de voulolir supprimer la vue %1 ? + + + + Are you sure you want to delete the trigger '%1'? + Êtes vous sûr de voulolir supprimer le déclencheur %1 ? + + + + Are you sure you want to delete the index '%1'? + Êtes vous sûr de voulolir supprimer l'index %1 ? + + + + Error: could not delete the table. + Erreur : suppression de la table impossible. + + + + Error: could not delete the view. + Erreur : suppression de la vue impossible. + + + + Error: could not delete the trigger. + Erreur : suppression du déclencheur impossible. + + + + Error: could not delete the index. + Erreur : suppression de l'index impossible. + + + + Message from database engine: +%1 + Message depuis el moteur de la Base de Données : +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + La modification de la table nécessite d'enregistrer toutes les modifications en attente maintenant. +Êtes-vous sûr de vouloir enregistrer la Base de Données ? + + + + Edit View %1 + Editer la vue %1 + + + + Edit Trigger %1 + Editer le déclencheur %1 + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Vous avez des instructions SQL en cours d'exécution. Voulez-vous les arrêter afin d'exécuter les instructions en cours à la place ? Cela pourrait laisser la Base de Données dans un état incohérent. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- EXECUTION DE LA SELECTION DANS '%1' +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- EXECUTION DE LA LIGNE DANS '%1' +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- EXECUTER TOUT DANS '%1' +-- + + + + + At line %1: + À la ligne %1 : + + + + Result: %1 + Résultat : %1 + + + + Result: %2 + Résultat : %2 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Le réglage des valeurs PRAGMA ou du "vacuuming" validera votre transaction en cours. +Êtes-vous sûr ? + + + + Opened '%1' in read-only mode from recent file list + Ouverture de '%1' en lecture seule depuis la liste des fichiers récents + + + + Opened '%1' from recent file list + Ouverture de '%1' depuis la liste des fichiers récents + + + + Project saved to file '%1' + Projet enregistré dans le fichier '%1' + + + + This action will open a new SQL tab with the following statements for you to edit and run: + Need to verify if following statements ore shown bellow ou above or on the open action + Cette action ouvrira un nouvel onglet SQL avec les instructions suivantes que vous pourrez modifier et exécuter : + + + + Rename Tab + Renommer l'onglet + + + + Duplicate Tab + Dupliquer l'onglet + + + + Close Tab + Fermer l'onglet + + + + Opening '%1'... + Ouverture de '%1'... + + + + There was an error opening '%1'... + Il y a eu une erreur lors de l'ouverture de '%1'... + + + + Value is not a valid URL or filename: %1 + Le valeur n'est pas une URL valide ou un nom de fichier : %1 + + + + %1 rows returned in %2ms + %1 enregistrements ramenés en %2ms + + + + Choose text files + Choisir des fichiers texte + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Importation terminée. Certaines contraintes clés étrangères sont violées. Veuillez les corriger avant de les enregistrer. + + + + Modify View + Modifier une Vue + + + + Modify Trigger + Modifier un Déclencheur + + + + Modify Index + Modifier un Index + + + + Modify Table + Modifier une Table + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (lecture seule) + + + + Open Database or Project + Ouvrir une Base de Données ou un projet + + + + Attach Database... + Attacher une Base de Données... + + + + Import CSV file(s)... + Importer un ou des fichiers CSV... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Sélectionnez l'action à appliquer au fichier déposé. <br>Note : seul "Importer" traitera plusieurs fichiers. + Sélectionnez l'action à appliquer aux fichiers déposés. <br>Note : seul "Importer" traitera plusieurs fichiers. + + + + + Do you want to save the changes made to SQL tabs in a new project file? + Voulez-vous enregistrer les changements effectués dans l'onglet SQL dans un nouveau fichier projet ? + + + + Do you want to save the changes made to the SQL file %1? + Voulez-vous enregistrer les changements effectués dans le fichier SQL %1 ? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + Les instructions de cet onglet sont toujours en cours d'exécution. La fermeture de l'onglet arrête leur exécution. Cela pourrait laisser la Base de Données dans un état incohérent. Êtes-vous sûr de vouloir fermer l'onglet ? + + + + Select SQL file to open + Sélectionner un fichier SQL à ouvrir + + + + Select file name + Sélectionner un nom de fichier + + + + Select extension file + Sélectionner une extension de fichier + + + + Extension successfully loaded. + l'extension a été chargée avec succès. + + + + Error loading extension: %1 + Erreur lors du chargement de l'extension %1 + + + + Could not find resource file: %1 + Le fichier de ressources : %1 ne peut être ouvert + + + + + Don't show again + Ne plus afficher + + + + New version available. + Une nouvelle version est disponible. + + + + Choose a project file to open + Choisir un fichier de projet à ouvrir + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Ce fichier projet utilise un ancien format de fichier parce qu'il a été créé avec DB Browser pour SQLite version 3.10 ou inférieure. Le chargement de ce format de fichier est toujours totalement pris en charge, mais nous vous conseillons de convertir tous vos fichiers projet vers le nouveau format de fichier, car la prise en charge des anciens formats pourrait être supprimée à un moment ou un autre. Vous pouvez convertir vos fichiers en les ouvrant et en les sauvegardant de nouveau. + + + + Could not open project file for writing. +Reason: %1 + Le fichier projet ne peut être ouvert en écriture. +Raison : %1 + + + + Collation needed! Proceed? + Classement nécessaire ! Continuer ? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Une table de cette Base de Données nécessite la fonction spéciale de classement '%1' que cette application ne peut fournir sans connaissances complémentaires. +Si vous choisissez de continuer, ayez à l'esprit que des choses non souhaitées peuvent survenir dans votre Base de Données. +Faites une sauvegarde ! + + + + creating collation + Créer un classement + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Définissez un nouveau nom pour l'onglet SQL. Utilisez le caractère '&&' pour permettre d'utiliser le caractère suivant comme raccourci clavier. + + + + Please specify the view name + Veuillez spécifier le nom de la vue + + + + There is already an object with that name. Please choose a different name. + Il existe déjà un objet avec ce nom. Veuillez choisir un autre nom. + + + + View successfully created. + La vue a été crée avec succès. + + + + Error creating view: %1 + Erreur lors de la création de la vue : %1 + + + + This action will open a new SQL tab for running: + Cette action ouvrira un nouvel onglet SQL pour son exécution : + + + + Press Help for opening the corresponding SQLite reference page. + Cliquez sur Aide pour ouvrir la page de référence correspondante de SQLite. + + + + Busy (%1) + Occupé (%1) + + + + NullLineEdit + + + Set to NULL + Définir comme NULL + + + + Alt+Del + Alt+Supp + + + + PlotDock + + + Plot + Graphique + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>Ce volet affiche la liste des colonnes de la table actuellement parcourue ou de la requête qui vient d'être exécutée. Vous pouvez sélectionner les colonnes que vous voulez utiliser comme axe X ou Y pour le volet de tracé ci-dessous. Le tableau montre le type d'axe détecté qui affectera le tracé résultant. Pour l'axe Y, vous ne pouvez sélectionner que des colonnes numériques, mais pour l'axe X, vous pourrez sélectionner :</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Heure</span> : chaînes au format &quot;aaaa-MM-jj hh:mm:ss&quot; ou &quot;aaaa-MM-jjThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span> : chaînes au format &quot;aaaa-MM-jj&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Heures</span> : chaînes au format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span> : autres formats de chaînes. Sélectionner cette colonne comme axe X produira un diagramme en barres avec les valeurs de la colonne comme étiquettes pour les barres</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numerique</span> : Nombres entiers ou Réels</li></ul><p>Avec Double-clic sur une cellule Y, vous pouvez changer le couleur utilisée dans le graphique.</p></body></html> + + + + Columns + Colonnes + + + + X + X + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + Type d'axe + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Voici le graphique qui sera dessiné lorsque vous sélectionnerez les valeurs x et y ci-dessus. + +Cliquez sur les points pour les sélectionner dans le graphique et dans le tableau. Ctrl+Clic pour sélectionner une plage de points. + +Utilisez la molette de la souris pour zoomer et faites glisser la souris pour modifier la plage des axes. + +Sélectionnez les axes ou les étiquettes d'axes à faire glisser et à zoomer uniquement dans cette orientation. + + + + Line type: + Type de ligne : + + + + + None + Aucun + + + + Line + Ligne + + + + StepLeft + A Gauche + + + + StepRight + A Droite + + + + StepCenter + Centré + + + + Impulse + Impulsion + + + + Point shape: + Forme du point : + + + + Cross + Croix + + + + Plus + Plus + + + + Circle + Cercle + + + + Disc + Disque + + + + Square + Carré + + + + Diamond + Diamant + + + + Star + Étoile + + + + Triangle + Triangle + + + + TriangleInverted + Triangle Inversé + + + + CrossSquare + Carré et croix + + + + PlusSquare + Carré et Plus + + + + CrossCircle + Cercle et Croix + + + + PlusCircle + Cercle et Plus + + + + Peace + Paix + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Enregistrer le graphique actuel...</p><p>Choisir le format de fichier parmi ces extensions (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Enregistrer le tracé actuel... + + + + + Load all data and redraw plot + Charger toutes les données et redessiner le graphique + + + + + + Row # + # Ligne + + + + Copy + Copier + + + + Print... + Imprimer... + + + + Show legend + Afficher la légende + + + + Stacked bars + Diagramme à barres empilées + + + + Date/Time + Date/Heure + + + + Date + Date + + + + Time + Heure + + + + + Numeric + Numérique + + + + Label + Label + + + + Invalid + Invalide + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Charger toutes les données et redessiner le tracé. +Attention : toutes les données n'ont pas encore été extraites du tableau en raison du mécanisme d'extraction partielle. + + + + Choose an axis color + Choisir une couleur d'axe + + + + Choose a filename to save under + Choisir un nom de fichier pour enregistrer sous + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + Il y a des courbes dans ce graphique et le style de ligne sélectionné ne peut être appliqué qu'aux graphiques triés par X. Triez la table ou la requête par X pour supprimer les courbes ou sélectionnez un des styles pris en charge par les courbes : Aucun ou Ligne. + + + + Loading all remaining data for this table took %1ms. + Le chargement de toutes les données restantes pour ce tableau a pris %1 ms. + + + + PreferencesDialog + + + Preferences + Préférences + + + + &General + &Général + + + + Remember last location + Se souvenir du dernier emplacement + + + + Always use this location + Toujours utiliser cet emplacement + + + + Remember last location for session only + Dernier emplac. pour cette session uniquement + + + + Lan&guage + Lan&gue + + + + Show remote options + Afficher options Serv. Distant + + + + Automatic &updates + Mises à jour A&utomatiques + + + + &Database + Base de &Données + + + + Database &encoding + &Encodage de la Base de Données + + + + Open databases with foreign keys enabled. + Ouvrir une Base de Données en autorisant les clés étrangères. + + + + &Foreign keys + &Clés étrangères + + + + + + + + + + + + enabled + Autoriser + + + + Default &location + Emp&lacement par défaut + + + + + + ... + ... + + + + Remove line breaks in schema &view + Suppr. les sauts de ligne dans la &vue du schéma + + + + Prefetch block si&ze + &Taille du bloc de préfetch + + + + SQ&L to execute after opening database + Fichier SQ&L à exécuter à l'ouverture +de la Base de Données + + + + Default field type + Type de champ par défaut + + + + Data &Browser + &Navigateur des données + + + + Font + Police + + + + &Font + &Police + + + + Content + Contenu + + + + Symbol limit in cell + Texte : Nb max. de caractères + + + + NULL + NULL + + + + Regular + Standard + + + + Binary + Binaire + + + + Background + Arrière plan + + + + Filters + Filtres + + + + Threshold for completion and calculation on selection + Seuil d'achèvement et calcul lors de la sélection + + + + Show images in cell + Afficher les images dans la cellule + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Activez cette option pour afficher un aperçu des BLOBs contenant des images dans les cellules. Cela peut toutefois affecter les performances du navigateur de données. + + + + Escape character + Caractère d'échappement + + + + Delay time (&ms) + Délai (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Défini le temps d'attente avant qu'une nouvelle valeur de filtre est appliquee. Peut être renseigné à 0 pour supprimer le temps d'attente. + + + + &SQL + &SQL + + + + Settings name + Définir le nom + + + + Context + Contexte + + + + Colour + Couleur + + + + Bold + Gras + + + + Italic + Italique + + + + Underline + Souligné + + + + Keyword + Mot Clé + + + + Function + Fonction + + + + Table + Table + + + + Comment + Commentaire + + + + Identifier + Identifiant + + + + String + Chaîne de caractère + + + + Current line + Ligne courante + + + + SQL &editor font size + &Taille de la police : Éditeur SQL + + + + Tab size + Largeur de tabulation + + + + SQL editor &font + &Police de l'éditeur SQL + + + + Error indicators + Indicateur d'erreur + + + + Hori&zontal tiling + Division hori&zontale + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Si elle est activée, l'éditeur de code SQL et l'affichage du tableau de résultats sont présentés côte à côte au lieu d'être l'un sur l'autre. + + + + Code co&mpletion + Co&mplétion de code + + + + Toolbar style + Style de la barre d'outil + + + + + + + + Only display the icon + Afficher uniquement les icones + + + + + + + + Only display the text + Afficher uniquement le texte + + + + + + + + The text appears beside the icon + Le texte sera affiché à côté des icones + + + + + + + + The text appears under the icon + Le texte sera affiché sous les icones + + + + + + + + Follow the style + Suivre le style + + + + DB file extensions + Extensions de fichiers DB + + + + Manage + Gestion + + + + Main Window + Fenêtre principale + + + + Database Structure + Structure de la Base de Données + + + + Browse Data + Parcourir les données + + + + Execute SQL + Exécuter le SQL + + + + Edit Database Cell + Éditer le contenu d'une cellule de la BdD + + + + When this value is changed, all the other color preferences are also set to matching colors. + Lorsque cette valeur est modifiée, toutes les autres préférences de couleur sont également réglées sur les couleurs correspondantes. + + + + Follow the desktop style + Suit le style du bureau + + + + Dark style + Style sombre + + + + Application style + Style de l'application + + + + This sets the font size for all UI elements which do not have their own font size option. + Définit la taille de la police pour tous les éléments de l'interface utilisateur qui n'ont pas leur propre option de taille de police. + + + + Font size + Taille de police + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Lorsque cette option est activée, les sauts de ligne de la colonne Schéma de l'onglet Structure de la Base de Données, du dock et de la sortie imprimée sont supprimés. + + + + Database structure font size + Taille de la police pour la structure de la Base de Données + + + + Font si&ze + T&aille de police + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Il s'agit du nombre maximum d'éléments autorisés pour l'activation de certaines fonctionnalités coûteuses en termes de calcul : +Nombre maximal de lignes dans un tableau pour permettre la complétion des valeurs sur la base des valeurs actuelles de la colonne. +Nombre maximum d'index dans une sélection pour le calcul de la somme et de la moyenne. +Peut être fixé à 0 pour la désactivation des fonctionnalités. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Il s'agit du nombre maximum de lignes dans une table pour permettre la complétion de la valeur en fonction des valeurs actuelles dans la colonne. +Peut être mis à 0 pour désactiver la complétion. + + + + Field display + Affichage des champs + + + + Displayed &text + &Texte affiché + + + + + + + + + Click to set this color + Cliquez pour définir cette couleur + + + + Text color + Couleur de texte + + + + Background color + Couleur d'arrière plan + + + + Preview only (N/A) + Préaffichage uniquement (N/A) + + + + Foreground + Avant Plan + + + + SQL &results font size + Taille police &résultats SQL + + + + &Wrap lines + &Retour à la ligne + + + + Never + Jamais + + + + At word boundaries + Aux limites des mots + + + + At character boundaries + Aux limites des caractères + + + + At whitespace boundaries + Aux limites des espaces + + + + &Quotes for identifiers + &Guillemets pour les identifiants + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Choisissez le système de guillemets utilisés par l'application pour les identificateurs dans le code SQL. + + + + "Double quotes" - Standard SQL (recommended) + "Double guillemet" - Standard SQL (recommandé) + + + + `Grave accents` - Traditional MySQL quotes + `Accent Grave` - Guillemets standards MySQL + + + + [Square brackets] - Traditional MS SQL Server quotes + [Crochets] - Guillemets traditionels de MS SQL Server + + + + Keywords in &UPPER CASE + Mots clé en &MAJUSCULES + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Quand cette case est cochée, les mots clé SQL sont transformés en MAJUSCULES. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Lorsque cette option est activée, les lignes de code SQL qui ont causé des erreurs lors de la dernière exécution sont mises en surbrillance et le cadre des résultats indique l'erreur en arrière-plan + + + + Close button on tabs + Bouton de fermeture des onglets + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + Si cette option est activée, les onglets de l'éditeur SQL comporteront un bouton de fermeture. Dans tous les cas, vous pouvez utiliser le menu contextuel ou le raccourci clavier pour les fermer. + + + + &Extensions + E&xtensions + + + + Select extensions to load for every database: + Sélectionner une extension à charger pour toutes les bases de données : + + + + Add extension + Ajouter une extension + + + + Remove extension + Enlever une extension + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Bien que SQLite supporte l'opérateur REGEXP, aucun algorithme<br>d'expression régulière est implémenté, mais il rappelle l'application en cours d'exécution. DB Browser pour SQLite implémente<br/>cet algorithme pour vous permettre d'utiliser REGEXP. Cependant, comme il existe plusieurs implémentations possibles<br/>et que vous souhaitez peut-être utiliser autre chose, vous êtes libre de désactiver cette implémentation dans l'application<br/>pour utiliser la votre en utilisant une extension. Cela nécessite le redémarrage de l'application.</p></body></html> + + + + Disable Regular Expression extension + Désactiver l'extention "Expression Régulière" + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite fournit une fonction SQL pour charger des extensions à partir d'un fichier de bibliothèque partagé. Activez cette option si vous souhaitez utiliser la fonction <span style=" font-style:italic;">load_extension()</span> depuis el code SQL.</p><p>Pour des raisons de sécurité, le chargement des extensions est désactivé par défaut et doit être activé par ce paramètre. Vous pouvez toujours charger des extensions via l'interface graphique, même si cette option est désactivée.</p></body></html> + + + + Allow loading extensions from SQL code + Autoriser le chargement des extensions depuis le code SQL + + + + Remote + Serveur distant + + + + CA certificates + Certificats CA + + + + Proxy + Proxy + + + + Configure + Configurer + + + + + Subject CN + Sujet CN + + + + Common Name + Nom Commun - CN + + + + Subject O + Sujet O + + + + Organization + Organisation + + + + + Valid from + Valide de + + + + + Valid to + Valide jusqu'à + + + + + Serial number + Numéro de série + + + + Your certificates + Vos certificats + + + + File + Fichier + + + + Subject Common Name + Sujet Common Name + + + + Issuer CN + Émetteur CN + + + + Issuer Common Name + + + + + Clone databases into + Cloner la Base de Données dans + + + + + Choose a directory + Choisir un répertoire + + + + The language will change after you restart the application. + La langue ne changera qu'après le redémarrage de l'application. + + + + Select extension file + Sélectionner un fichier d'extension + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Extensions (*.so *.dylib *.dll);;Tous les fichiers (*) + + + + Import certificate file + Importer un fichier de certificat + + + + No certificates found in this file. + Aucun certificat n'a été trouvé dans ce fichier. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Êtes-vous sûr de vouloir supprimer ce certificat ? Toutes les données de ce certificat seront supprimées des paramètres de l'application! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Êtes-vous sûr de vouloir effacer tous les réglages sauvegardés ? +Toutes vos préférences seront perdues et les valeurs par défaut seront utilisées. + + + + ProxyDialog + + + Proxy Configuration + Configuration du proxy + + + + Pro&xy Type + Type de Pro&xy + + + + Host Na&me + No&m de l'hôte + + + + Port + Port + + + + Authentication Re&quired + Authentification re&quise + + + + &User Name + Nom &Utilisateur + + + + Password + Mot de Passe + + + + None + Aucun + + + + System settings + Paramètres système + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + Erreur lors de l'import des données + + + + from record number %1 + pour l'enregistrement numéro %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + Import du fichier CSV... + + + + Cancel + Annuler + + + + All files (*) + Tous les fichiers (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + Base de Données SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + Gauche + + + + Right + Droite + + + + Center + Centré + + + + Justify + Justifié + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + Fichier de BdD SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + Fichiers projet DB Browser pour SQLite (*.sqbpro) + + + + SQL Files (*.sql) + Fichiers SQL (*.sql) + + + + All Files (*) + Tous les fichiers (*) + + + + Text Files (*.txt) + Fichiers Texte (*.txt) + + + + Comma-Separated Values Files (*.csv) + Valeurs séparées par des virgules (*.csv) + + + + Tab-Separated Values Files (*.tsv) + Valeurs séparées par des tabulations (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Valeurs séparées par des délimiteurs (*.dsv) + + + + Concordance DAT files (*.dat) + Fichiers de Concordance (*.dat) + + + + JSON Files (*.json *.js) + Fichiers JSON (*.json *.js) + + + + XML Files (*.xml) + Fichiers XML (*.xml) + + + + Binary Files (*.bin *.dat) + Fichiers Binaires (*.bin *.dat) + + + + SVG Files (*.svg) + Fichiers SVG (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Fichiers Dump Hexadécimal (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + Extensions (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + ID de Commit + + + + Message + Message + + + + Date + Date + + + + Author + Auteur + + + + Size + Taille + + + + Authored and committed by %1 + Need to see the context Authored can be translated by "Publié" (published) too as the main author + Créé et validé par %1 + + + + Authored by %1, committed by %2 + Créé par %1, validé par %2 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Erreur lors de l'ouverture de la liste des bases de données locales. +%1 + + + + Error creating local databases list. +%1 + Erreur lors de la création de la liste des bases de données locales. +%1 + + + + RemoteDock + + + Remote + Serveur Distant + + + + Local + Local + + + + Identity + Identité + + + + Push currently opened database to server + Déplacer la Base de Données en cours sur le serveur + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>Dans ce volet, les bases de données distantes du site Web dbhub.io peuvent être ajoutées à DB Browser pour SQLite. Il faut d'abord vous identifier :</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Connectez-vous sur le site dbhub.io (utilisez vos identifiants GitHub ou ce que vous voulez)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Cliquez sur le bouton &quot;Generate client certificate&quot; (c'est votre identité). Cela vous fournira un fichier de certificat (enregistrez-le sur votre disque local).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Allez dans l'onglet Serveur Distant des Préférences DB Browser pour SQLite . Cliquez sur le bouton pour ajouter un nouveau certificat à DB Browser pour SQLite et choisissez le fichier de certificat que vous venez de télécharger.</li></ol><p>Maintenant, le panneau Serveur distant affiche votre identité et vous pouvez ajouter des bases de données distantes..</p></body></html> + + + + Current Database + Base de Données en cours + + + + Clone + Cloner + + + + User + Utilisateur + + + + Database + Base de Données + + + + Branch + Branche + + + + Commits + Commits + + + + Commits for + Commits pour + + + + Delete Database + Supprime la Base de Données + + + + Delete the local clone of this database + Supprime le clone local de la Base de Données + + + + Open in Web Browser + Ouvre dans un navigateur Internet + + + + Open the web page for the current database in your browser + Ouvre la page web de la Base de Données en cours dans votre navigateur + + + + Clone from Link + Cloner depuis un lien + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + Utilisez ceci pour télécharger une Base de Données distante pour l'édiiter localement en utilisant une URL telle que fournie sur la page web de la Base de Données. + + + + Refresh + Rafraichir + + + + Reload all data and update the views + Recherge toutes les données et met à jour les vues + + + + F5 + + + + + Clone Database + Cloner une Base de Données + + + + Open Database + Ouvrir une Base de données + + + + Open the local copy of this database + Ouvrir la copie locale de la Base de Données + + + + Check out Commit + Vérifier le Commit + + + + Download and open this specific commit + Télécharger et ouvrir ce Commit particulier + + + + Check out Latest Commit + Vérifier le dernier Commit + + + + Check out the latest commit of the current branch + Vérifie le dernier Commit de la branche en cours + + + + Save Revision to File + Enregistrer la Révision dans un fichier + + + + Saves the selected revision of the database to another file + Enregistre la Révision sélectionnée de la Base de Données dans un autre fichier + + + + Upload Database + Télécharger la Base de Données + + + + Upload this database as a new commit + Téléchargez cette Base de Données en tant que nouveau Commit + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>Vous utilisez actuellement une identité intégrée, en lecture seule. Pour télécharger votre Base de Données, vous devez configurer et utiliser votre compte DBHub.io. </p><p>Vous n'avez pas encore de compte DBHub.io ? <a href="https://dbhub.io/"><span style=" text-decoration : underline ; color:#007af4 ;">Créez-en un maintenant</span></a> et importez votre certificat <a href="#preferences"><span style=" text-decoration : underline ; color:#007af4 ;">ici</span></a> pour partager vos bases de données.</p><p>Pour l'aide en ligne, visitez <a href="https://dbhub.io/about"><span style=" text-decoration : underline ; color:#007af4 ;">ici</span></a>.</p></body></html> + + + + Back + Retour + + + + Select an identity to connect + Sélectionner une identité pour se connecter + + + + Public + Public + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + Cela télécharge une Base de Données à partir d'un serveur distant pour l'éditer localement. +Veuillez entrer l'URL à partir de laquelle vous souhaitez la cloner. Vous pouvez générer cette URL en +en cliquant sur le bouton "Cloner la Base de Données dans DB4S" sur la page web +de la Base de Données. + + + + Invalid URL: The host name does not match the host name of the current identity. + URL invalide : Le nom de l'hôte ne correspond pas au nom de l'hôte de l'identité actuelle. + + + + Invalid URL: No branch name specified. + URL Invalide : Nom de branche non spécifié. + + + + Invalid URL: No commit ID specified. + URL Invalide : Commit ID non spécifié. + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + Vous avez modifié le clone local de la Base de Données. La récupération de ce commit annule ces modifications locales. +Êtes-vous sûr de vouloir continuer ? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + La Base de Données contient des modifications non sauvegardées. Êtes-vous sûr de vouloir la pousser avant de la sauvegarder ? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + La Base de Données que vous essayez de supprimer est actuellement ouverte. Veuillez la fermer avant de la supprimer. + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + Cela va supprimer la version locale de cette Base de Données avec tous les changements pour lesquels vous n'avez pas fait de Commit. Êtes-vous sûr de vouloir supprimer cette Base de Données ? + + + + RemoteLocalFilesModel + + + Name + Nom + + + + Branch + Branche + + + + Last modified + Dernière modification + + + + Size + Taille + + + + Commit + Commit + + + + File + Fichier + + + + RemoteModel + + + Name + Nom + + + + Last modified + Dernière modification + + + + Size + Taille + + + + Commit + Commit + + + + Size: + Taille : + + + + Last Modified: + Dernière modification : + + + + Licence: + Licence : + + + + Default Branch: + Branche par défaut : + + + + RemoteNetwork + + + Choose a location to save the file + Choisissez un emplacement pour enregistrer le fichier + + + + Error opening remote file at %1. +%2 + Erreur lors de l'ouverture du fichier distant %1. +%2 + + + + Error: Invalid client certificate specified. + Erreur : Le certificat du client spécifié est invalide. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Pour vous authentifier, veuillez entrer la phrase secrète pour ce certificat client. + + + + Cancel + Annuler + + + + Uploading remote database to +%1 + Téléchargement de la base distante dans +%1 + + + + Downloading remote database from +%1 + Télécharger une Base de Données distante depuis +%1 + + + + + Error: The network is not accessible. + Erreur : le réseau n'est pas accessible. + + + + Error: Cannot open the file for sending. + Erreur : le fichier à envoyer ne peut être ouvert. + + + + RemotePushDialog + + + Push database + Je ne pense pas que Push soir le bon terme. Est-ce que cela fonctionne comme un serveur de version ? + Pousser une basse de données + + + + Database na&me to push to + &Nom de la Base de Données à pousser vers + + + + Commit message + Message de Commit + + + + Database licence + Licence de la Base de Données + + + + Public + Publique + + + + Branch + Branche + + + + Force push + Forcer le "push" + + + + Username + Nom utilisateur + + + + Database will be public. Everyone has read access to it. + La Base de DOnnée sera publique. Tout le monde a un accès en lecture. + + + + Database will be private. Only you have access to it. + La Base de Données est privée. Vous seul y avez accès. + + + + Use with care. This can cause remote commits to be deleted. + A utiliser avec précaution. Cela peut entraîner la suppression des commit distants. + + + + RunSql + + + Execution aborted by user + Exécution annulée par l'utilisateur + + + + , %1 rows affected + , %1 enregistrements affectés + + + + query executed successfully. Took %1ms%2 + Requête exécutée avec succès. Elle a pris %1 ms %2 + + + + executing query + Exécution de la requête + + + + SelectItemsPopup + + + A&vailable + &Disponible + + + + Sele&cted + Sele&ctionné + + + + SqlExecutionArea + + + Form + Formulaire + + + + Find previous match [Shift+F3] + Trouver la correspondance précédente [Maj+F3] + + + + Find previous match with wrapping + Trouver la correspondance précédente avec le modèle + + + + Shift+F3 + Maj+F3 + + + + The found pattern must be a whole word + Le motif trouvé doit être un mot entier + + + + Whole Words + Mots entiers + + + + Text pattern to find considering the checks in this frame + Modèle de texte à trouver en tenant compte des contrôles de ce cadre + + + + Find in editor + Chercher dans l'éditeur + + + + The found pattern must match in letter case + Le motif recherché doit respecter la casse des lettres + + + + Case Sensitive + Sensible à la casse + + + + Find next match [Enter, F3] + Trouver la correspondance suivante [Entrée, F3] + + + + Find next match with wrapping + Trouver la correspondance suivante avec le modèle + + + + F3 + + + + + Interpret search pattern as a regular expression + Interpréter le modèle de recherche comme une expression régulière + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Lorsqu'elle est cochée, le motif à trouver est interprété comme une expression régulière UNIX. Voir <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + Regular Expression + Expression régulière + + + + + Close Find Bar + Fremer la barre de recherche + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>Résultats des derniers traitements exécutées.</p><p>Vous pouvez réduire ce panneau et utiliser le <span style=" font-style:italic ;">dock SQL Log</span> avec la sélection de l'<span style=" font-style:italic ;">utilisateur</span> à la place.</p></body></html> + + + + Results of the last executed statements + Résultats du dernier traitement exécuté + + + + This field shows the results and status codes of the last executed statements. + Ce champ affiche les résultats et les codes de statut du dernier traitement exécuté. + + + + Couldn't read file: %1. + Le fichier %1 ne peut être lu. + + + + + Couldn't save file: %1. + Le fichier %1 ne peut être sauvegardé. + + + + Your changes will be lost when reloading it! + Vos modifications seront perdues lors du rechargement ! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + Le fichier "%1" a été modifié par un autre programme. Vioulez-vous le recharger ? %2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) La fonction abs(X) renvoie la valeur absolue de l'argument numérique X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () La fonction changes() renvoie le nombre de lignes de la Base de Données qui ont été modifiées, insérées ou supprimées par les instructions UPDATE, INSERT ou DELETE terminées dernièrement. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1, X2,...) La fonction char(X1,X2,...,XN) renvoie une chaîne composée des caractères ayant les valeurs des points de code unicode des entiers allant de X1 à XN, respectivement. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X, Y, ...) La fonction coalesce () renvoie une copie de son premier argument non-NULL, ou NULL si tous les arguments sont NULL + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X, Y) La fonction glob (X, Y) est équivalente à l'expression « Y GLOB X ». + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X, Y) La fonction ifnull () renvoie une copie de son premier argument non-NULL, ou NULL si les deux arguments sont NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X, Y) La fonction instr (X, Y) trouve la première occurrence de la chaîne Y dans la chaîne X. Elle renvoie le nombre de caractères précédents plus 1 ou 0 si Y n'est pas dans X. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) La fonction hex () interprète son argument comme un BLOB et renvoie une chaîne qui est le rendu hexadécimal en majuscules du contenu de ce blob. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () La fonction last_insert_rowid () renvoie le ROWID de la dernière ligne insérée par la connexion de la Base de Données qui a invoqué la fonction. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) Pour une valeur de chaîne X, la fonction length(X) renvoie le nombre de caractères (pas d'octets) dans X avant le premier caractère NULL. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X, Y) La fonction like() est utilisée pour mettre en œuvre de l’expression « Y LIKE X ». + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X, Y, Z) La fonction like() est utilisée pour mettre en œuvre de l’expression « Y LIKE X ESCAPE Z ». + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) La fonction load_extension(X) charge les extensions SQLite à partir du fichier de bibliothèque partagé nommé X. +L'utilisation de cette fonction doit être autorisée à partir des Préférences. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) La fonction load_extension(X) charge les extensions SQLite à partir du fichier de bibliothèque partagée nommé X en utilisant le point d'entrée Y. +L'utilisation de cette fonction doit être autorisée à partir des Préférences. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) La fonction lower(X) renvoie une copie de la chaîne X avec tous ses caractères ASCII convertis en minuscules. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) supprime les espaces gauche de X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X, Y) La fonction ltrim(X,Y) renvoie une chaîne résultant de la suppression de tous les caractères qui apparaissent en Y à gauche de X. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) La fonction à arguments multiples max() renvoie l'argument ayant la plus grande valeur ou renvoie NULL si tous les arguments sont NULL. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) La fonction à arguments multiples min() renvoie l'argument ayant la plus petite valeur. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X, Y) La fonction nullif(X,Y) renvoie le premier argument, si les arguments sont différents et NULL si les X et Y sont les mêmes. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) La fonction SQL printf(FORMAT,...) fonctionne comme la fonction de sqlite3_mprintf() en langage C et la fonction printf() de la bibliothèque C standard. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) La fonction quote(X) renvoie le texte d’un litéral SQL qui est la valeur appropriée de l’argument pour son inclusion dans une requête SQL. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () La fonction random() renvoie un nombre entier pseudo-aléatoire entre -9223372036854775808 et + 9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) La fonction randomblob(N) renvoie un blob de N octets contenant des octets pseudo-aléatoires. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X, Y, Z) La fonction replace(X,Y,Z) renvoie une chaîne formée en substituant par la chaîne Z chaque occurrence de la chaîne Y présente dans la chaîne X. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) La fonction round(X) renvoie une valeur à virgule flottante X arrondie à zéro chiffres à droite de la virgule décimale. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X, Y) La fonction round(X,Y) renvoie une valeur à virgule flottante X arrondie à Y chiffres à droite de la virgule décimale. + + + + (X) rtrim(X) removes spaces from the right side of X. + X) rtrim(X) supprime les espaces droite de X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X, Y) La fonction rtrim(X,Y) renvoie une chaîne formée en supprimant tous les caractères qui apparaissent en Y, à droite de X. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) La fonction soundex(X) renvoie une chaîne qui est l'encodage soundex de la chaîne X. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X, Y) substr(X,Y) renvoie tous les caractères à partir du n-ième Y jusqu'à la fin de la chaîne X. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X, Y, Z) La fonction substr(X,Y,Z) renvoie une sous-chaîne de la chaîne X à partie du n-ième caractère Y, de longueur Z. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () La fonction total_changes() renvoie le nombre d'enregistrements altérés par les instructions INSERT, UPDATE ou DELETE depuis l’ouverture de la connexion de Base de Données courante. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) supprime les espaces aux deux extrémités de X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X, Y) La fonction trim(X,Y) renvoie une chaîne formée en supprimant tous les caractères de Y présents aux deux extrémités de X. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) La fonction typeof(X) renvoie une chaîne qui indique le type de données de l’expression X. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) La fonction unicode(X) renvoie le point de code unicode numérique correspondant au premier caractère de la chaîne X. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) La fonction upper(X) renvoie une copie de la chaîne X dans laquel tous les caractères ASCII en minuscules sont convertis en leurs équivalents en majuscules. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) La fonction zeroblob(N) renvoie un BLOB composé de N octets de valeur 0x00. + + + + + + + (timestring,modifier,modifier,...) + (timestring,modifier,modifier,...) + + + + (format,timestring,modifier,modifier,...) + (format,timestring,modifier,modifier,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) La fonction avg() renvoie la valeur moyenne de tous les X non-NULL dans d’un groupe. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) La fonction count(X) renvoie le nombre de fois où X n’est pas NULL dans un groupe. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) la fonction group_concat() renvoie une chaîne qui est la concaténation de toutes les valeurs non-NULL de X. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X, Y) La fonction group_concat() renvoie une chaîne qui est la concaténation de toutes les valeurs non-NULL de X. Si le paramètre Y est présent, il est utilisé comme séparateur entre chaque instances de X. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) La fonction d’agrégat max() renvoie la valeur maximale de toutes les valeurs du groupe. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) La fonction d’agrégation min() renvoie la valeur non-NULL minimale de toutes les valeurs du groupe. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Les fonctions d'agrégation sum() et total() renvoient la somme de toutes les valeurs non-NULL du groupe. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () Le numéro del'enregistrement dans la partition courante. Les lignes sont numérotées à partir de 1 dans l'ordre défini par la clause ORDER BY dans la définition de la fenêtre, ou, sinon, dans un ordre arbitraire. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Le row_number() enregistrement homologue de chaque groupe - le rang de l'enregistrement courant avec les écarts. S'il n'y a pas de clause ORDER BY, alors tous les enregistrements sont considérées comme homologues et cette fonction renvoie toujours 1. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Le numéro du groupe d'enregistrements homologues de la rangée courante dans sa partition - le rang de la rangée courante sans espaces. Les partitions sont numérotées à partir de 1 dans l'ordre défini par la clause ORDER BY dans la définition de la fenêtre. S'il n'y a pas de clause ORDER BY, alors toutes les lignes sont considérées comme homologues et cette fonction renvoie toujours 1. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () Malgré le nom, cette fonction retourne toujours une valeur comprise entre 0.0 et 1.0 égale à (rang - 1)/(rangées de partitions - 1), où rang est la valeur retournée par la fonction de fenêtre intégrée rank() et rangées de partitions est le nombre total de rangées dans la partition. Si la partition ne contient qu'une seule ligne, cette fonction renvoie 0.0. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () Répartition cumulée. Calculée en tant que ligne-numéro/rangées-partition, où ligne-numéro est la valeur retournée par row_number() pour le dernier homologue dans le groupe et ligne-partition le nombre de lignes dans la partition. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) L'argument N est traité comme un entier. Cette fonction divise la partition en N groupes le plus uniformément possible et attribue un entier compris entre 1 et N à chaque groupe, dans l'ordre défini par la clause ORDER BY, ou, sinon, dans un ordre arbitraire. Si nécessaire, les plus grands groupes se forment en premier. Cette fonction retourne la valeur entière assignée au groupe dont la ligne courante fait partie. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Retourne le résultat de l'évaluation de l'expression expr par rapport à la ligne précédente de la partition. Ou NULL s'il n'y a pas de ligne précédente (parce que la ligne courante est la première). + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) Si l'argument offset est fourni, alors il doit être un entier non négatif. Dans ce cas, la valeur retournée est le résultat de l'évaluation de expr par rapport au décalage des lignes avant la ligne courante dans la partition. Si l'offset est égal à 0, alors expr est évalué par rapport à la ligne courante. S'il n'y a pas de lignes de décalage de ligne avant la ligne courante, NULL est retourné. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) Si la valeur par défaut est aussi renseignée, cette valeur sera retournée au lieu de NULL si la ligne identifiée par offset n'existe pas. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Retourne le résultat de l'évaluation de l'expression expr par rapport à la ligne suivante de la partition. Ou NULL s'il n'y a pas de ligne suivante (parce que la ligne courante est la dernière). + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) Si l'argument offset est fourni, alors il doit être un entier non négatif. Dans ce cas, la valeur retournée est le résultat de l'évaluation de expr par rapport par rapport au décalage des lignes après la ligne courante dans la partition. Si l'offset est égal à 0, alors expr est évalué par rapport à la ligne courante. S'il n'y a pas de lignes de décalage de ligne après la ligne courante, NULL est retourné. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Cette fonction de fenêtrage intégrée calcule le cadre de la fenêtre pour chaque rangée de la même manière qu'une fonction de fenêtrage agrégée. Elle retourne la valeur de expr évaluée par rapport à la première ligne du cadre de la fenêtre pour chaque ligne. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Cette fonction de fenêtrage intégrée calcule le cadre de la fenêtre pour chaque rangée de la même manière qu'une fonction de fenêtrage agrégée. Elle retourne la valeur de expr évaluée par rapport à la dernière ligne du cadre de la fenêtre pour chaque ligne. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) Cette fonction de fenêtrage intégrée calcule le cadre de la fenêtre pour chaque rangée de la même manière qu'une fonction de fenêtrage agrégée. Elle retourne la valeur de expr évaluée par rapport à la ligne N du cadre de la fenêtre. Les rangées sont numérotées à l'intérieur du cadre de la fenêtre à partir de 1 dans l'ordre défini par la clause ORDER BY si elle est présente, ou dans un ordre arbitraire sinon. S'il n'y a pas de Nième ligne dans la partition, alors NULL est retourné. + + + + SqliteTableModel + + + reading rows + Lecture des enregistrements + + + + loading... + chargement... + + + + References %1(%2) +Hold %3Shift and click to jump there + Références %1(%2) +Appuyez simultanément sur %3+Maj et cliquez pour arriver ici + + + + Error changing data: +%1 + Erreur lors du changement des données : +%1 + + + + retrieving list of columns + récupération de la liste des colonnes + + + + Fetching data... + Récupération des données... + + + + + Cancel + Annuler + + + + TableBrowser + + + Browse Data + Parcourir les données + + + + &Table: + &Table : + + + + Select a table to browse data + Sélectionner une table pour parcourir son contenu + + + + Use this list to select a table to be displayed in the database view + Utiliser cette liste pour sélectionner la table à afficher dans la vue Base de Données + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Ceci est la vue des tables de la Base de Données. Vous pouvez effectuer les actions suivantes : + - Commencez à écrire pour éditer en ligne la valeur. + - Double-cliquez sur n'importe quel enregistrement pour éditer son contenu dans la fenêtre de l'éditeur de cellule. + - Alt+Supp pour supprimer le contenu de la cellule et la met à NULL. + - Ctrl+" pour dupliquer l'enregistrement en cours. + - Ctrl+' pour copier la valeur de la cellule ci-dessus. + - Sélection standard et opérations de copier/coller. + + + + Text pattern to find considering the checks in this frame + Modèle de texte à trouver en tenant compte des contrôles de ce cadre + + + + Find in table + Chercher dans la table + + + + Find previous match [Shift+F3] + Trouver la correspondance précédente [Maj+F3] + + + + Find previous match with wrapping + Trouver la correspondance précédente avec le modèle + + + + Shift+F3 + Maj+F3 + + + + Find next match [Enter, F3] + Trouver la correspondance suivante [Entrée, F3] + + + + Find next match with wrapping + Trouver la correspondance suivante avec le modèle + + + + F3 + + + + + The found pattern must match in letter case + Le motif recherché doit respecter la casse des lettres + + + + Case Sensitive + Sensible à la casse + + + + The found pattern must be a whole word + Le motif trouvé doit être un mot entier + + + + Whole Cell + Ensemble de la cellule + + + + Interpret search pattern as a regular expression + Interpréter le modèle de recherche comme une expression régulière + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Lorsque cette case est cochée, le motif à trouver est interprété comme une expression régulière UNIX. Voir <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + Regular Expression + Expression régulière + + + + + Close Find Bar + Fremer la barre de recherche + + + + Text to replace with + Texte à remplacer par + + + + Replace with + Remplacer par + + + + Replace next match + Remplacer la prochaine correspondance + + + + + Replace + Remplacer + + + + Replace all matches + Remplacer toutes les correspondances + + + + Replace all + Remplacer tout + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Aller au début</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Cliquer sur ce bouton permet d'aller au début de la table ci-dessus.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Remonter d'une page + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Cliquer sur ce bouton permet d'afficher la page précédente des enregistrements de la table ci dessus.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 de 0 + + + + Scroll one page downwards + Descendre d'une page + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Cliquer sur ce bouton permet d'afficher la page suivante des enregistrements de la table ci dessus.</p></body></html> + + + + > + > + + + + Scroll to the end + Aller à la fin + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Cliquer sur ce bouton permet d'aller à la fin de la table ci-dessus.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Cliquer ici pour vous déplacer sur l'enregistrement indiqué</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Ce bouton est utilisé pour aller directement à l'enregistrement indiqué dans le champ Aller à.</p></body></html> + + + + Go to: + Aller à : + + + + Enter record number to browse + Entrez le nombre d'enregistrements à parcourir + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Entrez un numéro d'enregistrement dans ce champ et cliquez sur le bouton "Aller à" pour afficher l'enregistrement dans la vue Base de Données + + + + 1 + 1 + + + + Show rowid column + Afficher la colonne RowId + + + + Toggle the visibility of the rowid column + Permet d'afficher ou non la colonne RowId + + + + Unlock view editing + Dévérouiller l'éditeur de vues + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Permet de dévérouiller la vue courante pour l'éditer. Cependant, vous aurez besoin de déclencheurs appropriés pour faire cela. + + + + Edit display format + Modifier le format d'affichage + + + + Edit the display format of the data in this column + Modifie le format d'affichage des données contenues dans cette colonne + + + + + New Record + Nouvel Enregistrement + + + + + Insert a new record in the current table + Insérer un nouvel enregistrement dans la table en cours + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Ce bouton crée un nouvel enregistrement dans la Base de Données. Maintenez le bouton de la souris enfoncé pour ouvrir un menu contextuel de différentes options :</p><ul><li><span style=" font-weight:600;">Nouvel Enregistrement</span> : Insère un nouvel enregistrement avec les valeurs par défaut dans la Base de Données.</li><li><span style=" font-weight:600;">Insérer des valeurs...</span> : ouvre une boite de dialogue pour saisir des valeurs avant leur insersion dans la Base de Données. Ceci permet de saisir des valeurs correspondant aux différentes contraintes. Cette boîte de dialogue est également ouverte si l'option <span style=" font-weight:600;">Nouvel Enregistrement </span> est en erreur à cause de ces contraintes.</li></ul></body></html> + + + + + Delete Record + Supprimer l'enregistrement + + + + Delete the current record + Supprimer l'enregistrement courant + + + + + This button deletes the record or records currently selected in the table + Ce bouton permet de supprimer l'enregistrement sélectionné dans la table + + + + + Insert new record using default values in browsed table + Insérer un nouvel enregistrement en utilisant les valeurs par défaut de la table parcourrue + + + + Insert Values... + Ajouter des valeurs... + + + + + Open a dialog for inserting values in a new record + Ouvre une fenêtre de dialogue permettant l'insersion de valeurs dans un nouvel enregistrement + + + + Export to &CSV + Exporter au format &CSV + + + + + Export the filtered data to CSV + Exporte les données filtrées au format CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Ce bouton exporte les données de la table parcourue telles qu'elles sont actuellement affichées (après les filtres, les formats d'affichage et la colonne d'ordre) dans un fichier CSV. + + + + Save as &view + Enregistrer comme une &vue + + + + + Save the current filter, sort column and display formats as a view + Enregistrer le filtre, la colonne de tri et les formats d'affichage actuels sous la forme d'une vue + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Ce bouton permet d'enregistrer les paramètres actuels de la table parcourue (filtres, formats d'affichage et colonne d'ordre) sous forme de vue SQL que vous pourrez ensuite parcourir ou utiliser dans les instructions SQL. + + + + Save Table As... + Enregistrer la table sous... + + + + + Save the table as currently displayed + Enregistrer la table comme affichée actuellement + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>Ce menu déroulant fournit les options suivantes s'appliquant à la table actuellement parcourue et filtrée:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Exporter au format CSV : cette option exporte les données de la table parcourue telles qu'elles sont actuellement affichées (après filtres, formats d'affichage et colonne d'ordre) vers un fichier CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Enregistrer comme vue : cette option permet d'enregistrer les paramètres actuels de la table parcourue (filtres, formats d'affichage et colonne d'ordre) dans une vue SQL que vous pourrez ensuite parcourir ou utiliser dans les instructions SQL.</li></ul></body></html> + + + + Hide column(s) + Masquer une/des colonnes + + + + Hide selected column(s) + Maquer la/les colonnes sélectionnées + + + + Show all columns + Afficher toutes les colonnes + + + + Show all columns that were hidden + Permet d'afficher toutes les colonnes qui ont été masquées + + + + + Set encoding + Définir l'encodage + + + + Change the encoding of the text in the table cells + Change l'encodage du texte des cellules de la table + + + + Set encoding for all tables + Définir l'encodage pour toutes les tables + + + + Change the default encoding assumed for all tables in the database + Change l'encodage par défaut choisi pour l'ensemble des tables de la Base de Données + + + + Clear Filters + Effacer les filtres + + + + Clear all filters + Effacer tous les filtres + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Ce bouton efface tous les filtres définis dans les champs de saisie de l'en-tête de la table actuellement parcourue. + + + + Clear Sorting + Effacer le tri + + + + Reset the order of rows to the default + Rétablit l'ordre des lignes aux valeurs par défaut + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Ce bouton efface les critères de tri définis pour les colonnes de la table actuellement parcourue et revient à l'ordre par défaut. + + + + Print + Imprimer + + + + Print currently browsed table data + Imprimer le données de la table actuellement parcourues + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Imprimer le données de la table actuellement parcourues. Imprime la sélection si plus d'une cellule est sélectionnée. + + + + Ctrl+P + + + + + Refresh + Rafraichir + + + + Refresh the data in the selected table + Rafraîchir les données de la table sélectionnée + + + + This button refreshes the data in the currently selected table. + Ce bouton permet de rafraîchir les données de la table actuellement sélectionnée. + + + + F5 + + + + + Find in cells + Rechercher dans les cellules + + + + Open the find tool bar which allows you to search for values in the table view below. + Ouvre la barre d'outils de recherche qui vous permet de rechercher des valeurs dans la table ci-dessous. + + + + + Bold + Gras + + + + Ctrl+B + + + + + + Italic + Italique + + + + + Underline + Souligné + + + + Ctrl+U + + + + + + Align Right + Aligrer à Droite + + + + + Align Left + Aligner à Gauche + + + + + Center Horizontally + Centrer Horizontalement + + + + + Justify + Justifié + + + + + Edit Conditional Formats... + Éditer les formats conditionnels... + + + + Edit conditional formats for the current column + Éditer les formats conditionnels de la colonne en cours + + + + Clear Format + Effacer les Formats + + + + Clear All Formats + Effacer tous les Formats + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Effacr tous les formats de cellule des cellules sélectionnées et tous les formats conditionnels des colonnes sélectionnées + + + + + Font Color + Couleur de Police + + + + + Background Color + Couleur d'arrière plan + + + + Toggle Format Toolbar + Changer le format de lma barre d'outils + + + + Show/hide format toolbar + Afficher/Cacher la barre des formats + + + + + This button shows or hides the formatting toolbar of the Data Browser + Ce bouton permet d'afficher ou de masquer la barre d'outils de formatage du navigateur de données + + + + Select column + Sélectionner une colonne + + + + Ctrl+Space + Ctrl+Espace + + + + Replace text in cells + Remplace du texte dans les cellules + + + + Filter in any column + Filtrer dans n'importe quelle colonne + + + + Ctrl+R + + + + + %n row(s) + + %n ligne + %n lignes + + + + + , %n column(s) + + , %n colonne + , %n colonnes + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Somme: %1; Moyenne: %2; Min: %3; Max: %4 + + + + Conditional formats for "%1" + Format conditionnel pour "%1" + + + + determining row count... + Détermination du nombre d'enregistrements... + + + + %1 - %2 of >= %3 + %1 - %2 de >= %3 + + + + %1 - %2 of %3 + %1 - %2 de %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Veuillez entrer une pseudo clé primaire pour permettre l'édition de la vue. Ce devrait être le nom d'une colonne unique dans la vue. + + + + Delete Records + Supprimer les enregistrements + + + + Duplicate records + Enregistrement en double + + + + Duplicate record + Dupliquer l'enregistrement + + + + Ctrl+" + + + + + Adjust rows to contents + Ajuster les lignes au contenu + + + + Error deleting record: +%1 + Erreur dans la suppression d'un enregistrement : +%1 + + + + Please select a record first + Veuillez sélectionner au préalable un enregistrement + + + + There is no filter set for this table. View will not be created. + Il n'existe pas de filtre pour cette table. La vue ne sera pas créée. + + + + Please choose a new encoding for all tables. + Veuillez choisir un nouvel encodage pour toutes les tables. + + + + Please choose a new encoding for this table. + Veuillez choisir un nouvel encodage pour cette table. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Laissez le champ vide pour utiliser l'encodage de la Base de Données. + + + + This encoding is either not valid or not supported. + Cet encodage est invalide ou non supporté. + + + + %1 replacement(s) made. + %1 remplacement(s) effectué(s). + + + + VacuumDialog + + + Compact Database + Compacter la Base de Données + + + + Warning: Compacting the database will commit all of your changes. + Attention : compacter la base de donnée entraînera l'enregistrement de tous les changements effectués. + + + + Please select the databases to co&mpact: + Veuillez saisir le nom de la Base de Données à co&mpacter : + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_it.qm b/src/SqliteDBProcess/src/translations/sqlb_it.qm new file mode 100644 index 0000000..49ab89b Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_it.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_it.ts b/src/SqliteDBProcess/src/translations/sqlb_it.ts new file mode 100644 index 0000000..ac8ed8a --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_it.ts @@ -0,0 +1,7020 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + Informazioni su DB Browser for SQLite + + + + Version + Versione + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB-Browser for SQLite è uno strumento grafico opensource e freeware usato per creare, struttutturare e modificare file database di SQLite</p><p>È rilasciato sotto la licenza Mozilla Public License Version 2, così come sotto la licenza GNU General Public License Version 3 o successive. È possibile modificarlo e redistribuirlo sotto le condizioni specificate da queste licenze.</p><p>Si veda <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> e <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> per ulteriori dettagli.</p><p>Per ulteriori dettagli riguardo questo programma visitate il nostro sito web a: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">Questo software usa GPL/LGPL QT Toolkit da </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Si veda </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> per termini di licenza e informazioni.</span></p><p><span style=" font-size:small;">Utilizza inoltre Silk-Iconset di Mark James, rilasciato sotto licenza Creative Commons Attribution 2.5 e 3.0.<br/>Si veda </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> per ulteriori dettagli.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Aggiungi un nuovo record + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Inserisci i valori per il nuovo record considerando i vincoli. I campi in grassetto sono obbligatori. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + Nella colonna Valore puoi specificare il valore per il campo identificato dalla colonna Nome. La colonna Tipo indica il tipo del campo. I valori di default sono mostrati nello stesso stile come valori NULL. + + + + Name + Nome + + + + Type + Tipo + + + + Value + Valore + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Valori da inserire. Sono preinseriti dei valori di default automaticamente a meno che essi non vengano cambiati. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Quando modifichi i valori nel riquadro superiore, la query SQL per inserire questo nuovo record è mostrata qui-> Puoi modificare manualmente la query prima di salvare. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Salva</span> invia la richiesta SQL mostrata al database per inserire un nuovo record.</p><p><span style=" font-weight:600;">Ripristina Defaults</span> ripristinerà i valori iniziali della colonna <span style=" font-weight:600;">Valore</span>.</p><p><span style=" font-weight:600;">Annulla</span> chiuderà questa finestra di dialogo senza eseguire la query.</p></body></html> + + + + Auto-increment + + Auto-incrementale + + + + + Unique constraint + + Restrizione univoco + + + + + Check constraint: %1 + + Controlla restrizioni: %1 + + + + + Foreign key: %1 + + Chiave esterna: %1 + + + + + Default value: %1 + + Valore di default: %1 + + + + + Error adding record. Message from database engine: + +%1 + Errore nell'aggiungere il record. Messaggio dal database engine: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Sei sicuro di voler ripristinare tutti i valori inseriti ai loro valori di default? + + + + Application + + + Possible command line arguments: + Possibili argomenti da linea di comando: + + + + Usage: %1 [options] [<database>|<project>] + + Utilizzo: %1 [opzioni] [<database>|<progetto>] + + + + + -h, --help Show command line options + -h, --help Mostra le opzioni da riga di comando + + + + -q, --quit Exit application after running scripts + -q, --quit Chiude l'applicazione dopo aver eseguito gli scripts + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <file> Esegue questo file SQL dopo aver aperto il DB + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <table> Mostra questa tabella dopo aver aperto il DB + + + + -R, --read-only Open database in read-only mode + -R, --read-only Apre il database in sola lettura + + + + -o, --option <group>/<setting>=<value> + -o, --option <gruppo>/<impostazione>=<valore> + + + + Run application with this setting temporarily set to value + Esegue l'applicazione con queste impostazioni applicate temporaneamente + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <gruppo>/<impostazione>=<valore> + + + + Run application saving this value for this setting + Esegue l'applicazione salvando questo valore come impostazione + + + + -v, --version Display the current version + -v, --version Mostra la versione corrente + + + + <database> Open this SQLite database + <database> Apre questo database SQLite + + + + <project> Open this project file (*.sqbpro) + <project> Apre questo file di progetto (*.sqbpro) + + + + The -s/--sql option requires an argument + L'opzione -s/--sql richiede un argomento + + + + The file %1 does not exist + Il file %1 non esiste + + + + The -t/--table option requires an argument + L'opzione -t/--table richiede un argomento + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + L'opzioni -o/--option e -O/--save-option richiedono un parametro nel formato gruppo/impostaizione=valore + + + + SQLite Version + Versione SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + Versione SQLCipher %1 (basata su SQLite %2) + + + + DB Browser for SQLite Version %1. + DB Browser for SQLite Versione %1. + + + + Built for %1, running on %2 + Compilato per %1, in esecuzione su %2 + + + + Qt Version %1 + Versione Qt %1 + + + + Invalid option/non-existant file: %1 + Opzione non valida/file inesistente: %1 + + + + CipherDialog + + + SQLCipher encryption + Criptatura SQLCipher + + + + &Password + &Password + + + + &Reenter password + &Reinserire password + + + + Encr&yption settings + I&mpostazioni cifratura + + + + SQLCipher &3 defaults + Predefiniti SQLCipher &3 + + + + SQLCipher &4 defaults + Predefiniti SQLCipher &4 + + + + Custo&m + Personalizzat&i + + + + Page si&ze + Di&mensioni pagina + + + + &KDF iterations + Integrazione &KDF + + + + HMAC algorithm + Algoritmo HMAC + + + + KDF algorithm + Algoritmo KDF + + + + Plaintext Header Size + Dimensione header testuale + + + + Passphrase + Chiave testuale + + + + Raw key + Chiave grezza + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Perfavore inserisci una chiave per criptare il database. +Nota che se cambi una qualsiasi delle altre impostazioni opzionali, dovrai reinserirle ogni volta che apri il file del database. +Lascia i campi password vuoti per disabilitare la crittografia. +Il processo di crittazione può richiedere del tempo e dovresti avere una copia di backup del database! Modifiche non salvate sono applicate prima di modificare la crittografia. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Si prega d'inserire la chiave utilizzata per criptare il database. +Se una qualunque altra impostazione è stata modificata per l'inserimento della criptazione si prega d'impostarla in modo adeguato. + + + + ColumnDisplayFormatDialog + + + Choose display format + Seleziona il formato di visualizzazione + + + + Display format + Formato di visualizzazione + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Seleziona un formato di visualizzazione per la colonna '%1' che è applicato a ciascun valore prima di mostrarlo. + + + + Default + Default + + + + Decimal number + Numero decimale + + + + Exponent notation + Notazione esponenziale + + + + Hex blob + Blob esadecimale + + + + Hex number + Numero esadecimale + + + + Octal number + Numero ottale + + + + Round number + Numero arrotondato + + + + Apple NSDate to date + Apple NSDate ad oggi + + + + Java epoch (milliseconds) to date + Java epoch (millisecondi) ad oggi + + + + .NET DateTime.Ticks to date + .NET DateTime.Ticks ad oggi + + + + Julian day to date + Giorno giuliano ad oggi + + + + Unix epoch to date + Unix epoch ad oggi + + + + Unix epoch to local time + Unix epoch a ora locale + + + + Windows DATE to date + Windows DATE ad oggi + + + + Date as dd/mm/yyyy + Data come gg/mm/aaaa + + + + Lower case + Minuscolo + + + + Upper case + Maiuscolo + + + + Custom + Personalizzato + + + + Custom display format must contain a function call applied to %1 + I formati di visualizzazione personalizzati devono contenere una chiamata a funzione applicata a %1 + + + + Error in custom display format. Message from database engine: + +%1 + Errore nel formato personalizzato di visualizzazione. Messaggio dal motore DB: + +%1 + + + + Custom display format must return only one column but it returned %1. + Il formato di visualizzazione personalizzato deve restituire solo una colonna ma ha restituito %1. + + + + CondFormatManager + + + Conditional Format Manager + Gestore della formattazione condizionale + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + Questa finestra permette la creazione e modifica della formattazione condizionale. Lo stile di ogni cella corrisponde alla prima condizione corrispondente. Le formattazioni condizionali possono essere spostate su e giù, quelle in posizione superiore avranno precedenza su quelle inferiori. La sintassi per le condizioni è la stessa utilizzata per i filtri e una condizione vuota corrisponde a tutti i valori. + + + + Add new conditional format + Aggiunti nuova condizione + + + + &Add + &Aggiungi + + + + Remove selected conditional format + Rimuovi la condizione selezionata + + + + &Remove + &Rimuovi + + + + Move selected conditional format up + Sposta la condizione selezionata in su + + + + Move &up + Sposta &su + + + + Move selected conditional format down + Sposta la condizione selezionata giù + + + + Move &down + Sposta &giù + + + + Foreground + Primo piano + + + + Text color + Colore del testo + + + + Background + Sfondo + + + + Background color + Colore dello sfondo + + + + Font + Testo + + + + Size + Dimensione + + + + Bold + Grassetto + + + + Italic + Corsivo + + + + Underline + Sottolinea + + + + Alignment + Allineamento + + + + Condition + Condizione + + + + + Click to select color + Clicca per scegliere il colore + + + + Are you sure you want to clear all the conditional formats of this field? + Sei sicuro di voler eliminare tutte le formattazioni condizionali di questo campo? + + + + DBBrowserDB + + + This database has already been attached. Its schema name is '%1'. + Questo database è già stato collegato. Il nome del suo schema è '%1'. + + + + Please specify the database name under which you want to access the attached database + Si prega di specificare il nome del database con cui si vuol accedere al database collegato + + + + Invalid file format + Formato file non valido + + + + Do you really want to close this temporary database? All data will be lost. + Vuoi davvero chiudere questo database temporaneo? Tutti i dati andranno persi. + + + + Do you want to save the changes made to the database file %1? + Vuoi salvare le modifiche effettuate al database %1? + + + + Database didn't close correctly, probably still busy + Il database non è stato chiuso correttamente; probabilmente è ancora occupato + + + + The database is currently busy: + Il database è attualmente in uso: + + + + Do you want to abort that other operation? + Vuoi annullare l'altra operazione? + + + + Exporting database to SQL file... + Esportando il database in file SQL... + + + + + Cancel + Annulla + + + + + No database file opened + Nessun database aperto + + + + Executing SQL... + Eseguendo SQL... + + + + Action cancelled. + Azione annullata. + + + + + Error in statement #%1: %2. +Aborting execution%3. + Errore nello statement #%1: %2. +Annullo l'esecuzione %3. + + + + + and rolling back + e ripristino il db + + + + didn't receive any output from %1 + non ho ricevuto alcun ouput da %1 + + + + could not execute command: %1 + impossibile eseguire il comando: %1 + + + + Cannot delete this object + Non posso cancellare questo oggetto + + + + Cannot set data on this object + Non posso impostare i dati in questo oggetto + + + + + A table with the name '%1' already exists in schema '%2'. + Una tabella con il nome '%1' esiste già nello schema '%2'. + + + + No table with name '%1' exists in schema '%2'. + Nessuna tabella col nome '%1' esiste nello schema '%2'. + + + + + Cannot find column %1. + Impossibile trovare la colonna %1. + + + + Creating savepoint failed. DB says: %1 + Creazione del punto di salvataggio fallita. DB log: %1 + + + + Renaming the column failed. DB says: +%1 + Fallimento dell'operazione di rinomina. DB log: %1 + + + + + Releasing savepoint failed. DB says: %1 + Rilascio del salvataggio falitto. DB log: %1 + + + + Creating new table failed. DB says: %1 + Creazione della nuova tabella fallita. DB log: %1 + + + + Copying data to new table failed. DB says: +%1 + Copia dei dati nella nuova tabella fallita. DB log: %1 + + + + Deleting old table failed. DB says: %1 + Eliminazione della vecchia tabella fallita. DB log: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + Errore durante il rinomino della tabella '%1' in '%2. +Messaggio dal DB: +%3 + + + + could not get list of db objects: %1 + non posso ottenere la listra degli oggetti db: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + Ripristino di alcuni oggetti associati a questa tabella fallito. Questo è probabilmente dovuto al fatto che i nomi di alcune colonne sono cambiati . Qui c'è la richiesta SQL che potresti voler sistemare ed eseguire manualmente: + + + + + + could not get list of databases: %1 + non è possibile ricavare la lista dei database: %1 + + + + Error setting pragma %1 to %2: %3 + Errore nell'impostare pragma %1 in %2: %3 + + + + File not found. + File non trovato. + + + + Error loading extension: %1 + Errore nel caricamento dell'estensione: %1 + + + + could not get column information + non è possibile ricavare informazioni sulla colonna + + + + DbStructureModel + + + Name + Nome + + + + Object + Oggetto + + + + Type + Tipo + + + + Schema + Schema + + + + Database + Database + + + + Browsables + Navigabili + + + + All + Tutti + + + + Temporary + Temporaneo + + + + Tables (%1) + Tabelle (%1) + + + + Indices (%1) + Indici (%1) + + + + Views (%1) + Viste (%1) + + + + Triggers (%1) + Triggers (%1) + + + + EditDialog + + + Edit database cell + Modifica la cella del database + + + + Mode: + Modalità: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Questa è la lista delle modalità supportate dall'editor della cella. Scegli una modalità per vedere o modificare i dati della cella corrente. + + + + Text + Testo + + + + RTL Text + Testo RTL + + + + Binary + Binario + + + + + Image + Immagine + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + Seleziona automaticamente la modalità dell'editor in base al tipo di dato caricato + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Questo bottone spuntabile permette di abilitare o disabilitare l'adattamento automatico della modalità dell'editor. Quando una nuova cella è selezionata o sono importati nuovi dati e la modalità di adattamento automaitco è abilitata, la modalità si aggiusta al tipo di dato rilevato. Puoi cambiare in seguito la modalità dell'editor in modo manuale. Se vuoi mantenere la modalità selezionata manualmente mentre ti muovi tre le celle, togli la spunta a questo bottone. + + + + Auto-switch + Auto-switch + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + La modalità editor di testo ti pemrette di editare del testo semplice, così come dei dati JSON o XML con evidenziazione della sintassi, formattazione automatica e validazione prima del salvataggio. + +Gli errori sono indicati da una sottolineatura rossa ondulata. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Questo editor Qt è utilizzato per le scritture da destra a sinistra, che non sono supportate dall'editor testuale standard. La presenza di caratteri da destra a sinistra è rilevata e la modalità dell'editor viene selezionata automaticamente. + + + + Open preview dialog for printing the data currently stored in the cell + Apre una finestra d'anteprima per la stampa dei dati attualmente memorizzati nella cella + + + + Auto-format: pretty print on loading, compact on saving. + Auto-formato: migliore stampa al caricamento, compatta in salvataggio. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Quando abilitato, la feature dell'auto-formato formatta i dati al caricamento, rompe il testo in righe e lo indenta per una maggiore leggibilità. Al salvataggio dei dati, la feature dell'auto-formato compatta i dati rimuovendo i fine riga, e spazi bianchi non necessari. + + + + Word Wrap + A capo automatico + + + + Wrap lines on word boundaries + Porta a capo le line di testo al raggiungimento del bordo + + + + + Open in default application or browser + Apri nell'applicazione predefinita o nel browser + + + + Open in application + Apri nell'applicazione + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + Il valore è interpretato come file o URL e aperto nell'applicazione predefinita o nel web browser. + + + + Save file reference... + Salva riferimento file... + + + + Save reference to file + Salva riferimento su file + + + + + Open in external application + Apri in un'applicazione esterna + + + + Autoformat + Autoformato + + + + &Export... + &Esporta... + + + + + &Import... + &Importa... + + + + + Import from file + Importa da file + + + + + Opens a file dialog used to import any kind of data to this database cell. + Apri una finestra di dialogo per importare qualsiasi tipo di dato in questa cella del database. + + + + Export to file + Esporta in un file + + + + Opens a file dialog used to export the contents of this database cell to a file. + Apri una finestra di dialogo utilizzata per esportare i contenuti di questa cella del database in un file. + + + + Apply data to cell + Applica i dati alla cella + + + + Erases the contents of the cell + Cancella i contenuti di questa cella + + + + Set as &NULL + Imposta come &NULL + + + + This area displays information about the data present in this database cell + Quest'area mostra informazioni riguardo i dati presenti in questa cella del database + + + + Type of data currently in cell + Tipo di dato attualmente nella cella + + + + Size of data currently in table + Dimensione dei dati attualmente in tabella + + + + This button saves the changes performed in the cell editor to the database cell. + Questo bottone salva le modifiche fatte alla cella dell'editor alla cella del database. + + + + Apply + Applica + + + + + Print... + Stampa... + + + + Open preview dialog for printing displayed image + Apri la finestra di anteprima per stampare l'immagine mostrata + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Apri la finestra di anteprima per stampare il testo mostrato + + + + Copy Hex and ASCII + Copia HEX e ASCII + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Copia le colonne esadecimali e ASCII selezionate negli appunti + + + + Ctrl+Shift+C + + + + + + Image data can't be viewed in this mode. + I dati immagine non possono essere visualizzati in questa modalità. + + + + + Try switching to Image or Binary mode. + Prova a passare alla modalità Immagine o Binario. + + + + + Binary data can't be viewed in this mode. + I dati binari non possono essere visualizzati in questa modalità. + + + + + Try switching to Binary mode. + Prova a passare alla modalità Binario. + + + + + Image files (%1) + File immagine (%1) + + + + Binary files (*.bin) + File binario (*.bin) + + + + Choose a file to import + Scegli un file da importare + + + + %1 Image + %1 Immagine + + + + Choose a filename to export data + Scegli un nome del file per esportare i dati + + + + Invalid data for this mode + Dati non validi per questa modalità + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + La cella continete dati %1 non validi. Ragione: %2. Sei davvero sicuro di applicare quello alla cella? + + + + + Type of data currently in cell: Text / Numeric + Tipo di dato attualmente nella cella: Testo / Numerico + + + + + + %n character(s) + + %n carattere + %n caratteri + + + + + Type of data currently in cell: %1 Image + Tipo di dato attualmente nella cella: %1 Immagine + + + + %1x%2 pixel(s) + %1x%2 pixel(s) + + + + Type of data currently in cell: NULL + Tipo di dato attualmente nella cella: NULL + + + + + %n byte(s) + + %n byte + %n bytes + + + + + Type of data currently in cell: Valid JSON + Tipo di dato attualmente nella cella: Valid JSON + + + + Type of data currently in cell: Binary + Tipo di dato attualmente nella cella: Binario + + + + Couldn't save file: %1. + Impossibile salvare il file: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + I dati sono stati salvati in un file temporane e sono stati aperti con l'applicazione predefinita. Ora puoi modificare il file e, quando sei pronto, applicare i nuovi dati salvati all'editor di cella o annullare ogni modifica. + + + + EditIndexDialog + + + Edit Index Schema + Modifica Indice Schema + + + + &Name + &Nome + + + + &Table + &Tabella + + + + &Unique + &Univoco + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Per restringere l'indice a solo una parte della tabella puoi specificare una clausula WHERE qui che selezioni la parte della tabella che dovrà essere indicizzata + + + + Partial inde&x clause + Clausola di &indice parziale + + + + Colu&mns + &Colonne + + + + Table column + Colonna della tabella + + + + Type + Tipo + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Aggiungi una nuova espressione colonna all'indice. Le espressioni colonna contengono espressioni SQL piuttosto che i nomi delle colonne. + + + + Index column + Indice di colonna + + + + Order + Ordine + + + + Deleting the old index failed: +%1 + Cancellazione del vecchio indice fallita: +%1 + + + + Creating the index failed: +%1 + Creazione del vecchio indice fallita: +%1 + + + + EditTableDialog + + + Edit table definition + Modifica la definizione della tabella + + + + Table + Tabella + + + + Advanced + Avanzate + + + + Database sche&ma + Sche&ma database + + + + Without Rowid + Senza id riga + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Fai una tabella 'WITHOUT rowid'. Impostare questa spunta richiede un campo di tipo INTEGER con la chiave primaria impostata e l'auto incremento non impostato. + + + + Fields + Campi + + + + Add + Aggiungi + + + + Remove + Rimuovi + + + + Move to top + Muovi in cima + + + + Move up + Muovi su + + + + Move down + Muovi giù + + + + Move to bottom + Muovi al fondo + + + + + Name + Nome + + + + + Type + Tipo + + + + NN + NN + + + + Not null + Non null + + + + PK + CP + + + + Primary key + Chiave Primaria + + + + AI + AI + + + + Autoincrement + Autoincremento + + + + U + U + + + + + + Unique + Univoco + + + + Default + Default + + + + Default value + Valore di default + + + + + + Check + Controlla + + + + Check constraint + Controlla le restrizioni + + + + Collation + Fascicola + + + + + + Foreign Key + Chiave esterna + + + + Constraints + Vincoli + + + + Add constraint + Aggiungi vincolo + + + + Remove constraint + Rimuovi vincolo + + + + Columns + Colonne + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Attenzione: </span>C'è qualcosa in questa definizione di tabella che il nostro parser non comprende. Modificare e salvare questa tabella potrebbe creare dei problemi.</p></body></html> + + + + + Primary Key + Chiave primaria + + + + Add a primary key constraint + Aggiungi un vincolo di chiave primaria + + + + Add a foreign key constraint + Aggiungi un vincolo di chiave esterna + + + + Add a unique constraint + Aggiungi un vincolo di unicità + + + + Add a check constraint + Aggiungi un vincolo di controllo + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Puoi avere solo una chiave primaria per ogni tabella. Si prega di modificare la chiave primaria attuale. + + + + Error creating table. Message from database engine: +%1 + Error nella creazione della tabella. Messaggio dal database engine: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Esiste già un campo con quel nome. Si prega di rinominarlo prima o scegliere un nome differente per questo campo. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Questa colonna è referenziata in una chiave esterna nella tabella %1 e quindi il nome non può essere modificato. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Esiste almeno una riga con questo campo impostato a NULL. Questo rende impossibile impostare questa opzione. Si prega prima di modificare quel dato. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Esiste almeno un riga con un valore non intero in questo campo. Questo rende impossibile impostare l'AI. Si prega prima di cambiare il dato. + + + + Column '%1' has duplicate data. + + La colonna '%1' ha dei dati duplicati. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Questo rende impossibile abilitare l'opzionie 'Univoco'. Perfavore rimuovi i dati duplicati, il che permetterà l'abilitazione dell'opzione 'Univoco'. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Sei sicuro di voler eliminare il campo '%1'? +Tutti i dati che sono attualmente memorizzati in questo campo andranno persi. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Perfavore agginugi un campo che rispetti i seguenti criteri prima di impostare l'opzione senza id di riga: + - Opzione Chiave Primaria impostata + - Autoincremento disabilitato + + + + ExportDataDialog + + + Export data as CSV + Esporta i dati come CSV + + + + Tab&le(s) + Tabe&lla(e) + + + + Colu&mn names in first line + Nomi delle &Colonne sulla prima riga + + + + Fie&ld separator + Separatore di ca&mpo + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + Altro + + + + &Quote character + &Carattere citazione + + + + " + " + + + + ' + ' + + + + New line characters + Carattere di nuova riga + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Visualizzazione piacevole + + + + Export data as JSON + Esporta i dati come JSON + + + + exporting CSV + esportando in CSV + + + + + Could not open output file: %1 + Impossibile aprire il file di output: %1 + + + + exporting JSON + esportando in JSON + + + + + Choose a filename to export data + Scegliere un nome file per esportare i dati + + + + Please select at least 1 table. + Perfavore seleziona almeno una tabella. + + + + Choose a directory + Scegliere una cartella + + + + Export completed. + Esportazione completata. + + + + ExportSqlDialog + + + Export SQL... + Esporta SQL... + + + + Tab&le(s) + Tabe&lla(e) + + + + Select All + Seleziona tutto + + + + Deselect All + Deseleziona tutto + + + + &Options + &Opzioni + + + + Keep column names in INSERT INTO + Tieni i nomi delle colonne in INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Righe multiple (VALUES) per lo statement INSERT + + + + Export everything + Esporta tutto + + + + Export schema only + Esporta solo lo schema + + + + Export data only + Esporta solo i dati + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Mantieni lo schema esistente (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Sovrascrivi schema precedente (DROP TABLE, poi CREATE TABLE) + + + + Please select at least one table. + Perfavore seleziona almeno una tabella. + + + + Choose a filename to export + Scegli un nome del file per esportare + + + + Export completed. + Esportazione completata. + + + + Export cancelled or failed. + Esportazione annullata o fallita. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Trova... + + + + Find and Replace... + Trova e Sostituisci... + + + + Print... + Stampa... + + + + ExtendedTableWidget + + + Use as Exact Filter + Usa come filtro esatto + + + + Containing + Che contiene + + + + Not containing + Non contenuto + + + + Not equal to + Non uguale a + + + + Greater than + Maggiore di + + + + Less than + Minore di + + + + Greater or equal + Maggiore o uguale + + + + Less or equal + Minore o uguale + + + + Between this and... + Tra questo e... + + + + Regular expression + Espressione regolare + + + + Edit Conditional Formats... + Modifica Formattazione Condizionale... + + + + Set to NULL + Imposta a NULL + + + + Copy + Copia + + + + Copy with Headers + Copia con gli Headers + + + + Copy as SQL + Copia come SQL + + + + Paste + Incolla + + + + Print... + Stampa... + + + + Use in Filter Expression + Usa nell'espressione del filtro + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + Il contenuto degli appunti è più grande del range selezionato. +Vuoi inserirlo comunque? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>Non tutti i dati sono stati caricati. <b>Vuoi caricare tutti i dati prima di selezionare tutte le righe?</b><p><p>Rispondere <b>No</b> significa che non verranno caricati i restanti dati e la selezione non verrà effettuata.<br/>Rispondere <b>Si</b> potrebbe richiedere del tempo per caricare i dati, ma la selezione sarà completa.</p>Attenzione: Caricare tutti i dati potrebbe richiedere un grosso quantitativo di memoria in caso di grandi tabelle. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + Impossibile modificare la selezione in NULL. La colonna %1 ho un vincolo NOT NULL. + + + + FileExtensionManager + + + File Extension Manager + Gestore delle estensioni dei files + + + + &Up + Porta &su + + + + &Down + Porta &giù + + + + &Add + &Aggiungi + + + + &Remove + &Rimuovi + + + + + Description + Descrizione + + + + Extensions + Estensioni + + + + *.extension + *.estensione + + + + FilterLineEdit + + + Filter + Filtro + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Questi campi di input permettono di effettuare filtri rapidi nella tabella correntemente selezionata. +er impostazione predefinita, le righe che contengono il testo immesso sono escluse. +Sono inoltre supportati i seguenti operatori: +% Wildcard +> Maggiore di +< Minore di +>= Maggiore o uguale +<= Minore o uguale += Uguale a: corrispondenza esatta +<> Diverso: corrispondenza esatta invertita +x~y Intervallo: valori tra x e y +/regexp/ Valori che corrispondono all'espressione regolare + + + + Use for Conditional Format + Usa per formattazioni condizionali + + + + Clear All Conditional Formats + Elimina tutte le formattazioni condizionali + + + + Edit Conditional Formats... + Modifica Formattazione Condizionale... + + + + Set Filter Expression + Imposta l'espressione del filtro + + + + What's This? + Cos'è questo? + + + + Is NULL + È NULL + + + + Is not NULL + Non è NULL + + + + Is empty + È vuoto + + + + Is not empty + Non è vuoto + + + + Not containing... + Non contenente... + + + + Equal to... + Uguale a... + + + + Not equal to... + Non uguale a... + + + + Greater than... + Maggiore di... + + + + Less than... + Minore di... + + + + Greater or equal... + Maggiore o uguale... + + + + Less or equal... + Minore o uguale... + + + + In range... + Nell'intervallo... + + + + Regular expression... + Espressione regolare... + + + + FindReplaceDialog + + + Find and Replace + Trova e sostituisci + + + + Fi&nd text: + Tr&ova testo: + + + + Re&place with: + So&stituisci con: + + + + Match &exact case + Corrispondenza &esatta + + + + Match &only whole words + Trova solo &parole complete + + + + When enabled, the search continues from the other end when it reaches one end of the page + Quando abilitato, la ricerca contninua dall'altro capo del documento quando si raggiunge una fine del documento + + + + &Wrap around + Senza &limiti + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Quando abilitato, la ricerca va all'indietro dalla corrente posizione del cursore, altrimenti va in avanti + + + + Search &backwards + Cerca &indietro + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>Quando abilitato, la ricerca viene effettuata solo all'interno della selezione corrente.</p></body></html> + + + + &Selection only + &Solo selezionati + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Quando selezionato, la stringa del testo viene interpretata come una espressione regolare Unix. Vedi <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Espressioni regolari su Wikibooks (in inglese)</a>.</p></body></html> + + + + Use regular e&xpressions + Usa &espressioni regolari + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Trova la prossima occorrenza dalla corrente posizione del cursore nella direzione impostata da "Cerca indietro" + + + + &Find Next + &Trova successivo + + + + F3 + + + + + &Replace + &Sostituisci + + + + Highlight all the occurrences of the text in the page + Evidenzia tutte le occorrenze del testo nella pagina + + + + F&ind All + T&rova tutti + + + + Replace all the occurrences of the text in the page + Sostituisce tutte le occorrenze del testo nella pagina + + + + Replace &All + Sostituisci &Tutti + + + + The searched text was not found + Il testo cercato non è stato trovato + + + + The searched text was not found. + Il testo cercato non è stato trovato. + + + + The searched text was found one time. + Il testo cercato è stato trovato una volta. + + + + The searched text was found %1 times. + Il testo cercato è stato trovato %1 volte. + + + + The searched text was replaced one time. + Il testo cercato è stato sostituito una volta. + + + + The searched text was replaced %1 times. + Il testo cercato è stato sostituito %1 volte. + + + + ForeignKeyEditor + + + &Reset + &Reimposta + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Clausule per chiave esterna (ON UPDATE, ON DELETE etc.) + + + + ImportCsvDialog + + + Import CSV file + Imoprta file CSV + + + + Table na&me + No&me tabella + + + + &Column names in first line + Nomi &colonna nella prima riga + + + + Field &separator + &Separatore di campo + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + | + + + + Other + Altro + + + + &Quote character + &Carattere citazione + + + + + Other (printable) + Altro (stampabile) + + + + + Other (code) + Altro (codice) + + + + " + " + + + + ' + ' + + + + &Encoding + Codific&a + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Pulizia campi? + + + + Separate tables + Separa tabelle + + + + Advanced + Avanzate + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + Quando importo un campo vuoto dal file CSV dentro una tabella con un valore predefinito per quella colonna, quel valore viene inserito. Attivare quest'opzione per inserire invece un valore vuoto. + + + + Ignore default &values + Ignora valori &predefiniti + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Attivare quest'opzione per fermare l'importazione quando si prova ad importare un valore vuoto in una colonna "NOT NULL" senza valore predefinito. + + + + Fail on missing values + Fallisci su valori mancanti + + + + Disable data type detection + Disabilita rilevamento tipo dati + + + + Disable the automatic data type detection when creating a new table. + Disabilita il riconoscimento automatico della tipologia di dato quando crea una nuova tabella. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Quando si importano dati all'interno di una tabella esistente con una chiave primaria, potrebbero esserci conflitti. Questa opzione ti permette di selezionare una strategia per quei casi: Di base l'importazione è annullata e viene fatto un rollback, ma puoi anche scegliere d'ignorare e non importare le righe in conflitto o di rimpiazzare quelle presenti nella tabella. + + + + Abort import + Annulla l'importazione + + + + Ignore row + Ignora la riga + + + + Replace existing row + Rimpiazza la riga esistente + + + + Conflict strategy + Strategia di conflitto + + + + + Deselect All + Deseleziona tutte + + + + Match Similar + Seleziona simili + + + + Select All + Seleziona tutte + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Esiste già una tabella col nome '%1' e l'importazione in una tabella esistente non è possibile se il numero di colonne non corrisponde. + + + + There is already a table named '%1'. Do you want to import the data into it? + Esiste già una tabella col nome '%1'. Vuoi importare i dati al suo interno? + + + + Creating restore point failed: %1 + Creazione del punto di ripristino fallita: %1 + + + + Creating the table failed: %1 + Creazione della tabella fallita: %1 + + + + importing CSV + importo il CSV + + + + Inserting row failed: %1 + Inserimento della riga fallito: %1 + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + Importare il file '%1' ha richiesto %2ms. Di questi %3ms sono stati spesi in funzioni di riga. + + + + MainWindow + + + DB Browser for SQLite + DB Browser for SQLite + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Struttura database + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Questa è la struttura del database aperto. +Puoi trascinare SQL da una riga oggetto e rilasciarli dentro altri applicativi o in altre istanze di àDB Browser for SQLite'. + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Naviga nei dati + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Modifica Pragmas + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Attenzione: questo pragma non è leggibile e questo valore è stato dedotto. Scrivere i pragma può sovrascrivere un LIKE ridefinito provvisto da un'estensione di SQLite. + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + Esegui SQL + + + + toolBar1 + + + + + &File + &File + + + + &Import + &Importa + + + + &Export + &Esporta + + + + &Edit + &Modifica + + + + &View + &Visualizza + + + + &Help + &Aiuto + + + + &Tools + &Strumenti + + + + DB Toolbar + Barra degli strumenti del DB + + + + Edit Database &Cell + Modifica &cella + + + + SQL &Log + &Log SQL + + + + Show S&QL submitted by + Mostra l'S&QL inviato da + + + + User + Utente + + + + Application + Applicazione + + + + Error Log + Registro errori + + + + This button clears the contents of the SQL logs + Questo pulsante cancella il contenuto del log SQL + + + + &Clear + &Pulisci + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Questo pannello ti permette di esaminare il log di tutti i comandi SQL inviati dall'applicazione o da te stesso + + + + &Plot + &Grafica + + + + DB Sche&ma + Sche&ma DB + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Questa è la struttura del database aperto. +Puoi trascinare nomi d'oggetto multipli dalla colonna "Nome" e rilasciarli all'interno dell'editor SQL e puoi modificare le proprietà dei nomi rilasciati utilizzando il menù contestuale. Questo può aiutarti nel comporre statement SQL. +Puoi trascinare statement SQL dalla colonna Schema e rilasciarli dentro l'editor SQL o all'interno di altre applicazioni. + + + + + &Remote + &Remoto + + + + + Project Toolbar + Barra degli strumenti di progetto + + + + Extra DB toolbar + Barra degli strumenti extra DB + + + + + + Close the current database file + Chiudi il file di database corrente + + + + &New Database... + &Nuovo Database... + + + + + Create a new database file + Crea un nuovo file di database + + + + This option is used to create a new database file. + Questa opzione è utilizzata per creare un nuovo file di database. + + + + Ctrl+N + + + + + + &Open Database... + &Apri Database... + + + + + + + + Open an existing database file + Apre un file di database esistente + + + + + + This option is used to open an existing database file. + Questa opzione è utilizzata per aprire un file esistente di database. + + + + Ctrl+O + + + + + &Close Database + &Chiudi Database + + + + This button closes the connection to the currently open database file + Questo pulsnate chiude la connessione al file di database attualmente aperto + + + + + Ctrl+W + + + + + &Revert Changes + &Ripristina le modifiche + + + + + Revert database to last saved state + Ripristina il database all'ultimo stato salvato + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Questa opzione è utilizzata per ripristinare il file di database al suo ultimo stato salvato. Tutte le modifiche fatte dall'ultima opzione di salvataggio sono perse. + + + + &Write Changes + &Salva le modifiche + + + + + Write changes to the database file + Scrive le modifiche sul file di database + + + + This option is used to save changes to the database file. + Questa opzione è utilizzata per salvare le modifiche sul file di database. + + + + Ctrl+S + + + + + Compact &Database... + &Compatta Database... + + + + Compact the database file, removing space wasted by deleted records + Compatta il file di database, rimuovendo lo spazio sprecato dalle righe eliminate + + + + + Compact the database file, removing space wasted by deleted records. + Compatta il file di database rimuovendo lo spazio sprecato dalle righe eliminate. + + + + E&xit + &Esci + + + + Ctrl+Q + + + + + &Database from SQL file... + &Database dal file SQL... + + + + Import data from an .sql dump text file into a new or existing database. + Importa i dati da un file di testo di dump .sql all'interno di un database nuovo o esistente. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Questa opzione ti permette d'importare i dati da un file di testo di dump .sql all'interno di un database nuovo o esistente. I file di dump SQL possono essere creati dalla maggiorparte dei motori SQL, inclusi MySQL e PostgreSQL. + + + + &Table from CSV file... + &Tabella da file CSV... + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Apre un wizard che ti permette d'importare dati da un file CSV all'interno di una tabella del database. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Apre un wizard che ti permette d'importare dati da un file CSV all'interno di una tabella del database. I file CSV possono essere creati dalla maggiorparte delle applicazioni database o foglio di calcolo. + + + + &Database to SQL file... + &Database in file SQL... + + + + Export a database to a .sql dump text file. + Esporta un database in un file di testo di dump .sql. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Questa opzione ti permette di esportare un database in un file di testo di dump .sql. Il file di dump SQL contiene tutti i dati necessari per ricreare il database sulla maggiorparte di motori di database, inclusi MySQL e PostgreSQL. + + + + &Table(s) as CSV file... + &Tabella(e) come file CSV... + + + + Export a database table as a comma separated text file. + Esporta la tabella del database come un file di testo CSV. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Esporta la tabella del database come un file di testo CSV, pronto per essere importato in un altro database o foglio di calcolo. + + + + &Create Table... + &Crea tabella... + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Apre un wizard per la creazione di una tabella, dov'è possibile definire il nome e i campi di una nuova tabella del database + + + + &Delete Table... + &Elimina tabella... + + + + + Delete Table + Elimina Tabella + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Apre un wizard per la cancellazione della tabella, da qui puoi selezionare la tabella del database da eliminare. + + + + &Modify Table... + &Modifica Tabella... + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Apre un wizard per la modifica di una tabella, da qui è possibile rinominare una tabella esistente. Si può anche aggiungere o rimuovere campi da una tabella così come modificarne il nome o il tipo. + + + + Create &Index... + Crea &Indice... + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Apre un wizard per la crazione di un indice, da qui è possibile definire un nuovo indice s'una tabella di database pre-esistente. + + + + &Preferences... + &Preferenze... + + + + + Open the preferences window. + Apre la finestra delle preferenze. + + + + &DB Toolbar + &Barra degli strumenti + + + + Shows or hides the Database toolbar. + Mostra o nasconde la barra degli strumenti del database. + + + + Ctrl+T + + + + + Open SQL file(s) + Apri file(s) SQL + + + + This button opens files containing SQL statements and loads them in new editor tabs + Questo pulsante apre files contenenti stringhe SQL e li carica in una nuova scheda dell'editor + + + + Execute line + Esegui riga + + + + F1 + + + + + Sa&ve Project + Sal&va Progetto + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + Questo pulsante ti permette di salvare tutte le impostazioni associate al DB aperto nel file di progetto di DB BRowser for SQLite + + + + This button lets you open a DB Browser for SQLite project file + Questo pulsante ti permette di aprire un file di progetto di DB Browser for SQLite + + + + Ctrl+Shift+O + + + + + Find + Trova + + + + Find or replace + Trova o sostituisci + + + + Print text from current SQL editor tab + Stampa testo dalla scheda corrente dell'editor SQL + + + + Print the structure of the opened database + Stampa la struttura del database aperto + + + + Un/comment block of SQL code + De/Commenta il blocco di codice SQL + + + + Un/comment block + De/Commenta il blocco + + + + Comment or uncomment current line or selected block of code + Commenta o decommenta la riga corrente o il blocco selezionato di codice + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Commenta o decommenta le righe selezionate o la riga corrente, quando non c'è nessuna selezione. Tutti i blocchi sono modificati in accordo alla prima riga. + + + + Ctrl+/ + + + + + Stop SQL execution + Ferma esecuzione SQL + + + + Stop execution + Ferma esecuzione + + + + Stop the currently running SQL script + Ferma lo script SQL attualmente in esecuzione + + + + &Save Project As... + &Salva Progetto Come... + + + + + + Save the project in a file selected in a dialog + Salva il progetto in un file selezionato tramite una finestra di dialogo + + + + Save A&ll + Salva T&utto + + + + + + Save DB file, project file and opened SQL files + Salva il file DB, file di progetto e tutti i file SQL aperti + + + + Ctrl+Shift+S + + + + + Browse Table + Naviga nei dati + + + + W&hat's This? + Cos'è &questo? + + + + Shift+F1 + + + + + &About + &Informazioni + + + + &Recently opened + &Aperti di recente + + + + Open &tab + Apri &scheda + + + + This button opens a new tab for the SQL editor + Questo pulsante apre una nuova schede dell'editor SQL + + + + &Execute SQL + &Esegui SQL + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Questo pulsante esegue gli statement SQL evidenziati. Se nessun testo è selezionato, tutti gli statement SQL vengono eseguiti. + + + + + + Save SQL file + Salva file SQL + + + + &Load Extension... + &Carica Estensioni... + + + + + Execute current line + Esegue la riga corrente + + + + This button executes the SQL statement present in the current editor line + Questo pulsante esegue lo statement SQL presente nella riga corrente dell'editor + + + + Shift+F5 + + + + + Export as CSV file + Esporta come file CSV + + + + Export table as comma separated values file + Esporta la tabella come file CSV + + + + &Wiki + &Wiki + + + + Bug &Report... + Bug &Report... + + + + Feature Re&quest... + Richiesta &Funzionalità... + + + + Web&site + Sito &Web + + + + &Donate on Patreon... + &Dona su Patreon... + + + + + Save the current session to a file + Salva la sessione correte in un file + + + + Open &Project... + Apri &Progetto... + + + + + Load a working session from a file + Carica una sessione di lavoro da file + + + + &Attach Database... + &Collega Database... + + + + + Add another database file to the current database connection + Aggiunge un altro file di database alla connessione corrente + + + + This button lets you add another database file to the current database connection + Questo pulsante ti permette di aggiungere un altro file alla connessione corrente + + + + &Set Encryption... + &Imposta cifratura... + + + + + Save SQL file as + Salva file SQL come + + + + This button saves the content of the current SQL editor tab to a file + Questo pulsante salva il contenuto della scheda di editor SQL in un file + + + + &Browse Table + &Naviga Tabella + + + + Copy Create statement + Copia statement CREATE + + + + Copy the CREATE statement of the item to the clipboard + Copia lo statement CREATE negli appunti + + + + SQLCipher &FAQ + SLQCipher &FAQ + + + + Opens the SQLCipher FAQ in a browser window + Apre le SQLCipher FAQ in una finestra del browser + + + + Table(&s) to JSON... + Tabella(&e) in JSON... + + + + Export one or more table(s) to a JSON file + Esporta una o più tabelle in un file JSON + + + + Open Data&base Read Only... + Apri un Data&base in Sola Lettura... + + + + Open an existing database file in read only mode + Apre un file databse esistente in modalità sola lettura + + + + Save results + Salva risultati + + + + Save the results view + Salva i risultati della vista + + + + This button lets you save the results of the last executed query + Questo pulsante ti permette di salvare i risultati dell'ultima query eseguita + + + + + Find text in SQL editor + Trova testo nell'editor SQL + + + + This button opens the search bar of the editor + Questo pulsante apre la barra di ricerca dell'editor + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Trova e/o sostituisci testo nell'editor SQL + + + + This button opens the find/replace dialog for the current editor tab + Questo pulsante apre la finestra di ricerca/sostituzione testo per la scheda corrente dell'editor + + + + Ctrl+H + + + + + Export to &CSV + Esporta in &CSV + + + + Save as &view + Salva come &vista + + + + Save as view + Salva come vista + + + + Shows or hides the Project toolbar. + Mostra o nasconde la barra degli strumenti di progetto. + + + + Extra DB Toolbar + Barra degli strumenti DB estesa + + + + New In-&Memory Database + Nuovo Database In &Memoria + + + + Drag && Drop Qualified Names + Trascina && Rilascia Nomi Qualificati + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Usa nomi qualificati (es. "Table"."Campo") quando trascini gli oggetti e li rilasci all'interno dell'editor + + + + Drag && Drop Enquoted Names + Trascina && Rilascia Nomi Quotati + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Usa gl'identificatori di citazione (es. "Tabella1") quando trascini e rilasci gli oggetti nell'editor + + + + &Integrity Check + Controllo &Integrità + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Avvia il controllo integrità (integrity check pragma) sul database aperto e riporta il risultato nella scheda "Esegui SQL". Questa operazione esegue un controllo d'integrità sull'intero database. + + + + &Foreign-Key Check + Controlla Chiave &Esterna + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Avvia il controllo chiavi esterne (foreign_key_check pragma) nel database aperto e riporta il risultato nella scheda "Esegui SQL" + + + + &Quick Integrity Check + Controllo Integrità &Veloce + + + + Run a quick integrity check over the open DB + Avvia un controllo veloce d'integrità sul DB aperto + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Avvia un controllo veloce d'integrità (quick_check pragma) sul database e riporta il risultato nella scheda "Esegui SQL". Quest comando esegue la maggiorparte dei controlli d'integrità del controllo completo, ma in modo molto più veloce. + + + + &Optimize + &Ottimizza + + + + Attempt to optimize the database + Prova ad ottimizzare il database + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Avvia l'ottimizzazione del database aperto. Questa operazione potrebbe eseguire delle ottimizzazione che miglioreranno le performance delle query future. + + + + + Print + Stampa + + + + Open a dialog for printing the text in the current SQL editor tab + Apre una finetra per la stampa del testo nella scheda dell'editor SQL + + + + Open a dialog for printing the structure of the opened database + Apre una finestra per la stampa della struttura del database aperto + + + + + Ctrl+P + + + + + Ctrl+F4 + + + + + Execute all/selected SQL + Esegui tutti gli SQL o quelli selezionati + + + + Ctrl+Return + + + + + Ctrl+L + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Ctrl+E + + + + + Reset Window Layout + Ripristina disposizione finestra + + + + Alt+0 + + + + + The database is currenctly busy. + Il database è occupato. + + + + Click here to interrupt the currently running query. + Clicca qui per interrompere la query in esecuzione. + + + + Encrypted + Criptato + + + + Database is encrypted using SQLCipher + Il database è stato criptato utilizzando SQLCipher + + + + Read only + Sola lettura + + + + Database file is read only. Editing the database is disabled. + Il file di database è in sola lettura. Le modifiche al database sono disabilitate. + + + + Database encoding + Codifica Database + + + + + Choose a database file + Seleziona un file di database + + + + Could not open database file. +Reason: %1 + Impossibile aprire il file di database. +Motivo: %1 + + + + + + Choose a filename to save under + Seleziona un nome file per il salvataggio + + + + In-Memory database + Database In-Memoria + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + Sei sicuro di voler eliminare la tabella '%1'? +Tutti i dati associati alla tabella andranno perduti. + + + + Are you sure you want to delete the view '%1'? + Sei sicuro di voler eliminare la vista '%1'? + + + + Are you sure you want to delete the trigger '%1'? + Sei sicuro di voler eliminare il trigger '%1'? + + + + Are you sure you want to delete the index '%1'? + Sei sicuro di voler eliminare l'indice '%1'? + + + + Error: could not delete the table. + Errore: impssibile eliminare la tabella. + + + + Error: could not delete the view. + Errore: impossibile eliminare la vista. + + + + Error: could not delete the trigger. + Errore: impossibile eliminare il trigger. + + + + Error: could not delete the index. + Errore: impossibile eliminare l'indice. + + + + Message from database engine: +%1 + Messaggio dal database: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Per modificare la tabella bisogna salvare tutte le modifiche pendenti. +Sei sicuro di voler salvare il database? + + + + Error checking foreign keys after table modification. The changes will be reverted. + Errore nel controllo delle chiavi esterne dopo le modifiche alla tabella. Le modifiche saranno eliminate. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Questa tabella non ha passato il controllo sulle chiavi esterne.<br/>Dovresti avviare 'Strumenti | Controllo Chiavi Esterne' e correggere i problemi riportati. + + + + Edit View %1 + Modifica vista %1 + + + + Edit Trigger %1 + Modifica Trigger %1 + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Sto eseguendo degli SQL. Vuoi fermarli per poter eseguire invece l'SQL corrente? Nota che questo potrebbe lasciare il database in uno stato inconsistente. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- ESEGUO LA SELEZIONE IN '%1' +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- ESEGUO LINEA IN '%1' +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- ESEGUO TUTTO IN '%1' +-- + + + + + At line %1: + Alla riga %1: + + + + Result: %1 + Risultato: %1 + + + + Result: %2 + Risultato: %2 + + + + Opened '%1' in read-only mode from recent file list + Aperto '%1' in modalità solo lettura dalla lista dei file recenti + + + + Opened '%1' from recent file list + Aperto '%1' dalla lista di file recenti + + + + Project saved to file '%1' + Progetto salvato sul file '%1' + + + + This action will open a new SQL tab with the following statements for you to edit and run: + Questa azione aprirà una nuova scheda SQL con la seguente stringa SQL per permetterti di modificarla ed eseguirla + + + + Rename Tab + Rinomina il Tab + + + + Duplicate Tab + Duplica il Tab + + + + Close Tab + Chiudi il Tab + + + + Opening '%1'... + Apro '%1'... + + + + There was an error opening '%1'... + Errore durante l'apertura di '%1'... + + + + Value is not a valid URL or filename: %1 + Il valore non è un URL valida o nome file: %1 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Impostare i valori PRAGMA o pulizia chiuderanno la transazione corrente. +Sei sicuro? + + + + Execution finished with errors. + Esecuzione completata con errori. + + + + Execution finished without errors. + Esecuzione completata senza errori. + + + + %1 rows returned in %2ms + %1 righe ritornate in %2ms + + + + Choose text files + Seleziona i file di testo + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Errore nel salvataggio del database. Questo significa che non tutte le modifiche del database sono state salvate. Avrai bisogno di risolvere prima il seguente errore. + +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Sei sicuro di voler annullare tutte le modifiche effettuate al database '%1' dall'ultimo salvataggio? + + + + Choose a file to import + Seleziona un file da importare + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (sola lettura) + + + + Open Database or Project + Apri Database o Progetto + + + + Attach Database... + Collega Database... + + + + Import CSV file(s)... + Importa file(s) CSV... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Seleziona l'azione da applicare al(ai) file(s) scartato(i). <br/>Nota: solo 'Importa' processa più di un file. + + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + Vuoi salvare le modifiche effettuate ai tabs SQL nel file di progetto '%1'? + + + + Text files(*.sql *.txt);;All files(*) + File di testo(*.sql *.txt);;Tutti i files(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Vuoi creare un nuovo file di database per mantenere i dati importati? +Se rispondi di no proveremo ad importare i dati del file SQL all'interno del database corrente. + + + + Window Layout + Disposizione finestra + + + + Simplify Window Layout + Semplifica disposizione finestra + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + Blocca finestre in basso + + + + Dock Windows at Left Side + Blocca finestre al lato sinistro + + + + Dock Windows at Top + Blocca finestre in cima + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Sto ancora eseguendo comandi SQL. Se chiudi il database ora non verrano eseguiti, il database potrebbe rimanere in uno stato inconsistente. Sei sicuro di voler chiudere il database? + + + + Do you want to save the changes made to the project file '%1'? + Vuoi salvare le modifiche fatte al file di progetto '%1'? + + + + File %1 already exists. Please choose a different name. + Il file %1 esiste già. Si prega di scegliere un nome differente. + + + + Error importing data: %1 + Errore nell'importazione: %1 + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Importaizone completata. Alcuni vincoli per le chiavi esterne non sono rispettati. Si prega di correggerli prima di salvare. + + + + Import completed. + Import completato. + + + + Delete View + Elimina Vista + + + + Modify View + Modifica Vista + + + + Delete Trigger + Elimina Trigger + + + + Modify Trigger + Modifica Trigger + + + + Delete Index + Elimina Indice + + + + Modify Index + Modifica Indice + + + + Modify Table + Modifica Tabella + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Impostare i valori di PRAGMA chiuderà la transaione corrente. +Sei sicuro? + + + + Do you want to save the changes made to SQL tabs in a new project file? + Vuoi salvare le modifiche effettuate alle schede SQL in un nuovo file di progetto? + + + + Do you want to save the changes made to the SQL file %1? + Vuoi salvare le modifiche fatte al file SQL %1? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + Gli SQL in questa scheda sono ancora in esecuzione. Chiudere la scheda bloccherà l'esecuzione. Questo potrebbe lasciare il database in uno stato inconsistente. Sei sicuro di voler chiudere la scheda? + + + + Select SQL file to open + Selezionare il file SQL da aprire + + + + Select file name + Seleziona il nome del file + + + + Select extension file + Seleziona l'estensione del file + + + + Extension successfully loaded. + Estensione caricata con successo. + + + + Error loading extension: %1 + Errore nel caricamento dell'estensione: %1 + + + + Could not find resource file: %1 + Non posso aprire il file di risorse: %1 + + + + + Don't show again + Non mostrare di nuovo + + + + New version available. + Nuova versione disponibile. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Una nuova versione di DB Browser for SQLite è disponibile (%1.%2.%3).<br/><br/>Si prega di scaricarla da <a href='%4'>%4</a>. + + + + Choose a project file to open + Seleziona un file di progetto da aprire + + + + DB Browser for SQLite project file (*.sqbpro) + File di progetto DB Browser for SQLite (*.sqbpro) + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Questo file di progetto utilizza un vecchio formato poiché è stato creato con la versione 3.10 o antecedente. Il caricamento di questo formato è ancora supportato, ma ti suggeriamo di convertire tutti i tuoi files di progetto al nuovo formato poiché il supporto ai formati precedenti potrebbe essere eliminato in futuro. Puoi convertire i tuoi file semplicemente aprendoli e salvandoli nuovamente. + + + + Could not open project file for writing. +Reason: %1 + Non posso scrivere nel file di progetto. +Motivo: %1 + + + + Collation needed! Proceed? + Necessario confronto! Procedo? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Una tabella di questo database richiede una funzione di confronto speciale '%1' che questa applicazione non può fornire senza ulteriori informazioni. +Se scegli di proseguire, sappi che potrebbero generarsi problemi nel tuo database. +Crea un backup! + + + + creating collation + creo confronto + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Imposta un nuovo nome per la scheda SQL. Usa il carattere '&&' per utilizzare il carattere succesivo come scorciatoia da tastiera. + + + + Please specify the view name + Si prega di specificare il nome della vista + + + + There is already an object with that name. Please choose a different name. + Esiste già un oggetto con quel nome. Si prega di scegliere un nome diverso. + + + + View successfully created. + Vista creata con successo. + + + + Error creating view: %1 + Errore nella creazione della vista: %1 + + + + This action will open a new SQL tab for running: + Questa azione aprirà una nuova scheda SQL per eseguire: + + + + Press Help for opening the corresponding SQLite reference page. + Premi Aiuto per aprire la pagina di riferimento SQLite corrispondente. + + + + Busy (%1) + Occupato (%1) + + + + NullLineEdit + + + Set to NULL + Imposta a NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + Grafico + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>Questo pannello mostra la lista delle colonne della tabella corrente o della query eseguita. Puoi selezionare la colonna che vuoi utilizzare come asse X o Y per il grafico sottostante. La tabella mostra i tipi d'asse rilevati. Per l'asse Y puoi selezionare solo colonne numeriche, ma per l'asse X potrai selezionare:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Data/Ora</span>: stringhe col formato &quot;aaaa-MM-gg hh:mm:ss&quot; o &quot;aaaa-MM-ggThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Data</span>: stringhe col formato &quot;aaaa-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Orario</span>: stringhe col formato &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Etichette</span>: altri formati di stringa. Selezionando queste colonne come X verrà visualizzato un grafico a barre</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeri</span>: interi or valori reali</li></ul><p>Cliccando due volte sulle celle Y potrai cambiare il colore utilizzato per il grafico.</p></body></html> + + + + Columns + Colonne + + + + X + + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + Tipo asse + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Qui compare il grafico quando vengono selezionati i valori x e y. + +Clicca s'un punto per selezionarl sul grafico e nella tabella. Ctrl+Click per selezionare un intervallo di punti. + +Usa la rotella del mouse per ingrandire e trascina col mouse per cambiare l'intervallo degli assi. + +Seleziona le etichette dell'asse o degli assi per trascinare o ingrandire solo in quella direzione. + + + + Line type: + Tipo linea: + + + + + None + Nessuna + + + + Line + Linea + + + + StepLeft + Salto sinistro + + + + StepRight + Salto destro + + + + StepCenter + Salto centrato + + + + Impulse + Impulso + + + + Point shape: + Tipo punta: + + + + Cross + Croce + + + + Plus + Più + + + + Circle + Cerchio + + + + Disc + Disco + + + + Square + Quadrato + + + + Diamond + Rombo + + + + Star + Stella + + + + Triangle + Triangolo + + + + TriangleInverted + Triangolo inverso + + + + CrossSquare + Croce quadrato + + + + PlusSquare + Più quadrato + + + + CrossCircle + Croce cerchio + + + + PlusCircle + Più cerchio + + + + Peace + Pace + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Salva il grafico corrente...</p><p>Formato file selezionato dall'estensione (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Salva il grafico corrente... + + + + + Load all data and redraw plot + Carica tutti i dati e ridisegna grafico + + + + Copy + Copia + + + + Print... + Stampa... + + + + Show legend + Mostra legenda + + + + Stacked bars + Barre impilate + + + + Date/Time + Data/Ora + + + + Date + Data + + + + Time + Ora + + + + + Numeric + Numerico + + + + Label + Etichetta + + + + Invalid + Invalido + + + + + + Row # + Riga # + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Carica tutti i dati e ridisegna grafico. +Attenzione: non sono ancora stati recuperati tutti i dati dalla tabella a causa del meccanismo di recupero. + + + + Choose an axis color + Scegli il colore per l'asse + + + + Choose a filename to save under + Scegli il nome di salvataggio + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + Ci sono delle curve in questo grafico e lo stile di line selezionato può essere applicato solo a grafici ordinati per X. Riordina la tabella o seleziona per X per rimuovere le curve o seleziona uno degli stili supportati dalle curve: Nessuno o Linea. + + + + Loading all remaining data for this table took %1ms. + Caricare tutti i dati restanti per questa tabella ha richiesto %1ms. + + + + PreferencesDialog + + + Preferences + Preferenze + + + + &General + &Generale + + + + Default &location + &Posizione di default + + + + Remember last location + Ricorda l'ultima posizione + + + + Always use this location + Usa sempre questa posizione + + + + Remember last location for session only + Ricorda l'ultima posizione solo per questa sessione + + + + + + ... + + + + + Lan&guage + Lin&gua + + + + Toolbar style + Stile barra degli strumenti + + + + + + + + Only display the icon + Mostra solo le icone + + + + + + + + Only display the text + Mostra solo il testo + + + + + + + + The text appears beside the icon + Mostra il testo a lato delle icone + + + + + + + + The text appears under the icon + Mostra il testo sotto le icone + + + + + + + + Follow the style + Segui lo stile + + + + Show remote options + Mostra opzioni remote + + + + + + + + + + + + enabled + abilitato + + + + Automatic &updates + Aggiornamenti a&utomatici + + + + DB file extensions + Estensioni file DB + + + + Manage + Gestisci + + + + Main Window + Finestra principale + + + + Database Structure + Struttura database + + + + Browse Data + Naviga nei dati + + + + Execute SQL + Esegui SQL + + + + Edit Database Cell + Modifica Cella Database + + + + When this value is changed, all the other color preferences are also set to matching colors. + Quando questo valore viene modificato, tutte le altre preferenze di colore vengono impostate al colore corrispondente. + + + + Follow the desktop style + Segui lo stile del desktop + + + + Dark style + Stile scuro + + + + Application style + Stile Applicazione + + + + This sets the font size for all UI elements which do not have their own font size option. + Questo imposta la dimensione del testo per tutti gli elementi dell'interfaccia che non hanno una loro opzione specifica. + + + + Font size + Dimensione testo + + + + &Database + + + + + Database &encoding + &Codifica Database + + + + Open databases with foreign keys enabled. + Apri database contenenti chiavi esterne. + + + + &Foreign keys + Chiavi &Esterne + + + + Remove line breaks in schema &view + Rimuovi a-capo nella &vista dello schema + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Quando abilitato, vengono rimossi gli a-capo nella colonna dello Schema del tab "Struttura DB", dock e stampa. + + + + Prefetch block si&ze + &Dimensione blocco di prefetch + + + + SQ&L to execute after opening database + SQ&L da eseguire dopo aver aperto il database + + + + Default field type + Tipo di campo di default + + + + Database structure font size + Dimensione testo per la struttura del database + + + + Data &Browser + + + + + Font + + + + + &Font + + + + + Font si&ze + Dimensione te&sto + + + + Content + Contenuto + + + + Symbol limit in cell + Limite simboli nella cella + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Questo è il numero massimo di oggetti permessi per l'esecuzione di alcune funzioni computazionalmente intense: +Massimo numero di righe in una tabella per abilitare l'autocompletamento basato sui valori correnti di una colonna. +Massimo numero di indici in una selezione per calcolare somma e media. +Può essere impostato a 0 per disabilitare le funzionalità. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Questo è il numero massimo di righe in una tabella per abilitare il completamento dei valori basandosi su quelli attualmente nella colonna. +Può essere impostato a 0 per disabilitare il completamento. + + + + Field display + Visualizzazione campi + + + + Displayed &text + &Testo visualizzato + + + + Binary + Binario + + + + NULL + + + + + Regular + Normale + + + + + + + + + Click to set this color + Clicca per impostare questo colore + + + + Text color + Colore del testo + + + + Background color + Colore dello sfondo + + + + Preview only (N/A) + Solo anteprima (N/A) + + + + Filters + Filtri + + + + Escape character + Carattere di escape + + + + Delay time (&ms) + Ritardo (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Imposta il tempo d'attesa prima che un nuovo filtro venga applicato. Può essere impostato a 0 per disabilitare l'attesa. + + + + &SQL + &SQL + + + + Settings name + Nome impostazioni + + + + Context + Contesto + + + + Colour + Colore + + + + Bold + Grassetto + + + + Italic + Corsivo + + + + Underline + Sottolinea + + + + Keyword + Parola chiave + + + + Function + Funzione + + + + Table + Tabella + + + + Comment + Commento + + + + Identifier + Identificatore + + + + String + Stringa + + + + Current line + Linea corrente + + + + Background + Sfondo + + + + Foreground + Primo piano + + + + SQL editor &font + &Font editor SQL + + + + SQL &editor font size + Dimensione font &editor SQL + + + + SQL &results font size + Dimensione font &risultati SQL + + + + Tab size + Dimensione tabulazione + + + + &Wrap lines + &A-capo automatico + + + + Never + Mai + + + + At word boundaries + Al limite della parola + + + + At character boundaries + Al limite del carattere + + + + At whitespace boundaries + Al limite del carattere vuoto + + + + &Quotes for identifiers + Identificatori per &citazioni + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Scegli il tipo meccanismo di citazione utilizzato per il codice SQL. + + + + "Double quotes" - Standard SQL (recommended) + "Doppie virgolette" - Standard SQL (raccomandato) + + + + `Grave accents` - Traditional MySQL quotes + `Apice inverso` - Citazione tradizionale MySQL + + + + [Square brackets] - Traditional MS SQL Server quotes + [Parentesi quadre] - Citazione tradizionale MS SQL Server + + + + Code co&mpletion + Auto co&mpletamento + + + + Keywords in &UPPER CASE + Parole chiave &MAIUSCOLE + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Quando impostato, le parole chiave vengono completate in MAIUSCOLO. + + + + Error indicators + Indicatori d'errore + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Quando impostato, le righe di codice SQL che causano errori durante l'ultima esecuzione sono evidenziate e il campo del risultato indica l'errore sullo sfondo + + + + Hori&zontal tiling + Affianca &orizzontalmente + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Se abilitato l'editor di codice SQL e la tabella del risultato sono mostrate una accanto all'altra anzichè una sopra l'altra. + + + + Close button on tabs + Pulsante di chiusura sulle schede + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + Se abilitato, le schede dell'editor SQL avranno un pulsante di chiusura. In ogni caso, puoi utilizzare il menù contestuale o le scorciatoie da tastiera per chiuderle. + + + + &Extensions + &Estensioni + + + + Select extensions to load for every database: + Seleziona le estensioni da caricare per ogni database: + + + + Add extension + Aggiungi estensione + + + + Remove extension + Rimuovi estensione + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Anche se SQLite supporta l'operatore REGEXP non implementa alcun algoritmo<br/>di espressione regolare, ma richiama l'applicativo in esecuzione. DB Browser for SQLite implementa questo<br/>algoritmo per te per permetterti di usare le REGEXP immediatamente. Ci sono però multiple implementazioni<br/>possibili e potresti voler utilizzare una o l'altra, sei libero di disabilitare l'implementazione<br/>dell'applicativo e caricare la tua utilizzando un'estensione. Richiede il riavvio dell'applicativo.</p></body></html> + + + + Disable Regular Expression extension + Disabilita l'estensione per l'Espressione regolare + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite fornisce una funzione SQL per il cariamento di estensioni da una libreria dinamica condivisa. Attiva questa opzione se vuoi utilizzare la funzione<span style=" font-style:italic;">load_extension()</span> dal codice SQL.</p><p>Per motivi di sicurezza, il caricamento delle estensioni è disabilitato di default e dev'essere abilitato tramite questa impostazione. Puoi sempre caricare le estensioni attraverso l'interfaccia grafica, anche se quest'opzione è disabilitata.</p></body></html> + + + + Allow loading extensions from SQL code + Permetti il caricamento di estensioni dal codice SQL + + + + Remote + Remoto + + + + CA certificates + Certificati CA + + + + Proxy + Proxy + + + + Configure + Configura + + + + + Subject CN + Soggetto CN + + + + Common Name + Nome comune + + + + Subject O + Soggetto O + + + + Organization + Organizzazione + + + + + Valid from + Valido dal + + + + + Valid to + Valido al + + + + + Serial number + Numero di serie + + + + Your certificates + Tuo certificato + + + + Threshold for completion and calculation on selection + Soglia per l'autocompletamento e il calcolo sulla selezione + + + + Show images in cell + Mostra immagini nella cella + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Abilita questa opzione per mostrare un'anteprima dei BLOBs contenti dati immagine nella cella. Questo potrebbe impattare sulle performance. + + + + File + File + + + + Subject Common Name + Nome comune del soggetto + + + + Issuer CN + CN emittente + + + + Issuer Common Name + Nome comune emittente + + + + Clone databases into + Clona il database in + + + + + Choose a directory + Seleziona una cartella + + + + The language will change after you restart the application. + La lingua verrà modificata dopo il riavvio dell'applicativo. + + + + Select extension file + Seleziona il file d'estensione + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Estensioni(*.so *.dylib *.dll);;Tutti i files(*) + + + + Import certificate file + Importa il file di certificato + + + + No certificates found in this file. + Nessun certificato trovato in questo file. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Sei sicuro di voler rimuovere questo certificato? Tutti i dati del certificato saranno eliminati dalle impostazioni dell'applicativo! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Sei sicuro di voler pulire tutte le impostazioni salvate? +Tutte le tue preferenze andranno perse e verranno utilizzati i valori predefiniti. + + + + ProxyDialog + + + Proxy Configuration + Configurazione proxy + + + + Pro&xy Type + Tipo Pro&xy + + + + Host Na&me + No&me host + + + + Port + Porta + + + + Authentication Re&quired + Autenticazione ri&chiesta + + + + &User Name + Nome &Utente + + + + Password + Password + + + + None + Nessuna + + + + System settings + Impostazioni di sistema + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + All files (*) + Tutti i files (*) + + + + Error importing data + Errore nell'import dei dati + + + + from record number %1 + dalla riga numero %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + Importa file CSV... + + + + Cancel + Annulla + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + File database SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + File di progetto DB Browser for SQLite (*.sqbpro) + + + + SQL Files (*.sql) + SQL Files (*.sql) + + + + All Files (*) + Tutti i files (*) + + + + Text Files (*.txt) + File testuali (*.txt) + + + + Comma-Separated Values Files (*.csv) + File con valori separati da virgola (*.csv) + + + + Tab-Separated Values Files (*.tsv) + Files con valori separati da tabulazione (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Files con valori separati da delimitatore (*.dsv) + + + + Concordance DAT files (*.dat) + File DAT Concordance (*.dat) + + + + JSON Files (*.json *.js) + JSON Files (*.json *.js) + + + + XML Files (*.xml) + XML Files (*.xml) + + + + Binary Files (*.bin *.dat) + Files binari (*.bin *.dat) + + + + SVG Files (*.svg) + SVG Files (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Hex Dump Files (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + Estensioni (*.so *.dylib *.dll) + + + + Left + Sinistra + + + + Right + Destra + + + + Center + Centrato + + + + Justify + Giustificato + + + + RemoteCommitsModel + + + Commit ID + ID Invio + + + + Message + Messaggio + + + + Date + Data + + + + Author + Autore + + + + Size + Dimensione + + + + Authored and committed by %1 + Creato e inviato da %1 + + + + Authored by %1, committed by %2 + Creato da %1, inviato da %2 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Errore nell'apertura della lista di database locale. +%1 + + + + Error creating local databases list. +%1 + Errore nella creazione della lista di database locale. +%1 + + + + RemoteDock + + + Remote + Remoto + + + + Identity + Identità + + + + Push currently opened database to server + Invia il database corrente al server + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>In questo pannello, possono essere aggiunti a DB Browser for SQLite i database dal sito web dbhub.io. Prima hai bisogno di un'identità:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Accedi al sito web dbhub.io (usa le tue credenziali GitHub o qualsiasi cosa tu voglia)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Clicca il pulsante per &quot;Generare un certificato cliente&quot; (la tua identità). Questo di darà un file certificato (da salvare sul to disco locale).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Vai alla scheda Remoto nelle preferenze di DB Browser for SQLite. Clicca il pulsante per aggiungere un nuovo certificato a DB Browser for SQLite e scegli il file di certificato appena scaricato.</li></ol><p>Ora il pannello Remoto ti mostrerà la tua identità e potrai aggiungere database remoti.</p></body></html> + + + + Local + Locale + + + + Current Database + Database Corrente + + + + Clone + Clona + + + + User + Utente + + + + Database + Database + + + + Branch + Ramo + + + + Commits + Invii + + + + Commits for + Invii per + + + + Delete Database + Elimina Database + + + + Delete the local clone of this database + Elimina il clone locale di questo database + + + + Open in Web Browser + Apri in nel Web Browser + + + + Open the web page for the current database in your browser + Apre la pagina web per il database corrente nel tuo browser + + + + Clone from Link + Clona dal collegamento + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + Usa questo per scaricare un database remoto per modificarlo in locale usando un URL come fornito sulla pagina web del database. + + + + Refresh + Aggiorna + + + + Reload all data and update the views + Ricarica tutti i dati e aggiorna le viste + + + + F5 + + + + + Clone Database + Clona Database + + + + Open Database + Apri Database + + + + Open the local copy of this database + Apre una copia locale di questo database + + + + Check out Commit + Scarica invio + + + + Download and open this specific commit + Scarica e apre questo specifico invio + + + + Check out Latest Commit + Scarica l'ultimo invio + + + + Check out the latest commit of the current branch + Scarica l'invio più recente per il ramo corrente + + + + Save Revision to File + Salva la revisione su file + + + + Saves the selected revision of the database to another file + Salva la revisione selezionata del database s'un altro file + + + + Upload Database + Carica Database + + + + Upload this database as a new commit + Carica questo database come nuovo invio + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>Stai attulamente utilizzando un profilo interno in sola lettura. Per caricare i tuoi database, devi configurare e usare un account DBHub.io.</p><p>Non hai ancora un account DBHub.io? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Creane uno adesso</span></a> e importa il tuo certificato <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">qui</span></a> per condividere i tuoi databases.</p><p>Per aiuto online clicca <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">qui</span></a>.</p></body></html> + + + + Back + Indietro + + + + Select an identity to connect + Seleziona un'identità per connetterti + + + + Public + Pubblico + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + Questo scarica un database ad un server remoto per modificarlo localmente. +Si prega d'inserire l'URL da clonare. Puoi generare questa URL cliccando +il pulsante 'Clona Database in DB4S' sulla pagina web del database. + + + + Invalid URL: The host name does not match the host name of the current identity. + URL non valida: Il nome dell'host non corrisponde al nome dell'host dell'identità corrente. + + + + Invalid URL: No branch name specified. + URL non valida: Nessun ramo specificato. + + + + Invalid URL: No commit ID specified. + URL non valida: Nessun ID Invio specificato. + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + Hai modificato il clone locale del database. Recuperare questo commit sovrascriverà le modifiche locali. +Sei sicuro di voler proseguire? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + Il database ha delle modifiche non salvate. Sei sicuro di volerlo inviare prima di salvare? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + Il database che stai provando a cancellare è attualmente aperto. Si prega di chiuderlo prima d'eliminarlo. + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + Questo elimina la versione locale di questo database con tutte le modifiche che non hai ancora inviato. Sei sicuro di voler eliminare questo database? + + + + RemoteLocalFilesModel + + + Name + Nome + + + + Branch + Ramo + + + + Last modified + Ultima modifca + + + + Size + Dimensione + + + + Commit + Invio + + + + File + File + + + + RemoteModel + + + Name + Nome + + + + Commit + Commit + + + + Last modified + Ultima modifca + + + + Size + Dimensione + + + + Size: + Dimensione: + + + + Last Modified: + Ultima modifica: + + + + Licence: + Licenza: + + + + Default Branch: + Ramo di default: + + + + RemoteNetwork + + + Choose a location to save the file + Scegli una posizione per salvare il file + + + + Error opening remote file at %1. +%2 + Errore aprendo il file remoto a %1. +%2 + + + + Error: Invalid client certificate specified. + Errore: specificato certificato invalido per il client. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Si prega d'inserire la passphrase per questo certificato di client in modo da permetterne l'autenticazione. + + + + Cancel + Annulla + + + + Uploading remote database to +%1 + Carico il database remoto in +%1 + + + + Downloading remote database from +%1 + Scarico il database remoto da +%1 + + + + + Error: The network is not accessible. + Errore: Rete non disponibile. + + + + Error: Cannot open the file for sending. + Errore:Impossibile aprire il file per l'invio. + + + + RemotePushDialog + + + Push database + Invia database + + + + Database na&me to push to + No&me del database a cui inviare + + + + Commit message + Messaggio di commit + + + + Database licence + Licenza database + + + + Public + Pubblico + + + + Branch + Branch + + + + Force push + Forza invio + + + + Username + Nome utente + + + + Database will be public. Everyone has read access to it. + Il database sarà pubblico. Chiunque potrà accedere in lettura. + + + + Database will be private. Only you have access to it. + Il database sarà privato. Solo tu potrai accedervi. + + + + Use with care. This can cause remote commits to be deleted. + Usa con cautela. Questo può eliminare dei commit remoti. + + + + RunSql + + + Execution aborted by user + Esecuzione terminata dall'utente + + + + , %1 rows affected + , %1 righe modificate + + + + query executed successfully. Took %1ms%2 + query eseguita con successo. Impiegati %1ms%2 + + + + executing query + query in esecuzione + + + + SelectItemsPopup + + + A&vailable + &Disponibile + + + + Sele&cted + Se&lezionato + + + + SqlExecutionArea + + + Form + + + + + Find previous match [Shift+F3] + Trova corrispondenza precedente [Shift+F3] + + + + Find previous match with wrapping + Trova la corrispondenza precedente con reinizio + + + + Shift+F3 + + + + + The found pattern must be a whole word + Il pattern trovato deve essere una parola intera + + + + Whole Words + Parole intere + + + + Text pattern to find considering the checks in this frame + Il pattern da cercare considerando le spunte in quest'area + + + + Find in editor + Trova nell'editor + + + + The found pattern must match in letter case + Il patter trovato deve corrispondere esattamente (maiuscole/minuscole) incluse + + + + Case Sensitive + Case Sensitive + + + + Find next match [Enter, F3] + Trova la prossima corrispondenza [Invio, F3] + + + + Find next match with wrapping + Trova la prossima corrispondenza con reinizio + + + + F3 + + + + + Interpret search pattern as a regular expression + Interpreta il pattern di ricerca come un'espressione regolare + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Quando selezionato, la stringa del testo viene interpretata come una RegExp Unix. Vedi <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Espressioni regolari su Wikibooks (in inglese)</a>.</p></body></html> + + + + Regular Expression + Espressione regolare + + + + + Close Find Bar + Chiudi la barra di ricerca + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>Risultati degli ultimi statements eseguiti.</p><p>Potresti voler rimpicciolire questo pannello e usare la casella <span style=" font-style:italic;">SQL Log</span> con la selezione dell'<span style=" font-style:italic;">Utente</span>.</p></body></html> + + + + Results of the last executed statements + Risultato degli 'ultimi statement eseguiti + + + + This field shows the results and status codes of the last executed statements. + Questo campo mostra i risultati e i codici di stato degli ultimi statements eseguiti. + + + + Couldn't read file: %1. + Impossibile leggere il file: %1. + + + + + Couldn't save file: %1. + Impossibile salvare il file: %1. + + + + Your changes will be lost when reloading it! + Le tue modifiche andranno perse quando ricaricherai! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + Il file "%1" è stato modificato da un altro programma. Vuoi ricaricarlo?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) La funzione abs(X) ritorna il valore assoluto dell'argomento numerico X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () La funzione changes() ritorna il numero delle righe di database che sono state modificate o inserite o eliminate dallo statement INSERT, DELETE o UPDATE più recente. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1, X2,...) La funzione char(X1,X2,...,XN) ritorna una stringa composta dai caratteri unicode rappresentati dai valori interi da X1 a XN. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) La funzione coalesce(X,Y,...) ritorna una copia del suo primo argomento non NULL oppure NULL se tutti gli argomenti sono NULL + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) La funzione glob(X,Y) è equivalente all'espressione "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) La funzione ifnull(X,Y) ritorno una copia del suo primo argomento non NULL o NULL se entrambi gli argomenti sono NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) La funzione intstr(X,Y) trova la prima occorrenza della stringa Y all'interno della stringa X e ritorna il numero dei caratteri precedenti più 1 o 0 se Y non si trova all'interno di X. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) La funzione hex() interpreta i suoi argomenti come un BLOB e ritorna una stringa corrispondente al rendering esadecimale maiuscolo del contenuto di quel blob. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () La funzione last_insert_rowid() ritorna il ROWID dell'ultima riga inserita nella connessione database che ha invocato la funzione. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) La funzione lenght(X) ritorna per una stringa X, il numero di caratteri (non bytes) di X prima del primo carattere NUL. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) La funzione like(X,Y) è utilizzata per implementare l'espressione "Y LIKE X". + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) La funzione like(X,Y,Z) è utilizzata per implementare l'espressione "Y LIKE X ESCAPE Z". + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) La funzione load_extension(X) carica l'estensione SQLite da un file di libreria condivisa di nome X. +L'utilizzo di questa funzione dev'essere permesso tramite le Preferenze. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) La funzione load_extension(X,Y) carica un'estensione SQLite da un file di libreria condivisa di nome X utilizzando il punto d'ingresso Y. +L'utilizzo di questa funzione dev'essere permesso tramite le Preferenze. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) La funzione lower(X) ritorna una copia della stringa X con tutti i caratteri ASCII convertiti in minuscolo. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) La funzione ltrim(X) rimuove gli spazi dal lato sinistro di X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) La funzione ltrim(X,Y) ritorna una stringa formata rimuovendo tutti i caratteri che compaiono in Y dal lato sinistro di X. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) La funzione multi-argomento max(X,Y,...) ritorna l'argomento con valore massimo o ritorna NULL se tutti gli argomenti sono NULL. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) La funzione multi-argomento min(X,Y,...) ritorna l'argomento con valore minore o NULL se tutti gli argomenti sono NULL. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) La funzione nullif(X,Y) ritorna il primo argomento se gli argomenti sono diversi e NULL se gli argomenti sono uguali. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) La funzione SQL printf(FORMAT,...) si comporta come la funzione del linguaggio C sqlite3_mprintf() e la funzione printf() della libreria standard C. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) La funzione quote(X) ritorna il testo di un literale SQL il cui valore può essere incluso in uno statement SQL. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () La funzione random() ritorna un numero intero pseudo-casuale tra -9223372036854775808 e +9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) La funzione randomblob(N) ritorna un blob di N-bytes contenenti dati pseudo-casuali. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) La funzione replace(X,Y,Z) ritorna una striga formata sostituendo la stringa Z in ogni occorrenza della stringa Y nella stringa X. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) La funzione round(X) ritorna un valore in virgola mobile X arrotondato a 0 cifre decimali. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) La funzione round(X,Y) ritorna un numero in virgola mobile X arrotondato a Y cifre decimali. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) La funzione rtrim(X) rimuove gli spazi dalla destra di X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) La funzione rtrim(X,Y) ritorna una stringa formata rimuovendo tutti i caratteri che compaiono in Y dal lato destro di X. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) La funzione soundex(X) ritorna una stringa che rappresenta la codifica soundex della stringa X. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) La funzione substr(X,Y) ritorna tutti i caratteri dalla fine della stringa X iniziando dall'Y-esimo. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) La funzione substr(X,Y,Z) ritorna una sotto-stringa di X che inizia dal carattere Y-esimo e lunga Z caratteri. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () La funzione total_changes() ritorna il numero di righe modificate da INSERT, UPDATE o DELETE dall'apertura della connessione al database. + + + + (X) trim(X) removes spaces from both ends of X. + (X) La funzione trim(X) rimuove gli spazi da entrambi i lati di X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) La funzione trim(X,Y) ritorna una stringa formata rimuovendo tutti i caratteri che compaiono in Y da entrambi i termini di X. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) La funzione typeof(X) ritorna una stringa che indica il tipo di dato dell'espressione X. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) La funzione unicode(X) ritorna il valore numerico in unicode corrispondente al primo carattere della stringa X. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) La funzione upper(X) ritorna una copia della stringa X in cui tutti i caratteri minuscoli ASCII sono stati converiti in maiuscolo. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) La funizione zeroblob(N) ritorna un BLOB di N byte di 0x00. + + + + + + + (timestring,modifier,modifier,...) + (stringa data,modificatore,modificatore,...) + + + + (format,timestring,modifier,modifier,...) + (formato,stringa data-ora,modificatore,modificatore,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) La funzione avg(X) ritorna il valore medio di tutti gli X non-NULL in un gruppo. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) La funzione count(X) ritorna il numero di volte che X non è NULL in un gruppo. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) La funzione group_concat(X) ritorna una stringa rappresentante la concatenazione di tutti i valori di X non-NULL. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) La funzione group_concat(X,Y) ritorna una stringa rappresentate la concatenazione di tutti i valori di X non-NULL. Se il parametro Y è presente allora è utilizzato come separatore tra le istanze di X. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) La funzione aggregata max(X) ritorna il valore massimo di tutti i valori nel gruppo. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) La funzione aggregata min(X) ritorna il minore non-NULL tra tutti i valori del gruppo. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Le funzioni aggregate sum(X) e total(X) ritornano la somma di tutti i valori non-NULL nel gruppo. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () Il numero di righe all'interno della partizione corrente. Le righe sono numerate partendo da 1 nell'ordine definito dalla clausula ORDER BY nella finestra definizione, o altrimenti in ordine arbitrario. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Il row_number() del primo peer in ogni gruppo - il rango della riga corrente con intervalli. Se non ci sono clausule ORDER BY, allora tutte le righe sono considerate peer e questa funzione ritorna 1. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Il numero di peer nel gruppo della riga corrente all'interno della sua partizione - il rango della riga corrente senza intervalli. Le partizioni sono numerate a partire da 1 nell'ordine definito dalla clausula ORDER BY nella finestra definizione. Se non ci sono clausule ORDER BY allora tutte le righe sono considerate peer e questa funzione ritorna 1. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () A dispetto del nome, questa funzione ritorna sempre un valore tra 0.0 e 1.0 uguale a (rango - 1)/(righe della partizione - 1), dove rango è il valore ritornato dalla funzione interna rank() e le "righe della partizione" sono il numero di righe nella partizione. Se la partizione contiene solo una riga, questa funzione ritorna 0.0. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () La distribuzione cumulativa. Calcolata come "numero di righe"/"righe della partizione", dove "numero di righe" è il valore ritornato dalla funzione row_number() per l'utimo peer nel gruppo. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) L'argomento N è gestito come valore intero. Questa funzione divide la partizione in N gruppi il più uniformemente possibile e assegna un'intero tra 1 e N ad ogni gruppo, nell'ordine definito dalla clausula ORDER BY o altrimenti in ordine arbitrario. Se necessario i gruppi più grandi compariranno per primi. Questa funzione ritorna il valore intero assegnato al gruppo di cui fa parte la riga corrente. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Ritorna il risultato della valutazione dell'espressione expr sulla riga precedente della partizione o, se non esiste una riga precedente (perché la riga è la prima), NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr, offset) Se l'argomento offset viene fornito, allora dev'essere un intero non negativo. In questo caso il valore ritornato è il risultato della valutazione dell'espressione expr sulla riga "offset" posizioni antecedente nella partizione. Se offset è 0 allora expr viene valutata sulla riga corrente. Se non ci sono offset righe antecedenti viene ritornato NULL. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) Se viene fornito anche default, allora viene ritornato al posto di NULL se la riga identificata da offset non esiste. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Ritorna il risultato della valutazione dell'espressione expr con la riga successiva nella partizione o, se non c'è una riga successiva (perché la riga corrente è l'utlima) NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) Se viene fornito l'argomento offset, dev'essere un intero non negativo. In questo caso il valore ritornato è il risultato della valutazione dell'espressione expr sulla riga "offset" posizioni successiva a quella corrente nella partizione. Se offset è 0, allora expr viene valutata sulla riga corrente. Se non c'è una riga "offset" posizioni successive, NULL viene restituito. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Questa funzione interna calcola la cornice della finestra di ciascuna riga allo stesso modo di una funzione finestra aggregata. Ritorna il valore della valutazione di expr sulla prima riga nella cornice della finestra per ciascuna riga. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Questa funzione interna calcola la cornice della finestra per ciascuna riga allo stesso modo della funzione finestra aggregata. Ritorna il valore dell'espressione expr valutata sull'ultima riga della cornice della finestra per ciascuna riga. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) Questa funzione interna calcola la cornice della finestra per ciascuna riga allo stesso modo della funzione aggregata finestra. Ritorna il valore della valutazione dell'espressione expr sulla riga N della cornice della finestra. Le righe sono numerate dalla cornice della finestra partendo da 1 nell'ordine definito dalla clausula ORDER BY se presente o in modo arbitrario. Se non esiste la riga Nesima nella partizione, viene ritornato NULL. + + + + SqliteTableModel + + + reading rows + leggo le righe + + + + loading... + caricamento... + + + + References %1(%2) +Hold %3Shift and click to jump there + Riferimenti %1(%2) +Tieni premuto %3Shift e clicca per saltare lì + + + + Error changing data: +%1 + Errore nella modifica dei dati: +%1 + + + + retrieving list of columns + recupero la lista delle colonne + + + + Fetching data... + Recupero dati... + + + + + Cancel + Annulla + + + + TableBrowser + + + Browse Data + Naviga nei dati + + + + &Table: + &Tabella: + + + + Select a table to browse data + Seleziona una tabella per navigare tra i dati + + + + Use this list to select a table to be displayed in the database view + Usa questa lista per selezionare una tabella da visualizzare nella vista del database + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Questa è la vista della tabella del database. Puoi eseguire le seguenti operazioni: + - Inizia a scrivere per modificare i valori. + - Doppio-click su qualsiasi valore per modificarne il contenuto nella finestra di editor della cella. + - Alt+Del per eliminare il contenuto della cella e portarlo a NULL. + - Ctrl+" per duplicare il valore corrente. + - Ctrl+' per copiare il valore dalla cella soprastante. + - Operazioni di selezione e copia/incolla. + + + + Text pattern to find considering the checks in this frame + Il pattern da cercare considerando le spunte in quest'area + + + + Find in table + Trova nella tabella + + + + Find previous match [Shift+F3] + Trova corrispondenza precedente [Shift+F3] + + + + Find previous match with wrapping + Trova la corrispondenza precedente con reinizio + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Trova la prossima corrispondenza [Invio, F3] + + + + Find next match with wrapping + Trova la prossima corrispondenza con reinizio + + + + F3 + + + + + The found pattern must match in letter case + Il pattern trovato deve corrispondere esattamente (maiuscole/minuscole) incluse + + + + Case Sensitive + Case Sensitive + + + + The found pattern must be a whole word + Il pattern trovato deve essere una parola intera + + + + Whole Cell + Cella completa + + + + Interpret search pattern as a regular expression + Interpreta il pattern di ricerca come un'espressione regolare + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Quando selezionata, il pattern da trovare viene interpretato come un'espressione regolare UNIX. Vedi: <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + Regular Expression + Espressione regolare + + + + + Close Find Bar + Chiudi la barra di ricerca + + + + Text to replace with + Testo da usare per la sostituzione + + + + Replace with + Sostituisci con + + + + Replace next match + Sostituisci la prossima corrispondenza + + + + + Replace + Sostituisci + + + + Replace all matches + Sostituisci tutte le corrispondenze + + + + Replace all + Sostituisci tutto + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Scorri all'ìinizio</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Cliccare questo pulsante scorre la vista all'inizio della tabella.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Scorri di una pagina in su + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Cliccando questo pulsante la vista scorre le righe di una pagina verso l'inizio della tabella.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 di 0 + + + + Scroll one page downwards + Scorri di una pagina in giù + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Cliccando questo pulsante la vista scorre le righe di una pagina verso il fondo della tabella.</p></body></html> + + + + > + > + + + + Scroll to the end + Scorri alla fine + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>Cliccando questo pulsante la vista scorre al fondo della tabella.</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Clicca qui per saltare alla riga specificata</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Questo pulsante è utilizzato per navigare alla riga impostata nell'area "Vai a".</p></body></html> + + + + Go to: + Vai a: + + + + Enter record number to browse + Inserisci il numero di riga a cui scorrere + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Inserisci un numero in quest'area e clicca sul pul pulsante "Vai a" per visualizzare la riga selezionata + + + + 1 + 1 + + + + Show rowid column + Mostra colonna rowid + + + + Toggle the visibility of the rowid column + Mostra/nasconde la colonna rowid + + + + Unlock view editing + Sblocca la modifica della vista + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Sblocca la vista corrente per modificarla. Per poterla modificare avrai comunque bisogno degli appropriati trigger. + + + + Edit display format + Modifica formato di visualizzazione + + + + Edit the display format of the data in this column + Modifica il formato di visualizzazione dei dati in questa colonna + + + + + New Record + Nuova Riga + + + + + Insert a new record in the current table + Inserisci un nuovo valore nella tabella corrente + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Questo pulsante crea una nuova riga nel database. Mantieni premuto il tasto del mouse per ottenere più opzioni:</p><ul><li><span style=" font-weight:600;">Nuova Riga</span>: inserisce una nuova riga con i valori predefiniti.</li><li><span style=" font-weight:600;">Inserisci Valori...</span>: apre una finestra per inserire i valori prima che vengano immessi nel database. Questo permette che l'immissione dei valori rispetti diversi limiti (constraints). Questa finestra si apre anche se l'opzione <span style=" font-weight:600;">Nuova Riga</span> fallisce a causa di questi limiti (constraints).</li></ul></body></html> + + + + + Delete Record + Elimina Riga + + + + Delete the current record + Elimina il valore corrente + + + + + This button deletes the record or records currently selected in the table + Questo pulsante elimina la/e righe selezionate nella tabella + + + + + Insert new record using default values in browsed table + Inserisce un nuovo record utilizzando i valori di default della tabella + + + + Insert Values... + Inserisci Valori... + + + + + Open a dialog for inserting values in a new record + Apre una finestra per l'inermento di valori all'interno di un nuovo record + + + + Export to &CSV + Esporta in &CSV + + + + + Export the filtered data to CSV + Esporta i dati filtrati in CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Questo pulsante esporta i dati della tabella così come visualizzati (applicando filtri, formati e ordine delle colonne) in un file CSV. + + + + Save as &view + Salva come &vista + + + + + Save the current filter, sort column and display formats as a view + Salva il filtro corrente, ordine colonne e formati dati come vista + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Questo pulsante salva le impostazioni della tabella visualizzata (filtri, formati e ordine colonne) in una vista SQL che puoi successivamente navigare o utilizzare in statement SQL. + + + + Save Table As... + Salva Tabella Come... + + + + + Save the table as currently displayed + Salva la tabella così come visualizzata + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>Questo menù fornisce le seguenti opzioni applicabili alla tabella filtrata e visualizzata correntemente:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Esporta in CSV: questa opzione esporta i dati della tabella così come visualizzati (con filtri, riordine delle colonne e formati) in un file CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Salva come vista: questa opzione salva le impostazioni correnti della tabella visualizzata (filtri, riordine delle colonne e formati) come vista SQL che puoi successivamente visualizzare o utilizzare come statement.</li></ul></body></html> + + + + Hide column(s) + Nascondi colonna(e) + + + + Hide selected column(s) + Nasconde la(e) colonna(e) selezionata(e) + + + + Show all columns + Mostra tutte le colonne + + + + Show all columns that were hidden + Mostra tutte le colonne nascoste + + + + + Set encoding + Imposta codifica + + + + Change the encoding of the text in the table cells + Modifica la codifica del testo nelle celle della tabella + + + + Set encoding for all tables + Imposta la codifica per tutte le tabelle + + + + Change the default encoding assumed for all tables in the database + Modifica il valore predefinito di codifica per tutte le tabelle del database + + + + Clear Filters + Pulisci Filtri + + + + Clear all filters + Cancella tutti i filtri + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Questo pulsante pulisce tutti i filtri impostati nella riga d'intestazione per la tabella corrente. + + + + Clear Sorting + Ripristina Ordinamento + + + + Reset the order of rows to the default + Ripristina l'ordine delle righe predefinito + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Questo pulsante ripristina l'ordinamento delle colonne predefinito per la tabella corrente. + + + + Print + Stampa + + + + Print currently browsed table data + Stampa i dati della tabella attualmente in esplorazione + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Stampa i dati visualizzati. Stampa la selezione se più di una cella è selezionata. + + + + Ctrl+P + + + + + Refresh + Aggiorna + + + + Refresh the data in the selected table + Aggiorna i dati della tabella selezionata + + + + This button refreshes the data in the currently selected table. + Questo pulsante aggiorna i dati della tabella selezionata. + + + + F5 + + + + + Find in cells + Trova nelle celle + + + + Open the find tool bar which allows you to search for values in the table view below. + Apre la barra di ricerca che ti permette di cercare valori nella tabella visualizzata qui sotto. + + + + + Bold + Grassetto + + + + Ctrl+B + + + + + + Italic + Corsivo + + + + + Underline + Sottolinea + + + + Ctrl+U + + + + + + Align Right + Allinea a Destra + + + + + Align Left + Allinea a Sinistra + + + + + Center Horizontally + Centra Orizzontalmente + + + + + Justify + Giustifica + + + + + Edit Conditional Formats... + Modifica Formattazione Condizionale... + + + + Edit conditional formats for the current column + Modifica formattazione condizionale per la colonna corrente + + + + Clear Format + Ripristina formattazione + + + + Clear All Formats + Ripristina Tutte le Formattazioni + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Ripristina la formattazione di tutte le celle selezionate e tutte le formattazioni condizionali delle colonne selezionate + + + + + Font Color + Colore Testo + + + + + Background Color + Colore Sfondo + + + + Toggle Format Toolbar + Mostra/Nascondi barra dei formati + + + + Show/hide format toolbar + Mostra/nascondi barra dei formati + + + + + This button shows or hides the formatting toolbar of the Data Browser + Questo pulsante mostra o nasconde la barra dei formati per il Browser dei dati + + + + Select column + Seleziona colonna + + + + Ctrl+Space + + + + + Replace text in cells + Sostituisci testo nelle celle + + + + Filter in any column + Filtra in qualsiasi colonna + + + + Ctrl+R + + + + + %n row(s) + + %n riga + %n righe + + + + + , %n column(s) + + , %n colonna + , %n colonne + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Somma: %1; Media: %2; Min: %3; Max: %4 + + + + Conditional formats for "%1" + Formattazione condizionale per '%1' + + + + determining row count... + determino il numero di righe... + + + + %1 - %2 of >= %3 + %1 - %2 di >= %3 + + + + %1 - %2 of %3 + %1 - %2 di %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Si prega d'inserire una pseudo-chiave primaria in modo da abilitare le modifiche su questa vista. Deve corrispondere al nome di una colonna univoca nella vista. + + + + Delete Records + Elimina i Records + + + + Duplicate records + Duplica i records + + + + Duplicate record + Duplica il record + + + + Ctrl+" + + + + + Adjust rows to contents + Adatta le righe al contenuto + + + + Error deleting record: +%1 + Errore eliminando le righe: +%1 + + + + Please select a record first + Si prega di selezionare prima un record + + + + There is no filter set for this table. View will not be created. + Non c'è filtro impostato per questa tabella. La vista non sarà creata. + + + + Please choose a new encoding for all tables. + Si prega di scegliere una nuova codifica per tutte le tabelle. + + + + Please choose a new encoding for this table. + Si prega di scegliere una nuova codifica per questa tabella. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Lasciare il campo vuoto per utilizzare la codifica del database. + + + + This encoding is either not valid or not supported. + Questa codifica non è valida o non è supportata. + + + + %1 replacement(s) made. + %1 sostituzione(i) effettuata(e). + + + + VacuumDialog + + + Compact Database + Compatta Database + + + + Warning: Compacting the database will commit all of your changes. + Attenzione: Compattare il database salverà tutte le tue modifiche. + + + + Please select the databases to co&mpact: + Si prega di selezionare il database da co&mpattare: + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_ja.qm b/src/SqliteDBProcess/src/translations/sqlb_ja.qm new file mode 100644 index 0000000..536ea32 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_ja.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_ja.ts b/src/SqliteDBProcess/src/translations/sqlb_ja.ts new file mode 100644 index 0000000..a379f4c --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_ja.ts @@ -0,0 +1,7019 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + DB Browser for SQLite について + + + + Version + バージョン + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB Browser for SQLite は SQLite データベースを作成、デザイン、編集できる、オープンソースで無料のヴィジュアルツールです。</p><p>このソフトウェアは Mozilla Public License Version 2 と the GNU General Public License Version 3 (もしくはそれ以降のもの) の2つでライセンスされています。あなたはこれらのライセンスの条件の下でこのソフトウェアを変更、もしくは、再配布できます。</p><p>詳細は <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> と <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> をご覧ください。</p><p>このプログラムのさらなる情報は、私たちのウェブサイトをご覧ください。: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">このソフトウェアは GPL/LGPL Qt Toolkit を使用しています。 </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>ライセンス条項や情報は </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> をご覧ください。</span></p><p><span style=" font-size:small;">また、 Mark James の Silk icon set を Creative Commons Attribution 2.5 and 3.0 license の元で使用しています。<br/>詳細は </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> をご覧ください。</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + 新しいレコードを追加 + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + 制約を考慮して新しいレコードに値を入力します。太字のフィールドは必須です。 + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + 「値」列では、「名前」列で識別されたフィールドの値を指定できます。「データ型」列はフィールドのデータ型を示します。 デフォルト値はNULL値と同じスタイルで表示されます。 + + + + Name + 名前 + + + + Type + データ型 + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + 挿入する値。変更されない限り、事前入力されたデフォルト値が自動的に挿入されます。 + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + 上のフレームで値を編集すると、この新しいレコードを挿入する SQL クエリーがここに表示されます。保存する前にこのクエリーを手動で編集できます。 + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">保存</span>は表示されている新しいレコードを挿入するSQL文をデータベースに適用します。</p><p><span style=" font-weight:600;">デフォルトに戻す</span>は<span style=" font-weight:600;">「値」</span>列を初期値に戻します。</p><p><span style=" font-weight:600;">キャンセル</span>はクエリーを実行せずにダイアログを閉じます。</p></body></html> + + + + Auto-increment + + 自動増加 + + + + + Unique constraint + + 一意性制約 + + + + + Check constraint: %1 + + 検査誓約: %1 + + + + + Foreign key: %1 + + 外部キー: %1 + + + + + Default value: %1 + + デフォルト値: %1 + + + + + Error adding record. Message from database engine: + +%1 + レコード追加でエラー。データベースエンジンからのメッセージ: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + 入力した値をすべてデフォルトに戻しますか? + + + + Application + + + Possible command line arguments: + 使用可能なコマンドライン引数: + + + + Usage: %1 [options] [<database>|<project>] + + 使い方: %1 [オプション] [<DB>|<プロジェクト>] + + + + + -h, --help Show command line options + -h, --help コマンドラインのオプションを表示 + + + + -q, --quit Exit application after running scripts + -q, --quit スクリプト実行後にアプリケーションを終了 + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <ファイル> DBを開いた後、このSQLファイルを実行 + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <テーブル> DBを開いた後このテーブルを閲覧 + + + + -R, --read-only Open database in read-only mode + -R, --read-only 読み取り専用モードでデータベースを開く + + + + -o, --option <group>/<setting>=<value> + -o, --option <グループ>/<設定>=<値> + + + + Run application with this setting temporarily set to value + 一時的にこの値を設定してアプリケーションを実行 + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <グループ>/<設定>=<値> + + + + Run application saving this value for this setting + この値の設定を保存してアプリケーションを実行 + + + + -v, --version Display the current version + -v, --version 現在のバージョンを表示 + + + + <database> Open this SQLite database + <データベース> このSQLiteデータベースを開く + + + + <project> Open this project file (*.sqbpro) + <プロジェクト> このプロジェクトファイル(*.sqbpro)を開く + + + + The -s/--sql option requires an argument + -s/--sql オプションは引数が必要です + + + + The file %1 does not exist + ファイル %1 が存在しません + + + + The -t/--table option requires an argument + -t/--table オプションは引数が必要です + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + -o/--option と -O/--save-optionオプションは グループ/設定=値 の形式で引数が必要です + + + + SQLite Version + SQLite バージョン + + + + SQLCipher Version %1 (based on SQLite %2) + SQLCipher バージョン %1 (SQLite %2 がベース) + + + + DB Browser for SQLite Version %1. + DB Browser for SQLite バージョン %1. + + + + Built for %1, running on %2 + %1 向けビルド, %2 で動作中 + + + + Qt Version %1 + Qt バージョン %1 + + + + Invalid option/non-existant file: %1 + 不正なオプション/存在しないファイルです: %1 + + + + CipherDialog + + + SQLCipher encryption + SQLCipher 暗号化 + + + + &Password + パスワード(&P) + + + + &Reenter password + パスワードの再入力(&R) + + + + Passphrase + パスフレーズ + + + + Raw key + 生のキー + + + + Encr&yption settings + 暗号化設定(&Y) + + + + SQLCipher &3 defaults + SQLCipher 3 デフォルト(&3) + + + + SQLCipher &4 defaults + SQLCipher 4 デフォルト(&4) + + + + Custo&m + カスタム(&M) + + + + Page si&ze + ページサイズ(&Z) + + + + &KDF iterations + KDF反復回数(&K) + + + + HMAC algorithm + HMACアルゴリズム + + + + KDF algorithm + KDFアルゴリズム + + + + Plaintext Header Size + プレーンテキストヘッダーサイズ + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + データベースを暗号化するキーを設定してください。 +そのほかの任意の設定を変更すると、データベースファイルを開くときは毎回再入力が必要になることに注意してください。 +暗号化を無効にするにはパスワード欄を空白にします。 +暗号化工程には少し時間がかかるでしょう。データベースのバックアップを作成するべきです! 保存していない変更は暗号化の前に反映されます。 + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + データベースの暗号化に使用するキーを入力してください。 +このデータベースファイルの他の設定が変更された場合は、この情報も指定する必要があります。 + + + + ColumnDisplayFormatDialog + + + Choose display format + 表示書式を選択 + + + + Display format + 表示書式 + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + カラム '%1' の表示形式を選択してください。これは表示前に各値に適用されます。 + + + + Default + デフォルト + + + + Decimal number + 十進数 + + + + Exponent notation + 指数表記 + + + + Hex blob + 十六進Blob + + + + Hex number + 十六進数 + + + + Octal number + 八進数 + + + + Round number + 概数 + + + + Apple NSDate to date + Apple NSDate を日付に + + + + Java epoch (milliseconds) to date + Java エポック (ミリ秒) を日付に + + + + .NET DateTime.Ticks to date + .NET DateTime.Ticks を日付に + + + + Julian day to date + ユリウス日を日付に + + + + Unix epoch to date + Unix エポックを日付に + + + + Unix epoch to local time + Unix エポックを地方時に + + + + Windows DATE to date + Windows DATE を日付に + + + + Date as dd/mm/yyyy + 日付(dd/mm/yyyy) + + + + Lower case + 小文字 + + + + Upper case + 大文字 + + + + Custom + カスタム + + + + Custom display format must contain a function call applied to %1 + カスタム表示形式には、%1 に適用される関数呼び出しが含まれている必要があります + + + + Error in custom display format. Message from database engine: + +%1 + カスタム表示形式でエラー。データベースエンジンからのメッセージ: + +%1 + + + + Custom display format must return only one column but it returned %1. + カスタム表示形式はただ1つのカラムを返す必要がありますが、%1 が返ってきました。 + + + + CondFormatManager + + + Conditional Format Manager + 条件付き書式管理 + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + このダイアログで条件付き書式の作成と編集ができます。それぞれのセルスタイルはセルのデータが最初に一致した条件のものが選択されます。条件付き書式は上下に移動でき、上の行は下の行に優先します。条件の構文はフィルターと同じで、空白の条件は全ての値に適用されます。 + + + + Add new conditional format + 新しい条件付き書式を追加します + + + + &Add + 追加(&A) + + + + Remove selected conditional format + 選択した条件付き書式を削除します + + + + &Remove + 削除(&R) + + + + Move selected conditional format up + 選択した条件付き書式を上へ移動します + + + + Move &up + 上へ(&U) + + + + Move selected conditional format down + 選択した条件付き書式を下へ移動します + + + + Move &down + 下へ(&D) + + + + Foreground + 前景 + + + + Text color + 文字色 + + + + Background + 背景 + + + + Background color + 背景色 + + + + Font + フォント + + + + Size + サイズ + + + + Bold + 太字 + + + + Italic + イタリック + + + + Underline + 下線 + + + + Alignment + 配置 + + + + Condition + 条件 + + + + + Click to select color + クリックで色を選択 + + + + Are you sure you want to clear all the conditional formats of this field? + 本当にこのフィールドの条件付き書式をすべて削除しますか? + + + + DBBrowserDB + + + This database has already been attached. Its schema name is '%1'. + このデータベースには既に接続しています。このスキーマの名前は '%1' です。 + + + + Please specify the database name under which you want to access the attached database + 接続したデータベースへのアクセス時に使用するデータベース名を指定してください + + + + Invalid file format + 不正なファイルフォーマット + + + + Do you really want to close this temporary database? All data will be lost. + 本当にこの一時データベースを閉じますか? すべてのデータは喪失します。 + + + + Do you want to save the changes made to the database file %1? + データベースファイル '%1' への変更を保存しますか? + + + + Database didn't close correctly, probably still busy + データベースが正常に閉じられませんでした。多分まだビジー状態です + + + + The database is currently busy: + データベースは現在ビジー状態です: + + + + Do you want to abort that other operation? + 他の操作を中断しますか? + + + + Exporting database to SQL file... + データベースをSQLファイルにエクスポート... + + + + + Cancel + キャンセル + + + + + No database file opened + データベースファイルを開いていません + + + + Executing SQL... + SQLを実行... + + + + Action cancelled. + 操作をキャンセルしました。 + + + + + Error in statement #%1: %2. +Aborting execution%3. + この文でエラー #%1: %2。 +実行を中断%3。 + + + + + and rolling back + ロールバックしました + + + + didn't receive any output from %1 + %1 から出力を得られませんでした + + + + could not execute command: %1 + コマンド: %1 を実行できませんでした + + + + Cannot delete this object + このオブジェクトは削除できません + + + + Cannot set data on this object + このオブジェクトにデータ設定はできません + + + + + A table with the name '%1' already exists in schema '%2'. + 名前が '%1' のテーブルはスキーマ '%2' に既に存在します。 + + + + No table with name '%1' exists in schema '%2'. + スキーマ '%2' に名前が '%1' のテーブルがありません。 + + + + + Cannot find column %1. + カラム %1 が見つかりません。 + + + + Creating savepoint failed. DB says: %1 + セーブポイントの作成に失敗。DBの反応: %1 + + + + Renaming the column failed. DB says: +%1 + カラム名変更に失敗。DBの反応: +%1 + + + + + Releasing savepoint failed. DB says: %1 + セーブポイントの解放に失敗。DBの反応: %1 + + + + Creating new table failed. DB says: %1 + 新しいテーブルの作成に失敗。DBの反応: %1 + + + + Copying data to new table failed. DB says: +%1 + 新しいテーブルへのデータのコピーに失敗。DBの反応: +%1 + + + + Deleting old table failed. DB says: %1 + 古いテーブルの削除に失敗。DBの反応: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + テーブル名の '%1' から '%2' への変更でエラー。 +データベースエンジンからのメッセージ: +%3 + + + + could not get list of db objects: %1 + DBオブジェクトの一覧を取得できません: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + このテーブルに関連するオブジェクトの復元に失敗しました。これはおそらく一部のカラム名が変更されたためです。このSQL文を手動で修正し実行してください。 +Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + + + + could not get list of databases: %1 + データベースの一覧を取得できません: %1 + + + + Error setting pragma %1 to %2: %3 + プラグマ %1 を %2 に設定時にエラー: %3 + + + + File not found. + ファイルが見つかりません。 + + + + Error loading extension: %1 + 拡張の読み込みでエラー: %1 + + + + could not get column information + カラム情報が取得できませんでした + + + + DbStructureModel + + + Name + 名前 + + + + Object + オブジェクト + + + + Type + データ型 + + + + Schema + スキーマ + + + + Database + データベース + + + + Browsables + 表示可能 + + + + All + すべて + + + + Temporary + 一時 + + + + Tables (%1) + テーブル (%1) + + + + Indices (%1) + インデックス (%1) + + + + Views (%1) + ビュー (%1) + + + + Triggers (%1) + トリガー (%1) + + + + EditDialog + + + Edit database cell + データベースのセルを編集 + + + + Mode: + モード: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + これはサポートしているセル編集モードの一覧です。現在のセルデータの表示修正に使用するモードを選んでください。 + + + + Text + テキスト + + + + RTL Text + RTL テキスト + + + + Binary + バイナリー + + + + + Image + 画像 + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + 編集モードを読み込んだデータ型に自動的に調整 + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + このチェックボタンは編集モードの自動切り替えを有効/無効にします。新しいセルが選択されるか新しいデータがインポートされた時に自動切り替えが有効だと、検出したデータ型にモードを調整します。その後、編集モードは手動で変更できます。セル間の移動時に手動で変更したモードを維持したいならば、このボタンをオフにします。 + + + + Auto-switch + 自動切替 + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + この編集モードは構文強調して、プレーンテキストだけでなく、JSONやXMLデータを編集しやすくします。保存前に自動的に整形と検証をします。 + +エラーは赤い破線で示されます。 + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + このQtエディターは右書きの文章に使われます。これはデフォルトのテキストエディターではサポートされていません。右書きの文字の存在が検知されると、このエディターモードが自動的に選択されます。 + + + + Apply data to cell + セルにデータを適用 + + + + Open preview dialog for printing the data currently stored in the cell + 現在セルにあるデータを印刷するプレビューダイアログを開く + + + + Auto-format: pretty print on loading, compact on saving. + 自動整形: きれいに表示、圧縮して保存。 + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + 有効にすると、自動整形機能は読み込み時にデータの可読性を高める改行とインデントを加えます。データの保存時には、改行と不要な空白を取り除きデータを圧縮します。 + + + + Word Wrap + ワードラップ + + + + Wrap lines on word boundaries + 単語単位でワードラップ + + + + + Open in default application or browser + デフォルトのアプリケーションかブラウザーで開く + + + + Open in application + アプリケーションで開く + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + 値はファイルかURLと解釈され、デフォルトのアプリケーションかウェブブラウザで開かれます。 + + + + Save file reference... + ファイル参照を保存... + + + + Save reference to file + 参照をファイルに保存 + + + + + Open in external application + 外部のアプリケーションで開く + + + + Autoformat + 自動整形 + + + + &Export... + エクスポート(&E)... + + + + + &Import... + インポート(&I)... + + + + + Import from file + ファイルからインポート + + + + + Opens a file dialog used to import any kind of data to this database cell. + このデータベースのセルに任意の種類のデータをインポートするファイルダイアログを開きます。 + + + + Export to file + ファイルへエクスポート + + + + Opens a file dialog used to export the contents of this database cell to a file. + このデータベースのセルの内容をファイルにエクスポートするファイルダイアログを開きます。 + + + + Erases the contents of the cell + セルの内容を削除 + + + + Set as &NULL + NULLに設定(&N) + + + + This area displays information about the data present in this database cell + このデータベースのセルに存在するデータの情報をここに表示 + + + + Type of data currently in cell + 現在セルにあるデータの種類 + + + + Size of data currently in table + 現在テーブルにあるデータのサイズ + + + + This button saves the changes performed in the cell editor to the database cell. + このボタンはエディターで行われた変更をデータベースのセルに保存します。 + + + + Apply + 適用 + + + + + Print... + 印刷... + + + + Open preview dialog for printing displayed image + 表示された画像を印刷するプレビューダイアログを開く + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + 表示されたテキストを印刷するプレビューダイアログを開く + + + + Copy Hex and ASCII + 十六進数とASCIIをコピー + + + + Copy selected hexadecimal and ASCII columns to the clipboard + 選択した十六進数とASCIIのカラムをクリップボードにコピー + + + + Ctrl+Shift+C + + + + + + Image data can't be viewed in this mode. + 画像データはこのモードでは表示できません。 + + + + + Try switching to Image or Binary mode. + 画像/バイナリーモードに切り替えてみてください。 + + + + + Binary data can't be viewed in this mode. + バイナリーデータはこのモードでは表示できません。 + + + + + Try switching to Binary mode. + バイナリーモードに切り替えてみてください。 + + + + + Image files (%1) + 画像ファイル (%1) + + + + Binary files (*.bin) + バイナリーファイル (*.bin) + + + + Choose a file to import + インポートするファイルを選択 + + + + %1 Image + %1 画像 + + + + Choose a filename to export data + エクスポートデータのファイル名を選択 + + + + Invalid data for this mode + このモードでは不正なデータ + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + セルに不正なデータ %1 があります。理由: %2。本当にセルに適用しますか? + + + + + Type of data currently in cell: Text / Numeric + 現在セルにあるデータの種類: テキスト / 数値 + + + + + + %n character(s) + + %n 文字 + + + + + Type of data currently in cell: %1 Image + 現在セルにあるデータの種類: %1 画像 + + + + %1x%2 pixel(s) + %1x%2 ピクセル + + + + Type of data currently in cell: NULL + 現在セルにあるデータの種類: NULL + + + + + %n byte(s) + + %n バイト + + + + + Type of data currently in cell: Valid JSON + 現在セルにあるデータの種類: 正規なJSON + + + + Type of data currently in cell: Binary + 現在セルにあるデータの種類: バイナリー + + + + Couldn't save file: %1. + ファイルを保存できません: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + データは一時ファイルに保存され、デフォルトのアプリケーションで開かれました。すぐにファイルを編集でき、準備ができたら、保存した新しいデータをセルエディターに適用するか、変更をキャンセルできます。 + + + + EditIndexDialog + + + Edit Index Schema + インデックスのスキーマを編集 + + + + &Name + 名前(&N) + + + + &Table + テーブル(&T) + + + + &Unique + 一意(&U) + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + インデックスをテーブルの一部のみに制限する場合は、その部分を選択するWHERE節をここに指定します + + + + Partial inde&x clause + インデックス指定節(&X) + + + + Colu&mns + カラム(&M) + + + + Table column + テーブルのカラム + + + + Type + データ型 + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + 新しい式カラムをインデックスに加える。式カラムはカラム名でなくSQL式を持ちます。 + + + + Index column + インデックスカラム + + + + Order + 順番 + + + + Deleting the old index failed: +%1 + 古いインデックスの削除に失敗: +%1 + + + + Creating the index failed: +%1 + インデックスの作成に失敗: +%1 + + + + EditTableDialog + + + Edit table definition + テーブルの定義を編集 + + + + Table + テーブル + + + + Advanced + 高度な設定 + + + + Without Rowid + Rowidなし + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + テーブルをrowidなしで作成します。これを設定するには、主キーに設定された自動増加なしのINTEGERフィールドが必要です。 + + + + Fields + フィールド + + + + Database sche&ma + データベーススキーマ(&M) + + + + Add + 追加 + + + + Remove + 削除 + + + + Move to top + 先頭へ + + + + Move up + 上へ + + + + Move down + 下へ + + + + Move to bottom + 末尾へ + + + + + Name + 名前 + + + + + Type + データ型 + + + + NN + NN + + + + Not null + 非null + + + + PK + PK + + + + Primary key + 主キー + + + + AI + AI + + + + Autoincrement + 自動増加 + + + + U + U + + + + + + Unique + 一意 + + + + Default + デフォルト + + + + Default value + デフォルト値 + + + + + + Check + 検査 + + + + Check constraint + 検査制約 + + + + Collation + 照合順序 + + + + + + Foreign Key + 外部キー + + + + Constraints + 制約 + + + + Add constraint + 制約を追加 + + + + Remove constraint + 制約を削除 + + + + Columns + カラム + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">警告: </span>テーブル定義に構文解析できないものがあります。このテーブルを変更し保存すると問題が起きるかもしれません。.</p></body></html> + + + + + Primary Key + 主キー + + + + Add a primary key constraint + 主キー制約を追加 + + + + Add a foreign key constraint + 外部キー制約を追加 + + + + Add a unique constraint + 一意性制約を追加 + + + + Add a check constraint + 検査誓約を追加 + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + 主キーは各テーブルに一つだけ存在できます。替わりに既存の主キーを変更してください。 + + + + Error creating table. Message from database engine: +%1 + テーブル作成でエラー。データベースエンジンからのメッセージ: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + この名前は既に別のフィールドに使用されています。既存のフィールド名を変更するか、別の名前を付けてください。 + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + このカラムはテーブル %1 の外部キーに参照されているので、名前を変更できません。 + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + 少なくとも1つの行でこのフィールドにNULLが設定されています。そのため、非NULLを設定するのは不可能です。先にテーブルのデータを変更してください。 + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + 少なくとも1つの行でこのフィールドにINTEGERでない値が設定されています。そのため、自動増加を設定するのは不可能です。先にテーブルのデータを変更してください。 + + + + Column '%1' has duplicate data. + + カラム '%1' に重複データがあります。 + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + 一意にするのは不可能です。重複データを削除すると、一意にできるようになります。 + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + 本当にフィールド '%1' を削除しますか? +現在このフィールドにあるすべてのデータは失われます。 + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + rowidをなしにして、以下の条件に合うフィールドを追加してください。 + - 主キーにする + - 自動増加なし + + + + ExportDataDialog + + + Export data as CSV + データをCSVにエクスポート + + + + Tab&le(s) + テーブル(&L) + + + + Colu&mn names in first line + 先頭行をカラム名に(&M) + + + + Fie&ld separator + フィールド区切り(&L) + + + + , + , + + + + ; + ; + + + + Tab + タブ + + + + | + | + + + + + + Other + その他 + + + + &Quote character + 引用符文字(&Q) + + + + " + " + + + + ' + ' + + + + New line characters + 改行文字 + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + 整形 + + + + Export data as JSON + データをJSONにエクスポート + + + + exporting CSV + CSVにエクスポート + + + + + Could not open output file: %1 + 出力ファイルを開けません: %1 + + + + exporting JSON + JSONにエクスポート + + + + + Choose a filename to export data + エクスポートデータのファイル名を選択 + + + + Please select at least 1 table. + 少なくとも1つのテーブルを選択してください。 + + + + Choose a directory + ディレクトリーを選択 + + + + Export completed. + エクスポート完了。 + + + + ExportSqlDialog + + + Export SQL... + SQLにエクスポート... + + + + Tab&le(s) + テーブル(&L) + + + + Select All + すべて選択 + + + + Deselect All + すべて非選択 + + + + &Options + オプション(&O) + + + + Keep column names in INSERT INTO + INSERT INTO にカラム名を保持 + + + + Multiple rows (VALUES) per INSERT statement + INSERT文に複数行(VALUES) + + + + Export everything + すべてエクスポート + + + + Export schema only + スキーマのみをエクスポート + + + + Export data only + データのみをエクスポート + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + 古いスキーマを保持 (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + 古いスキーマを上書き (DROP TABLE した後に CREATE TABLE) + + + + Please select at least one table. + 少なくとも1つのテーブルを選択してください。 + + + + Choose a filename to export + エクスポートするファイル名を選択 + + + + Export completed. + エクスポート完了。 + + + + Export cancelled or failed. + エクスポートをキャンセルまたは失敗しました。 + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + 検索... + + + + Find and Replace... + 検索と置換... + + + + Print... + 印刷... + + + + ExtendedTableWidget + + + Use as Exact Filter + 抽出フィルターに使う + + + + Containing + 含む + + + + Not containing + 含まない + + + + Not equal to + 等しくない + + + + Greater than + より大きい + + + + Less than + 未満 + + + + Greater or equal + 以上 + + + + Less or equal + 以下 + + + + Between this and... + これとの間... + + + + Regular expression + 正規表現 + + + + Edit Conditional Formats... + 条件付き書式を編集... + + + + Set to NULL + NULLに設定 + + + + Copy + コピー + + + + Copy with Headers + ヘッダーを含めてコピー + + + + Copy as SQL + SQLとしてコピー + + + + Paste + 貼り付け + + + + Print... + 印刷... + + + + Use in Filter Expression + フィルター式を使用 + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + クリップボードの内容は選択された範囲より大きいです. +それでも挿入しますか? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>読み込まれていないデータがあります。<b>すべての行を選択する前に、すべてのデータを読み込みますか?</b><p><p>答えが <b>いいえ</b> ならば、データは読み込まれず、選択は実行されません。<br/>答えが <b>はい</b> ならば、時間がかかりますが、すべてのデータを読み込み、選択が実行されます。</p>警告: 大きいテーブルにあるすべてのデータの読み込みにはかなりの記憶領域を必要とします。 + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + 選択範囲にNULLを設定できません。カラム %1 には非NULL制約があります。 + + + + FileExtensionManager + + + File Extension Manager + ファイル拡張子管理 + + + + &Up + 上へ(&U) + + + + &Down + 下へ(&D) + + + + &Add + 追加(&A) + + + + &Remove + 削除(&R) + + + + + Description + 説明 + + + + Extensions + 拡張子 + + + + *.extension + *.拡張子 + + + + FilterLineEdit + + + Filter + フィルター + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + この入力欄は現在選択したテーブルの即席フィルターになります。 +デフォルトでは入力テキストが含まれる行が抽出されます。 +以下の演算子にも対応しています。: +% ワイルドカード +> より大きい +< 未満 +>= 以上 +<= 以下 += 等しい: 完全に一致 +<> 等しくない: 不一致 +x~y 範囲: xとyの間 +/regexp/ 正規表現に一致する値 + + + + Set Filter Expression + フィルター式を設定 + + + + What's This? + これは何? + + + + Is NULL + NULL + + + + Is not NULL + NULLでない + + + + Is empty + 空文字 + + + + Is not empty + 空文字でない + + + + Not containing... + 含まない... + + + + Equal to... + 等しい... + + + + Not equal to... + 等しくない... + + + + Greater than... + より大きい... + + + + Less than... + 未満... + + + + Greater or equal... + 以上... + + + + Less or equal... + 以下... + + + + In range... + 範囲内... + + + + Regular expression... + 正規表現... + + + + Clear All Conditional Formats + すべての条件付き書式を削除 + + + + Use for Conditional Format + 条件付き書式を使う + + + + Edit Conditional Formats... + 条件付き書式を編集... + + + + FindReplaceDialog + + + Find and Replace + 検索と置換 + + + + Fi&nd text: + 検索文字列(&N): + + + + Re&place with: + 置換文字列(&P): + + + + Match &exact case + 大/小文字を区別(&E) + + + + Match &only whole words + 単語一致のみ(&O) + + + + When enabled, the search continues from the other end when it reaches one end of the page + 有効にすると、ページの最後に到達すると先頭に戻って検索します + + + + &Wrap around + 折り返しあり(&W) + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + 設定するとカーソル位置から戻って検索します。設定しないとカーソル位置の先を検索します + + + + Search &backwards + 戻って検索(&B) + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>設定すると、現在選択した範囲のみを検索します。</p></body></html> + + + + &Selection only + 選択範囲のみ(&S) + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>設定すると、検索文字列はUNIX正規表現と解釈されます。以下を参照 <a href="https://ja.wikibooks.org/wiki/%E6%AD%A3%E8%A6%8F%E8%A1%A8%E7%8F%BE">Wikibooksの正規表現</a>。</p></body></html> + + + + Use regular e&xpressions + 正規表現を使用(&X) + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + カーソル位置から"戻って検索"で設定した方向にある、次に一致する文字列を検索します + + + + &Find Next + 次を検索(&F) + + + + F3 + + + + + &Replace + 置換(&R) + + + + Highlight all the occurrences of the text in the page + ページ内のすべての一致する文字列を強調 + + + + F&ind All + すべて検索(&I) + + + + Replace all the occurrences of the text in the page + ページ内のすべての一致する文字列を置換 + + + + Replace &All + すべて置換(&A) + + + + The searched text was not found + 検索文字列は見つかりませんでした + + + + The searched text was not found. + 検索文字列は見つかりませんでした。 + + + + The searched text was found one time. + 検索文字列が1つありました。 + + + + The searched text was found %1 times. + 検索文字列が%1つありました。 + + + + The searched text was replaced one time. + 検索文字列を1つ置き換えました。 + + + + The searched text was replaced %1 times. + 検索文字列を%1つ置き換えました。 + + + + ForeignKeyEditor + + + &Reset + リセット(&R) + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + 外部キー節 (ON UPDATE, ON DELETE など。) + + + + ImportCsvDialog + + + Import CSV file + CSVファイルをインポート + + + + Table na&me + テーブル名(&M) + + + + &Column names in first line + 先頭行をカラム名に(&C) + + + + Field &separator + フィールド区切り(&S) + + + + , + , + + + + ; + ; + + + + + Tab + タブ + + + + | + | + + + + Other + その他 + + + + &Quote character + 引用符文字(&Q) + + + + + Other (printable) + その他 (印刷可能) + + + + + Other (code) + その他 (文字コード) + + + + " + " + + + + ' + ' + + + + &Encoding + エンコード(&E) + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + フィールドをトリムする? + + + + Separate tables + テーブルを分ける + + + + Advanced + 高度な設定 + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + 空値をCSVファイルから既存のテーブルのデフォルト値があるカラムにインポートすると、デフォルト値が挿入されます。このオプションを有効にすると代わりに空値が挿入されます。 + + + + Ignore default &values + デフォルト値を無視(&V) + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + このオプションを有効にすると、デフォルト値がなく NOT NULL なカラムに空値をインポートしようとしたときに、インポートを中止します。 + + + + Fail on missing values + 値がない場合中止 + + + + Disable data type detection + データ型検出を無効 + + + + Disable the automatic data type detection when creating a new table. + 新しいテーブルを作るときに自動データ型検出を無効にします。 + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + 主キー、一意性制約、一意なインデックスがある既存のテーブルにインポートすると、競合が発生する可能性があります。このオプションで、競合の解決方法を選択できます。デフォルトではインポートを中止しロールバックしますが、無視を選択して競合した行をインポートしない、もしくは、テーブル内の既存の行を置き換えることもできます。 + + + + Abort import + インポートを中止 + + + + Ignore row + 行を無視 + + + + Replace existing row + 既存の行を置き換え + + + + Conflict strategy + 競合の解決方法 + + + + + Deselect All + すべて非選択 + + + + Match Similar + 類似に一致 + + + + Select All + すべて選択 + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + 名前が '%1' のテーブルは既に存在しています。既存のテーブルへのインポートはカラムの数が一致する場合のみ可能です。 + + + + There is already a table named '%1'. Do you want to import the data into it? + 名前が '%1' のテーブルは既に存在しています。データをこれにインポートしますか? + + + + Creating restore point failed: %1 + 復元ポイントの作成に失敗: %1 + + + + Creating the table failed: %1 + テーブルの作成に失敗: %1 + + + + importing CSV + CSVのインポート + + + + Inserting row failed: %1 + 行の挿入に失敗: %1 + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + ファイル '%1' のインポートに %2msかかりました。内 %3ms は行関数に費やされました。 + + + + MainWindow + + + DB Browser for SQLite + DB Browser for SQLite + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + データベース構造 + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + これは開いているデータベースの構造です。 +SQL文をオブジェクト行からドラッグしほかのアプリケーションや'DB Browser for SQLite'の他のインスタンスにドロップできます。 + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + データ閲覧 + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + プラグマ編集 + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + 警告: このプラグマは読み取り可能でなく、この値は推定です。プラグマを書き込んでも、SQLite 拡張などで上書きされるかもしれません。 + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + SQL実行 + + + + toolBar1 + ツールバー1 + + + + &File + ファイル(&F) + + + + &Import + インポート(&I) + + + + &Export + エクスポート(&E) + + + + &Edit + 編集(&E) + + + + &View + ビュー(&V) + + + + &Help + ヘルプ(&H) + + + + &Tools + ツール(&T) + + + + DB Toolbar + DBツールバー + + + + Edit Database &Cell + データベースのセルを編集(&C) + + + + SQL &Log + SQLログ(&L) + + + + Show S&QL submitted by + 表示するSQLの送信元は(&Q) + + + + User + ユーザー + + + + Application + アプリケーション + + + + Error Log + エラーログ + + + + This button clears the contents of the SQL logs + このボタンでSQLログの内容を消去します + + + + &Clear + 消去(&C) + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + このパネルでアプリケーションやあなたが発行した全てのSQLコマンドのログを調査できます + + + + &Plot + プロット(&P) + + + + DB Sche&ma + DBスキーマ(&M) + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + これは開いているデータベースの構造です。 +複数のオブジェクト名を名前カラムからドラッグしSQLエディターにドロップできます。ドロップした名前のプロパティはコンテキストメニューで調節できます。これはSQL文の作成に役立ちます。 +SQL文をスキーマカラムからSQLエディターや他のアプリケーションにドロップできます。 + + + + + &Remote + リモート(&R) + + + + + Project Toolbar + プロジェクトツールバー + + + + Extra DB toolbar + 追加DBツールバー + + + + + + Close the current database file + 現在のデータベースファイルを閉じます + + + + &New Database... + 新しいデータベース(&N)... + + + + + Create a new database file + 新しいデータベースファイルを作成します + + + + This option is used to create a new database file. + このオプションは新しいデータベースファイルを作成するために使います。 + + + + Ctrl+N + + + + + + &Open Database... + データベースを開く(&O)... + + + + + + + + Open an existing database file + 既存のデータベースファイルを開きます + + + + + + This option is used to open an existing database file. + このオプションは既存のデータベースファイルを開くために使います。 + + + + Ctrl+O + + + + + &Close Database + データベースを閉じる(&C) + + + + This button closes the connection to the currently open database file + このボタンで現在開いているデータベースファイルとの接続を閉じます + + + + Open SQL file(s) + SQLファイルを開く + + + + This button opens files containing SQL statements and loads them in new editor tabs + このボタンでSQL文を含むファイルを新しいエディタータブに開きます + + + + Execute line + 行を実行 + + + + Sa&ve Project + プロジェクトを保存(&V) + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + このボタンで開いているDBに関連付けられる全ての設定をSQLiteプロジェクトファイルに保存します + + + + This button lets you open a DB Browser for SQLite project file + このボタンでSQLiteプロジェクトファイルを開きます + + + + Ctrl+Shift+O + + + + + Find + 検索 + + + + Find or replace + 検索と置換 + + + + Print text from current SQL editor tab + 現在のSQLエディタータブのテキストを印刷します + + + + Print the structure of the opened database + 開いているデータベースの構造を印刷します + + + + Un/comment block of SQL code + SQLコードのブロックをコメント/非コメントに + + + + Un/comment block + ブロックをコメント/非コメント + + + + Comment or uncomment current line or selected block of code + 現在行かコードの選択されたブロックをコメント/非コメントにします + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + 選択された行か、選択がないならば現在行をコメント/非コメントにします。ブロック全体はその先頭行に従いコメント/非コメントされます。 + + + + Ctrl+/ + + + + + Stop SQL execution + SQLの実行を中止 + + + + Stop execution + 実行を中止 + + + + Stop the currently running SQL script + 現在実行中の SQL スクリプトを中止します + + + + &Save Project As... + プロジェクトに名前を付けて保存(&S)... + + + + + + Save the project in a file selected in a dialog + ダイアログで選択したファイルにプロジェクトを保存します + + + + Save A&ll + すべて保存(&L) + + + + + + Save DB file, project file and opened SQL files + DBファイル、プロジェクトファイル、開いているSQLファイルを保存します + + + + Ctrl+Shift+S + + + + + Browse Table + テーブルを閲覧 + + + + + Ctrl+W + + + + + &Revert Changes + 変更を取り消し(&R) + + + + + Revert database to last saved state + 最後に保存した状態へデータベースを戻します + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + このオプションは現在のデータベースファイルを最後に保存した状態に戻すために使います。最後の保存の後に行われたすべての変更は失われます。 + + + + &Write Changes + 変更を書き込み(&W) + + + + + Write changes to the database file + データベースファイルに変更を書き込みます + + + + This option is used to save changes to the database file. + このオプションはデータベースファイルに変更を保存するために使います。 + + + + Ctrl+S + + + + + Compact &Database... + データベースを圧縮(&D)... + + + + Compact the database file, removing space wasted by deleted records + 削除されたレコードが残っているスペースを取り除き、データベースファイルを圧縮します + + + + + Compact the database file, removing space wasted by deleted records. + 削除されたレコードが残っているスペースを取り除き、データベースファイルを圧縮します。 + + + + E&xit + 終了(&X) + + + + Ctrl+Q + + + + + &Database from SQL file... + SQLファイルからデータベースへ(&D)... + + + + Import data from an .sql dump text file into a new or existing database. + SQLダンプテキストファイルからデータを、新しいもしくは既存のデータベースにインポートします。 + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + このオプションでSQLダンプテキストファイルからデータを、新しいもしくは既存のデータベースにインポートできます。SQLダンプファイルは、MySQLやPostgreSQLなど、ほとんどのデータベースエンジンで作成できます。 + + + + &Table from CSV file... + CSVファイルからテーブルへ(&T)... + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + カンマ区切りのテキストファイルのデータをデータベースのテーブルにインポートするウィザードを開きます。 + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + カンマ区切りのテキストファイルのデータをデータベースのテーブルにインポートするウィザードを開きます。CSVファイルはほとんどのデータベースや表計算アプリケーションで作成できます。 + + + + &Database to SQL file... + データベースをSQLファイルへ(&D)... + + + + Export a database to a .sql dump text file. + データベースを .sql ダンプテキストファイルにエクスポートします。 + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + このオプションでデータベースを .sql ダンプテキストファイルにエクスポートできます。SQLダンプファイルはデータベースの再作成に必要なすべてのデータを含み、MySQLやPostgreSQLなど、ほとんどのデータベースエンジンで利用できます。 + + + + &Table(s) as CSV file... + テーブルをCSVファイルへ(&T)... + + + + Export a database table as a comma separated text file. + データベースのテーブルをカンマ区切りのテキストファイルにエクスポートします。 + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + データベースのテーブルをカンマ区切りのテキストファイルにエクスポートします。他のデータベースや表計算アプリケーションでインポートできます。 + + + + &Create Table... + テーブルを作成(&C)... + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + データベースに新しいテーブルの名前とフィールドを定義できる、テーブル作成ウイザードを開きます + + + + &Delete Table... + テーブルを削除(&D)... + + + + + Delete Table + テーブルを削除 + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + 削除するデータベーステーブルを選択できる、テーブル削除ウィザードをひらきます。 + + + + &Modify Table... + テーブルを変更(&M)... + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + 既存のテーブル名を変更できる、テーブル変更ウィザードを開きます。テーブルのフィールドを追加削除したり、フィールド名やデータ型の変更もできます。 + + + + Create &Index... + インデックスの作成(&I)... + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + 既存のデータベーステーブルに新しいインデックスを定義できる、インデックスウィザードを開きます。 + + + + &Preferences... + 設定(&P)... + + + + + Open the preferences window. + 設定ウィンドウを開きます。 + + + + &DB Toolbar + DBツールバー(&D) + + + + Shows or hides the Database toolbar. + データベースツールバーを表示/非表示します。 + + + + Ctrl+T + + + + + W&hat's This? + これは何(&H)? + + + + Ctrl+F4 + + + + + Shift+F1 + + + + + &About + DB Browser for SQLite について(&A) + + + + &Recently opened + 最近開いたファイル(&R) + + + + Open &tab + タブを開く(&T) + + + + This button opens a new tab for the SQL editor + このボタンでSQLエディターの新しいタブを開きます + + + + &Execute SQL + SQLを実行(&E) + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + このボタンで現在選択しているSQL文を実行します。テキストが選択されていない場合、すべてのSQL文が実行されます。 + + + + + + Save SQL file + SQLファイルを保存 + + + + &Load Extension... + 拡張を読み込み(&L)... + + + + + Execute current line + 現在行を実行 + + + + This button executes the SQL statement present in the current editor line + このボタンは現在エディターの行にあるSQL文を実行します + + + + Shift+F5 + + + + + Export as CSV file + CSVファイルにエクスポート + + + + Export table as comma separated values file + テーブルをカンマ区切りのファイルにエクスポートします + + + + &Wiki + ウィキ(&W) + + + + F1 + + + + + Bug &Report... + バグレポート(&R)... + + + + Feature Re&quest... + 機能を要求(&Q)... + + + + Web&site + ウェブサイト(&S) + + + + &Donate on Patreon... + Patreonで寄付(&D)... + + + + + Save the current session to a file + 現在のセッションをファイルに保存します + + + + Open &Project... + プロジェクトを開く(&P)... + + + + + Load a working session from a file + 作業中のセッションをファイルから読み込みます + + + + &Attach Database... + データベースに接続(&A)... + + + + + Add another database file to the current database connection + 他のデータベースファイルを現在のデータベース接続に加えます + + + + This button lets you add another database file to the current database connection + このボタンで他のデータベースファイルを現在のデータベース接続に加えます + + + + &Set Encryption... + 暗号化を設定(&S)... + + + + + Save SQL file as + 名前を付けてSQLファイルを保存 + + + + This button saves the content of the current SQL editor tab to a file + このボタンは現在のSQLエディタータブの内容をファイルに保存します + + + + &Browse Table + テーブルを閲覧(&B) + + + + Copy Create statement + CREATE文をコピー + + + + Copy the CREATE statement of the item to the clipboard + このアイテムのCREATE文をクリップボードにコピーします + + + + SQLCipher &FAQ + SQLCipher FAQ(&F) + + + + Opens the SQLCipher FAQ in a browser window + SQLCipher の FAQ をブラウザで開きます + + + + Table(&s) to JSON... + テーブルをJSONへ(&S)... + + + + Export one or more table(s) to a JSON file + 1つ以上のテーブルをJSONファイルにエクスポートします + + + + Open Data&base Read Only... + データベースを読み取り専用で開く(&B)... + + + + Open an existing database file in read only mode + 既存のデータベースファイルを読み取り専用モードで開きます + + + + Save results + 結果を保存 + + + + Save the results view + 結果のビューを保存 + + + + This button lets you save the results of the last executed query + このボタンで最後に実行したクエリーの結果を保存します + + + + + Find text in SQL editor + SQLエディターの文字列を検索 + + + + This button opens the search bar of the editor + このボタンはエディターの検索バーを開きます + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + SQLエディターの文字列を検索/置換します + + + + This button opens the find/replace dialog for the current editor tab + このボタンは現在のエディタータブの検索/置換ダイアログを開きます + + + + Ctrl+H + + + + + Export to &CSV + CSVにエクスポート(&C) + + + + Save as &view + ビューとして保存(&V) + + + + Save as view + ビューとして保存 + + + + Shows or hides the Project toolbar. + プロジェクトツールバーを表示/非表示します。 + + + + Extra DB Toolbar + 追加DBツールバー + + + + New In-&Memory Database + 新しいインメモリーデータベース(&M) + + + + Drag && Drop Qualified Names + 正規化名前をドラッグ&&ドロップ + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + オブジェクトをドラッグしエディターにドロップしたときに、正規化名称(例 "Table"."Field")を使います + + + + Drag && Drop Enquoted Names + クォートされた名前をドラッグ&&ドロップ + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + オブジェクトをドラッグしエディターにドロップしたときに、エスケープされた名前(例 "Table1")を使います + + + + &Integrity Check + 整合性検査(&I) + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + 開いているデータベースの整合性検査プラグマを実行し、結果をSQL実行タブに出力します。このプラグマはすべてのデータベースの整合性検査を行います。 + + + + &Foreign-Key Check + 外部キー検査(&F) + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + 開いているデータベースの外部キー検査プラグマを実行し、結果をSQL実行タブに出力します + + + + &Quick Integrity Check + 即時整合性検査(&Q) + + + + Run a quick integrity check over the open DB + 開いているDBの高速整合性検査を実行します + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + 開いているデータベースの高速整合性検査プラグマを実行し、結果をSQL実行タブに出力します。このコマンドは(通常の)整合性検査PRAGMAの大部分を行いますが、より高速に動作します。 + + + + &Optimize + 最適化(&O) + + + + Attempt to optimize the database + データベースの最適化を試みます + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + 開いているデータベースの最適化プラグマを実行します。このプラグマは将来のクエリーの性能を改善させます。 + + + + + Print + 印刷 + + + + Open a dialog for printing the text in the current SQL editor tab + 現在のSQLエディタータブの文字列を印刷するダイアログを開きます + + + + Open a dialog for printing the structure of the opened database + 開いているデータベースの構造を印刷するダイアログを開きます + + + + + Ctrl+P + + + + + Execute all/selected SQL + すべて/選択したSQLを実行 + + + + Ctrl+Return + Ctrl+Return + + + + Ctrl+L + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Ctrl+E + + + + + Window Layout + ウィンドウレイアウト + + + + Reset Window Layout + ウィンドウレイアウトをリセット + + + + Alt+0 + + + + + Simplify Window Layout + ウィンドウレイアウトをシンプルに + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + ウィンドウを下にドッキング + + + + Dock Windows at Left Side + ウィンドウを左にドッキング + + + + Dock Windows at Top + ウィンドウを上にドッキング + + + + The database is currenctly busy. + データベースは現在ビジー状態です。 + + + + Click here to interrupt the currently running query. + ここをクリックして、現在実行中のクエリーを中断します。 + + + + Encrypted + 暗号化 + + + + Database is encrypted using SQLCipher + データベースはSQLCipherで暗号化されています + + + + Read only + 読み取り専用 + + + + Database file is read only. Editing the database is disabled. + データベースは読み取り専用です。データベースの編集はできません。 + + + + Database encoding + データベースのエンコード + + + + + Choose a database file + データベースファイルを選択 + + + + Could not open database file. +Reason: %1 + データベースファイルを開けません。 +理由: %1 + + + + + + Choose a filename to save under + セーブするファイル名を下から選択 + + + + In-Memory database + インメモリーデータベース + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + まだSQL文を実行中です。今、データベースを閉じると、実行が中止され、データベースに一貫性がない状態を残すかもしれません。本当にデータベースを閉じますか? + + + + Edit View %1 + ビュー %1 を編集 + + + + Edit Trigger %1 + トリガー %1 を編集 + + + + Opened '%1' in read-only mode from recent file list + 最近使ったファイルリストから読み取り専用モードで '%1' を開きました + + + + Opened '%1' from recent file list + 最近使ったファイルリストから '%1' を開きました + + + + Could not find resource file: %1 + リソースファイルが見つかりません: %1 + + + + Could not open project file for writing. +Reason: %1 + 書き込むプロジェクトファイルを開くことができません。 +理由: %1 + + + + Project saved to file '%1' + プロジェクトをファイル '%1' に保存しました + + + + This action will open a new SQL tab with the following statements for you to edit and run: + この操作はこの文の編集と実行ができる新しいSQLタブを開きます: + + + + Busy (%1) + ビジー (%1) + + + + Rename Tab + タブ名を変更 + + + + Duplicate Tab + タブを複製 + + + + Close Tab + タブを閉じる + + + + Opening '%1'... + '%1' を開いています... + + + + There was an error opening '%1'... + '%1' を開くときにエラーがありました... + + + + Value is not a valid URL or filename: %1 + 値は正規のURLもしくはファイル名でありません: %1 + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + 本当にテーブル '%1' を削除しますか? +テーブルに関連するすべてのデータは失われます。 + + + + Are you sure you want to delete the view '%1'? + 本当にビュー '%1' を削除しますか? + + + + Are you sure you want to delete the trigger '%1'? + 本当にトリガー '%1' を削除しますか? + + + + Are you sure you want to delete the index '%1'? + 本当にインデックス '%1' を削除しますか? + + + + Error: could not delete the table. + エラー: テーブルを削除できませんでした。 + + + + Error: could not delete the view. + エラー: ビューを削除できませんでした。 + + + + Error: could not delete the trigger. + エラー: トリガーを削除できませんでした。 + + + + Error: could not delete the index. + エラー: インデックスを削除できませんでした。 + + + + Message from database engine: +%1 + データベースエンジンからのメッセージ。 +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + テーブルの編集には保留中のすべての変更を今保存する必要があります。 +本当にデータベースを保存しますか? + + + + Error checking foreign keys after table modification. The changes will be reverted. + デーブル変更後の外部キー検査でエラー。変更は元に戻ります。 + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + このテーブルは外部キー検査に合格しませんでした。<br/>'ツール | 外部キー検査' を実行し、報告された問題を解決します。 + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + SQL文は既に実行中です。替わりに現在の文を実行するため、中止しますか? 注意: これはデータベースに一貫性がない状態を残すかもしれません。 + + + + -- EXECUTING SELECTION IN '%1' +-- + -- '%1 内の選択部分を実行中' +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- '%1 内の行を実行中' +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- '%1 内をすべて実行中' +-- + + + + Result: %1 + 結果: %1 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + PRAGMA 値の設定やバキュームは現在のトランザクションをコミットします。 +本当に行いますか? + + + + %1 rows returned in %2ms + %1 行が %2ms で返されました + + + + + At line %1: + %1 行目: + + + + Result: %2 + 結果: %2 + + + + Choose text files + テキストファイルを選択 + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + データベースの保存中にエラー。これは全ての変更がデータベースに保存されていなかったためです。まず、以下のエラーを解決してください。 + +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + 本当にデータベースファイル '%1' への最後の保存後に行われたすべての変更を元に戻しますか? + + + + Choose a file to import + インポートするファイルを選択 + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (読み取り専用) + + + + Open Database or Project + データベース化プロジェクトを開く + + + + Attach Database... + データベースに接続... + + + + Import CSV file(s)... + CSVファイルをインポート... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + ドロップされたファイルに対して行う操作を選択してください。 <br/>注意: 'インポート' のみが複数ファイルを処理できます。 + + + + + Do you want to save the changes made to SQL tabs in a new project file? + 新しいプロジェクトファイルにSQLタブで行われた変更を保存しますか? + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + プロジェクトファイル '%1' にSQLタブで行われた変更を保存しますか? + + + + Do you want to save the changes made to the SQL file %1? + 変更をSQLファイル %1 に保存しますか? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + このタブの文はまだ実行中です。タブを閉じると実行が中止されます。これはデータベースに一貫性がない状態を残すかもしれません。本当にタブを閉じますか? + + + + Text files(*.sql *.txt);;All files(*) + テキストファイル(*.sql *.txt);;すべてのファイル(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + インポートしたデータを保持する新しいデータベースを作成しますか +いいえを選択すると、SQLファイルからのデータを現在のデータベースにインポートしようとします。 + + + + Do you want to save the changes made to the project file '%1'? + プロジェクトファイル '%1' に変更を保存しますか? + + + + Execution finished with errors. + エラーがありましたが、実行が終了しました。 + + + + Execution finished without errors. + エラーなしで実行が終了しました。 + + + + File %1 already exists. Please choose a different name. + ファイル %1 は既に存在しています。違う名前を選んでください。 + + + + Error importing data: %1 + データのインポートでエラー: %1 + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + インポートが終了しました。いくつかの外部キー制約に違反があります。保存前に修正してください。 + + + + Import completed. + インポート完了。 + + + + Delete View + ビューを削除 + + + + Modify View + ビューを変更 + + + + Delete Trigger + トリガーを削除 + + + + Modify Trigger + トリガーを変更 + + + + Delete Index + インデックスを削除 + + + + Modify Index + インデックスを変更 + + + + Modify Table + テーブルを変更 + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + PRAGMA 値の設定は現在のトランザクションをコミットします。 +本当に行いますか? + + + + Select SQL file to open + 開くSQLファイルを選択 + + + + Select file name + ファイル名を選択 + + + + Select extension file + 拡張ファイルを選択 + + + + Extension successfully loaded. + 拡張の読み込みに成功しました。 + + + + Error loading extension: %1 + 拡張の読み込みでエラー: %1 + + + + + Don't show again + 二度と表示しない + + + + New version available. + 新しいバージョンがあります。 + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + 新しいバージョンの DB Browser for SQLite (%1.%2.%3)があります。<br/><br/><a href='%4'>%4</a>からダウンロードしてください。 + + + + Choose a project file to open + 開くプロジェクトファイルを選択 + + + + DB Browser for SQLite project file (*.sqbpro) + DB Browser for SQLite プロジェクトファイル (*.sqbpro) + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + このプロジェクトファイルは DB Browser for SQLite version 3.10 以下のバージョンで使われた、古いファイルフォーマットを使用しています。このファイルフォーマットの読み込みはいまだ完全にサポートされていますが、将来古いフォーマットのサポートはなくなるため、すべてのプロジェクトファイルを新しいフォーマットに変換することをおすすめします。ファイルを変換するには単純にファイルを開き再保存します。 + + + + Collation needed! Proceed? + 照合順序が必要です!続行しますか? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + このデータベースにあるテーブルは特別な照合順序関数 '%1' が必要ですが、このアプリケーションは更なる知識なしでは提供できません。 +続行すると、データベースに何か悪いことがあるかもしれません。 +バックアップを作成してください! + + + + creating collation + 照合順序の作成中 + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + SQLタブに新しい名前を設定してください。'&&'の文字を使うと、その次の文字をキーボードショートカットにできます。 + + + + Please specify the view name + ビューの名前を指定してください + + + + There is already an object with that name. Please choose a different name. + その名前のオブジェクトは既に存在します。別の名前を選んでください。 + + + + View successfully created. + ビューの作成に成功しました。 + + + + Error creating view: %1 + ビューの作成でエラー: %1 + + + + This action will open a new SQL tab for running: + この操作は実行のため新しいSQLタブを開きます: + + + + Press Help for opening the corresponding SQLite reference page. + ヘルプを押すと、対応する SQLite のリファレンスページを開きます。 + + + + NullLineEdit + + + Set to NULL + NULL に設定 + + + + Alt+Del + Alt+Del + + + + PlotDock + + + Plot + プロット + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>このペインは現在閲覧中のテーブルか直前に実行したクエリーのカラムの一覧を表示します。下のプロットペインでXもしくはY軸として使用されるカラムを選択できます。表は結果のプロットに使用できる軸の種類を表示します。Y軸には数値のカラムのみ選択できますが、X軸にはこれらが選択できます:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">日時</span>: &quot;yyyy-MM-dd hh:mm:ss&quot; もしくは &quot;yyyy-MM-ddThh:mm:ss&quot; 形式の文字列</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">日付</span>: &quot;yyyy-MM-dd&quot; 形式の文字列</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">時刻</span>: &quot;hh:mm:ss&quot; 形式の文字列</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">ラベル</span>: その他の形式の文字列。これをX軸に選択すると、カラムの値を棒グラフのラベルとして表示します</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">数値</span>: INTEGER か REAL の値</li></ul><p>Yのセルをダブルクリックすると、グラフに使用する色を変更できます。</p></body></html> + + + + Columns + カラム + + + + X + X + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + 軸のデータ型 + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + 上でXとY軸を選択すると、ここにグラフが描画されます。 + +点をクリックすると、点と該当するテーブルの値が選択できます。Ctrl+クリックで点を範囲選択できます。 + +マウスホイールでズーム、ドラッグで軸の範囲を変更できます。 + +軸か軸のラベルを選択すると、ズームやドラッグの方向を限定できます。 + + + + Line type: + 線の種類: + + + + + None + なし + + + + Line + 直線 + + + + StepLeft + 階段(左値) + + + + StepRight + 階段(右値) + + + + StepCenter + 階段(最近値) + + + + Impulse + インパルス + + + + Point shape: + 点の形状: + + + + Cross + × + + + + Plus + + + + + Circle + + + + + Disc + + + + + Square + + + + + Diamond + + + + + Star + + + + + Triangle + + + + + TriangleInverted + + + + + CrossSquare + ×+□ + + + + PlusSquare + ++□ + + + + CrossCircle + ×+○ + + + + PlusCircle + ++○ + + + + Peace + 静謐 + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>現在のプロットを保存...</p><p>ファイルフォーマットは拡張子 (png, jpg, pdf, bmp) から選択されます</p></body></html> + + + + Save current plot... + 現在のプロットを保存... + + + + + Load all data and redraw plot + すべてのデータを読み込み再描画 + + + + Copy + コピー + + + + Print... + 印刷... + + + + Show legend + 凡例を表示 + + + + Stacked bars + 値を積み重ねる + + + + Date/Time + 日時 + + + + Date + 日付 + + + + Time + 時刻 + + + + + Numeric + 数値 + + + + Label + ラベル + + + + Invalid + 不正 + + + + + + Row # + 行 # + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + すべてのデータを読み込み再描画します。 +警告: 部分的なフェッチ機構により、まだテーブルからすべてのデータがフェッチされているわけではありません。 + + + + Choose an axis color + 軸の色を選択 + + + + Choose a filename to save under + 以下を保存するファイル名を選択 + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;すべてのファイル(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + このプロットには未ソートなデータがあります。選択した線の種類はX軸でソートされたデータのみに適用できます。テーブルやクエリーをX軸でソートするか、未ソートのデータでも使用できる、 なし や 直線 形式を選択してください。 + + + + Loading all remaining data for this table took %1ms. + このテーブルの残っているデータすべての読み込みに %1ms かかりました。 + + + + PreferencesDialog + + + Preferences + 設定 + + + + &General + 全般(&G) + + + + Default &location + デフォルトのフォルダー(&L) + + + + Remember last location + 最後に使用したディレクトリーを記憶 + + + + Always use this location + 常にこのディレクトリーを使用 + + + + Remember last location for session only + セッションだけで最後に使用したディレクトリーを記憶 + + + + + + ... + ... + + + + Lan&guage + 言語(&L) + + + + Toolbar style + ツールバー形式 + + + + + + + + Only display the icon + アイコンのみ表示 + + + + + + + + Only display the text + 文字のみ表示 + + + + + + + + The text appears beside the icon + アイコンの横に文字を表示 + + + + + + + + The text appears under the icon + アイコンの下に文字を表示 + + + + + + + + Follow the style + スタイルに従う + + + + Show remote options + リモートオプションを表示する + + + + + + + + + + + + enabled + 有効 + + + + Automatic &updates + 自動アップデート(&U) + + + + DB file extensions + DBファイル拡張子 + + + + Manage + 管理 + + + + Main Window + メインウィンドウ + + + + Database Structure + データベース構造 + + + + Browse Data + データ閲覧 + + + + Execute SQL + SQL実行 + + + + Edit Database Cell + データベースセル編集 + + + + When this value is changed, all the other color preferences are also set to matching colors. + この値が変更されると、他の色設定すべても一致する色に設定されます。 + + + + Follow the desktop style + デスクトップスタイルに従う + + + + Dark style + ダークスタイル + + + + Application style + アプリケーションスタイル + + + + This sets the font size for all UI elements which do not have their own font size option. + これは独自のフォントサイズオプションを持たない全てのUI要素のフォントサイズを設定します。 + + + + Font size + フォントサイズ + + + + &Database + データベース(&D) + + + + Database &encoding + データベースのエンコード(&E) + + + + Open databases with foreign keys enabled. + 外部キーを有効にしてデータベースを開く。 + + + + &Foreign keys + 外部キー(&F) + + + + Remove line breaks in schema &view + スキーマビューから改行を取り除く(&V) + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + 有効にすると、DB構造タブのカラムスキーマ、ドックや印刷された出力にある改行が取り除かれます。 + + + + Prefetch block si&ze + 先読みブロックサイズ(&Z) + + + + SQ&L to execute after opening database + データベースを開いた後に実行するSQL(&L) + + + + Default field type + デフォルトのフィールドデータ形式 + + + + Database structure font size + データベース構造のフォントサイズ + + + + Data &Browser + データ閲覧(&B) + + + + Font + フォント + + + + &Font + フォント(&F) + + + + Font si&ze + フォントサイズ(&Z) + + + + Content + 内容 + + + + Symbol limit in cell + セル内のシンボル上限 + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + これはいくつかの計算負荷の高い機能を有効にできる項目の最大数です。 +カラム内の現在値に基づいた値補完を有効にする、テーブル内の行の最大数。 +選択内の合計と平均を計算するインデックスの最大数。 +0に設定するとこの機能を無効にできます。 + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + これは現在の値を基にしたカラムの値補完を有効にしたときのテーブル内の行数の最大値です。 + + + + Field display + フィールド表示 + + + + Displayed &text + 表示されたテキスト(&T) + + + + Binary + バイナリー + + + + NULL + NULL + + + + Regular + 通常 + + + + + + + + + Click to set this color + クリックでこの色を設定 + + + + Text color + 文字色 + + + + Background color + 背景色 + + + + Preview only (N/A) + 閲覧のみ(設定不可) + + + + Filters + フィルター + + + + Escape character + エスケープ文字 + + + + Delay time (&ms) + 遅延時間 (ms) (&M) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + 新しいフィルターの値が適用される前の待機時間を設定します。0にすると待機しません。 + + + + &SQL + SQL(&S) + + + + Settings name + 設定名 + + + + Context + 内容 + + + + Colour + + + + + Bold + 太字 + + + + Italic + イタリック + + + + Underline + 下線 + + + + Keyword + キーワード + + + + Function + 関数 + + + + Table + テーブル + + + + Comment + コメント + + + + Identifier + 識別子 + + + + String + 文字列 + + + + Current line + 現在行 + + + + Background + 背景 + + + + Foreground + 前景 + + + + SQL editor &font + SQLエディターフォント(&F) + + + + SQL &editor font size + SQLエディターフォントサイズ(&E) + + + + SQL &results font size + SQL結果フォントサイズ(&R) + + + + Tab size + タブサイズ + + + + &Wrap lines + ワードラップ(&W) + + + + Never + しない + + + + At word boundaries + 単語で + + + + At character boundaries + 文字で + + + + At whitespace boundaries + 空白で + + + + &Quotes for identifiers + 識別子のクォート(&Q) + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + アプリケーションがSQLコード内で識別子をクォートする仕組みを選択します。 + + + + "Double quotes" - Standard SQL (recommended) + "ダブルクォート" - 一般的な SQL (推奨) + + + + `Grave accents` - Traditional MySQL quotes + `グレイヴアクセント` - 伝統的な MySQL のクォート + + + + [Square brackets] - Traditional MS SQL Server quotes + [角括弧] - 伝統的な MS SQL Server のクォート + + + + Code co&mpletion + コード補完(&M) + + + + Keywords in &UPPER CASE + キーワードを大文字に(&U) + + + + When set, the SQL keywords are completed in UPPER CASE letters. + 設定すると、SQLキーワードを大文字に補完します。 + + + + Error indicators + エラー指摘 + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + 設定すると、最後の実行でエラーが起きたSQLコードの行が強調され、結果フレームがバックグラウンドでエラーを指摘します + + + + Hori&zontal tiling + 横に並べる(&Z) + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + 有効にすると、重ねる代わりに、SQLコードエディターと結果タブビューが並んで表示されます。 + + + + Close button on tabs + タブ上の閉じるボタン + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + 可能ならば、SQLエディタータブに閉じるボタンを表示します。どのような場合でも、コンテキストメニューやキーボートショートカットを使って閉じることはできます。 + + + + &Extensions + 拡張(&E) + + + + Select extensions to load for every database: + すべてのデータベースで読み込む拡張を選択: + + + + Add extension + 拡張を追加 + + + + Remove extension + 拡張を削除 + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>REGEXP演算子がサポートされている間、SQLite は正規表現を実装しませんが、実行中のアプリケーションをコールバックします。DB Browser for SQLite はこれを実装しているので、REGEXP をすぐに使えます。しかし、これには複数の実装があり、アプリケーションの実装を無効にし拡張を使って他の実装を読み込むことが自由にできます。アプリケーションの再起動が必要です。</p></body></html> + + + + Disable Regular Expression extension + 正規表現拡張を無効 + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite は共有ライブラリファイルから拡張を読み込むSQL関数を提供します。SQLコードから<span style=" font-style:italic;">load_extension()</span>関数を使いたいならば、.これを有効にします。</p><p>セキュリティー上の理由から、拡張の読み込みはデフォルトで無効になっており、使用するにはこの設定を有効にする必要があります。このオプションが無効でも、GUIを通じて拡張を読み込むことは常にできます。</p></body></html> + + + + Allow loading extensions from SQL code + SQLコードで拡張の読み込みを許可する + + + + Remote + リモート + + + + CA certificates + 認証局証明書 + + + + Proxy + プロキシ + + + + Configure + 設定 + + + + + Subject CN + 対象CN + + + + Common Name + Common Name + + + + Subject O + 対象O + + + + Organization + Organization + + + + + Valid from + 証明開始 + + + + + Valid to + 証明終了 + + + + + Serial number + シリアル番号 + + + + Your certificates + あなたの証明書 + + + + Threshold for completion and calculation on selection + 補完と選択範囲内の計算の閾値 + + + + Show images in cell + セル内に画像を表示 + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + このオプションを有効にすると、セル内の画像データを含む BLOB のプレビューができます。しかし、これはデータ閲覧の性能に影響します。 + + + + File + ファイル + + + + Subject Common Name + 対象Common Name + + + + Issuer CN + 発行者CN + + + + Issuer Common Name + 発行者Common Name + + + + Clone databases into + ここにデータベースを複製 + + + + + Choose a directory + ディレクトリーを選択 + + + + The language will change after you restart the application. + アプリケーションを再起動すると、言語が変更されます。 + + + + Select extension file + 拡張ファイルを選択 + + + + Extensions(*.so *.dylib *.dll);;All files(*) + 拡張(*.so *.dylib *.dll);;すべてのファイル(*) + + + + Import certificate file + 証明書ファイルをインポート + + + + No certificates found in this file. + このファイルに証明書が見つかりません。 + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + 本当にこの証明書を削除しますか? すべての証明書データはこのアプリケーション設定から削除されます! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + 本当に保存された設定を削除しますか? +すべての設定は失われ、デフォルト値が使用されます。 + + + + ProxyDialog + + + Proxy Configuration + プロキシ設定 + + + + Pro&xy Type + プロキシタイプ(&X) + + + + Host Na&me + ホスト名(&M) + + + + Port + ポート + + + + Authentication Re&quired + 認証が必要(&Q) + + + + &User Name + ユーザー名(&U) + + + + Password + パスワード + + + + None + なし + + + + System settings + システム設定 + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + All files (*) + すべてのファイル (*) + + + + Error importing data + データのインポートでエラー + + + + from record number %1 + レコード番号 %1 で + + + + . +%1 + . +%1 + + + + Importing CSV file... + CSVファイルをインポート中... + + + + Cancel + キャンセル + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + SQLite データベースファイル (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + + + + + Right + + + + + Center + 中央 + + + + Justify + 均等 + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + SQLite データベースファイル (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + DB Browser for SQLite プロジェクトファイル (*.sqbpro) + + + + SQL Files (*.sql) + SQL ファイル (*.sql) + + + + All Files (*) + すべてのファイル (*) + + + + Text Files (*.txt) + テキストファイル (*.txt) + + + + Comma-Separated Values Files (*.csv) + カンマ区切りファイル (*.csv) + + + + Tab-Separated Values Files (*.tsv) + タブ区切りファイル (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + 区切りファイル (*.dsv) + + + + Concordance DAT files (*.dat) + 用語索引 DAT ファイル (*.dat) + + + + JSON Files (*.json *.js) + JSONファイル (*.json *.js) + + + + XML Files (*.xml) + XMLファイル (*.xml) + + + + Binary Files (*.bin *.dat) + バイナリーファイル (*.bin *.dat) + + + + SVG Files (*.svg) + SVG ファイル (*.svg) + + + + Hex Dump Files (*.dat *.bin) + 十六進ダンプファイル (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + 拡張 (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + コミットID + + + + Message + メッセージ + + + + Date + 日付 + + + + Author + 作者 + + + + Size + サイズ + + + + Authored and committed by %1 + %1 が作成・コミットしました + + + + Authored by %1, committed by %2 + %1 が作成, %2 がコミットしました + + + + RemoteDatabase + + + Error opening local databases list. +%1 + ローカルデータベースの一覧を開くときにエラー。 +%1 + + + + Error creating local databases list. +%1 + ローカルデータベースの一覧の作成でエラー。 +%1 + + + + RemoteDock + + + Remote + リモート + + + + Identity + アイデンティティー + + + + Push currently opened database to server + 現在開いているデータベースをサーバーにプッシュします + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>このペインでは、dbhub.io ウェブサイトのリモートデータベースを DB Browser for SQLite に追加します。最初にアイデンティティーが必要です。:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">dbhub.io ウェブサイトにログインします。(GitHubかあなたが望む認証情報を使います)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">ボタンをクリックし&quotクライアント証明書を作成&quotします(これがあなたのアイデンティティです)。 証明書ファイルが与えられます(あなたのローカルディスクに保存します)。</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> +DB Browser for SQLite 設定のリモートタブに行き、新しい証明書を DB Browsser for SQLite に追加するボタンをクリックし、ダウンロードした証明書ファイルを選択します。</li></ol><p>これで、リモートパネルにあなたのアイデンティティが表示され、リモートデータベースが追加できます。</p></body></html> + + + + Local + ローカル + + + + Current Database + 現在のデータベース + + + + Clone + クローン + + + + User + ユーザー + + + + Database + データベース + + + + Branch + ブランチ + + + + Commits + コミット + + + + Commits for + これにコミット + + + + Delete Database + データベースを削除 + + + + Delete the local clone of this database + このデータベースのローカルクローンを削除 + + + + Open in Web Browser + ウェブブラウザーで開く + + + + Open the web page for the current database in your browser + ブラウザで現在のデータベースのウェブページを開く + + + + Clone from Link + リンクからクローン + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + データベースのウェブページで提供されるURLを使って、ローカル編集用のリモートデータベースをダウンロードするには、これを使います。 + + + + Refresh + 更新 + + + + Reload all data and update the views + 全てのデータを再読み込みしビューを更新する + + + + F5 + + + + + Clone Database + データベースをクローン + + + + Open Database + データベースを開く + + + + Open the local copy of this database + このデータベースのローカルコピーを開く + + + + Check out Commit + コミットをチェックアウト + + + + Download and open this specific commit + この特定のコミットをダウンロードし開く + + + + Check out Latest Commit + 最新のコミットをチェックアウト + + + + Check out the latest commit of the current branch + 現在のブランチの最新のコミットをチェックアウト + + + + Save Revision to File + リヴィジョンをファイルに保存 + + + + Saves the selected revision of the database to another file + データベースの選択したリヴィジョンをほかのファイルに保存 + + + + Upload Database + データベースをアップロード + + + + Upload this database as a new commit + このデータベースを新しいコミットとしてアップロード + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>あなたは現在組み込みの読み込み専用のアイデンティティーを使用しています。あなたのデータベースをアップロードするには、あなたの DBHub.io アカウントを設定し使う必要があります。</p><p>DBHub.io のアカウントがまだない? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">今すぐアカウントを作り</span></a>、あなたの証明書を<a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">ここから</span></a>インポートしてデータベースを共有してください。</p><p>オンラインのヘルプは<a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">ここ</span></a>を見てください。</p></body></html> + + + + Back + 戻る + + + + Select an identity to connect + 接続するアイデンティティーを選択 + + + + Public + 公開 + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + これはローカル編集用にリモートサーバーからデータベースをダウンロードします。 +クローン元のURLを入力してください。このURLはデータベースの +ウェブページにある 'Clone Database in DB4S' ボタンを +クリックして生成できます。 + + + + Invalid URL: The host name does not match the host name of the current identity. + 不正なURL: ホスト名が現在のアイデンティティーのホスト名と一致しません。 + + + + Invalid URL: No branch name specified. + 不正なURL: ブランチ名が指定されていません。 + + + + Invalid URL: No commit ID specified. + 不正なURL: コミットIDが指定されていません。 + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + データベースのローカルクローンが編集されています。このコミットをフェッチするとローカルの変更が無視されます。 +本当に実行しますか? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + データベースに保存されていない変更があります。本当に保存前にプッシュしますか? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + 削除しようとしたデータベースは現在開かれています。削除前に閉じてください。 + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + これはこのデータベースのローカルバージョンをまだコミットしていない変更と共に削除します。本当にこのデータベースを削除しますか? + + + + RemoteLocalFilesModel + + + Name + 名前 + + + + Branch + ブランチ + + + + Last modified + 最終変更 + + + + Size + サイズ + + + + Commit + コミット + + + + File + ファイル + + + + RemoteModel + + + Name + 名前 + + + + Commit + コミット + + + + Last modified + 最終変更 + + + + Size + サイズ + + + + Size: + サイズ: + + + + Last Modified: + 最終変更: + + + + Licence: + ライセンス: + + + + Default Branch: + デフォルトブランチ: + + + + RemoteNetwork + + + Choose a location to save the file + ファイルを保存する場所を選択 + + + + Error opening remote file at %1. +%2 + %1 のリモートファイルを開くときにエラー. +%2 + + + + Error: Invalid client certificate specified. + エラー: 不正なクライアント証明書が指定されました。 + + + + Please enter the passphrase for this client certificate in order to authenticate. + このクライアント証明書を確認するためパスフレーズを入力してください。 + + + + Cancel + キャンセル + + + + Uploading remote database to +%1 + リモートデータベースをここにアップロード中 +%1 + + + + Downloading remote database from +%1 + リモートデータベースをここからダウンロード中 +%1 + + + + + Error: The network is not accessible. + エラー: ネットワークにアクセスできません。 + + + + Error: Cannot open the file for sending. + エラー: 送信するファイルを開けません。 + + + + RemotePushDialog + + + Push database + データベースをプッシュ + + + + Database na&me to push to + プッシュするデータベースの名前(&M) + + + + Commit message + コミットメッセージ + + + + Database licence + データベースライセンス + + + + Public + 公開 + + + + Branch + ブランチ + + + + Force push + 強制プッシュ + + + + Username + ユーザー名 + + + + Database will be public. Everyone has read access to it. + データベースを公開にします。すべての人がアクセスできます。 + + + + Database will be private. Only you have access to it. + データベースを非公開にします。あなただけがアクセスできます。 + + + + Use with care. This can cause remote commits to be deleted. + 注意して使用してください。これはリモートコミットが削除される可能性があります。 + + + + RunSql + + + Execution aborted by user + 実行はユーザーにより中止されました + + + + , %1 rows affected + , %1 行に影響を与えました + + + + query executed successfully. Took %1ms%2 + クエリーの実行に成功しました。 %1ms%2 かかりました + + + + executing query + 実行クエリー + + + + SelectItemsPopup + + + A&vailable + 使用可能(&V) + + + + Sele&cted + 選択済(&C) + + + + SqlExecutionArea + + + Form + フォーム + + + + Find previous match [Shift+F3] + 前を検索 [Shift+F3] + + + + Find previous match with wrapping + ワードラップ込みで前を検索 + + + + Shift+F3 + + + + + The found pattern must be a whole word + 単語単位で検索します + + + + Whole Words + 単語単位 + + + + Text pattern to find considering the checks in this frame + このフレームでのチェックボックスを考慮した検索文字列 + + + + Find in editor + エディター内を検索 + + + + The found pattern must match in letter case + 大/小文字を区別します + + + + Case Sensitive + 大/小文字を区別 + + + + Find next match [Enter, F3] + 次を検索 [Enter, F3] + + + + Find next match with wrapping + マッピングで次を検索 + + + + F3 + + + + + Interpret search pattern as a regular expression + 正規表現で検索 + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>設定すると、検索条件はUNIX正規表現と解釈されます。以下を参照 <a href="https://ja.wikibooks.org/wiki/%E6%AD%A3%E8%A6%8F%E8%A1%A8%E7%8F%BE">Wikibooksの正規表現</a>。</p></body></html> + + + + Regular Expression + 正規表現 + + + + + Close Find Bar + 検索バーを閉じる + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>最後に実行した文の結果。</p><p>このパネルを折りたたんで、<span style=" font-style:italic;">SQL Log</span>ドックで<span style=" font-style:italic;">ユーザー</span>を選択して表示させることもできます。</p></body></html> + + + + This field shows the results and status codes of the last executed statements. + このフィールドには最後に実行した文の結果とステータスコードが表示されます。 + + + + Results of the last executed statements + 最後に実行した文の結果 + + + + Couldn't read file: %1. + ファイルを読めません: %1. + + + + + Couldn't save file: %1. + ファイルを保存できません: %1. + + + + Your changes will be lost when reloading it! + 再読み込みすると変更が失われます! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + ファイル "%1" は他のプログラムによって変更されました。再読み込みしますか?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) abs(X) 関数は、数値である引数 X の絶対値を返します。 + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () changes() 関数は、最後に成功した INSERT, DELETE, UPDATE 文で、変更、挿入、削除されたデータベースの行数を返します。 + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) char(X1,X2,...,XN) 関数は、それぞれの文字が Unicode 符号位置で整数値 X1 から XN を持つ文字列を返します。 + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) coalesce() 関数は NULL でない引数のうち、最も左の引数のコピーを返します。すべての引数が NULL ならば、NULL を返します + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) glob(X,Y) 関数は次の式と同値です。 "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) ifnull() 関数は NULL でない引数のうち、最も左の引数のコピーを返します。両方の引数が NULL ならば、NULL を返します。 + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) instr(X,Y) 関数は文字列 X 内にある最初の文字列 Y を検索し、その前の文字数に1を加えた値を返します。X に Y がない場合は0を返します。 + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) hex() 関数は引数を BLOB と解釈し、その中身を大文字の十六進数の文字列として返します。 + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () last_insert_rowid() 関数は、この関数を呼び出したデータベース接続が最後に INSERT した行の ROWID を返します。of the last row insert from the database connection which invoked the function. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) 文字列 X に対し、length(X) 関数は、最初の NULL 文字の前にある文字数(バイト数でなく)を返します。 + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) like() 関数は "Y LIKE X" 式と同値です。 + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) like() 関数は "Y LIKE X ESCAPE Z" 式と同値です。 + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) load_extension(X) 関数は、名前が X の共有ライブラリからすぐに SQLite 拡張を読み込みます。. +この関数の使用には、設定ダイアログからの認証が必要です。 + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X) load_extension(X,Y) 関数は、名前が X の共有ライブラリのエントリーポイント Y からすぐに SQLite 拡張を読み込みます。. +この関数の使用には、設定ダイアログからの認証が必要です。 + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) lower(X) 関数は、すべて ASCII 文字である文字列 X を、すべて小文字に変換した文字列を返します。 + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) 関数は、X の左端にある空白を取り除きます。 + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) ltrim(X,Y)関数は、X の左端から、 Y に含まれる文字をすべて取り除いた文字列を返します。 + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) 複数の引数を持つ max() 関数は引数の最大値を返します。引数に NULL が含まれている場合は NULL を返します。 + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) 複数の引数を持つ min() 関数は引数の最小値を返します。引数に NULL が含まれている場合は NULL を返します。 + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) nullif(X,Y) 関数は、二つの引数が違う場合第一引数を、同じ場合は NULL を返します。 + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) printf(FORMAT,...) SQL 関数は、C言語の sqlite3_mprintf() 関数や、標準Cライブラリーの printf() 関数のように動作します。 + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) quote(X) 関数は、引数をSQL文に含めるのに適したSQLリテラルの文字にして返します。 + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () random() 関数は、範囲が -9223372036854775808 から +9223372036854775807 の整数である疑似乱数を返します。 + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) randomblob(N) 関数は、疑似乱数で構成された N バイトの BLOB を返します。function return an N-byte blob containing pseudo-random bytes. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) replace(X,Y,Z) 関数は、文字列 X に含まれる文字列 Y をすべて文字列 Z に置き換えて返します。 + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) round(X) 関数は、浮動小数点数 X の小数点以下を四捨五入して返します。 + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) round(X,Y) 関数は、浮動小数点数 X を小数点第 Y 位までになるように四捨五入して返します。 + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X) 関数は、X の右端にある空白を取り除きます。 + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) rtrim(X,Y) 関数は、X の右端から、 Y に含まれる文字をすべて取り除いた文字列を返します。 + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) soundex(X) 関数は、文字列 X を soundex にエンコードした文字列を返します。 + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) 関数は、文字列 Xの、先頭から Y 番目から末尾までの文字列を返します。 + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) substr(X,Y,Z) 関数は、文字列 X の、先頭から Y 番目から Z 文字の文字列を返します。 + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () total_changes() 関数は、現在開かれた接続のあるデータベースにおいて、INSERT、UPDATE、DELETEで変更された行数を返します。 returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) 関数は、X の両端にある空白を取り除きます。 + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) trim(X,Y) 関数は、X の両端から、 Y に含まれる文字をすべて取り除いた文字列を返します。 + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) typeof(X) 関数は、式 X のデータ型を示す文字列を返します。 + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) unicode(X) 関数は、文字列 X の最初の文字に対応する Unicode 符号位置を返します。 + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) upper(X) 関数は、すべて ASCII 文字である文字列 X を、すべて大文字に変換した文字列を返します。 + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) zeroblob(N) 関数は、すべて 0x00 で埋められた、N バイトの BLOB を返します。 + + + + + + + (timestring,modifier,modifier,...) + (時刻文字列, 修飾子, 修飾子,...) + + + + (format,timestring,modifier,modifier,...) + (フォーマット, 時刻文字列, 修飾子, 修飾子,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) avg() 関数は、グループ内の非NULLな値の平均を返します。 + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) count(X) 関数はグループ内にある、NULLでない X の件数を返します。 + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) group_concat() 関数は、非NULLなすべての X を連結した文字列を返します。 + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) group_concat() 関数は、非NULLなすべての X を連結した文字列を返します。もし、引数 Y が存在するならば、X を連結するときの区切り文字として使用します。 + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) max() 集計関数は、グループ内の(非NULLである)最大値を返します。 + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) min() 集計関数は、グループ内の(非NULLである)最小値を返します。 + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) sum() と total() 集計関数は、グループ内の非NULLな値の合計を返します。 + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () 現在の分割内の行番号。行は、ウィンドウ定義の ORDER BY 句やそれ以外の任意の順序に従い、1 から順に番号付けされます。 + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () 各グループの順位 - 同値は同順位で、次の値は重複分だけ順位がずれます。もし、ORDER BY 句がなければ、すべての行を同順位とみなし、常に 1 を返します。 + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () 各グループの順位 - 同値は同順位で、次の値は重複に関わらず前の順位+1になります。パーティションはウィンドウ定義の ORDER BY 句やそれ以外の任意の順序に従い、1 から順に番号付けされます。もし、ORDER BY 句がなければ、すべての行を同順位とみなし、常に 1 を返します。 + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () その名前にも関わらず、この関数は常に 0.0 から 1.0 の値を返します。この値は、(rank - 1)/(パーティション行数 - 1) です。ここで、rank は組み込みウィンドウ関数の rank()、パーティション行数はパーティション内の行の数です。もし、パーティションに1行しか含まれていなければ、この関数は 0.0 を返します。 + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () 累積分布。(行番号)/(パーティション行数) で計算されます。ここで行番号はグループ内で row_number() で返された値、パーティション行数はパーティション内の行の数です。 + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) 引数 N はINTEGERとして扱われます。この関数はパーティションを ORDER BY 句やそれ以外の任意の順序に従い N 個のグループに可能な限り等分し、それぞれのグループに 1 から N のINTEGERをつけます。必要があれば、先頭のほうにあるグループの件数を多くするように割り当てられます。この関数は現在の行が含まれるグループに割り当てられたINTEGERを返します。 + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) パーティション内の前の行に対して式 expr を評価した結果を返します。(先頭行のため)前の行がなければ、NULLを返します。 + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) 引数 offset が与えられる場合、非負のINTEGERである必要があります。この場合、パーティション内の offset だけ前の行に対して式 expr を評価した結果を返します。offset が 0 ならば、現在行に対して評価します。前の行がなければ、NULLを返します。 + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) default が与えられる場合、該当の行がなければ、NULL の代わりに defaul 値を返します。 + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) パーティション内の次の行に対して式 expr を評価した結果を返します。(最終行のため)次の行がなければ、NULLを返します。 + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) 引数 offset が与えられる場合、非負のINTEGERである必要があります。この場合、パーティション内の offset だけ次の行に対して式 expr を評価した結果を返します。offset が 0 ならば、現在行に対して評価します。次の行がなければ、NULLを返します。 + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) この組み込みウィンドウ関数は、同じ集計ウィンドウ関数を使ってそれぞれの行のウィンドウフレームを計算します。各行のウィンドウフレームの最初の行に対して評価される expr の値を返します。 + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) この組み込みウィンドウ関数は、同じ集計ウィンドウ関数を使ってそれぞれの行のウィンドウフレームを計算します。各行のウィンドウフレームの最後の行に対して評価される expr の値を返します。 + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) この組み込みウィンドウ関数は、同じ集計ウィンドウ関数を使ってそれぞれの行のウィンドウフレームを計算します。各行のウィンドウフレームの N 番目の行に対して評価される expr の値を返します。行は、ウィンドウ定義の ORDER BY 句やそれ以外の任意の順序に従い、1 から順に番号付けされます。 N 番目の行がパーティションにない場合、NULL が返されます。 + + + + SqliteTableModel + + + reading rows + 行を読み込み中 + + + + loading... + 読み込み中... + + + + References %1(%2) +Hold %3Shift and click to jump there + これを参照 %1(%2) +%3Shift を保持しクリックでジャンプ + + + + Error changing data: +%1 + データの変更でエラー: +%1 + + + + retrieving list of columns + カラムの一覧を取得中 + + + + Fetching data... + データを取得中... + + + + + Cancel + キャンセル + + + + TableBrowser + + + Browse Data + データ閲覧 + + + + &Table: + テーブル(&T): + + + + Select a table to browse data + 閲覧するデータのテーブルを選択 + + + + Use this list to select a table to be displayed in the database view + この一覧を使ってデータベースビューに表示するテーブルを選択 + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + これはデータベーステーブルのビューです。以下の操作ができます: + - 値をインライン編集できます。 + - レコードをダブルクリックすると、セル編集ウィンドウで内容を編集できます。 + - Alt+Del でセルの内容をNULLにできます。 + - Ctrl+" で現在のレコードを複製できます。 + - Ctrl+' で上のセルの値をコピーできます。 + - 通常の操作で、選択/コピー/貼り付けができます。 + + + + Text pattern to find considering the checks in this frame + このフレームでのチェックボックスを考慮した検索文字列 + + + + Find in table + テーブルを検索 + + + + Find previous match [Shift+F3] + 前を検索 [Shift+F3] + + + + Find previous match with wrapping + 折り返して前を検索 + + + + Shift+F3 + + + + + Find next match [Enter, F3] + 次を検索 [Enter, F3] + + + + Find next match with wrapping + 折り返して次を検索 + + + + F3 + + + + + The found pattern must match in letter case + 大/小文字を区別します + + + + Case Sensitive + 大/小文字を区別 + + + + The found pattern must be a whole word + 単語単位で検索します + + + + Whole Cell + セル全体に一致 + + + + Interpret search pattern as a regular expression + 正規表現で検索 + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>設定すると、検索条件はUNIX正規表現と解釈されます。以下を参照 <a href="https://ja.wikibooks.org/wiki/%E6%AD%A3%E8%A6%8F%E8%A1%A8%E7%8F%BE">Wikibooksの正規表現</a>。</p></body></html> + + + + Regular Expression + 正規表現 + + + + + Close Find Bar + 検索バーを閉じる + + + + Text to replace with + この文字列で置き換える + + + + Replace with + 置換 + + + + Replace next match + 次に一致したものを置き換え + + + + + Replace + 置換 + + + + Replace all matches + 一致したものすべてを置き換え + + + + Replace all + すべて置換 + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + 先頭へ + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>このボタンをクリックすると、上のテーブルビューを先頭まで移動します。</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + 1ページ前へ + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>このボタンをクリックすると、上のテーブルビューを1ページ前へ移動します。</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 of 0 + + + + Scroll one page downwards + 1ページ後へ + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>このボタンをクリックすると、上のテーブルビューを1ページ後へ移動します。</p></body></html> + + + + > + > + + + + Scroll to the end + 末尾へ + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>このボタンをクリックすると、上のテーブルビューを末尾まで移動します。</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>ここをクリックして指定のレコードまで移動</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>このボタンは ここへ移動 の入力欄で指定された番号のレコードへ移動するために使用します。</p></body></html> + + + + Go to: + ここへ移動: + + + + Enter record number to browse + 閲覧するレコードの番号を入力 + + + + Type a record number in this area and click the Go to: button to display the record in the database view + この欄にレコードの番号を入力し、ここへ移動ボタンをクリックすると、データベースビューにレコードが表示されます + + + + 1 + 1 + + + + Show rowid column + rowidカラムを表示 + + + + Toggle the visibility of the rowid column + rowidカラムの表示を切り替えます + + + + Unlock view editing + ビューの編集を開放 + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + これは現在のビューで編集できるようにします。しかし、編集時のトリガーに対応する必要があります。 + + + + Edit display format + 表示書式を編集 + + + + Edit the display format of the data in this column + このカラムのデータの表示書式を編集します + + + + + New Record + 新しいレコード + + + + + Insert a new record in the current table + 新しいレコードを現在のテーブルに挿入 + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>このボタンは新しいレコードをデータベースに作成します。マウスボタンを押したままにすると、違うオプションのポップアップメニューが開きます:</p><ul><li><span style=" font-weight:600;">新しいレコード</span>: データベースにデフォルト値で新しいレコードを挿入します。</li><li><span style=" font-weight:600;">値を挿入...</span>: データベースに挿入する前にデータを入力するダイアログを開きます。これで他の制約を満たす値が入力できます。このダイアログは<span style=" font-weight:600;">新しいレコード</span>オプションがそれらの制約のせいで失敗したときにも開きます。</li></ul></body></html> + + + + + Delete Record + レコードを削除 + + + + Delete the current record + 現在のレコードを削除 + + + + + This button deletes the record or records currently selected in the table + このボタンはテーブルにある現在選択中のレコードを削除します + + + + + Insert new record using default values in browsed table + 閲覧中のテーブルのデフォルト値を使い新しいレコードを挿入します + + + + Insert Values... + 値を挿入... + + + + + Open a dialog for inserting values in a new record + 新しいレコードに値を挿入するダイアログを開きます + + + + Export to &CSV + CSVにエクスポート(&C) + + + + + Export the filtered data to CSV + フィルターされたデータをCSVにエクスポート + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + このボタンは閲覧中のテーブルのデータを現在の表示通り(フィルター、表示形式、カラム順番)にCSVファイルにエクスポートします。 + + + + Save as &view + ビューとして保存(&V) + + + + + Save the current filter, sort column and display formats as a view + 現在のフィルター、カラム順番、表示形式をビューに保存 + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + このボタンは閲覧中のテーブルの現在の表示設定(フィルター、表示形式、カラム順番)をSQLビューとして保存し、あとで閲覧やSQL文として使用できるようにします。 + + + + Save Table As... + テーブルに名前を付けて保存... + + + + + Save the table as currently displayed + 現在表示されているものをテーブルに保存 + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>このポップアップメニューは現在閲覧しているテーブルに適用される以下のオプションを提供します。:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">CSVにエクスポート: このオプションは閲覧中のテーブルのデータを現在の表示通り(フィルター、表示形式、カラム順番)にCSVファイルにエクスポートします。</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">ビューとして保存: このオプションは閲覧中のテーブルの現在の表示設定(フィルター、表示形式、カラム順番)をSQLビューとして保存し、あとで閲覧やSQL文として使用できるようにします。</li></ul></body></html> + + + + Hide column(s) + カラムを隠す + + + + Hide selected column(s) + 選択したカラムを隠す + + + + Show all columns + すべてのカラムを表示 + + + + Show all columns that were hidden + 隠されたすべてのカラムを表示 + + + + + Set encoding + エンコードの設定 + + + + Change the encoding of the text in the table cells + テーブルのセルにあるテキストのエンコードを変更します + + + + Set encoding for all tables + すべてのテーブルのエンコードの設定 + + + + Change the default encoding assumed for all tables in the database + データベース内のすべてのテーブルのデフォルトエンコードを変更します + + + + Clear Filters + フィルターを削除 + + + + Clear all filters + すべてのフィルターを消去 + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + このボタンで現在閲覧しているテーブルのヘッダー入力欄に設定されたすべてのフィルターを消去します。 + + + + Clear Sorting + 並べ替えを解除 + + + + Reset the order of rows to the default + 行の順番をデフォルトにリセットします + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + このボタンは、現在閲覧中のテーブルにある並び替えたカラムをデフォルトの順番に戻します。 + + + + Print + 印刷 + + + + Print currently browsed table data + 現在閲覧中のテーブルデータを印刷 + + + + Print currently browsed table data. Print selection if more than one cell is selected. + 現在閲覧中のテーブルデータを印刷します。複数のセルを選択している場合、選択範囲を印刷します。 + + + + Ctrl+P + + + + + Refresh + 更新 + + + + Refresh the data in the selected table + 選択したテーブルのデータを更新 + + + + This button refreshes the data in the currently selected table. + このボタンで現在選択しているテーブルのデータを更新します。 + + + + F5 + + + + + Find in cells + セル内を検索 + + + + Open the find tool bar which allows you to search for values in the table view below. + テーブルビューの下に値を検索するための検索ツールバーを開きます。 + + + + + Bold + 太字 + + + + Ctrl+B + + + + + + Italic + イタリック + + + + + Underline + 下線 + + + + Ctrl+U + + + + + + Align Right + 右揃え + + + + + Align Left + 左揃え + + + + + Center Horizontally + 中央揃え + + + + + Justify + 均等割付 + + + + + Edit Conditional Formats... + 条件付き書式を編集... + + + + Edit conditional formats for the current column + 現在のカラムの条件付き書式を編集します + + + + Clear Format + 書式を削除 + + + + Clear All Formats + すべての書式を削除 + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + 選択したセルのすべての書式を削除し、選択したカラムのすべての条件付き書式を削除します + + + + + Font Color + フォント色 + + + + + Background Color + 背景色 + + + + Toggle Format Toolbar + フォーマットツールバーを切り替え + + + + Show/hide format toolbar + フォーマットツールバーを表示/非表示します + + + + + This button shows or hides the formatting toolbar of the Data Browser + このボタンでデータ閲覧の書式ツールバーを表示/非表示します + + + + Select column + カラムを選択 + + + + Ctrl+Space + Ctrl+スペース + + + + Replace text in cells + セル内のテキストを置き換え + + + + Filter in any column + カラムをフィルター + + + + Ctrl+R + + + + + %n row(s) + + %n 行 + + + + + , %n column(s) + + , %n カラム + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . 合計: %1; 平均: %2; 最低: %3; 最高: %4 + + + + Conditional formats for "%1" + "%1" の条件付き書式 + + + + determining row count... + 行数を計算中... + + + + %1 - %2 of >= %3 + %1 - %2 of >= %3 + + + + %1 - %2 of %3 + %1 - %2 of %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + このビューでの編集を有効にするため、疑似主キーを入力してください。ビューに一意なカラムの名前が必要です。 + + + + Delete Records + レコードを削除 + + + + Duplicate records + レコードを複製 + + + + Duplicate record + レコードを複製 + + + + Ctrl+" + + + + + Adjust rows to contents + 行を内容に合わせ調整 + + + + Error deleting record: +%1 + レコードの削除でエラー: +%1 + + + + Please select a record first + 最初にレコードを選択してください + + + + There is no filter set for this table. View will not be created. + このテーブルにフィルターの設定はありません。ビューは作成されません。 + + + + Please choose a new encoding for all tables. + すべてのテーブルの新しいエンコードを選択してください。 + + + + Please choose a new encoding for this table. + すべてのテーブルの新しいエンコードを選択してください。 + + + + %1 +Leave the field empty for using the database encoding. + %1 +データベースのエンコードを使うため、フィールドを空にします。 + + + + This encoding is either not valid or not supported. + このエンコードは不正かサポートされていません。 + + + + %1 replacement(s) made. + %1 つ置き換えました。 + + + + VacuumDialog + + + Compact Database + データベースを圧縮 + + + + Warning: Compacting the database will commit all of your changes. + 警告: データベースの圧縮はあなたの変更をすべてコミットします。 + + + + Please select the databases to co&mpact: + 圧縮するデータベースを選択してください(&M): + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_ko_KR.qm b/src/SqliteDBProcess/src/translations/sqlb_ko_KR.qm new file mode 100644 index 0000000..c4fc876 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_ko_KR.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_ko_KR.ts b/src/SqliteDBProcess/src/translations/sqlb_ko_KR.ts new file mode 100644 index 0000000..e0d1881 --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_ko_KR.ts @@ -0,0 +1,7012 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + ~에 대하여.. 보다는 ~~ 정보 라는 표현을 요즘에 많이 사용함. + DB Browser for SQLite 정보 + + + + Version + 버전 + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB Browser for SQLite는 오픈소스, 프리웨어로 SQLite 데이터베이스 파일들을 생성, 설계하고 수정을 하기 위한 비주얼 툴입니다.</p><p>이 프로그램은 이중 라이센스로 Mozilla Public License Version 2과 GNU General Public License Version 3 또는 그 이후 버전을 따릅니다. 따라서 이 프로그램은 이 라이센스를 충족하는 범위 내에서 수정하고 재배포 할 수 있습니다.</p><p>자세한 사항은 <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a>과 <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a>를 참고하시기 바랍니다. </p><p>이 프로그램에 대한 좀 더 자세한 정보는 우리 웹사이트에서 확인하실 수 있습니다: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">이 소프트웨어는 GPL/LGPL Qt Toolkit을 사용합니다.</span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>라이센스 사항과 정보는 </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;">를 참고하시기 바랍니다.</span></p><p><span style=" font-size:small;">또한 이 프로그램은 Mark James의 Silk icon set를 Creative Commons Attribution 2.5와 3.0 라이센스 아래에서 사용하고 있습니다.<br/> 자세한 정보는 </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;">를 참고하시기 바랍니다.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + 새 레코드 추가 + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + 제약 조건을 고려하여 새 레코드를 위한 값을 입력하세요. 진하게 처리된 필드는 반드시 입력해야 합니다. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + 값 필드에는 이름 필드에 대응하는 값을 입력 할 수 있습니다. 타입 필드는 필드의 타입을 의미합니다. 기본 값은 NULL값과 같은 스타일로 표시됩니다. + + + + Name + 이름 + + + + Type + 타입 + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + 추가할 값들입니다. 기본 값들이 미리 입력되어 있어 수정하지 않는다면 자동적으로 들어갑니다. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + 위 프레임의 값을 수정하면, 수정사항이 반영된 레코드 추가 SQL쿼리가 여기에 나타납니다. 저장하기 전이라면 직접 쿼리를 수정할 수도 있습니다. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">저장하기</span>는 새 레코드를 데이터베이스에 추가하기 위해 작성되어 나타나 있는 SQL 구문을 반영합니다.</p><p><span style=" font-weight:600;">초기값 복원하기</span>는 <span style=" font-weight:600;">값</span> 필드를 초기 값으로 복원합니다.</p><p><span style=" font-weight:600;">취소하기</span>는 쿼리의 실행 없이 이 창을 닫습니다.</p></body></html> + + + + Auto-increment + + 자동 증가(Auti-increment) + + + + + Unique constraint + + 유니크 제약 + + + + + Check constraint: %1 + + 제약 조건: %1 + + + + + Foreign key: %1 + + 외래키: %1 + + + + + Default value: %1 + + 기본 값: %1 + + + + + Error adding record. Message from database engine: + +%1 + 레코드 추가 도중 에러가 발생했습니다. 데이터베이스 엔진 메시지: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + 정말로 모든 입력한 값들을 초기 값으로 복원합니까? + + + + Application + + + Possible command line arguments: + 사용할 수 있는 명령줄 매개변수: + + + + Usage: %1 [options] [<database>|<project>] + + 사용법: %1 [옵션] [<데이터베이스>|<프로젝트>] + + + + + -h, --help Show command line options + -h, --help 명령줄 옵션을 보여줍니다 + + + + -q, --quit Exit application after running scripts + -q, --quit 스크립트 실행 후 프로그램을 종료합니다 + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <파일> DB를 연 다음 SQL 파일을 실행합니다 + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <table> DB를 연 다음 이 테이블을 탐색합니다 + + + + -R, --read-only Open database in read-only mode + -R, --read-only 데이터베이스를 읽기 전용 모드로 열기합니다 + + + + -o, --option <group>/<setting>=<value> + -o, --option <그룹>/<설정>=<값> + + + + Run application with this setting temporarily set to value + 설정 값을 임시적으로 저장한 후 프로그램 실행합니다 + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <그룹>/<설정>=<값> + + + + Run application saving this value for this setting + 설정 값을 저장하면서 프로그램을 실행합니다 + + + + -v, --version Display the current version + -v, --version 현재 버전을 출력합니다 + + + + <database> Open this SQLite database + <데이터베이스> 이 SQLite 데이터베이스를 엽니다 + + + + <project> Open this project file (*.sqbpro) + <프로젝트> 이 프로젝트 파일을 엽니다 (*.sqbpro) + + + + The -s/--sql option requires an argument + -s/--sql 옵션은 실행할 SQL 파일명을 같이 지정해주어야 합니다 + + + + The file %1 does not exist + %1 파일이 존재하지 않습니다 + + + + The -t/--table option requires an argument + -t/--table 옵션의 대상이 되는 테이블 명을 입력하세요 + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + -o/--option 또는 -O/--save-option 옵션은 group/setting=value 형식의 인수가 필요합니다 + + + + Invalid option/non-existant file: %1 + 잘못된 옵션을 사용하였거나 파일이 존재하지 않습니다: %1 + + + + SQLite Version + SQLite 버전 + + + + SQLCipher Version %1 (based on SQLite %2) + SQLCipher 버전 %1 (SQLite %2 기반) + + + + DB Browser for SQLite Version %1. + DB Browser for SQLite 버전 %1. + + + + Built for %1, running on %2 + %1 환경을 위해 빌드됨, %2 환경에서 실행 중 + + + + Qt Version %1 + Qt 버전 %1 + + + + CipherDialog + + + SQLCipher encryption + SQLCipher 암호화 + + + + &Password + 암호(&P) + + + + &Reenter password + 암호 재입력(&R) + + + + Encr&yption settings + 암호화 설정(&Y) + + + + SQLCipher &3 defaults + SQLCipher &3 기본값 + + + + SQLCipher &4 defaults + SQLCipher &4 기본값 + + + + Custo&m + 수동(&M) + + + + Page si&ze + 페이지 크기(&Z) + + + + &KDF iterations + &KDF 반복 횟수 + + + + HMAC algorithm + HMAC 알고리즘 + + + + KDF algorithm + KDF 알고리즘 + + + + Plaintext Header Size + 평문 헤더 크기 + + + + Passphrase + 암호 + + + + Raw key + Raw 키 + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + 데이터베이스를 암호화할 때 사용할 키를 지정해주세요. +[주의] 여러분이 추가적인 설정을 변경한다면, 데이터베이스 파일을 열 때마다 암호를 매번 입력해야합니다. +그러한 불편함을 피하기 위해 암호화를 하지 않으려면 암호 필드를 비워두세요 +암호화 작업은 시간이 좀 걸릴 수 있습니다. 그리고 꼭 여러분의 데이터베이스 백업본을 반드시 만들어두세요! 암호화 작업 이전에 한 저장되지 않은 변경 사항도 반영되니 주의하세요. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + 데이터베이스를 암호화기 위해 사용할 키를 다시 입력해주세요. +데이터베이스 파일을 변경하기 위해서는 이 정보를 다시 입력해야만 합니다. + + + + ColumnDisplayFormatDialog + + + Choose display format + 표시 형식을 선택하세요 + + + + Display format + 표시 형식 + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + '%1' 컬럼의 표시 형식을 선택하세요. + + + + Default + 일반 + + + + Decimal number + 숫자 + + + + Exponent notation + 지수 + + + + Hex blob + 이진 데이터 + + + + Hex number + 16진수 + + + + Apple NSDate to date + Apple NSDate 날짜 + + + + Java epoch (milliseconds) to date + Java 시간(밀리초)을 날짜로 + + + + .NET DateTime.Ticks to date + .NET DateTime Ticks를 날짜로 + + + + Julian day to date + 날짜 + + + + Unix epoch to local time + 유닉스 시간(타임스탬프)을 지역 시간으로 + + + + Date as dd/mm/yyyy + 날짜를 dd/mm/yyyy 형태로 + + + + Lower case + 소문자 + + + + Custom display format must contain a function call applied to %1 + 사용자 정의 표시 형식은 %1에 적용된 함수 호출을 포함해야 합니다 + + + + Error in custom display format. Message from database engine: + +%1 + 사용자 정의 표시 형식에서 에러가 발생했습니다. 데이터베이스 엔진의 메시지: +%1 + + + + Custom display format must return only one column but it returned %1. + 사용자 지정 표시 형식은 하나의 열만 반환해야 하지만 %1개를 반환했습니다. + + + + Octal number + 8진수 + + + + Round number + 라운드 수 + + + + Unix epoch to date + 유닉스 시간(타임스탬프)을 날짜로 + + + + Upper case + 대문자 + + + + Windows DATE to date + Windows 날짜 + + + + Custom + 사용자 지정 + + + + CondFormatManager + + + Conditional Format Manager + 조건부 서식 관리자 + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + 이 대화상자에서는 조건부 형식을 추가하고 수정할 수 있습니다. 각 셀 스타일은 해당 셀 데이터의 첫번째 조건에 의해 지정됩니다. 조건부 서식은 위/아래로 이동할 수 있으며, 상위 행에 있는 형식은 하위 행에 있는 형식보다 우선됩니다. 조건 구문은 필터와 동일하며 빈 조건은 모든 값에 대해 적용됩니다. + + + + Add new conditional format + 새 조건부 서식을 추가합니다 + + + + &Add + 추가(&A) + + + + Remove selected conditional format + 선택한 조건부 서식을 삭제합니다 + + + + &Remove + 삭제(&R) + + + + Move selected conditional format up + 선택한 조건부 서식을 위로 이동합니다 + + + + Move &up + 위로 올리기(&U) + + + + Move selected conditional format down + 선택한 조건부 서식을 아래로 이동합니다 + + + + Move &down + 아래로 내리기(&D) + + + + Foreground + 전경색 + + + + Text color + 글자색 + + + + Background + 배경색 + + + + Background color + 배경색 + + + + Font + 글꼴 + + + + Size + 크기 + + + + Bold + 진하게 + + + + Italic + 기울임 + + + + Underline + 밑줄 + + + + Alignment + 정렬 + + + + Condition + 조건 + + + + + Click to select color + 색상을 선택하세요 + + + + Are you sure you want to clear all the conditional formats of this field? + 이 필드의 모든 조건부 서식을 정말로 삭제하시겠습니까? + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + 데이터베이스 연결을 위해 불러올 데이터베이스의 별칭을 지정해주세요 + + + + Invalid file format + 잘못된 파일 포맷입니다 + + + + Do you want to save the changes made to the database file %1? + %1 데이터베이스 파일을 생성하기 위해 변경사항을 저장하겠습니까? + + + + Exporting database to SQL file... + 데이터베이스를 SQL 파일로 내보내는 중... + + + + + Cancel + 취소 + + + + Executing SQL... + SQL 실행 중... + + + + Action cancelled. + 실행이 취소되었습니다. + + + + Do you really want to close this temporary database? All data will be lost. + 이 임시 데이터베이스를 닫을까요? 모든 데이터가 사라집니다. + + + + This database has already been attached. Its schema name is '%1'. + 이 데이터베이스는 이미 연결되었습니다. 스키마 이름은 '%1' 입니다. + + + + Database didn't close correctly, probably still busy + 데이터베이스가 제대로 닫히지 않았습니다, 아마도 아직 사용 중일 것입니다 + + + + The database is currently busy: + 이 데이터베이스는 현재 사용 중입니다: + + + + Do you want to abort that other operation? + 이 명령을 취소하시겠습니까? + + + + + No database file opened + 열린 데이터베이스 파일이 없습니다 + + + + + Error in statement #%1: %2. +Aborting execution%3. + #%1: %2 구문에 에러가 있어 실행이 중단되었습니다%3. + + + + + and rolling back + 그리고 롤백합니다 + + + + didn't receive any output from %1 + %1에서 아무런 출력을 받지 못했습니다 + + + + could not execute command: %1 + 명령을 실행할 수 없습니다: %1 + + + + Cannot delete this object + 이 객체를 삭제할 수 없습니다 + + + + Cannot set data on this object + 이 객체에는 데이터를 저장할 수 없습니다 + + + + + A table with the name '%1' already exists in schema '%2'. + '%1' 이름의 테이블이 이미 스키마 '%2'에 존재합니다. + + + + No table with name '%1' exists in schema '%2'. + 스키마 '%2'에 이름이 '%1'인 테이블이 없습니다. + + + + + Cannot find column %1. + %1 컬럼을 찾을 수 없습니다. + + + + Creating savepoint failed. DB says: %1 + 세이브 포인트를 생성하지 못했습니다. DB 메시지: %1 + + + + Renaming the column failed. DB says: +%1 + 열 이름을 변경하지 못했습니다. DB 메시지: +%1 + + + + + Releasing savepoint failed. DB says: %1 + 세이브 포인트를 해제하지 못했습니다. DB 메시지: %1 + + + + Creating new table failed. DB says: %1 + 새 테이블을 생성하지 못했습니다. DB 메시지: %1 + + + + Copying data to new table failed. DB says: +%1 + 새 테이블에 데이터를 복사하지 못했습니다. DB 메시지: +%1 + + + + Deleting old table failed. DB says: %1 + 이전 테이블을 삭제하지 못했습니다. DB 메시지: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + 테이블 '%1'의 이름을 '%2'(으)로 변경하는 동안 오류가 발생했습니다. +데이터베이스 엔진 메시지: +%3 + + + + could not get list of db objects: %1 + DB 개체 목록을 가져알 수 없습니다: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + 이 테이블에 관련된 몇 개의 객체를 복원하는데 실패했습니다. 이러한 경우는 대부분 몇 개의 필드명이 변경되어서 발생 했을 가능성이 큽니다. 아래 SQL 구문을 참고하면 직접 수동으로 고쳐서 실행할 수 있을 것입니다: + + + + + + could not get list of databases: %1 + 데이터베이스 목록을 가져올 수 없습니다: %1 + + + + Error loading extension: %1 + 확장기능을 불러오기 에러: %1 + + + + could not get column information + 열 정보를 가져올 수 없습니다 + + + + Error setting pragma %1 to %2: %3 + pragma 설정을 %1에서 %2로 변경하는데 에러: %3 + + + + File not found. + 파일을 찾을 수 없습니다. + + + + DbStructureModel + + + Name + 이름 + + + + Object + 객체 + + + + Type + 타입 + + + + Schema + 스키마 + + + + Database + 데이터베이스 + + + + Browsables + 열기 + + + + All + 모두 선택 + + + + Temporary + 임시 + + + + Tables (%1) + 테이블 (%1) + + + + Indices (%1) + 인덱스 (%1) + + + + Views (%1) + 뷰 (%1) + + + + Triggers (%1) + 트리거 (%1) + + + + EditDialog + + + Edit database cell + 데이터베이스 데이터 값을 수정하기 + + + + Mode: + 모드: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + 셀 에디터에서 지원되는 모델들 목록입니다. 현재 셀의 데이터를 보거나 수정하기 위한 모드를 선택하세요. + + + + RTL Text + RTL Text + + + + + Image + 이미지 + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + 불러온 데이터 타입을 에디터 모드에 자동 적용 + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + 이 체크 버튼은 에디터 모드를 자동으로 변경하는 기능을 키거나 끕니다. 새 셀이 선택되거나 새로운 데이터가 가져와지면 자동 변경 기능이 켜져서 데이터 타입을 인식하여 적절한 모드를 적용합니다. 그 후에 여러분은 모드를 수동으로 변경할 수 있습니다. 만약 셀들을 이동할 때 모드를 직접 변경하고자 한다면, 이 버튼을 비활성화하세요. + + + + Auto-switch + 자동 전환 + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + 텍스트 편집기 모드를 사용하면 저장하기 전에 구문 강조 표시, 자동 서식 지정 및 유효성 검사를 사용하여 JSON 또는 XML 데이터뿐만 아니라 일반 텍스트도 편집할 수 있습니다. +오류는 빨간색 물결 밑줄로 표시됩니다. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + 이 Qt 편집기는 기본 텍스트 편집기에서 지원하지 않는 오른쪽에서 왼쪽으로 쓰는 스크립트에 사용됩니다. 오른쪽에서 왼쪽으로 작성되는 문자가 감지되면 이 편집기 모드가 자동으로 선택됩니다. + + + + Apply data to cell + 셀에 데이터 적용 + + + + Open preview dialog for printing displayed image + 표시된 이미지에 대한 인쇄 미리보기 창을 엽니다 + + + + Open preview dialog for printing the data currently stored in the cell + 현재 셀에 저장된 데이터에 대한 인쇄 미리보기 대화상자 열기 + + + + Auto-format: pretty print on loading, compact on saving. + 자동포맷: 불러올 때 예쁘게 프린트되고, 저장할 때 용량을 줄입니다. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + 활성화되면, 자동포맷 기능이 데이터를 불러올 때 포맷을 지정하여 긴 문장을 여러 행으로 만들고 들여쓰기를 해서 가독성을 향상합니다. 데이터를 저장할 때는 자동포맷 기능은 개행 문자를 제거하여 데이터를 줄이고 필요 없는 공백을 삭제합니다. + + + + Word Wrap + 개행 + + + + Wrap lines on word boundaries + 단어 경계마다 개행 + + + + + Open in default application or browser + 기본 응용 프로그램 또는 브라우저에서 열기 + + + + Open in application + 응용 프로그램에서 열기 + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + 값은 파일 또는 URL로 해석되며 기본 애플리케이션 또는 웹 브라우저에서 열립니다. + + + + Save file reference... + 참조를 파일에 저장... + + + + Save reference to file + 파일에 참조 저장 + + + + + Open in external application + 외부 프로그램에서 열기 + + + + Autoformat + 자동포맷 + + + + &Export... + 내보내기(&E)... + + + + + &Import... + 가져오기(&I)... + + + + + Import from file + 파일에서 가져오기 + + + + + Opens a file dialog used to import any kind of data to this database cell. + 이 데이터베이스 셀로 데이터를 가져오기 위하여 대화상자를 엽니다. + + + + Export to file + 파일로 내보내기 + + + + Opens a file dialog used to export the contents of this database cell to a file. + 이 데이터베이스 셀의 내용을 파일로 내보내는데 사용되는 대화 상자를 엽니다. + + + + + Print... + 인쇄하기... + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + 출력된 텍스트를 인쇄하기 위한 인쇄 미리보기 창을 엽니다 + + + + Copy Hex and ASCII + Hex와 ASCII를 복사합니다 + + + + Copy selected hexadecimal and ASCII columns to the clipboard + 선택된 16진수와 ASCII 필드를 클립보드로 복사합니다 + + + + Ctrl+Shift+C + + + + + Set as &NULL + NULL로 만들기(&N) + + + + This button saves the changes performed in the cell editor to the database cell. + 이 버튼은 데이터 셀에 셀 에디터의 변경 사항을 적용하여 저장하는 버튼입니다. + + + + Apply + 적용 + + + + Text + 문자열 + + + + Binary + 바이너리 + + + + Erases the contents of the cell + 셀의 데이터 값을 삭제합니다 + + + + This area displays information about the data present in this database cell + 이 영역은 이 데이터베이스 데이터 값에 대한 정보를 보여줍니다 + + + + Type of data currently in cell + 현재 셀에 있는 데이터 타입 + + + + Size of data currently in table + 현재 테이블에 있는 데이터 크기 + + + + Choose a filename to export data + 내보내기 할 데이터의 파일 이름을 선택하세요 + + + + + Image data can't be viewed in this mode. + 이미지 데이터는 이 모드에서는 볼 수 없습니다. + + + + + Try switching to Image or Binary mode. + 이미지나 바이너리 모드로 바꿔보세요. + + + + + Binary data can't be viewed in this mode. + 바이너리 데이터는 이 모드에서 볼 수 없습니다. + + + + + Try switching to Binary mode. + 바이너리 모드로 바꿔보세요. + + + + + Image files (%1) + 이미지 파일 (%1) + + + + Binary files (*.bin) + 바이너리 파일 (*.bin) + + + + Choose a file to import + 가져올 파일을 선택하세요 + + + + %1 Image + %1 이미지 + + + + Invalid data for this mode + 이 모드에 맞지 않는 데이터 + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + 이 셀에는 올바르지 않은 %1 데이터를 포함하고 있습니다. 이유: %2. 이 셀을 정말로 적용할까요? + + + + + + %n character(s) + + %n 자 + + + + + Type of data currently in cell: %1 Image + 현재 데이터 타입: %1 이미지 + + + + %1x%2 pixel(s) + %1x%2 픽셀 + + + + Type of data currently in cell: NULL + 현재 데이터 타입: 널 + + + + Type of data currently in cell: Valid JSON + 현재 데이터 타입: 유효한 JSON + + + + Couldn't save file: %1. + 파일을 저장할 수 없습니다: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + 현재 데이터는 임시 파일에 저장되었으며 기본 프로그램으로 열립니다. 이제 파일을 편집하고 준비되면 저장된 새 데이터를 셀 편집기에 적용하거나 변경 사항을 취소할 수 있습니다. + + + + + Type of data currently in cell: Text / Numeric + 현재 데이터 타입: 문자열 / 숫자 + + + + Type of data currently in cell: Binary + 현재 데이터 타입: 바이너리 + + + + + %n byte(s) + + %n 바이트 + + + + + EditIndexDialog + + + &Name + 이름(&N) + + + + Order + 정렬 순서 + + + + &Table + 테이블(&T) + + + + Edit Index Schema + 인덱스 스키마 수정 + + + + &Unique + 유니크(&U) + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + 인덱스를 테이블의 일부로만 제한하기 위해서 인덱싱 해야하는 테이블의 일부를 지정하는 WHERE 절을 지정할 수 있습니다 + + + + Partial inde&x clause + 부분(Partial) 인덱스절(&X) + + + + Colu&mns + 열(&M) + + + + Table column + 테이블 열 + + + + Type + 타입 + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + 인덱스에 새 표현식 컬럼을 추가하세요. 표현식 컬럼은 컬럼 이름 대신 SQL 표현식이 들어갑니다. + + + + Index column + 인덱스 컬럼 + + + + Deleting the old index failed: +%1 + 이전 인덱스를 삭제하는데 실패했습니다: %1 + + + + Creating the index failed: +%1 + 인덱스 생성에 실패했습니다: +%1 + + + + EditTableDialog + + + Edit table definition + 테이블 정의 변경 + + + + Table + 테이블 + + + + Advanced + 고급 + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + 이 테이블을 'rowid가 없는' 테이블로 생성합니다. 이 설정을 사용하려면 주 키(Primary Key)로 설정되고 자동 증가(Auto Increment)가 해제된 INTEGER 타입의 필드 하나가 필요합니다. + + + + Without Rowid + Rowid 필드 없음 + + + + Fields + 필드 + + + + Database sche&ma + 데이터베이스 스키마(&M) + + + + Add + 추가 + + + + Remove + 삭제 + + + + Move to top + 최상단으로 올리기 + + + + Move up + 위로 올리기 + + + + Move down + 아래로 내리기 + + + + Move to bottom + 최하단으로 내리기 + + + + + Name + 필드명 + + + + + Type + 타입 + + + + NN + NN + + + + Not null + Not null + + + + PK + PK + + + + Primary key + 기본 키 + + + + AI + AI + + + + Autoincrement + 자동 증가(Autoincrement) + + + + U + U + + + + + + Unique + 유니크(Unique) + + + + Default + 기본값 + + + + Default value + 기본값 + + + + + + Check + 체크 + + + + Check constraint + 제약조건(Check constraint) + + + + Collation + 콜레이션 + + + + + + Foreign Key + 외래키 + + + + Constraints + 제약 조건 + + + + Add constraint + 제약 조건 추가 + + + + Remove constraint + 제약 조건 삭제 + + + + Columns + 필드 + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>이 테이블 정의 중에 파서가 해석할 수 없는 부분이 있습니다. 이 테이블을 수정하거나 저장하면 문제가 발생할 수 있습니다.</p></body></html> + + + + + Primary Key + 기본 키 + + + + Add a primary key constraint + 기본 키 제약 조건 추가 + + + + Add a foreign key constraint + 외래 키 제약 조건 추가 + + + + Add a unique constraint + 유니크 제약 조건 추가 + + + + Add a check constraint + 체크 제약 조건 추가 + + + + Error creating table. Message from database engine: +%1 + 테이블 생성 에러. 데이터베이스 메시지: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + 이미 다른 필드에서 사용중인 이름입니다. 다른 이름을 사용하거나 사용 중인 필드 이름을 바꾸세요. + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + 각 테이블마다 하나의 기본 키만 있을 수 있습니다. 기존 기본 키를 대신 수정하세요. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + 이 필드는 테이블 %1 에 있는 외래키에 참조되어 있기 때문에 이름을 변경할 수 없습니다. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + 이 필드 값이 NULL로 되어 있는 레코드가 최소한 하나 이상 존재합니다. 이러한 상태에서는 변경이 불가능하니 테이블의 데이터를 먼저 수정해서 NULL 값을 삭제주세요. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + 이 필드 값이 숫자가 아닌 값으로 되어 있는 레코드가 최소 하나 이상 존재합니다. 이러한 상태에서는 변경이 불가능하니 테이블의 데이터 값을 먼저 변경해주세요. + + + + Column '%1' has duplicate data. + + %1 열에 중복된 데이터가 있습니다. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + 이로 인해 유니크 플래그를 설정할 수 없습니다. 중복 데이터를 제거하여야 유니크 플래그를 설정할 수 있습니다. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + 정말로 '%1' 필드를 삭제하시겠습니까? +이 필드에 저장된 모든 데이터가 같이 삭제됩니다. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + 'rowid 사용하지 않음'을 사용하기 위해서는 아래 두 가지 사항을 만족시키는 필드를 추가해주세요: + - 기본 키(Primary Key) 사용 + - 자동 증가(Auto Increment) 사용하지 않음 + + + + ExportDataDialog + + + Export data as CSV + 데이터를 CSV 파일로 내보내기 + + + + Tab&le(s) + 테이블(&l) + + + + Colu&mn names in first line + 첫 행이 필드 이름(&M) + + + + Fie&ld separator + 필드 구분자(&l) + + + + , + , + + + + ; + ; + + + + Tab + + + + + | + | + + + + + + Other + 기타 + + + + &Quote character + 문자열 묶음 기호(&Q) + + + + " + " + + + + ' + ' + + + + New line characters + 개행문자 + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + 인쇄하기 좋은 스타일 + + + + + Could not open output file: %1 + 내보낸 파일을 열 수 없습니다: %1 + + + + + Choose a filename to export data + 데이터를 내보낼 파일 이름을 정하세요 + + + + Export data as JSON + JSON으로 내보내기 + + + + exporting CSV + CSV로 내보내기 + + + + exporting JSON + JSON으로 내보내기 + + + + Please select at least 1 table. + 최소한 테이블 1개는 선택하세요. + + + + Choose a directory + 디렉터리를 선택하세요 + + + + Export completed. + 내보내기가 완료되었습니다. + + + + ExportSqlDialog + + + Export SQL... + SQL로 내보내기... + + + + Tab&le(s) + 테이블(&l) + + + + Select All + 모두 선택 + + + + Deselect All + 모두 선택 해제 + + + + &Options + 옵션(&O) + + + + Keep column names in INSERT INTO + INSERT INTO문에 필드명 넣기 + + + + Multiple rows (VALUES) per INSERT statement + 하나의 INSERT문에 여러줄 (VALUES) 사용하기 + + + + Export everything + 모두 내보내기 + + + + Export data only + 데이터만 내보내기 + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + 이전 스키마 유지하기 (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + 이전 스키마 덮어쓰기 (DROP TABLE, then CREATE TABLE) + + + + Export schema only + 스키마만 내보내기 + + + + Please select at least one table. + 최소한 한 개의 테이블을 선택해주세요. + + + + Choose a filename to export + 내보내기 할 파일명을 고르세요 + + + + Export completed. + 내보내기가 완료되었습니다. + + + + Export cancelled or failed. + 내보내기가 취소되었거나 실패했습니다. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + 찾기... + + + + Find and Replace... + 검색과 바꾸기... + + + + Print... + 인쇄하기... + + + + ExtendedTableWidget + + + Use as Exact Filter + 정확한 필터로 적용하기 + + + + Containing + 포함하는 + + + + Not containing + 포함하지 않는 + + + + Not equal to + 같지 않은 + + + + Greater than + 초과 + + + + Less than + 미만 + + + + Greater or equal + 이상 + + + + Less or equal + 이하 + + + + Between this and... + 이 값과 사이에... + + + + Regular expression + 정규 표현식 + + + + Edit Conditional Formats... + 조건부 서식 편집... + + + + Set to NULL + NULL로 변경하기 + + + + Copy + 복사하기 + + + + Copy with Headers + 헤더 포함 복사하기 + + + + Copy as SQL + SQL로 복사하기 + + + + Paste + 붙여넣기 + + + + Print... + 인쇄하기... + + + + Use in Filter Expression + 필터 표현식 적용하기 + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + 클립보드의 내용이 선택한 범위보다 큽니다. 어쨌든 추가할까요? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>모든 데이터가 로드되지 않았습니다. <b>모든 행을 선택하기 전에 모든 데이터를 로드하시겠습니까?</b><p><p><b> 아니요</b>를 선택하면 더 이상 데이터가 로드되지 않고 선택이 수행되지 않습니다.<br/><b>예</b> 를 선택하면 데이터가 로드되는 동안 시간이 다소 걸릴 수 있지만 선택이 완료됩니다.</p>경고: 모든 데이터를 로드하려면 큰 테이블을 위해 많은 양의 메모리가 필요할 수 있습니다. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + 선택 사항을 NULL로 설정할 수 없습니다. 열 %1에 NOT NULL 제약 조건이 있습니다. + + + + FileExtensionManager + + + File Extension Manager + 파일 확장자 관리자 + + + + &Up + 위로(&U) + + + + &Down + 아래로(&D) + + + + &Add + 추가하기(&A) + + + + &Remove + 삭제하기(&R) + + + + + Description + 설명 + + + + Extensions + 확장자 + + + + *.extension + *.확장자 + + + + FilterLineEdit + + + Filter + 필터 + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + 이 입력 필드는 현재 선택된 테이블에 빠르게 필터를 적용할 수 있게 해줍니다. +기본적으로 입력 박스에 들어가있는 조건에 맞는 행들이 표시됩니다. +아래와 같은 연산자들을 사용할 수 있습니다: +% 와일드카드 +> 초과 +< 미만 +>= 이상 +<= 이하 += 같음: 정확히 일치 +<> 같지않음: 정확히 불일치 +x~y 범위: x와 y값 사이 값 +/regexp/ 정규 표현식에 일치하는 값 + + + + Clear All Conditional Formats + 모든 조건부 서식 지우기 + + + + Use for Conditional Format + 조건부 서식 사용 + + + + Edit Conditional Formats... + 조건부 서식 편집... + + + + Set Filter Expression + 필터 표현식 설정하기 + + + + What's This? + 이건 무엇인가요? + + + + Is NULL + NULL임 + + + + Is not NULL + NULL이 아님 + + + + Is empty + 비어있음 + + + + Is not empty + 비어있지 않음 + + + + Not containing... + 포함하지 않는... + + + + Equal to... + 같은... + + + + Not equal to... + 같지 않은... + + + + Greater than... + 초과... + + + + Less than... + 미만... + + + + Greater or equal... + 이상... + + + + Less or equal... + 이하... + + + + In range... + 범위... + + + + Regular expression... + 정규 표현식... + + + + FindReplaceDialog + + + Find and Replace + 찾기와 바꾸기 + + + + Fi&nd text: + 찾을 텍스트(&N): + + + + Re&place with: + 바꾸려는 텍스트(&P): + + + + Match &exact case + 대소문자 일치 시(&E) + + + + Match &only whole words + 전체 단어 일치 시(&O) + + + + When enabled, the search continues from the other end when it reaches one end of the page + 활성화되면 페이지의 한쪽 끝에 도달했을 때 다른 쪽 끝에서 검색이 계속됩니다 + + + + &Wrap around + 전체 페이지 검색(&W) + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + 활성화되면 커서 위치 뒤로 검색합니다. 그렇지 않으면 앞으로 검색합니다 + + + + Search &backwards + 뒤로 찾기(&B) + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>할성화되면 현재 선택 항목에서만 찾습니다.</p></body></html> + + + + &Selection only + 선택 항목만(&S) + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>선택하면 찾을 패턴이 UNIX 정규 표현식으로 해석됩니다. <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>를 참고하십시오.</p></body></html> + + + + Use regular e&xpressions + 정규 표현식 사용(&X) + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + 커서 위치에서 "뒤로 찾기"에서 설정한 방향에 따라 다음 항목을 찾습니다 + + + + &Find Next + 다음 찾기(&F) + + + + F3 + + + + + &Replace + 바꾸기(&R) + + + + Highlight all the occurrences of the text in the page + 페이지 내 찾으려는 텍스트를 모두 강조 표시합니다 + + + + F&ind All + 모두 찾기(&I) + + + + Replace all the occurrences of the text in the page + 페이지 내 일치하는 모든 텍스트를 바꿉니다 + + + + Replace &All + 모두 바꾸기(&A) + + + + The searched text was not found + 찾으려는 텍스트를 찾을 수 없습니다 + + + + The searched text was not found. + 찾으려는 텍스트를 찾을 수 없습니다. + + + + The searched text was found one time. + 찾으려는 텍스트를 한 번 발견되었습니다. + + + + The searched text was found %1 times. + 찾으려는 텍스트가 %1번 발견되었습니다. + + + + The searched text was replaced one time. + 텍스트가 한 번 바뀌었습니다. + + + + The searched text was replaced %1 times. + %1개의 텍스트가 바뀌었습니다. + + + + ForeignKeyEditor + + + &Reset + 초기화(&R) + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + 외부 키(ON UPDATE, ON DELETE 등.) + + + + ImportCsvDialog + + + Import CSV file + CSV 파일 가져오기 + + + + Table na&me + 테이블 이름(&M) + + + + &Column names in first line + 첫 행에 필드명 포함(&C) + + + + Field &separator + 필드 구분자(&S) + + + + , + , + + + + ; + ; + + + + + Tab + + + + + | + | + + + + Other + 기타 + + + + &Quote character + 문자열 묶음 기호(&Q) + + + + + Other (printable) + 기타 (인쇄용) + + + + + Other (code) + 기타 (코드) + + + + " + " + + + + ' + ' + + + + &Encoding + 인코딩(&E) + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + 필드 앞뒤 공백 제거? + + + + Separate tables + 테이블 나누기 + + + + Advanced + 고급 + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + CSV 파일의 빈 값을 이 열의 기본 값이 있는 기존 테이블로 가져올 때 해당 기본값이 삽입됩니다. 대신 빈 값을 삽입하려면 이 옵션을 활성화하세요. + + + + Ignore default &values + 기본 값을 무시(&V) + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + 기본 값 없이 비어 있는 값을 NOT NULL 열로 가져오려고 할 때 가져오기를 중단하려면 이 옵션을 활성화하세요. + + + + Fail on missing values + 값 누락 시 실패 + + + + Disable data type detection + 데이터 타입 인식 끄기 + + + + Disable the automatic data type detection when creating a new table. + 새 테이블을 생성할 때 자동 데이터 타입 인식 기능을 끕니다. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + 기본 키, 고유 제약 조건 또는 고유 인덱스를 사용하여 기존 테이블로 가져올 때 충돌 가능성이 있습니다. 이 옵션을 사용하면 해당 경우에 대한 대처 방안을 선택할 수 있습니다. 기본적으로는 가져오기가 중단되고 롤백되지만 충돌하는 행을 무시하고 가져오지 않거나 테이블의 기존 행을 바꾸도록 선택할 수도 있습니다. + + + + Abort import + 가져오기 취소 + + + + Ignore row + 열 무시 + + + + Replace existing row + 기존 행 바꾸기 + + + + Conflict strategy + 충돌 발생 시 + + + + + Deselect All + 모두 선택 해제 + + + + Match Similar + 비슷한거 찾기 + + + + Select All + 모두 선택 + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + 이미 '%1'이라는 이름을 가진 테이블이 존재하며 기존 테이블로 데이터를 가져오는 것은 필드의 수가 같을 때만 가능합니다. + + + + There is already a table named '%1'. Do you want to import the data into it? + 이미 '%1'라는 이름의 테이블이 존재합니다. 데이터를 이 테이블로 가져올까요? + + + + Creating restore point failed: %1 + 복원 포인트를 생성하는데 실패했습니다: %1 + + + + Creating the table failed: %1 + 테이블 생성에 실패했습니다: %1 + + + + importing CSV + CSV 가져오기 + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + 파일 '%1' 가져오는데 %2ms가 걸렸습니다. 이 중에서 행 기능을 적용하는데 %3ms가 걸렸습니다. + + + + Inserting row failed: %1 + 행 추가에 실패했습니다: %1 + + + + MainWindow + + + DB Browser for SQLite + DB Browser for SQLite + + + + toolBar1 + toolBar1 + + + + Opens the SQLCipher FAQ in a browser window + SQLCipher FAQ를 봅니다 + + + + Export one or more table(s) to a JSON file + 테이블을 JSON 파일로 내보냅니다 + + + + Find + 찾기 + + + + Find or replace + 검색과 바꾸기 + + + + Print text from current SQL editor tab + 현재 SQL 편집기 탭의 텍스트 인쇄 + + + + Print the structure of the opened database + 현재 열려 있는 데이터베이스의 구조 인쇄 + + + + Un/comment block of SQL code + SQL 코드 블럭 주석 처리/해제 + + + + Un/comment block + 블럭 주석 처리/해제 + + + + Comment or uncomment current line or selected block of code + 현재 줄 또는 선택된 블럭을 주석 처리 또는 해제합니다 + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + 선택된 줄을 주석 처리 또는 해제합니다. 선택 항목이 없는 경우 현재 줄을 처리합니다. 모든 블럭은 첫번째 줄을 통해 토글 할 수 있습니다. + + + + Ctrl+/ + + + + + Stop SQL execution + SQL 실행 중단 + + + + Stop execution + 실행 중단 + + + + Stop the currently running SQL script + 현재 실행 중인 SQL 스크립트 중단 + + + + Execute all/selected SQL + 전체 또는 선택한 SQL 실행 + + + + Open an existing database file in read only mode + 읽기 전용 모드로 존재하는 데이터베이스 파일을 엽니다 + + + + &File + 파일(&F) + + + + &Import + 가져오기(&I) + + + + &Export + 내보내기(&E) + + + + &Edit + 편집(&E) + + + + &View + 보기(&V) + + + + &Help + 도움말(&H) + + + + &Tools + 도구(&T) + + + + DB Toolbar + DB 툴바 + + + + Edit Database &Cell + 데이터베이스 셀 수정하기(&C) + + + + Error Log + 에러 로그 + + + + This button clears the contents of the SQL logs + 이 버튼은 SQL 로그 내용을 지웁니다 + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + 이 패널에서 응용 프로그램 또는 사용자가 실행한 모든 SQL 명령의 기록을 확인할 수 있습니다 + + + + DB Sche&ma + DB 스키마(&M) + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + 이것은 열린 데이터베이스의 구조입니다. +이름 열에서 여러 개체 이름을 끌어서 SQL 편집기에 놓을 수 있으며 컨텍스트 메뉴를 사용하여 끌어서 놓은 이름의 속성을 변경할 수 있습니다. +이것은 SQL 문을 작성하는데 도움이 됩니다. +스키마 열에서 SQL 문을 끌어서 SQL 편집기나 다른 응용 프로그램에 놓을 수도 있습니다. + + + + + &Remote + 원격(&R) + + + + This button executes the SQL statement present in the current editor line + 이 버튼은 현재 편집기 행에 있는 SQL 문을 실행합니다 + + + + Shift+F5 + + + + + Sa&ve Project + 프로젝트 저장하기(&V) + + + + User + 사용자 + + + + Application + 애플리케이션 + + + + &Clear + 지우기(&C) + + + + &New Database... + 새 데이터베이스(&N)... + + + + + Create a new database file + 새 데이터베이스 파일을 생성합니다 + + + + This option is used to create a new database file. + 이 옵션은 새 데이터베이스 파일을 생성하려고 할 때 사용합니다. + + + + Ctrl+N + + + + + + &Open Database... + 데이터베이스 열기(&O)... + + + + + + + + Open an existing database file + 기존 데이터베이스 파일을 엽니다 + + + + + + This option is used to open an existing database file. + 이 옵션은 기존 데이터베이스 파일을 열 때 사용합니다. + + + + Ctrl+O + + + + + &Close Database + 데이터베이스 닫기(&C) + + + + This button closes the connection to the currently open database file + 이 버튼은 현재 열려 있는 데이터베이스 파일에 대한 연결을 닫습니다 + + + + + Ctrl+W + + + + + + Revert database to last saved state + 마지막 저장된 상태로 데이터베이스를 되돌립니다 + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + 이 옵션은 현재 데이터베이스를 마지막 저장된 상태로 되돌릴 때 사용합니다. 저장 이후에 이루어진 모든 변경 사항을 되돌립니다. + + + + + Write changes to the database file + 변경 사항을 데이터베이스 파일에 반영합니다 + + + + This option is used to save changes to the database file. + 이 옵션은 데이터베이스 파일에 변경 사항을 저장하기 위해 사용됩니다. + + + + Ctrl+S + + + + + Compact the database file, removing space wasted by deleted records + 삭제된 레코드로 낭비되는 공간을 제거하여 데이터베이스 파일 압축 + + + + + Compact the database file, removing space wasted by deleted records. + 삭제된 레코드로 낭비되는 공간을 제거하여 데이터베이스 파일 압축. + + + + E&xit + 종료(&X) + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + .sql 덤프 문자열 파일에서 데이터를 새 데이터베이스나 기존 데이터베이스로 가져옵니다. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + 이 옵션은 .sql 덤프 문자열 파일에서 데이터를 새 데이터베이스나 기존 데이터베이스로 가져옵니다. SQL 덤프 파일은 MySQL이나 PostgreSQL 등 대부분의 데이터베이스 엔진에서 생성할 수 있습니다. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + 마법사를 사용하여 CSV 파일(쉼로 필드가 나누어진 문자열 파일)에서 데이터베이스 테이블로 데이터를 가져올 수 있습니다. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + 마법사를 사용하여 CSV 파일(쉼표로 필드가 나누어진 문자열 파일)에서 데이터베이스 테이블로 데이터를 가져올 수 있습니다. CSV 파일은 대부분의 데이터베이스와 스프레드시트 애플리케이션에서 생성할 수 있습니다. + + + + Export a database to a .sql dump text file. + 데이터베이스를 .sql 덤프 문자열 파일로 내보내기. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + 이 옵션은 데이터베이스를 .sql 덤프 문자열 파일로 내보낼 수 있습니다. SQL 덤프 파일은 MySQL과 PostgreSQL 등 대부분의 데이터베이스 엔진에서 데이터베이스를 재생성하기 위한 모든 필요한 데이터를 포함하고 있습니다. + + + + Export a database table as a comma separated text file. + 데이터베이스 테이블을 CSV(쉼표로 분리된 문자열 파일)로 내보내기. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + 데이터베이스 테이블을 CSV(쉼표로 분리된 문자열 파일)로 내보내기. 다른 데이터베이스나 스프레드시트 애플리케이션에서 가져와서 사용할 수 있습니다. + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + 테이블 생성 마법사를 사용하여 데이터베이스에서 새 테이블을 위한 이름과 필드를 정의할 수 있습니다 + + + + + Delete Table + 테이블 삭제하기 + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + 테이블 삭제 마법사를 사용하여 선택한 데이터베이스 테이블을 삭제할 수 있습니다. + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + 테이블 편집 마법사를 사용하여 기존 테이블의 이름을 변경하거나 테이블의 필드를 추가, 삭제, 필드명 변경 및 타입 변경을 할 수 있습니다. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + 인덱스 생성 마법사를 사용하여 기존 데이터베이스 테이블에 새 인덱스를 정의할 수 있습니다. + + + + &Preferences... + 환경설정(&P)... + + + + + Open the preferences window. + 환경설정 창을 엽니다. + + + + &DB Toolbar + DB 툴바(&D) + + + + Shows or hides the Database toolbar. + 데이터베이스 툴바를 보이거나 숨깁니다. + + + + Shift+F1 + + + + + &Recently opened + 최근 열었던 파일들(&R) + + + + Open &tab + 탭 열기(&T) + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + 데이터베이스 구조 + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + 이것은 열려있는 데이터베이스의 구조입니다. +개체 행에서 SQL 문을 끌어서 다른 응용 프로그램이나 'DB Browser for SQLite'의 다른 인스턴스에 놓을 수 있습니다. + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + 데이터 보기 + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Pragma 수정 + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + 경고: 이 pragma는 읽기 전용이 아니며 이 값은 추측된 값입니다. pragma를 작성하면 SQLite에서 제공하는 재정의 된 LIKE를 덮어 쓸 수 있습니다. + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + SQL 실행 + + + + Ctrl+F4 + + + + + Compact &Database... + 데이터베이스 압축(&D)... + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + 이 버튼은 현재 선택되어 있는 SQL 명령문을 실행합니다. 만약 선택 항목이 없으면 모든 SQL 명령문이 실행됩니다. + + + + &Load Extension... + 확장도구 불러오기(&L)... + + + + Execute line + 줄 실행 + + + + &Wiki + 위키(&W) + + + + F1 + + + + + Bug &Report... + 버그 보고(&R)... + + + + Feature Re&quest... + 기능 제안(&Q)... + + + + Web&site + 웹 사이트(&S) + + + + &Donate on Patreon... + 후원하기(&D)... + + + + Open &Project... + 프로젝트 열기(&P)... + + + + &Attach Database... + 데이터베이스 연결(&A)... + + + + + Add another database file to the current database connection + 현재 데이터베이스 연결에 다른 데이터베이스 연결을 추가합니다 + + + + This button lets you add another database file to the current database connection + 이 버튼을 사용하면 현재 데이터베이스 연결에 다른 데이터베이스 파일을 추가할 수 있습니다 + + + + &Set Encryption... + 암호화 설정(&S)... + + + + SQLCipher &FAQ + SQLCipher FAQ(&F) + + + + Table(&s) to JSON... + 테이블을 JSON으로 내보내기(&S)... + + + + Browse Table + 테이블 탐색 + + + + Open Data&base Read Only... + 읽기 전용으로 데이터베이스 열기(&B)... + + + + Open SQL file(s) + SQL 파일 열기 + + + + This button opens files containing SQL statements and loads them in new editor tabs + 이 버튼은 SQL 문이 포함된 파일을 열고 새 편집기 탭에 로드합니다 + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + 이 버튼을 사용하면 열린 DB와 관련된 모든 설정을 DB Browser for SQLite 프로젝트 파일로 저장할 수 있습니다 + + + + This button lets you open a DB Browser for SQLite project file + 이 버튼을 사용하면 DB Browser for SQLite 프로젝트 파일을 열 수 있습니다 + + + + Ctrl+Shift+O + + + + + Save results + 결과 저장 + + + + Save the results view + 결과 뷰 저장 + + + + This button lets you save the results of the last executed query + 이 버튼은 마지막으로 실행한 쿼리의 결과값을 저장합니다 + + + + + Find text in SQL editor + SQL 편집기에서 텍스트 찾기 + + + + This button opens the search bar of the editor + 이 버튼은 편집기의 검색창을 엽니다 + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + SQL 편집기에서 텍스트 찾아 바꾸기 + + + + This button opens the find/replace dialog for the current editor tab + 이 버튼은 현재 열려 있는 편집기의 찾기 바꾸기 대화상자를 엽니다 + + + + Ctrl+H + + + + + Export to &CSV + CSV로 내보내기(&C) + + + + Save as &view + 뷰로 저장하기(&V) + + + + Save as view + 다른 이름의 뷰로 저장하기 + + + + Shows or hides the Project toolbar. + 프로젝트 툴바를 표시하거나 숨깁니다. + + + + Extra DB Toolbar + 확장 DB 툴바 + + + + New In-&Memory Database + In-Memory 데이터베이스 생성(&M) + + + + Drag && Drop Qualified Names + 정규화된 이름을 끌어서 놓기 + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + 개체를 끌어서 편집기에 놓을 때 정규화된 이름(예: "Table", "Field")을 사용합니다 + + + + Drag && Drop Enquoted Names + 인용된 이름을 끌어서 놓기 + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + 개체를 끌어서 편집기에 놓을 때 이스케이프된 식별자(예: "Table1")을 사용합니다 + + + + &Integrity Check + 무결성 검사(&I) + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + 열린 데이터베이스에 대해 integrity_check pragma를 실행하고 SQL 실행 탭에 결과를 반환합니다. 이 pragma는 전체 데이터베이스의 무결성 검사를 수행합니다. + + + + &Foreign-Key Check + 외래키 검사(&F) + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + 열린 데이터베이스에 대해 foreign_key_check pragma를 실행하고 SQL 실행 탭에 결과를 반환합니다 + + + + &Quick Integrity Check + 빠른 무결성 검사(&Q) + + + + Run a quick integrity check over the open DB + 열린 데이터베이스 대해 빠른 무결성 검사 실행 + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + 열린 데이터베이스에 대해 quick_check pragma를 실행하고 SQL 실행 탭에 결과를 반환합니다. 이 명령은 대부분의 PRAGMA integrity_check 검사를 수행하지만 훨씬 빠르게 실행됩니다. + + + + &Optimize + 최적화(&O) + + + + Attempt to optimize the database + 데이터베이스 최적화 + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + 열린 데이터베이스에 대해 최적화 pragma를 실행합니다. 이 pragma는 향후 쿼리의 성능을 향상시키는 최적화를 수행할 수 있습니다. + + + + + Print + 인쇄하기 + + + + &Save Project As... + 다른 이름으로 프로젝트 저장(&S)... + + + + + + Save the project in a file selected in a dialog + 대화상자에서 선택한 파일에 프로젝트 저장 + + + + Save A&ll + 모두 저장(&l) + + + + + + Save DB file, project file and opened SQL files + DB 파일, 프로젝트 파일 및 열린 SQL 파일 저장 + + + + Ctrl+Shift+S + + + + + Open a dialog for printing the text in the current SQL editor tab + 현재 SQL 편집기 탭에서 텍스트를 인쇄하기 위한 대화상자를 엽니다 + + + + Open a dialog for printing the structure of the opened database + 열린 데이터베이스의 구조를 인쇄하기 위한 대화상자를 엽니다 + + + + SQL &Log + SQL 로그(&L) + + + + Show S&QL submitted by + ~에 의해 실행된 SQL 보기(&Q) + + + + &Plot + 플롯(&P) + + + + + Project Toolbar + 프로젝트 툴바 + + + + Extra DB toolbar + 확장 DB 툴바 + + + + + + Close the current database file + 현재 데이터베이스 파일 닫기 + + + + &Revert Changes + 변경사항 취소하기(&R) + + + + &Write Changes + 변경사항 저장하기(&W) + + + + &Database from SQL file... + SQL 파일로부터 데이터베이스 가져오기(&D)... + + + + &Table from CSV file... + CSV 파일에서 테이블 가져오기(&T)... + + + + &Database to SQL file... + 데이터베이스를 SQL로 내보내기(&D)... + + + + &Table(s) as CSV file... + 테이블을 CSV 파일로 내보내기(&T)... + + + + &Create Table... + 테이블 생성하기(&C)... + + + + &Delete Table... + 테이블 삭제하기(&D)... + + + + &Modify Table... + 테이블 수정하기(&M)... + + + + Create &Index... + 인덱스 생성하기(&I)... + + + + W&hat's This? + 이건 무엇인가요?(&H) + + + + &About + 정보(&A) + + + + This button opens a new tab for the SQL editor + 이 버튼은 SQL 편집기의 새로운 탭을 엽니다 + + + + &Execute SQL + SQL 실행하기(&E) + + + + + + Save SQL file + SQL 파일 저장하기 + + + + + Execute current line + 현재 행 실행하기 + + + + Ctrl+E + + + + + Export as CSV file + CSV 파일로 내보내기 + + + + Export table as comma separated values file + 테이블을 CSV 파일로 내보내기 + + + + + Save the current session to a file + 현재 세션을 파일로 저장하기 + + + + + Load a working session from a file + 파일에서 작업 세션 불러오기 + + + + + Save SQL file as + SQL 파일 다름 이름으로 저장하기 + + + + This button saves the content of the current SQL editor tab to a file + 이 버튼은 현재 SQL 편집기의 내용을 파일로 저장합니다 + + + + &Browse Table + 테이블 보기(&B) + + + + Copy Create statement + 생성 구문 복사하기 + + + + Copy the CREATE statement of the item to the clipboard + 항목의 생성 구문을 클립보드에 복사합니다 + + + + Ctrl+Return + + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Encrypted + 암호화됨 + + + + Read only + 읽기 전용 + + + + Database file is read only. Editing the database is disabled. + 데이터베이스 파일이 읽기 전용입니다. 데이터베이스 수정 기능이 비활성화됩니다. + + + + Database encoding + 데이터베이스 인코딩 + + + + Database is encrypted using SQLCipher + 데이터베이스는 SQLCipher를 통해 암호화됩니다 + + + + + Choose a database file + 데이터베이스 파일을 선택하세요 + + + + + + Choose a filename to save under + 저장하려는 파일명을 선택하세요 + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + 데이터베이스 파일을 저장하던 중 에러가 발생했습니다. 이 말은 모든 변경사항들이 데이터베이스에 저장되지 못했음을 의미합니다. 다음에 나오는 에러를 먼저 해결하세요. +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + 정말로 데이터베이스 파일 '%1'의 모든 변경 사항을 마지막 저장된 상태로 되돌립니까? + + + + Choose a file to import + 가져올 파일을 선택하세요 + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (읽기 전용) + + + + Open Database or Project + 데이터베이스 또는 프로젝트 열기 + + + + Attach Database... + 데이터베이스 연결... + + + + Import CSV file(s)... + CSV 파일 가져오기... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + 드롭된 파일에 적용할 작업을 선택합니다. <br/>참고: '가져오기'만 두 개 이상의 파일을 처리합니다. + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + '%1' 프로젝트 파일에 SQL 탭을 추가하기 위해 변경사항을 저장하시겠습니까? + + + + Text files(*.sql *.txt);;All files(*) + 문자열 파일(*.sql *.txt);;모든 파일(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + 데이터를 가져와서 새 데이터베이스 파일을 생성하고 싶은신가요? +아니라면 SQL 파일의 데이터를 현재 데이터베이스로 가져오기를 할 것입니다. + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + 아직 SQL 명령문이 실행되는 중입니다. 데이터베이스를 닫으면 실행이 중단되어 데이터베이스가 일관성이 없어질 수 있습니다. 정말로 데이터베이스를 닫으시겠습니까? + + + + Do you want to save the changes made to the project file '%1'? + %1 데이터베이스 파일을 생성하기 위해 변경사항을 저장하시겠습니까? + + + + File %1 already exists. Please choose a different name. + 파일 %1이 이미 존재합니다. 다른 파일명을 선택하세요. + + + + Error importing data: %1 + 데이터 가져오기 에러: %1 + + + + Import completed. + 가져오기가 완료되었습니다. + + + + Delete View + 뷰 삭제하기 + + + + Modify View + 뷰 수정하기 + + + + Delete Trigger + 트리거 삭제하기 + + + + Modify Trigger + 트리거 수정하기 + + + + Delete Index + 인덱스 삭제하기 + + + + Modify Index + 인덱스 수정하기 + + + + Modify Table + 테이블 수정하기 + + + + Do you want to save the changes made to SQL tabs in a new project file? + 새 프로젝트 파일에 SQL 탭을 추가하기 위해 변경사항을 저장하시겠습니까? + + + + Do you want to save the changes made to the SQL file %1? + %1 SQL 파일을 생성하기 위해 변경사항을 저장하시겠습니까? + + + + Could not find resource file: %1 + 리소스 파일을 찾을 수 없습니다: %1 + + + + Choose a project file to open + 불러올 프로젝트 파일을 선택하세요 + + + + Could not open project file for writing. +Reason: %1 + 쓰기 모드로 프로젝트 파일을 열 수 없습니다. +원인: %1 + + + + Busy (%1) + 사용 중 (%1) + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + PRAGMA 설정을 변경하려면 여러분의 현재 트랜잭션을 커밋해야합니다. +동의하십니까? + + + + Window Layout + 창 레이아웃 + + + + Reset Window Layout + 창 레이아웃 초기화 + + + + Alt+0 + + + + + Simplify Window Layout + 창 레이아웃 단순화 + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + 하단에 창 고정 + + + + Dock Windows at Left Side + 좌측에 창 고정 + + + + Dock Windows at Top + 상단에 창 고정 + + + + The database is currenctly busy. + 이 데이터베이스는 현재 사용 중입니다. + + + + Click here to interrupt the currently running query. + 여기를 눌러 현재 실행 중인 쿼리를 강제 중단합니다. + + + + Could not open database file. +Reason: %1 + 데이터베이스 파일을 열 수 없습니다. +원인: %1 + + + + In-Memory database + In-Memory 데이터베이스 + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + 정말로 테이블 '%1'을 삭제하시겠습니까? +테이블의 모든 데이터가 삭제됩니다. + + + + Are you sure you want to delete the view '%1'? + 정말로 '%1' 뷰를 삭제할까요? + + + + Are you sure you want to delete the trigger '%1'? + 정말로 '%1' 트리거를 삭제할까요? + + + + Are you sure you want to delete the index '%1'? + 정말로 '%1' 인덱스를 삭제할까요? + + + + Error: could not delete the table. + 에러: 테이블을 삭제할 수 없습니다. + + + + Error: could not delete the view. + 에러: 뷰를 삭제할 수 없습니다. + + + + Error: could not delete the trigger. + 에러: 트리거를 삭제할 수 없습니다. + + + + Error: could not delete the index. + 에러: 인덱스를 삭제할 수 없습니다. + + + + Message from database engine: +%1 + 데이터베이스 엔진 메시지: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + 'pending'의 뜻이 보류입니다만, 여기서는 작업 중이던이 더 맞다고 판단했습니다. + 테이블을 편집하려면 작업 중이던 모든 변경 사항을 저장해야합니다. +데이터베이스를 저장하시겠습니까? + + + + Edit View %1 + 뷰 편집 %1 + + + + Edit Trigger %1 + 트리거 편집 %1 + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + 이미 SQL 명령문을 실행하였습니다. 현재 명령문을 대신 실행하기 위해 기존 실행을 중단하시겠습니까? 이로 인해 데이터베이스가 일관성이 없는 상태가 될 수 있습니다. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- '%1의 선택 항목 실행 +-- + + + + -- EXECUTING LINE IN '%1' +-- + --'%1'에서 라인 실행 중 +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- '%1'로부터 전체 실행 +-- + + + + + At line %1: + %1번째 줄: + + + + Result: %1 + 결과: %1 + + + + Result: %2 + 결과: %2 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + PRAGMA 값을 지정하지 않으면 현재 트랜잭션에 DB 파일 청소 작업(Vacuum)이 커밋됩니다. 진행할까요? + + + + Opened '%1' in read-only mode from recent file list + 최근 파일 목록에서 읽기 전용 모드로 '%1'을(를) 열었습니다 + + + + Opened '%1' from recent file list + 최근 파일 목록에서 '%1'을(를) 열었습니다 + + + + This action will open a new SQL tab with the following statements for you to edit and run: + 이 작업을 수행하면 편집하거나 실행할 수 있는 다음 명령문이 포함된 새 SQL 탭이 열립니다: + + + + Rename Tab + 탭 이름 변경 + + + + Duplicate Tab + 탭 복제 + + + + Close Tab + 탭 닫기 + + + + Opening '%1'... + '%1' 여는 중... + + + + There was an error opening '%1'... + '%1'을 여는 중 에러가 발생했습니다... + + + + Value is not a valid URL or filename: %1 + 올바른 URL 또는 파일 이름이 아닙니다: %1 + + + + %1 rows returned in %2ms + %2ms의 시간이 걸려서 %1 행이 반환되었습니다 + + + + Choose text files + 텍스트 파일 선택 + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + 가져오기가 완료되었습니다. 일부 외래 키의 제약 조건이 위반되었습니다. 저장 하기 전에 수정하십시오. + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + 이 탭의 명령문은 여전히 실행 중입니다. 탭을 닫으면 실행이 중단됩니다. 이로 인해 데이터베이스가 일관성이 없는 상태가 될 수 있습니다. 정말로 탭을 닫으시겠습니까? + + + + Select SQL file to open + 열 SQL 파일을 선택하세요 + + + + Select file name + 파일 이름을 선택하세요 + + + + Select extension file + 파일 확장자를 선택하세요 + + + + Extension successfully loaded. + 확장기능을 성공적으로 불러왔습니다. + + + + Error loading extension: %1 + 확장기능 불러오기 에러: %1 + + + + + Don't show again + 다시 보지 않기 + + + + New version available. + 이용 가능한 새 버전이 있습니다. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + 이용 가능한 새 버전이 있습니다 (%1.%2.%3).<br/><br/><a href='%4'>%4</a>에서 다운로드하세요. + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + 이 프로젝트 파일은 DB Browser for SQLite 버전 3.10 이하를 사용하여 생성되었기 때문에 이전 파일 형식을 사용하고 있습니다. 이 파일 형식을 불러오는 것은 여전히 완벽하게 지원되지만 이전 형식에 대한 지원이 추후 중단될 수 있으므로 모든 프로젝트 파일을 신규 파일 형식으로 변환하는 것이 좋습니다. 파일을 열고 다시 저장하기만하면 파일을 변환할 수 있습니다. + + + + Project saved to file '%1' + '%1' 파일로 프로젝트가 저장되었습니다 + + + + Collation needed! Proceed? + 콜레이션이 필요합니다! 진행할까요? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + 이 데이터베이스의 테이블은 이 애플리케이션에서 잘 알지 못하는 특별한 함수 '%1'가 필요합니다. +이대로 계속 진행할 수는 있습니다만 여러분의 데이터베이스에 나쁜 영향이 갈 수도 있습니다. +백업을 생성하세요! + + + + creating collation + 콜레이션 생성 + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + SQL 탭의 새 이름을 설정하세요. '&&' 문자를 사용하여 다음에 따라오는 문자를 키보드 단축키로서 사용할 수 있습니다. + + + + Please specify the view name + 뷰 이름을 지정해주세요 + + + + There is already an object with that name. Please choose a different name. + 이미 같은 이름의 객체가 존재합니다. 다른 이름을 고르세요. + + + + View successfully created. + 뷰가 성공적으로 생성되었습니다. + + + + Error creating view: %1 + 뷰 생성 에러: %1 + + + + This action will open a new SQL tab for running: + 이 작업은 다음을 실행하는 새 SQL 탭을 엽니다: + + + + Press Help for opening the corresponding SQLite reference page. + 해당 SQLite 참조 페이지를 열려면 도움말을 누르십시오. + + + + DB Browser for SQLite project file (*.sqbpro) + DB Browser for SQLite 프로젝트 파일 (*.sqbpro) + + + + Error checking foreign keys after table modification. The changes will be reverted. + 테이블 수정 후 외래 키를 확인하는 중 오류가 발생하였습니다. 변경 사항이 되돌려집니다. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + 이 테이블은 외래 키 검사를 통과하지 못했습니다.<br/>'도구 -> 외래 키 검사'를 실행하여 보고된 문제를 해결하십시오. + + + + Execution finished with errors. + 에러가 발생하여 실행 중단됨. + + + + Execution finished without errors. + 에러 없이 실행 완료. + + + + NullLineEdit + + + Set to NULL + NULL로 변경하기 + + + + Alt+Del + + + + + PlotDock + + + Plot + 플롯 + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>이 화면은 현재 보고 있는 테이블 또는 방금 실행한 쿼리의 필드 목록을 보여줍니다. 아래 플롯 화면에 X축 또는 Y축으로 사용할 필드를 선택할 수 있습니다. 이 표는 결과 플롯에 영향을 줄 수 있다고 인식된 축의 종류를 보여줍니다. Y축은 숫자 타입 필드만 선택할 수 있지만 X축은 다음과 같은 필드 타입을 선택할 수 있습니다:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">날짜</span>: 문자열 포맷 &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">시간</span>: 문자열 포맷 &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">라벨</span>: 이 필드를 X축으로 선택하면 필드 값이 막대의 레이블로 표시된 막대 그래프가 생성됩니다.</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">숫자</span>: 정수 또는 실수</li></ul><p>Y 셀을 더블 클릭하면 그래프에 사용된 색을 변경할 수 있습니다.</p></body></html> + + + + Columns + 필드 + + + + X + X + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + 축 타입 + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + 위에서 x와 y 값을 선택하면 여기에 플롯이 그려집니다. + +플롯과 테이블에서 항목을 클릭하면 선택됩니다. 여러 범위의 항목을 선택하려면 Control+클릭을 하세요. + +확대/축소를 하려면 마우스 휠을 이용하고 축 범위를 바꾸려면 마우스를 드래그하세요. + +한 방향으로만 드래그 또는 확대/축소를 하고 싶다면 축 또는 축 라벨을 선택하세요. + + + + Line type: + 행 타입: + + + + + None + 사용하지 않음 + + + + Line + + + + + StepLeft + 왼쪽으로 + + + + StepRight + 오른쪽으로 + + + + StepCenter + 중앙으로 + + + + Impulse + 임펄스(Impulse) + + + + Point shape: + 포인트 모양: + + + + Cross + 십자가 + + + + Plus + 더하기 + + + + Circle + + + + + Disc + 디스크(Disc) + + + + Square + 정사각형 + + + + Diamond + 마름모 + + + + Star + + + + + Triangle + 삼각형 + + + + TriangleInverted + 역삼각형 + + + + CrossSquare + CrossSquare + + + + PlusSquare + PlusSquare + + + + CrossCircle + CrossCircle + + + + PlusCircle + PlusCircle + + + + Peace + Peace + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>현재 플롯 저장하기...</p><p>파일 포맷 확장자를 선택하세요 (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + 현재 플롯 저장하기... + + + + + Load all data and redraw plot + 모든 데이터를 불러와서 플롯을 다시 그립니다 + + + + + + Row # + 행 # + + + + Copy + 복사 + + + + Print... + 인쇄하기... + + + + Show legend + 범례 표시 + + + + Stacked bars + 누적 막대 + + + + Date/Time + 날짜/시간 + + + + Date + 날짜 + + + + Time + 시간 + + + + + Numeric + 숫자 + + + + Label + 레이블 + + + + Invalid + 올바르지 않음 + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + 모든 데이터를 불러와서 플롯을 다시 그립니다. +주의: 이 기능은 부분만 가져오는 메커니즘으로 인하여 테이블에서 모든 데이터가 가져와지지는 않습니다. + + + + Choose an axis color + 축 색깔을 선택하세요 + + + + Choose a filename to save under + 저장하려는 파일명을 선택하세요 + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;모든 파일(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + 플롯에 있는 곡선들 중에 X축으로 정렬된 그래프만 선택한 선의 스타일을 변경할 수 있습니다. X로 표 또는 쿼리를 정렬하여 곡선을 제거하려면 '사용하지 않음'을, 곡선이 지원하는 스타일 중 하나를 선택하려면 '행'을 선택하세요. + + + + Loading all remaining data for this table took %1ms. + 테이블의 나머지 데이터를 불러오는데 %1ms가 소요되었습니다. + + + + PreferencesDialog + + + Preferences + 환경설정 + + + + &General + 일반(&G) + + + + Remember last location + 마지막 위치를 기억 + + + + Always use this location + 항상 이 위치를 사용 + + + + Remember last location for session only + 같은 세션에서만 마지막 위치를 기억 + + + + + + ... + ... + + + + Default &location + 기본 위치(&L) + + + + Lan&guage + 언어(&G) + + + + Automatic &updates + 자동 업데이트(&U) + + + + + + + + + + + + enabled + 사용하기 + + + + Show remote options + 원격 옵션 보기 + + + + &Database + 데이터베이스(&D) + + + + Database &encoding + 데이터베이스 인코딩(&E) + + + + Open databases with foreign keys enabled. + 외래키 기능을 사용하며 데이터베이스를 엽니다. + + + + &Foreign keys + 외래키(&F) + + + + Data &Browser + 데이터 보기(&B) + + + + Remove line breaks in schema &view + 스키마 뷰에서 개행을 제거합니다(&V) + + + + Prefetch block si&ze + 프리패치 할 블럭 크기(&Z) + + + + SQ&L to execute after opening database + 데이터베이스를 연 후 SQL을 실행(&L) + + + + Default field type + 기본 필드 타입 + + + + Font + 글꼴 + + + + &Font + 글꼴(&F) + + + + Content + 내용 + + + + Symbol limit in cell + 셀 안 심볼 한계 + + + + NULL + NULL + + + + Regular + 보통 + + + + Binary + 바이너리 + + + + Background + 배경색 + + + + Filters + 필터 + + + + Toolbar style + 툴바 스타일 + + + + + + + + Only display the icon + 아이콘만 표시 + + + + + + + + Only display the text + 텍스트만 표시 + + + + + + + + The text appears beside the icon + 텍스트를 아이콘 옆으로 + + + + + + + + The text appears under the icon + 텍스트가 아이콘 아래로 + + + + + + + + Follow the style + 애플리케이션 스타일 적용 + + + + DB file extensions + 데이터베이스 파일 확장자 + + + + Manage + 관리 + + + + Main Window + 메인 창 + + + + Database Structure + 데이터베이스 구조 + + + + Browse Data + 데이터 보기 + + + + Execute SQL + SQL 실행 + + + + Edit Database Cell + 데이터베이스 셀 수정 + + + + When this value is changed, all the other color preferences are also set to matching colors. + 이 값이 변경되면 다른 모든 색상들도 이에 일치하는 색상으로 설정됩니다. + + + + Follow the desktop style + 데스크톱 스타일 적용 + + + + Dark style + 어둡게 + + + + Application style + 애플리케이션 스타일 + + + + This sets the font size for all UI elements which do not have their own font size option. + 개별 글꼴 크기 옵션이 없는 모든 UI 요소의 글꼴 크기를 설정합니다. + + + + Font size + 글꼴 크기 + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + 활성화되면 DB 구조 탭의 스키마 열에서 줄 바꿈, 독 및 인쇄된 출력이 제거됩니다. + + + + Database structure font size + 데이터베이스 구조 글꼴 크기 + + + + Font si&ze + 글꼴 크기(&Z) + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + 연산이 많이 걸리는 일부 기능을 활성화하는데 허용되는 최대 항목 수입니다. +열의 현재 값을 기반으로 값 완성을 활성화하기 위한 테이블의 최대 행의 갯수입니다. +합계 및 평균을 계산하려는 선택 항목의 최대 인덱스 수입니다. +기능 비활성화하려면 0으로 설정하세요. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + 열의 현재 값을 기반으로 값 완성을 활성화하기 위한 테이블의 최대 행 수입니다. +비활성화하려면 0으로 설정하세요. + + + + Close button on tabs + 탭에 닫기 버튼 + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + 활성화되면 SQL 편집기 탭에 닫기 버튼이 생깁니다. 어떤 경우든 컨텍스트 메뉴나 키보드 단축기를 사용하여 닫을 수 있습니다. + + + + Proxy + 프록시 + + + + Configure + 설정 + + + + Field display + 필드 출력 + + + + Displayed &text + 출력 텍스트(&T) + + + + + + + + + Click to set this color + 선택하여 이 색상을 선택하세요 + + + + Text color + 글자색 + + + + Background color + 배경색 + + + + Preview only (N/A) + 미리보기만 출력 (N/A) + + + + Escape character + 이스케이프 문자 + + + + Delay time (&ms) + 대기 시간 (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + 새로운 필터 값을 적용하기 전에 대기할 시간을 설정하세요. 대기 시간을 0으로 하면 대기하지 않습니다. + + + + &SQL + SQL(&S) + + + + Settings name + 설정 이름 + + + + Context + 내용 + + + + Colour + 색깔 + + + + Bold + 진하게 + + + + Italic + 기울게 + + + + Underline + 밑줄 + + + + Keyword + 키워드 + + + + Function + 함수 + + + + Table + 테이블 + + + + Comment + 주석 + + + + Identifier + 식별자 + + + + String + 문자열 + + + + Current line + 현재 행 + + + + SQL &editor font size + SQL 에디터 글꼴 크기(&E) + + + + Tab size + 탭 크기 + + + + &Wrap lines + 줄 바꿈(&W) + + + + Never + 사용 안 함 + + + + At word boundaries + 단어 경계에서 + + + + At character boundaries + 문자 경계에서 + + + + At whitespace boundaries + 공백에서 + + + + &Quotes for identifiers + 식별자 구분 기호(&Q) + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + SQL 코드의 식별자에 대해 응용 프로그램에서 사용하는 기호를 선택합니다. + + + + "Double quotes" - Standard SQL (recommended) + "큰 따옴표" - SQL 표준 (권장됨) + + + + `Grave accents` - Traditional MySQL quotes + '작은 따옴표' - MySQL 전통 인용 부호 + + + + [Square brackets] - Traditional MS SQL Server quotes + [대괄호] - MS SQL 전통 인용 부호 + + + + Keywords in &UPPER CASE + 키워드에 대해 대문자(&U) + + + + When set, the SQL keywords are completed in UPPER CASE letters. + 활성화되면 SQL 키워드가 대문자로 완성됩니다. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + 활성화되면 마지막 실행 중에 오류를 일으킨 SQL 코드 줄이 강조 표시되고 결과 프레임은 백그라운드에 오류를 나타냅니다 + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite는 공유 라이브러리 파일에서 확장을 로드하기 위한 SQL 함수를 제공합니다. SQL 코드에서 <span style=" font-style:italic;">load_extension()</span> 함수를 사용하려면 이 기능을 활성화하십시오.</p><p>보안 상의 이유로 확장 로드는 기본적으로 비활성화되어 있으며 설정을 통해 활성화해야 합니다. 이 옵션이 비활성화되어 있더라도 항상 GUI를 통해 확장을 로드할 수 있습니다.</p></body></html> + + + + Allow loading extensions from SQL code + SQL 코드에서 확장기능을 불러오는 것을 허용 + + + + Remote + 원격 + + + + CA certificates + CA 인증서 + + + + + Subject CN + 제목 CN + + + + Common Name + 일반 이름 + + + + Subject O + 제목 O + + + + Organization + 기관 + + + + + Valid from + 유효날짜(시작) + + + + + Valid to + 유효날짜(끝) + + + + + Serial number + 시리얼 넘버 + + + + Your certificates + 당신의 인증서 + + + + File + 파일 + + + + Subject Common Name + 주제 일반 이름 + + + + Issuer CN + 이슈 등록자 CN + + + + Issuer Common Name + 이슈 등록자 일반 이름 + + + + Clone databases into + 데이터베이스 복제하기 + + + + SQL editor &font + SQL 편집기 글꼴(&F) + + + + Error indicators + 에러 표시 + + + + Hori&zontal tiling + 화면 수평 나누기(&Z) + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + 활성화되면 SQL 코드 편집기와 결과 테이블 뷰가 나란히 표시됩니다. + + + + Code co&mpletion + 코드 완성(&M) + + + + Threshold for completion and calculation on selection + 선택에 대한 완료 및 연산 임계 값 + + + + Show images in cell + 셀에 이미지 표시 + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + 셀에 이미지 데이터가 포함된 BLOB의 미리보기를 표시하려면 이 옵션을 활성화합니다. 그러나 이는 데이터 브라우저의 성능에 영향을 끼칠 수 있습니다. + + + + Foreground + 전경색 + + + + SQL &results font size + SQL 결과 글꼴 크기(&R) + + + + &Extensions + 확장기능(&E) + + + + Select extensions to load for every database: + 불러올 확장기능을 선택하세요(확장기능은 모든 데이터베이스에 반영됩니다): + + + + Add extension + 확장기능 추가 + + + + Remove extension + 확장기능 제거 + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>SQLite에서는 기본적으로 정규 표현식 기능을 제공하지 않습니다만 애플리케이션을 실행하여 호출하는 것은 가능합니다. DB Browser for SQLite에서는 이 알고리즘을 박스 밖에서도 정규 표현식을 사용할 수 있도록 이 알고리즘을 구현해줍니다. 하지만 확장기능을 사용하여 외부에서 만든 알고리즘 구현을 사용하고자 한다면 DB Browser for SQLite에서 제공하는 구현 사용을 자유롭게 끌 수 있습니다. 이 기능은 애플리케이션을 재시작해야 합니다.</p></body></html> + + + + Disable Regular Expression extension + 정규 표현식 확장기능 비활성화 + + + + + Choose a directory + 디렉터리를 선택하세요 + + + + The language will change after you restart the application. + 언어 변경은 애플리케이션을 재시작해야 반영됩니다. + + + + Select extension file + 확장기능 파일을 선택하세요 + + + + Extensions(*.so *.dylib *.dll);;All files(*) + 확장기능(*.so *.dylib *dll);;모든 파일(*) + + + + Import certificate file + 인증서 파일 가져오기 + + + + No certificates found in this file. + 이 파일에는 인증서가 없습니다. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + 정말로 이 인증서를 삭제하겠습니까? 애플리케이션 설정에서 모든 증명 데이터가 삭제될 것입니다! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + 저장된 모든 설정을 정말로 초기화하시겠습니까? +모든 설정이 초기화되고 기본값으로 대체됩니다. + + + + ProxyDialog + + + Proxy Configuration + 프록시 설정 + + + + Pro&xy Type + 프록시 종류(&X) + + + + Host Na&me + 서버 주소(&M) + + + + Port + 포트 + + + + Authentication Re&quired + 인증 정보 필요(&Q) + + + + &User Name + 사용자명(&U) + + + + Password + 암호 + + + + None + 사용하지 않음 + + + + System settings + 시스템 설정 + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + 데이터 가져오기 에러 + + + + from record number %1 + 레코드 넘버: %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + CSV 파일 가져오기... + + + + Cancel + 취소 + + + + All files (*) + 모든 파일(*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + SQLite 데이터베이스 파일(*.db *.sqlite *.sqlite3 *.db3) + + + + Left + 왼쪽 + + + + Right + 오른쪽 + + + + Center + 중앙 + + + + Justify + 정렬 + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + SQLite 데이터베이스 파일 (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + DB Browser for SQLite 프로젝트 파일 (*.sqbpro) + + + + SQL Files (*.sql) + SQL 파일 (*.sql) + + + + All Files (*) + 모든 파일 (*) + + + + Text Files (*.txt) + 텍스트 파일 (*.txt) + + + + Comma-Separated Values Files (*.csv) + 쉼표로 구분된 파일 (*.csv) + + + + Tab-Separated Values Files (*.tsv) + 탭으로 분리된 파일 (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + 구분자로 구분된 파일 (*.dsv) + + + + Concordance DAT files (*.dat) + Concordance DAT 파일 (*.dat) + + + + JSON Files (*.json *.js) + JSON 파일 (*.json *.js) + + + + XML Files (*.xml) + XML 파일 (*.xml) + + + + Binary Files (*.bin *.dat) + 바이너리 파일 (*bin *.dat) + + + + SVG Files (*.svg) + SVG 파일 (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Hex 덤프 파일 (*.dat *bin) + + + + Extensions (*.so *.dylib *.dll) + 확장기능 (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + 커밋 ID + + + + Message + 메시지 + + + + Date + 날짜 + + + + Author + 저자 + + + + Size + 크기 + + + + Authored and committed by %1 + %1에 의해 작성되고 커밋됨 + + + + Authored by %1, committed by %2 + %1에 의해 작성되고, %2에 의해 커밋됨 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + 로컬 데이터베이스 목록을 열던 중 에러가 발생했습니다. %1 + + + + Error creating local databases list. +%1 + 로컬 데이터베이스 목록을 생성하던 중 에러가 발생했습니다. %1 + + + + RemoteDock + + + Remote + 원격 + + + + Local + 로컬 + + + + Identity + 신원 + + + + Push currently opened database to server + 현재 열린 데이베이스를 서버로 반영합니다 + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>이 창에서는 DBHub.io 웹 사이트의 원격 데이터베이스를 DB Browser for SQLite에 추가할 수 있습니다.</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">DBHub.io 웹 사이트에 로그인(원하시면 GitHub 자격 증명을 사용할 수 있습니다)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">버튼을 클릭하여 &quot;클라이언트 인증서 생성&quot; (당신의 신원 정보). 그러면 인증서 파일이 제공됩니다(로컬 디스크에 저장)</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">DB Browser for SQLite 설정의 원격 탭으로 이동합니다. 버튼을 클릭하여 DB Browser for SQLite에 새 인증서를 추가하고 방금 다운로드한 인증서 파일을 선택합니다.</li></ol><p>이제 원격 패널에 ID가 표시되고 원격 데이터베이스를 추가할 수 있습니다.</p></body></html> + + + + Current Database + 현재 데이터베이스 + + + + Clone + 복제 + + + + User + 사용자 + + + + Database + 데이터베이스 + + + + Branch + 브랜치 + + + + Commits + 커밋 + + + + Commits for + 커밋 조회할 브랜치 + + + + Delete Database + 데이터베이스 삭제 + + + + Delete the local clone of this database + 이 데이터베이스의 로컬 복제본 삭제 + + + + Open in Web Browser + 웹 브라우저에서 열기 + + + + Open the web page for the current database in your browser + 브라우저에서 현재 데이터베이스의 웹 페이지를 엽니다 + + + + Clone from Link + 주소로부터 복제 + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + 이를 사용하여 로컬 편집을 위해 데이터베이스의 웹 페이지에서 제공된 URL을 사용하여 원격 데이터베이스를 다운로드 합니다. + + + + Refresh + 새로고침 + + + + Reload all data and update the views + 모든 데이터를 다시 로드하고 뷰를 업데이트합니다 + + + + F5 + + + + + Clone Database + 데이터베이스 복제 + + + + Open Database + 데이터베이스 열기 + + + + Open the local copy of this database + 이 데이터베이스의 로컬 복제본을 엽니다 + + + + Check out Commit + 커밋 체크아웃 + + + + Download and open this specific commit + 이 특정 커밋을 다운로드하여 엽니다 + + + + Check out Latest Commit + 최신 커밋 확인 + + + + Check out the latest commit of the current branch + 이 브랜치의 최신 커밋 확인 + + + + Save Revision to File + 리비전을 파일에 저장 + + + + Saves the selected revision of the database to another file + 데이터베이스의 선택한 리비전을 다른 파일에 저장합니다 + + + + Upload Database + 데이터베이스 업로드 + + + + Upload this database as a new commit + 이 데이터베이스를 새 커밋으로 업로드 + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>현재 기본으로 제공되는 읽기 전용 ID를 사용하고 있습니다. 데이터베이스를 업로드하려면 DBHub.io 계정을 구성하고 사용해야 합니다.</p><p>아직 DBHub.io 계정이 없으십니까? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">지금 만들어</span></a> 인증서를 가져옵니다. <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">여기</span></a>에서 데이터베이스를 공유하세요.</p><p>온라인 도움말을 보려면 <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">여기</span></a>를 방문하세요.</p></body></html> + + + + Back + 뒤로가기 + + + + Select an identity to connect + 연결할 ID를 선택하세요 + + + + Public + 공개 + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + 로컬 편집을 위해 원격 서버에서 데이터베이스를 다운로드합니다. +복제하려는 URL을 입력하세요. 데이터베이스의 웹 페이지에서 +'DB4S에서 데이터베이스 복제' 버튼을 클릭하여 +이러한 URL을 생성할 수 있습니다. + + + + Invalid URL: The host name does not match the host name of the current identity. + 잘못된 URL: 호스트 이름이 현재 ID의 호스트 이름과 일치하지 않습니다. + + + + Invalid URL: No branch name specified. + 잘못된 URL: 지정된 브랜치 이름이 없습니다. + + + + Invalid URL: No commit ID specified. + 잘못된 URL: 커밋 ID가 지정되지 않았습니다. + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + 데이터베이스의 로컬 복제본을 수정했습니다. 이 커밋을 가져오면 이러한 로컬 변경 사항이 무시됩니다. +계속하시겠습니까? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + 데이터베이스에 저장되지 않은 변경 사항이 있습니다. 저장하기 전에 푸시하시겠습니까? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + 삭제하려는 데이터베이스가 현재 열려있습니다. 삭제하기 전에 닫으십시오. + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + 이렇게하면 아직 커밋하지 않은 모든 변경 사항과 함께 이 데이터베이스의 로컬 버전이 삭제됩니다. 정말로 데이터베이스를 삭제하시겠습니까? + + + + RemoteLocalFilesModel + + + Name + 이름 + + + + Branch + 브랜치 + + + + Last modified + 마지막 수정일 + + + + Size + 크기 + + + + Commit + 커밋 + + + + File + 파일 + + + + RemoteModel + + + Name + 이름 + + + + Last modified + 마지막 수정 + + + + Size + 크기 + + + + Commit + 커밋 + + + + Size: + 크기: + + + + Last Modified: + 마지막 수정: + + + + Licence: + 라이센스: + + + + Default Branch: + 기본 브랜치: + + + + RemoteNetwork + + + Choose a location to save the file + 파일을 저장할 위치를 선택하세요 + + + + Error opening remote file at %1. +%2 + %1 에 있는 원격 파일을 열던 중 에러가 발생했습니다. +%2 + + + + Error: Invalid client certificate specified. + 에러: 올바르지 않은 클라이언트 인증서입니다. + + + + Please enter the passphrase for this client certificate in order to authenticate. + 인증을 위한 클라이언트 인증서 암호를 입력해주세요. + + + + Cancel + 취소 + + + + Uploading remote database to +%1 + %1로 +원격 데이터베이스를 업로드 중입니다 + + + + Downloading remote database from +%1 + %1 에서 원격 데이터베이스를 다운로드 중입니다. {1?} + + + + + Error: The network is not accessible. + 에러: 네트워크에 접근할 수 없습니다. + + + + Error: Cannot open the file for sending. + 에러: 보내려는 파일을 열 수 없습니다. + + + + RemotePushDialog + + + Push database + 데이터베이스 푸시(Push) + + + + Database na&me to push to + 푸시할 데이터베이스 이름(&M) + + + + Commit message + 커밋 메시지 + + + + Database licence + 데이터베이스 라이센스 + + + + Public + 공개 + + + + Branch + 브랜치 + + + + Force push + 강제 푸시 + + + + Username + 사용자명 + + + + Database will be public. Everyone has read access to it. + 공개 데이터베이스로 지정합니다. 누구나 읽기 접근이 가능합니다. + + + + Database will be private. Only you have access to it. + 비공개 데이터베이스로 지정합니다. 당신만 접근할 수 있습니다. + + + + Use with care. This can cause remote commits to be deleted. + 주의해서 사용하세요. 원격 커밋을 삭제하는 결과를 초래할 수 있습니다. + + + + RunSql + + + Execution aborted by user + 사용자에 의해서 실행이 취소되었습니다 + + + + , %1 rows affected + , %1 행이 영향 받았습니다 + + + + query executed successfully. Took %1ms%2 + %2 데이터베이스에 쿼리가 성공적으로 실행되었습니다. %1ms 걸렸습니다 + + + + executing query + 쿼리 실행 중 + + + + SelectItemsPopup + + + A&vailable + 사용 가능한(&V) + + + + Sele&cted + 선택됨(&C) + + + + SqlExecutionArea + + + Form + + + + + Find previous match [Shift+F3] + 이전 찾기 [Shift+F3] + + + + Find previous match with wrapping + 랩핑(Wrapping)된 이전 일치내역 검색하기 + + + + Shift+F3 + + + + + The found pattern must be a whole word + 온전한 낱말 일치 검색패턴 + + + + Whole Words + 온전한 낱말 일치 + + + + Text pattern to find considering the checks in this frame + 이 프레임 안에서 확인하기 위해 검색하고자 하는 문자열 패턴 + + + + Find in editor + 편집기 내에서 찾기 + + + + The found pattern must match in letter case + 대소문자 일치 검색패턴 + + + + Case Sensitive + 대소문자 일치 + + + + Find next match [Enter, F3] + 다음 찾기 [Enter,F3] + + + + Find next match with wrapping + 랩핑(Wrapping)으로 다음 찾기 + + + + F3 + + + + + Interpret search pattern as a regular expression + 검색 패턴 정규 표현식 사용 + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>선택하면 찾을 패턴이 UNIX 정규 표현식으로 해석됩니다. <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>를 참고하십시오.</p></body></html> + + + + Regular Expression + 정규 표현식 + + + + + Close Find Bar + 검색바 닫기 + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>마지막으로 실행된 명령문의 결과입니다.</p><p>이 패널을 축소하고 대신 <span style=" font-style:italic;">사용자</span> 선택과 함께 <span style=" font-style:italic;">SQL 로그</span> 독을 사용할 수 있습니다.</p></body></html> + + + + Results of the last executed statements + 가장 최근 실행 구문 결과 + + + + This field shows the results and status codes of the last executed statements. + 이 필드는 가장 최근에 실행된 구문의 결과와 상태 코드를 보여줍니다. + + + + Couldn't read file: %1. + 파일을 읽을 수 없습니다: %1. + + + + + Couldn't save file: %1. + 파일을 저장할 수 없습니다: %1. + + + + Your changes will be lost when reloading it! + 다시 불러오면 변경 사항을 잃습니다! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + "%1" 파일이 다른 프로그램에 의해 수정되었습니다. 다시 불러오겠습니까?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) abs(X) 함수는 숫자 매개변수 X의 절대값을 반환합니다. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () changes() 함수는 가장 최근에 실행된 INSERT, DELETE, UPDATE 구문에서 데이터베이스에서 변경되거나 추가되거나 삭제된 행 수를 반환합니다. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) char(X1,X2,...,XN) 함수는 각각의 X1에서 XN 숫자 값의 유니코드 포인트 값을 가진 문자들로 구성된 문자열을 반환합니다. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) coalesce() 함수는 첫번째 NULL이 아닌 인자 값의 사본을 반환합니다. 만약 인자 값이 모두 NULL이라면 NULL을 반환합니다 + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) glob(X,Y) 함수는 "Y GLOB X" 표현식과 같습니다. + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) ifnull() 함수는 첫번째 NULL이 아닌 인자 값의 사본을 반환합니다. 만약 인자값 둘 다 NULL이라면 NULL을 반환합니다. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) instr(X,Y) 함수는 문자열 X에서 문자열 Y가 있다면 첫 글자 위치 + 1 값을 리턴합니다. 만약 문자열 X에서 문자열 Y가 발견되지 않는다면 0을 반환합니다. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) hex() 함수는 매개변수를 BLOB으로 변환한 후 blob의 내용을 대문자 16진수 문자열로 변환하여 반환합니다. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () last_insert_rowid() 함수는 함수가 호출된 데이터베이스 연결에서 가장 최근에 추가된 행의 ROWID를 반환합니다. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) 문자열 변수 X를 위한 것으로 length(X) 함수는 첫 번째 NUL 문자를 만날 때까지의 (바이트 수가 아닌)문자 수를 반환합니다. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) like() 함수는 "Y LIKE X" 표현식을 구현하기위해 사용합니다. + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) like() 함수는 "Y LIKE X ESCAPE Z" 표현식을 구현하기 위해 사용합니다. + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) load_extension(X) 함수는 X라는 공유 라이브러리 파일에서 SQLite 확장을 로드합니다. +이 기능의 사용은 환경설정에서 승인하여야 합니다. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) The load_extension(X) 함수는 진입점 Y를 사용하여 X라는 공유 라이브러리 파일에서 SQLite 확장을 로드합니다. +이 기능의 사용은 환경설정에서 승인되어야 합니다. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) lower(X) 함수는 문자열 X에서 모든 ASCII 문자를 소문자로 변경한 문자열 사본을 반환합니다. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) 함수는 X의 좌측의 공백 여백을 제거합니다. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) ltrim(X,Y) 함수는 X의 좌측에서 Y에 있는 모든 문자를 제거한 문자열을 반환합니다. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) 다중 인자를 제공하는 max() 함수는 주어진 인자 값 중에서 가장 큰 값을 반환합니다. 만약 주어진 인자 중에 NULL 값이 하나라도 있으면 NULL을 반환합니다. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) 다중 인자를 제공하는 min() 함수는 주어진 인자 값 중에서 가장 작은 값을 반환합니다. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + Y) nullif(X,Y) 함수는 두 인자 값이 서로 다르면 X를 반환하고 두 인자 값이 같으면 NULL을 반환합니다. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) printf(FORMAT,...) SQL 함수는 sqlite3_mprintf() C-언어 함수와 표준 C 라이브러리에서의 printf() 함수처럼 동작합니다. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) quote(X) 함수는 X를 SQL문 안에 포함되기에 적절하도록 SQL 리터럴 문자열로 반환합니다. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () random() 함수는 -9223372036854775808와 +9223372036854775807 사이의 pseudo-랜덤 정수를 반환합니다. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) randomblob(N) 함수는 psedo-랜덤 바이트를 포함한 N-바이트 blob을 반환합니다. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) replace(X,Y,Z) 함수는 문자열 X에 있는 모든 문자열 Y를 Z로 치환한 문자열을 반환합니다. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) round(X) 함수는 부동소수점 값 X를 0의 자리에서 반올림한 값을 반환합니다. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) round(X,Y) 함수는 부동소수점 값 X를 소수점 우측에서 Y자리에서 반올림한 값을 반환합니다. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X)은 X의 우측 공백을 제거합니다. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) rtrim(X,Y) 함수는 X의 우측에서 Y에 있는 모든 문자를 삭제한 문자열을 반환합니다. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) soundex(X) 함수는 문자열 X의 사운덱스(Soundex) 인코딩 문자열을 반환합니다. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) 함수는 문자열 X에서 Y번째부터 끝까지 모든 문자열을 반환합니다. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) substr(X,Y,Z) 함수는 문자열 X에서 Y번째 문자부터 Z문자 수만큼 반환합니다. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () total_changes() 함수는 현재 데이터베이스 연결이 열린 후 INSERT, UPDATE, DELETE 구문에 의해서 변경된 레코드 행 수를 반환합니다. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) 함수는 X의 양쪽 공백을 제거합니다. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) trim(X,Y) 함수는 X의 양끝에서 Y에 해당하는 문자들을 삭제한 문자열을 반환합니다. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) typeof(X) 함수는 표현식 X의 데이터 타입을 나타내는 문자열을 반환합니다. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) unicode(X) 함수는 문자열 X의 첫 글자에 해당하는 숫자 유니코드 포인트를 반환합니다. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) upper(X) 함수는 입력 문자열 X에서 ASCII 문자에 해당하는 글자를 대문자로 변경한 문자열 사본을 반환합니다. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) zeroblob(N) 함수는 N 바이트의 0x00으로 이루어진 BLOB을 구성하여 반환합니다. + + + + + + + (timestring,modifier,modifier,...) + (timestring,modifier,modifier,...) + + + + (format,timestring,modifier,modifier,...) + (format,timestring,modifier,modifier,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) avg() 함수는 그룹에서 모든 NULL이 아닌 X의 값의 평균을 반환합니다. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) count(X) 함수는 그룹에서 NULL이 아닌 개수를 세어 반환합니다. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) group_concat() 함수는 X의 모든 NULL이 아닌 값들의 문자열로 합쳐서 반환합니다. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) group_concat() 함수는 X의 모든 NULL이 아닌 값들의 문자열로 합쳐서 반환합니다. 만약 매개변수 Y가 있다면 값들을 문자열로 합칠 때 구분자로 사용합니다. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) max() 집계 함수는 그룹에서 모든 값들 중 가장 큰 값을 반환합니다. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) min() 집계 함수는 그룹에서 NULL이 아닌 모든 값들 중 가장 작은 값을 반환합니다. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) sum(x)과 total() 집계 함수는 그룹의 모든 NULL이 아닌 값들의 합을 반환합니다. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () 현재 파티션 내의 행 번호입니다. 행은 창 정의의 ORDER BY 절에 정의된 순서대로 1부터 시작하거나 임의의 순서로 번호가 지정됩니다. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () 각 그룹의 첫 번째 피어의 row_number ()-간격이 있는 현재 행의 순위. ORDER BY 절이 없으면 모든 행이 피어로 간주되고 이 함수는 항상 1을 반환합니다. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () 파티션 내 현재 행의 피어 그룹 번호 - 간격이 없는 현재 행의 순위, 파티션은 창 정의의 ORDER BY절에 정의된 순서대로 1부터 시작됩니다. ORDER BY 절이 없으면 모든 행이 피어로 간주되어 이 함수는 항상 1을 반환합니다. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () 이름에도 불구하고 이 함수는 항상 (rank - 1)/(partition-rows - 1)과 같은 0.0에서 1.0 사이의 값을 반환합니다. 여기서 rank는 내장 창 함수 rank() 및 partition에서 반환한 값입니다. rows는 파티션의 총 행 수 입니다. 파티션에 행이 하나만 포함된 경우 이 함수는 0.0을 반환합니다. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () 누적 분포. row-number/partition-rows로 계산됩니다. 여기서 row-number는 그룹의 마지막 피어에 대해 row_number()에서 반환한 값이고 partition-rows는 파티션의 행 수입니다. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) 인자 N은 정수로 취급됩니다. 이 함수는 ORDER BY 구문이 있다면 그 순서대로, 없다면 임의의 순서로 가능하면 균등하게 N개의 그룹으로 나누고 각 그룹에 1부터 N 사이의 정수를 할당합니다. 필요한 경우 큰 그룹이 먼저 나옵니다. 이 함수는 현재 행이 속해있는 그룹이 할당된 정수를 반환합니다. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) 파티션의 이전 행에 대해 expr 표현식을 평가한 결과를 반환합니다. 또는 이전 행이 없는 경우(현재 행이 첫번째일 때) NULL 반환됩니다. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) offset 인수가 제공되면 음이 아닌 정수여야합니다. 이 경우 반환된 값은 파티션 내의 현재 행 이전에 행 오프셋 행에 대해 expr를 평가한 결과입니다. 오프셋이 0이면 expr이 현재 행에 대해 평가됩니다. 현재 행 앞에 행 오프셋 행이 없으면 NULL이 반환됩니다. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) default도 제공되면 offset으로 식별된 행이 존재하지 않았을 때 NULL 대신 반환됩니다. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) 파티션의 다음 행에 대해 expr 표현식을 평가한 결과를 반환합니다. 또는 다음 행이 없는 경우(현재 행이 마지막 행일 때) NULL이 반환됩니다. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) offset 인수가 제공되면 음이 아닌 정수여야 합니다. 이 경우 반환된 값은 파티션 내에서 현재 행 뒤에 있는 행 오프셋 행에 대해 expr을 평가한 결과입니다. 오프셋이 0이면 expr이 현재 행에 대해 평가됩니다. 현재 행 뒤에 행 오프셋 행이 없으면 NULL이 반환됩니다. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr)이 내장 창 함수는 집계 창 함수와 동일한 방식으로 각 행의 창 프레임을 계산합니다. 각 행의 창 프레임에서 첫 번째 행에 대해 평가된 expr의 값을 리턴합니다. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr)이 내장 창 함수는 집계 창 함수와 동일한 방식으로 각 행의 창 프레임을 계산합니다. 각 행의 창 프레임에서 마지막 행에 대해 평가 된 expr의 값을 리턴합니다. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N)이 내장 창 함수는 집계 창 함수와 동일한 방식으로 각 행의 창 프레임을 계산합니다. 창 프레임의 N 행에 대해 평가 된 expr의 값을 리턴합니다. 행은 ORDER BY 절에 정의 된 순서대로 1부터 시작하여 창 프레임 내에서 번호가 매겨집니다. 그렇지 않으면 임의의 순서로 번호가 매겨집니다. 파티션에 N 번째 행이 없으면 NULL이 반환됩니다. + + + + SqliteTableModel + + + reading rows + 행을 읽는 중 + + + + loading... + 로딩 중... + + + + References %1(%2) +Hold %3Shift and click to jump there + 참조 %1(%2) +%3Shift를 누른 상태에서 이동하고자 하는 곳을 클릭하세요 + + + + Error changing data: +%1 + 데이터 수정 에러: +%1 + + + + retrieving list of columns + 컬럼은 필드로 표현합니다. + 필드 목록 가져오기 + + + + Fetching data... + 데이터를 가져오는 중입니다... + + + + + Cancel + 취소 + + + + TableBrowser + + + Browse Data + 데이터 탐색 + + + + &Table: + 테이블(&T): + + + + Select a table to browse data + 탐색하려는 데이터가 있는 테이블을 선택하세요 + + + + Use this list to select a table to be displayed in the database view + 리스트에서 테이블을 선택하면 데이터베이스 뷰에서 볼 수 있습니다 + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + 이것은 데이터베이스의 테이블 뷰입니다. 다음 작업을 수행할 수 있습니다: + - 값을 인라인으로 편집하기 위한 작성을 시작합니다. + - 셀 편집기 창에서 내용을 편집하려면 레코드를 더블 클릭합니다. + - 셀 내용을 NULL 값으로 삭제하려면 Alt+Del + - Ctrl + "는 현재 레코드를 복제합니다. + - 위의 셀에서 값을 복사하려면 Ctrl + ' + - 표준 선택 및 복사 / 붙여넣기 작업. + + + + Text pattern to find considering the checks in this frame + 이 프레임 안에서 확인하기 위해 검색하고자 하는 문자열 패턴 + + + + Find in table + 테이블에서 찾기 + + + + Find previous match [Shift+F3] + 이전 찾기 [Shift+F3] + + + + Find previous match with wrapping + 랩핑된 이전 일치내역 검색하기 + + + + Shift+F3 + + + + + Find next match [Enter, F3] + 다음 찾기 [Enter, F3] + + + + Find next match with wrapping + 랩핑(Wrapping)으로 다음 찾기 + + + + F3 + + + + + The found pattern must match in letter case + 대소문자 일치 검색패턴 + + + + Case Sensitive + 대소문자 일치 + + + + The found pattern must be a whole word + 온전한 낱말 일치 검색패턴 + + + + Whole Cell + 전체 셀 + + + + Interpret search pattern as a regular expression + 검색 패턴을 정규 표현식으로 해석 + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>선택하면 찾으려는 패턴이 UNIX 정규식으로 해석됩니다. <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>을 참고하세요.</p></body></html> + + + + Regular Expression + 정규 표현식 + + + + + Close Find Bar + 검색바 닫기 + + + + Text to replace with + 바꾸려는 텍스트 + + + + Replace with + ~로 바꾸기 + + + + Replace next match + 일치하는 다음 텍스트 바꾸기 + + + + + Replace + 바꾸기 + + + + Replace all matches + 일치하는 모든 텍스트 바꾸기 + + + + Replace all + 모두 바꾸기 + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>첫 페이지로 갑니다.</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>테이블 뷰 맨 위로 가기 위해서는 이 버튼을 클릭하세요.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + 한 페이지 위로 스크롤합니다 + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>위 테이블 뷰에서 레코드를 한 페이지 앞으로 가려면 이 버튼을 클릭하세요.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 of 0 + + + + Scroll one page downwards + 한 페이지 아래로 스크롤합니다 + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>위 테이블 뷰에서 레코드를 한 페이지 뒤로 가려면 이 버튼을 클릭하세요.</p></body></html> + + + + > + > + + + + Scroll to the end + 마지막 페이지로 이동 + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>테이블 뷰 맨 아래로 가기 위해서는 이 버튼을 클릭하세요.</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>특정 레코드로 이동하려면 여기를 클릭하세요</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>이 버튼은 특정 위치의 레코드 넘버로 가기 위해서 사용합니다.</p></body></html> + + + + Go to: + 특정 레코드 행으로 가기: + + + + Enter record number to browse + 찾을 레코드 행 번호를 입력하세요 + + + + Type a record number in this area and click the Go to: button to display the record in the database view + 레코드 행 번호를 입력하고 '특정 레코드 행으로 가기:' 버튼을 클릭하면 데이터베이스 뷰에 레코드가 표시됩니다 + + + + 1 + 1 + + + + Show rowid column + 컬럼의 rowid 표시하기 + + + + Toggle the visibility of the rowid column + rowid 컬럼을 표시하거나 숨깁니다 + + + + Unlock view editing + 뷰 수정 잠금 해제하기 + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + 수정을 위하여 현재 뷰의 잠금을 해제합니다. 하지만 수정을 위해서는 적절한 트리거가 필요할 것입니다. + + + + Edit display format + 표시 형식 변경 + + + + Edit the display format of the data in this column + 이 컬럼에 있는 데이터의 표시 형식을 수정합니다 + + + + + New Record + 새 레코드 + + + + + Insert a new record in the current table + 현재 테이블에 새 레코드를 추가합니다 + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>이 버튼은 데이터베이스에 새 레코드를 생성합니다.</p><ul><li><span style=" font-weight:600;">새 레코드</span>: 데이터베이스의 기본값으로 새 레코드를 생성합니다.</li><li><span style=" font-weight:600;">값 삽입...</span>: 데이터베이스에 값을 삽입하기 전에 값을 입력할 수 있는 대화상자를 엽니다. 이를 통해 다양한 제약 조건에 충족하는 값을 입력할 수 있습니다. 이러한 제약으로 인해 <span style=" font-weight:600;">새 레코드</span> 옵션이 실패한 경우에도 이 대화상자가 열립니다.</li></ul></body></html> + + + + + Delete Record + 레코드 삭제 + + + + Delete the current record + 현재 레코드 삭제하기 + + + + + This button deletes the record or records currently selected in the table + 이 버튼은 테이블에서 현재 선택된 레코드를 삭제합니다 + + + + + Insert new record using default values in browsed table + 현재 탐색한 테이블의 기본값을 사용하여 새 레코드 삽입 + + + + Insert Values... + 값 추가... + + + + + Open a dialog for inserting values in a new record + 새 레코드의 값을 삽입하기 위한 대화상자를 엽니다 + + + + Export to &CSV + CSV로 내보내기(&C) + + + + + Export the filtered data to CSV + 필러링된 데이터를 CSV로 내보내기 + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + 이 버튼은 현재 표시된대로(필터, 표시 형식 및 열 순서) 탐색된 테이블의 데이터를 CSV 파일로 내보냅니다. + + + + Save as &view + 뷰로 저장하기(&V) + + + + + Save the current filter, sort column and display formats as a view + 현재 필터, 열 정렬 및 표시 형식을 뷰로 저장 + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + 이 버튼은 검색된 테이블의 현재 설정(필터, 표시 형식 및 열 순서)을 나중에 SQL 문에서 검색하거나 사용할 수 있는 SQL 뷰로 저장합니다. + + + + Save Table As... + 다른 이름으로 테이블 저장... + + + + + Save the table as currently displayed + 현재 출력된 형태로 테이블 저장 + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>이 팝업 메뉴는 현재 탐색 및 필터링된 표에 적용되는 다음 옵션을 제공합니다.</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">CSV로 내보내기: 이 옵션은 현재 표시된대로(필터, 표시 형식 및 열 순서) 탐색된 테이블의 데이터를 CSV 파일로 내보냅니다.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">뷰로 저장: 이 옵션은 검색된 테이블의 현재 설정(필터, 표시 형식 및 열 순서)을 나중에 SQL 문에서 검색하거나 사용할 수 있는 SQL 뷰로 저장합니다.</li></ul></body></html> + + + + Hide column(s) + 컬럼(들) 숨기기 + + + + Hide selected column(s) + 선택한 컬럼(들)을 숨기기 + + + + Show all columns + 전체 컬럼 보기 + + + + Show all columns that were hidden + 숨겨진 전체 컬럼 보기 + + + + + Set encoding + 인코딩 지정하기 + + + + Change the encoding of the text in the table cells + 테이블 셀 안의 텍스트 인코딩을 변경합니다 + + + + Set encoding for all tables + 모든 테이블의 인코딩 지정하기 + + + + Change the default encoding assumed for all tables in the database + 데이터베이스 안에 있는 모든 테이블의 기본 인코딩을 변경합니다 + + + + Clear Filters + 필터 지우기 + + + + Clear all filters + 모든 필터 지우기 + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + 이 버튼은 현재 탐색된 테이블의 헤더 입력 필드에 설정된 모든 필터를 지웁니다. + + + + Clear Sorting + 정렬 초기화 + + + + Reset the order of rows to the default + 행 순서를 기본값으로 재설정 + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + 이 버튼은 현재 검색된 테이블에 지정된 열 정렬을 지우고 기본 순서로 돌아갑니다. + + + + Print + 인쇄하기 + + + + Print currently browsed table data + 현재 탐색한 테이블 데이터를 인쇄합니다 + + + + Print currently browsed table data. Print selection if more than one cell is selected. + 현재 찾아본 테이블 데이터를 인쇄합니다. 둘 이상의 셀이 선택된 경우 선택 항목만 인쇄합니다. + + + + Ctrl+P + + + + + Refresh + 새로고침 + + + + Refresh the data in the selected table + 선택한 테이블의 데이터 새로고치기 + + + + This button refreshes the data in the currently selected table. + 이 버튼은 현재 선택된 테이블의 데이터를 새로고칩니다. + + + + F5 + + + + + Find in cells + 셀에서 찾기 + + + + Open the find tool bar which allows you to search for values in the table view below. + 아래 표 보기에서 값을 검색할 수 있는 도구 모음을 엽니다. + + + + + Bold + 진하게 + + + + Ctrl+B + + + + + + Italic + 기울임 + + + + + Underline + 밑줄 + + + + Ctrl+U + + + + + + Align Right + 우측으로 정렬 + + + + + Align Left + 좌측으로 정렬 + + + + + Center Horizontally + 가운데 정렬 + + + + + Justify + 정렬 + + + + + Edit Conditional Formats... + 조건부 서식 편집... + + + + Edit conditional formats for the current column + 이 컬럼의 조건부 서식 편집 + + + + Clear Format + 서식 지우기 + + + + Clear All Formats + 모든 필터 지우기 + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + 선택한 셀의 모든 셀 서식과 선택한 열의 모든 조건부 서식 지우기 + + + + + Font Color + 글자색 + + + + + Background Color + 배경색 + + + + Toggle Format Toolbar + 서식 툴바 토글 + + + + Show/hide format toolbar + 서식 툴바 표시/숨기기 + + + + + This button shows or hides the formatting toolbar of the Data Browser + 이 버튼은 데이터 브라우저의 서식 도구 모음을 표시하거나 숨깁니다 + + + + Select column + 컬럼 선택 + + + + Ctrl+Space + + + + + Replace text in cells + 셀의 텍스트 바꾸기 + + + + Filter in any column + 모든 열에서 필터링 + + + + Ctrl+R + + + + + %n row(s) + + %n 열(들) + + + + + , %n column(s) + + , %n 컬럼(들) + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . 합계: %1, 평균: %2, 최소값: %3, 최대값: %4 + + + + Conditional formats for "%1" + "%1"에 대한 조건부 서식 + + + + determining row count... + 행 개수 결정 중... + + + + %1 - %2 of >= %3 + %1 - %2 of >= %3 + + + + %1 - %2 of %3 + %1 - %2 of %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + 이 뷰에서 수정을 활성화하기 위하여 pseudo-primary key를 입력하시기 바랍니다. 이것은 뷰에서 유일한 이름이어야 합니다. + + + + Delete Records + 레코드 삭제 + + + + Duplicate records + 레코드 복제하기 + + + + Duplicate record + 레코드 복제하기 + + + + Ctrl+" + + + + + Adjust rows to contents + 내용에 맞게 행 크기 조절 + + + + Error deleting record: +%1 + 레코드 추가 에러: +%1 + + + + Please select a record first + 레코드를 먼저 선택하세요 + + + + There is no filter set for this table. View will not be created. + 이 테이블을 위한 필터가 설정되지 않았습니다. 뷰가 생성되지 않습니다. + + + + Please choose a new encoding for all tables. + 모든 테이블에 설정할 새 인코딩을 선택하세요. + + + + Please choose a new encoding for this table. + 이 테이블에 적용할 새 인코딩을 선택하세요. + + + + %1 +Leave the field empty for using the database encoding. + %1 +데이터베이스 인코딩을 사용하기 위해 필드를 비워둡니다. + + + + This encoding is either not valid or not supported. + 이 인코딩은 올바르지 않거나 지원되지 않습니다. + + + + %1 replacement(s) made. + %1개의 교체가 이루어졌습니다. + + + + VacuumDialog + + + Compact Database + 데이터베이스 크기 줄이기(Vacuum) + + + + Warning: Compacting the database will commit all of your changes. + 주의: 데이터베이스 크기 줄이기를 하면 저장되지 않은 모든 수정사항이 반영됩니다. + + + + Please select the databases to co&mpact: + 크기를 줄일 데이터베이스를 선택하세요(&M): + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_nl.qm b/src/SqliteDBProcess/src/translations/sqlb_nl.qm new file mode 100644 index 0000000..928c3c6 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_nl.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_nl.ts b/src/SqliteDBProcess/src/translations/sqlb_nl.ts new file mode 100644 index 0000000..9e6d4ed --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_nl.ts @@ -0,0 +1,7076 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + Over DB-browser voor SQLite + + + + Version + Versie + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB-browser voor SQLite is een open source en freeware visuele tool om SQLite databasebestanden mee te creëren, te ontwerpen en te bewerken.</p><p>Het is uitgebracht onder een duolicentie: Mozilla Public License versie 2 en GNU General Public License versie 3 of hoger. Je mag het aanpassen en herdistribueren onder de voorwaarden van deze licenties.</p><p>Zie <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> en <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> voor de details.</p><p>Bezoek onze website op <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a> voor meer informatie over dit programma.</p><p><span style=" font-size:small;">Deze software maakt gebruik van de GPL/LGPL Qt Toolkit van </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Zie </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> voor de licentievoorwaarden en informatie.</span></p><p><span style=" font-size:small;">Het maakt tevens gebruik van de Silk iconenset van Mark James, uitgebracht onder de Creative Commons Attribution 2.5 en 3.0 licenties.<br/>Zie </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> voor de details.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Nieuw record toevoegen + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Voer waarden in voor het nieuwe record, rekening houdend met beperkingen. Vette velden zijn verplicht. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + In de Waarde-kolom kun je de waarde opgegeven voor het veld geïdentificeerd in de Naam-kolom. De Type-kolom geeft het type van het veld aan. Standaardwaarden worden in dezelfde stijl getoond als NULL-waarden. + + + + Name + Naam + + + + Type + Type + + + + Value + Waarde + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + In te voeren waarden. Vooringevulde standaardwaarden worden automatisch ingevoerd, tenzij ze aanpast worden. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Wanneer je waarden in het kader hierboven bewerkt, dan wordt de SQL-opdracht voor het invoegen van een nieuw record hier getoond. Je kunt de opdracht dan nog bewerken, voordat je deze opslaat. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Opslaan</span> verstuurt de SQL-instructie voor het invoeren van een nieuw record naar de database.</p><p><span style=" font-weight:600;">Standaardwaarden herstellen</span> herstelt de initiële waarden van de <span style=" font-weight:600;">Value</span>-kolom.</p><p><span style=" font-weight:600;">Annuleren</span> sluit dit venster zonder de opdracht uit te voeren.</p></body></html> + + + + Auto-increment + + Automatisch ophogen + + + + + Unique constraint + + Uniciteitsbeperking + + + + + Check constraint: %1 + + Controlebeperking: %1 + + + + + Foreign key: %1 + + Vreemde sleutel: %1 + + + + + Default value: %1 + + Standaardwaarde: %1 + + + + + Error adding record. Message from database engine: + +%1 + Fout bij toevoegen record. Melding van de database: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Weet je zeker dat je alle ingevoerde waarden wilt herstellen naar hun standaardwaarden? + + + + Application + + + Usage: %1 [options] [<database>|<project>] + + Gebruik: %1 [opties] [<database>|<project>] + + + + + Possible command line arguments: + Mogelijke opdrachtregelargumenten: + + + + -h, --help Show command line options + -h, --help Toon opdrachtregelargumenten + + + + -q, --quit Exit application after running scripts + -q, --quit Sluit applicatie nadat scripts uitgevoerd zijn + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <bestand> Voer dit SQL-bestand uit nadat de database geopend is + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <tabel> Blader door deze tabel nadat de database geopend is + + + + -R, --read-only Open database in read-only mode + -R, --read-only Open database in alleen-lezenmodus + + + + -o, --option <group>/<setting>=<value> + -o, --option <groep>/<instelling>=<waarde> + + + + Run application with this setting temporarily set to value + Applicatie uitvoeren met tijdelijke waarde voor deze instelling + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <groep>/<instelling>=<waarde> + + + + Run application saving this value for this setting + Applicatie uitvoeren met waarde voor deze instelling permanent opgeslagen + + + + -v, --version Display the current version + -v, --version Toon de huidige versie + + + + <database> Open this SQLite database + <database> Open deze SQLite-database + + + + <project> Open this project file (*.sqbpro) + <project> Open dit projectbestand (*.sqbpro) + + + + The -s/--sql option requires an argument + De -s/--sql optie vereist een argument + + + + The file %1 does not exist + Het bestand %1 bestaat niet + + + + The -t/--table option requires an argument + De -t/--table optie vereist een argument + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + De -o/--option and -O/--save-option opties vereisen een argument in de vorm van groep/instelling=waarde + + + + Invalid option/non-existant file: %1 + Ongeldige optie of niet bestaand bestand: %1 + + + + SQLite Version + SQLite-versie + + + + SQLCipher Version %1 (based on SQLite %2) + SQLCipher-versie %1 (gebaseerd op SQLite %2) + + + + DB Browser for SQLite Version %1. + DB-browser voor SQLite versie %1. + + + + Built for %1, running on %2 + Gebouwd voor %1, draaiend op %2 + + + + Qt Version %1 + Qt-versie %1 + + + + CipherDialog + + + SQLCipher encryption + SQLCipher encryptie + + + + &Password + &Wachtwoord + + + + &Reenter password + Wa&chtwoord herhalen + + + + Passphrase + Toegangsfrase + + + + Raw key + Onbewerkte sleutel + + + + Encr&yption settings + Encr&yptie-instellingen + + + + SQLCipher &3 defaults + SQLCipher &3 standaardwaarden + + + + SQLCipher &4 defaults + SQLCipher &4 standaardwaarden + + + + Custo&m + &Aangepast + + + + Page si&ze + &Paginagrootte + + + + &KDF iterations + KDF &iteraties + + + + HMAC algorithm + &HMAC-algoritme + + + + KDF algorithm + &KDF-algoritme + + + + Plaintext Header Size + Platte-&tekstheadergrootte + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Geef een sleutel op om de database mee te versleutelen. +Wees je ervan bewust dat als je een van de andere, optionele, opties wijzigt, je die iedere keer opnieuw moet invoeren als je het databasebestand wilt openen. +Laat wachtwoordvelden leeg om de versleuteling uit te schakelen. +Versleuteling kan wat tijd in beslag nemen en je doet er tevens verstandig aan een backup van je database te hebben! Onopgeslagen wijzigingen worden toegepast voordat de versleuteling aangepast wordt. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Voer de sleutel in waarmee database is versleuteld. +Indien enige andere opties voor dit databasebestand gewijzigd waren dan dien je die gegevens hier nu ook opnieuw in te voeren. + + + + ColumnDisplayFormatDialog + + + Choose display format + Kies een opmaak + + + + Display format + Opmaak + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Kies een opmaak voor de kolom '%1' die op iedere waarde wordt toegepast voordat deze getoond wordt. + + + + Default + Standaard + + + + Decimal number + Decimaal getal + + + + Exponent notation + Wetenschappelijke E-notatie + + + + Hex blob + Hexadecimale blob + + + + Hex number + Hexadecimaal getal + + + + Octal number + Octaal getal + + + + Round number + Afgerond getal + + + + Apple NSDate to date + Apple NSDate naar datum + + + + Java epoch (milliseconds) to date + Java-epoch (milliseconden) naar datum + + + + .NET DateTime.Ticks to date + .NET DateTime.Ticks naar datum + + + + Julian day to date + Juliaanse dag naar datum + + + + Unix epoch to date + Unix-epoch naar datum + + + + Unix epoch to local time + Unix-epoch naar lokale tijd + + + + Windows DATE to date + Windows DATE naar datum + + + + Date as dd/mm/yyyy + Datum als dd/mm/jjjj + + + + Lower case + onderkast + + + + Upper case + BOVENKAST + + + + Custom + Aangepast + + + + Custom display format must contain a function call applied to %1 + Aangepaste opmaak moet bestaan uit een functie-aanroep die toegepast wordt op %1 + + + + Error in custom display format. Message from database engine: + +%1 + Fout in de aangepaste opmaak. Melding van de database: + +%1 + + + + Custom display format must return only one column but it returned %1. + Aangepaste opmaak moet slechts één kolom retourneren, maar retourneerde er %1. + + + + CondFormatManager + + + Conditional Format Manager + Voorwaardelijke-opmaakbeheerder + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + Dit dialoogvenster stelt je in staat om voorwaardelijke opmaakregels te creëren en te bewerken. Iedere celstijl zal worden geselecteerd op basis van de eerst vervulde voorwaarde voor diens celwaarde. De voorwaardelijke opmaakregels kunnen omhoog en omlaag verplaatst worden. Hoger geplaatste regels hebben hogere prioriteit. De syntaxis voor de voorwaarden in dezelfde als voor filters en een lege voorwaarde wordt toegepast op alle waarden. + + + + Add new conditional format + Nieuwe voorwaardelijke-opmaakregel toevoegen + + + + &Add + &Toevoegen + + + + Remove selected conditional format + Verwijder de geselecteerde voorwaardelijke-opmaakregel + + + + &Remove + &Verwijderen + + + + Move selected conditional format up + Verplaats de geselecteerde voorwaardelijke-opmaakregel omhoog + + + + Move &up + Om&hoog verplaatsen + + + + Move selected conditional format down + Verplaats de geselecteerde voorwaardelijke-opmaakregel omlaag + + + + Move &down + Om&laag verplaatsen + + + + Foreground + Voorgrond + + + + Text color + Tekstkleur + + + + Background + Achtergrond + + + + Background color + Achtergrondkleur + + + + Font + Lettertype + + + + Size + Grootte + + + + Bold + Vet + + + + Italic + Cursief + + + + Underline + Onderstreept + + + + Alignment + Uitlijning + + + + Condition + Voorwaarde + + + + + Click to select color + Klik om een kleur te selecteren + + + + Are you sure you want to clear all the conditional formats of this field? + Weet je zeker dat je alle voorwaardelijke-opmaakregels voor dit veld wilt verwijderen? + + + + DBBrowserDB + + + This database has already been attached. Its schema name is '%1'. + Deze database is al gekoppeld. Diens schemanaam is '%1'. + + + + Please specify the database name under which you want to access the attached database + Geef de databasenaam zoals je de gekoppelde database wilt benaderen + + + + Invalid file format + Ongeldig bestandsformaat + + + + Do you really want to close this temporary database? All data will be lost. + Weet je zeker dat je deze tijdelijke database wilt sluiten? Alle gegevens zullen verloren gaan. + + + + Do you want to save the changes made to the database file %1? + Wil je de wijzigingen opslaan die je de gemaakt hebt voor database %1? + + + + Database didn't close correctly, probably still busy + Database is niet goed afgesloten; waarschijnlijk nog steeds bezig + + + + The database is currently busy: + De database is momenteel bezig: + + + + Do you want to abort that other operation? + Wil je die andere handeling afbreken? + + + + Exporting database to SQL file... + Database wordt geëxporteerd naar SQL-bestand... + + + + + Cancel + Annuleren + + + + + No database file opened + Er is geen databasebestand open + + + + Executing SQL... + SQL wordt uitgevoerd... + + + + Action cancelled. + Handeling geannuleerd. + + + + + Error in statement #%1: %2. +Aborting execution%3. + Fout in instructie #%1: %2. +Uitvoering wordt afgebroken%3. + + + + + and rolling back + en teruggedraaid + + + + didn't receive any output from %1 + Geen uitvoer ontvangen van %1 + + + + could not execute command: %1 + kon opdracht niet uitvoeren: %1 + + + + Cannot delete this object + Kan dit object niet verwijderen + + + + Cannot set data on this object + Kan de gegevens niet toepassen op dit object + + + + + A table with the name '%1' already exists in schema '%2'. + Er bestaat al een tabel met de naam '%1' in schema '%2'. + + + + No table with name '%1' exists in schema '%2'. + Er bestaat geen tabel met de naam '%1' in schema '%2'. + + + + + Cannot find column %1. + Kan kolom %1 niet vinden. + + + + Creating savepoint failed. DB says: %1 + Het maken van een herstelpunt is niet gelukt. Melding van de database: %1 + + + + Renaming the column failed. DB says: +%1 + Het hernoemen van de kolom is niet gelukt. Melding van de database: %1 + + + + + Releasing savepoint failed. DB says: %1 + Het opheffen van een herstelpunt is niet gelukt. Melding van de database: %1 + + + + Creating new table failed. DB says: %1 + Het maken van de nieuwe tabel is niet gelukt. Melding van de database: %1 + + + + Copying data to new table failed. DB says: +%1 + Het kopiëren van de gegevens naar de nieuwe tabel is niet gelukt. Melding van de database: %1 + + + + Deleting old table failed. DB says: %1 + Het verwijderen van de oude tabel is niet gelukt. Melding van de database: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + Fout bij het het herstellen van sommige objecten die met deze tabel geassocieerd zijn. Dit gebeurde hoogstwaarschijnlijk omdat kolomnamen gewijzigd zijn. Dit is de SQL-instructie die je wellicht aan wilt passen om het nogmaals mee te proberen: + + + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + Fout bij het hernoemen van tabel '%1' naar '%2'. +Melding van de database: +%3 + + + + could not get list of db objects: %1 + Fout bij het verkrijgen van lijst met database-objecten: %1 + + + + could not get list of databases: %1 + Fout bij het verkrijgen van lijst met databases: %1 + + + + Error setting pragma %1 to %2: %3 + Fout bij het omzetten van pragma %1 naar %2: %3 + + + + File not found. + Bestand niet gevonden. + + + + Error loading extension: %1 + Fout bij het laden van extensie: %1 + + + + could not get column information + Fout bij het verkrijgen van kolominformatie + + + + DbStructureModel + + + Name + Naam + + + + Object + Object + + + + Type + Type + + + + Schema + Schema + + + + Database + Database + + + + Browsables + Doorbladerbare + + + + All + Alle + + + + Temporary + Tijdelijke + + + + Tables (%1) + Tabellen (%1) + + + + Indices (%1) + Indices (%1) + + + + Views (%1) + Views (%1) + + + + Triggers (%1) + Triggers (%1) + + + + EditDialog + + + Edit database cell + Databasecel bewerken + + + + This area displays information about the data present in this database cell + Dit gebied toont informatie over de aanwezige gegevens in de databasecel + + + + Mode: + Modus: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Dit is de lijst van ondersteunde modi voor de celbewerker. Kies een modus om de gegevens van de huidige cel te bekijken of te bewerken. + + + + Text + Tekst + + + + RTL Text + Rechts-naar-linkstekst + + + + Binary + Binair + + + + + Image + Afbeelding + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + De bewerker automatisch aanpassen aan het geladen gegevenstype + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Deze aanvinkbare knop zet het automatisch wisselen van de bewerkingsmodus aan of uit. Wanneer een nieuwe cel wordt geselecteerd of nieuwe gegevens worden geïmporteerd en automatisch wisselen aangevinkt is, dan verandert de modus naar het gedetecteerde gegevenstype. Je kunt de bewerkingsmodus dan alsnog handmatig aanpassen. Vink de knop uit als je handmatig wisselen wilt gebruiken tijdens het navigeren door de cellen. + + + + Auto-switch + Automatisch wisselen + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + De tekstbewerkingsmodi stellen je in staat om platte tekst te bewerken, maar ook JSON en XML met syntaxiskleuring en automatisch formatteren en validatie voordat je het opslaat. + +Fouten worden aangegeven met rode kronkelige onderstreping. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Deze Qt-bewerker wordt voor rechts-naar-linksteksten gebruikt, omdat dit niet ondersteund wordt door de standaard tekstbewerker. Er werden rechts-naar-linkstekens gedetecteerd en daarom is deze bewerkingsmodus automatisch geselecteerd. + + + + Type of data currently in cell + Het gegevenstype van de huidige gegevens in de cel + + + + Size of data currently in table + De grootte van de huidige gegevens in de tabel + + + + Apply data to cell + Gegevens toepassen op cel + + + + This button saves the changes performed in the cell editor to the database cell. + Deze knop slaat de wijzigingen die aangebracht zijn in de celbewerker op in de cel. + + + + Apply + Toepassen + + + + + Print... + Afdrukken... + + + + Open preview dialog for printing displayed image + Open voorvertoningsdialoogvenster om getoonde afbeelding af te drukken + + + + Open preview dialog for printing displayed text + Open voorvertoningsdialoogvenster om getoonde tekst af te drukken + + + + Open preview dialog for printing the data currently stored in the cell + Opent een voorvertoningsdialoogvenster voor het afdrukken van de de huidige gegevens in de cel + + + + + Ctrl+P + + + + + Copy Hex and ASCII + HEX en ASCII kopiëren + + + + Copy selected hexadecimal and ASCII columns to the clipboard + De geselecteerde hexadecimale en ASCII kolommen kopiëren naar het klembord + + + + Ctrl+Shift+C + + + + + Autoformat + Auto-opmaak + + + + Auto-format: pretty print on loading, compact on saving. + Auto-opmaak: mooi opmaken bij het laden, comprimeren bij het opslaan. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Indien geselecteerd zal de auto-opmaakfunctie de gegevens bij het laden mooi opmaken, door de tekst op te delen in regels en deze dan in te laten springen. Bij het opslaan zal de auto-opmaakfunctie de gegevens comprimeren door regeleinden en onnodige witruimte te verwijderen. + + + + &Export... + &Exporteren... + + + + Export to file + Naar bestand exporteren + + + + Opens a file dialog used to export the contents of this database cell to a file. + Opent een bestandsdialoogvenster om de inhoud van deze databasecel naar een bestand te exporteren. + + + + + &Import... + &Importeren... + + + + + Import from file + Uit bestand importeren + + + + + Opens a file dialog used to import any kind of data to this database cell. + Opent een bestandsdialoogvenster om gegevens van een willekeurig gegevenstype naar deze databasecel te importeren. + + + + Set as &NULL + Omzetten naar &NULL + + + + Erases the contents of the cell + Wist de inhoud van de cel + + + + Word Wrap + Woordterugloop + + + + Wrap lines on word boundaries + Past regelterugloop toe op woordbegrenzingen + + + + + Open in default application or browser + In standaard applicatie of browser openen + + + + Open in application + In applicatie openen + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + De waarde wordt geïnterpreteerd als bestand of URL en wordt geopend in de standaard applicatie of webbrower. + + + + Save file reference... + Bestandsreferentie opslaan... + + + + Save reference to file + Referentie in bestand opslaan + + + + + Open in external application + In externe applicatie openen + + + + + Image data can't be viewed in this mode. + Afbeeldingsgegevens kunnen niet worden getoond in deze modus. + + + + + Try switching to Image or Binary mode. + Probeer te wisselen naar Afbeeldings- of Binaire modus. + + + + + Binary data can't be viewed in this mode. + Binaire gegevens kunnen niet worden getoond in deze modus. + + + + + Try switching to Binary mode. + Probeer te wisselen naar Binaire modus. + + + + + Image files (%1) + Afbeeldingbestanden (%1) + + + + Choose a file to import + Kies een bestand om te importeren + + + + %1 Image + %1 Afbeelding + + + + Binary files (*.bin) + Binaire bestanden (*.bin) + + + + Choose a filename to export data + Kies een bestandsnaam om naar te exporteren + + + + Invalid data for this mode + Ongeldige gegevens voor deze modus + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + De cel bevat ongeldige %1 gegevens. Reden: %2. Weet je zeker dat je het op de cel wilt toepassen? + + + + + Type of data currently in cell: Text / Numeric + Gegevenstype van de huidige gegevens in de cel: tekst / numeriek + + + + + + %n character(s) + + %n teken + %n tekens + + + + + Type of data currently in cell: %1 Image + Gegevenstype van de huidige gegevens in de cel: %1 afbeelding + + + + %1x%2 pixel(s) + %1x%2 pixel(s) + + + + Type of data currently in cell: NULL + Gegevenstype van de huidige gegevens in de cel: NULL + + + + + %n byte(s) + + %n byte + %n bytes + + + + + Type of data currently in cell: Valid JSON + Gegevenstype van de huidige gegevens in de cel: geldige JSON + + + + Type of data currently in cell: Binary + Gegevenstype van de huidige gegevens in de cel: binair + + + + Couldn't save file: %1. + Kon het bestand niet opslaan: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + De gegevens zijn in een tijdelijk bestand opgeslagen en is geopend in de standaard applicatie. Je kunt het bestand nu bewerken en, wanneer je klaar bent, de opgeslagen nieuwe gegevens toepassen op de cel of de wijzingen annuleren. + + + + EditIndexDialog + + + Edit Index Schema + Schema-index bewerken + + + + &Name + &Naam + + + + &Table + &Tabel + + + + &Unique + &Uniek + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Om de index slechts op een gedeelte van de tabel toe te passen kun je hier een WHERE clausule opgeven die slechts dát gedeelte van de tabel selecteert dat geïndexeerd dient te worden + + + + Partial inde&x clause + Gedeeltelijke inde&x-clausule + + + + Colu&mns + &Kolommen + + + + Table column + Tabelkolom + + + + Type + Type + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Voeg een nieuwe expressiekolom toe aan de index. Expressiekolommen bevatten SQL-expressies in plaats van kolomnamen. + + + + Index column + Indexkolom + + + + Order + Sortering + + + + Deleting the old index failed: +%1 + Het verwijderen van de oude index is mislukt: +%1 + + + + Creating the index failed: +%1 + Het maken van de index is mislukt: +%1 + + + + EditTableDialog + + + Edit table definition + Tabeldefinitie bewerken + + + + Table + Tabel + + + + Advanced + Geavanceerd + + + + Database sche&ma + Database&schema + + + + Without Rowid + Zonder &rowid + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Maak van deze tabel een 'WITHOUT rowid'-tabel. Om deze optie toe te kunnen passen is een primair sleutelveld van het type INTEGER nodig, waarop geen automatische ophoging wordt toegepast. + + + + Fields + Velden + + + + Add + Toevoegen + + + + Remove + Verwijderen + + + + Move to top + Bovenaan plaatsen + + + + Move up + Omhoog verplaatsen + + + + Move down + Omlaag verplaatsen + + + + Move to bottom + Onderaan plaatsen + + + + + Name + Naam + + + + + Type + Type + + + + NN + NN + + + + Not null + Niet NULL + + + + PK + PS + + + + Primary key + Primaire sleutel + + + + AI + AO + + + + Autoincrement + Automatisch ophogen + + + + U + U + + + + + + Unique + Uniek + + + + Default + Standaard + + + + Default value + Standaardwaarde + + + + + + Check + Controle + + + + Check constraint + Controlebeperking + + + + Collation + Collatie + + + + + + Foreign Key + Vreemde sleutel + + + + Constraints + Beperkingen + + + + Add constraint + Beperking toevoegen + + + + Remove constraint + Beperking verwijderen + + + + Columns + Kolommen + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Waarschuwing: </span>Er is iets aan deze tabeldefinitie dat onze parser niet volledig begrijpt. Het aanpassen en opslaan van deze tabel kan problemen opleveren.</p></body></html> + + + + + Primary Key + Primaire sleutel + + + + Add a primary key constraint + Voeg een primaire sleutelbeperking toe + + + + Add a foreign key constraint + Voeg een vreemde sleutelbeperking toe + + + + Add a unique constraint + Voeg een uniciteitsbeperking toe + + + + Add a check constraint + Voeg een controlebeperking toe + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Er kan maar een primairesleutel per tabel bestaan. Pas in plaats daarvan de al bestaande primaire sleutel aan. + + + + Error creating table. Message from database engine: +%1 + Fout bij maken van de tabel. Melding van de database: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Er bestaat al een veld met die naam. Hernoem dat veld eerst of kies een andere naam voor dit veld. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Naar deze kolom wordt verwezen in een vreemde sleutel in tabel %1 en kan daarom niet aangepast worden. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Er is tenminste een record waarin de waarde van dit veld NULL is. Dit maakt het onmogelijk om deze optie toe te passen. Pas de tabelgegevens eerst aan. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Er is tenminste een record waarin de waarde van dit veld geen geheel getal is. Dit maakt het onmogelijk om de AO-optie toe te passen. Pas de tabelgegevens eerst aan. + + + + Column '%1' has duplicate data. + + Kolom '%1' heeft gedupliceerde waarden. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Dit maakt het onmogelijk om de Uniek-optie toe te passen. Verwijder eerst de gedupliceerde waarden, zodat de Uniek-optie toe kan worden gepast. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Weet je zeker dat je het veld '%1' wilt verwijderen? +Alle waarden die momenteel opgeslagen zijn in dit veld zullen verloren gaan. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Voeg eerste een veld toe dat aan de volgende criteria voldoet, voordat je de 'Zonder rowid' optie toepast: + - Primaire sleutel ingeschakeld + - Automatisch ophogen uitgeschakeld + + + + ExportDataDialog + + + Export data as CSV + Gegevens exporteren als CSV + + + + Tab&le(s) + &Tabel(-len) + + + + Colu&mn names in first line + &Kolomnamen op eerste regel + + + + Fie&ld separator + &Veldscheidingsteken + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + Anders + + + + &Quote character + &Scheidingsteken tekenreeks + + + + " + " + + + + ' + ' + + + + New line characters + Nieuwe-regeltekens + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Mooi opmaken + + + + Export data as JSON + Exporteer de gegevens als JSON + + + + exporting CSV + CSV wordt geëxporteerd + + + + + Could not open output file: %1 + Kon het uitvoerbestand niet openen: %1 + + + + exporting JSON + JSON wordt geëxporteerd + + + + + Choose a filename to export data + Kies een bestandsnaam om naar te exporteren + + + + Please select at least 1 table. + Selecteerd tenminste één tabel. + + + + Choose a directory + Kies een map + + + + Export completed. + Het exporteren is voltooid. + + + + ExportSqlDialog + + + Export SQL... + SQL exporteren... + + + + Tab&le(s) + &Tabel(-len) + + + + Select All + Alles selecteren + + + + Deselect All + Alles deselecteren + + + + &Options + &Opties + + + + Keep column names in INSERT INTO + Kolomnamen behouden in INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Meervoudige records (VALUES) per INSERT-instructie + + + + Export everything + Alles exporteren + + + + Export schema only + Alleen het schema exporteren + + + + Export data only + Alleen de gegevens exporteren + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Ouder schema behouden (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Ouder schema overschrijven (DROP TABLE, daarna CREATE TABLE) + + + + Please select at least one table. + Selecteer tenminste één tabel. + + + + Choose a filename to export + Kies een bestandsnaam om naar te exporteren + + + + Export completed. + Het exporteren is voltooid. + + + + Export cancelled or failed. + Het exporteren is geannuleerd of niet gelukt. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Zoeken... + + + + Find and Replace... + Zoeken en Vervangen... + + + + Print... + Afdrukken... + + + + ExtendedTableWidget + + + Use as Exact Filter + Als exact filter gebruiken + + + + Containing + Bevat + + + + Not containing + Bevat niet + + + + Not equal to + Niet gelijk aan + + + + Greater than + Groter dan + + + + Less than + Kleiner dan + + + + Greater or equal + Groter dan of gelijk aan + + + + Less or equal + Kleiner dan of gelijk aan + + + + Between this and... + Binnen het bereik van dit en... + + + + Regular expression + Als reguliere expressie + + + + Edit Conditional Formats... + Voorwaardelijke opmaakregels bewerken... + + + + Set to NULL + Omzetten naar NULL + + + + Copy + Kopiëren + + + + Copy with Headers + Kopiëren met kolomnamen + + + + Copy as SQL + Kopiëren als SQL + + + + Paste + Plakken + + + + Print... + Afdrukken... + + + + Use in Filter Expression + Gebruiken in filterexpressie + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + De inhoud van het klembord is groter dan het geselecteerde bereik. +Wil je het desondanks invoegen? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>Niet alle gegevens zijn geladen. <b>Wil je alle gegevens laden voordat alle records geselecteerd worden?</b><p><p> <b>Nee</b> betekent dat gegevens laden gestopt wordt en de selectie niet toegepast zal worden.<br/> <b>Ja</b> betekent dat het een tijd kan duren totdat alle gegevens geladen zijn, maar de selectie wel toegepast zal worden.</p>Waarschuwing: Alle gegevens laden kan een grote hoeveelheid werkgeheugen vereisen voor grote tabellen. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + Kan de selectie niet omzetten naar NULL. Kolom %1 heeft een NIET NULL-beperking. + + + + FileExtensionManager + + + File Extension Manager + Bestandsextensiebeheerder + + + + &Up + Om&hoog + + + + &Down + Om&laag + + + + &Add + &Toevoegen + + + + &Remove + &Verwijderen + + + + + Description + Omschrijving + + + + Extensions + Extensies + + + + *.extension + *.extensie + + + + FilterLineEdit + + + Filter + Filter + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Deze invoervelden stellen je in staat om snelfilters toe te passen op de huidig geselecteerde tabel. +Gewoonlijk worden records die de ingevoerde tekst bevatten gefilterd. +De volgende operatoren worden ook ondersteund: +% Jokerteken +> Groter dan +< Kleiner dan +>= Groter dan of gelijk aan +<= Kleiner dan of gelijk aan += Gelijk aan: exacte overeenkomst +<> Niet gelijk aan: inverse van exacte overeenkomst +x~y Bereik: waarden tussen x en y +/regexp/ Waarden die voldoen aan de reguliere expressie + + + + Set Filter Expression + Filterexpressie toepassen + + + + What's This? + Wat is dit? + + + + Is NULL + Is NULL + + + + Is not NULL + Is niet NULL + + + + Is empty + Is leeg + + + + Is not empty + Is niet leeg + + + + Not containing... + Bevat niet... + + + + Equal to... + Gelijk aan... + + + + Not equal to... + Niet gelijk aan... + + + + Greater than... + Groter dan... + + + + Less than... + Kleiner dan... + + + + Greater or equal... + Groter dan of gelijk aan... + + + + Less or equal... + Kleiner dan of gelijk aan... + + + + In range... + Binnen het bereik... + + + + Regular expression... + Reguliere expressie... + + + + Clear All Conditional Formats + Verwijder alle voorwaardelijke opmaakregels + + + + Use for Conditional Format + Gebruiken voor voorwaardelijke opmaak + + + + Edit Conditional Formats... + Voorwaardelijke opmaakregels bewerken... + + + + FindReplaceDialog + + + Find and Replace + Zoeken en vervangen + + + + Fi&nd text: + Zoek &tekst: + + + + Re&place with: + Vervang &door: + + + + Match &exact case + Identieke onder-/boven&kast + + + + Match &only whole words + Alleen &hele woorden + + + + When enabled, the search continues from the other end when it reaches one end of the page + Indien geselecteerd zal het zoeken aan het andere einde doorgaan zodra een einde bereikt is + + + + &Wrap around + Door&gaan na einde + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Indien geselecteerd zal, ten opzichte van de cursorpositie, achteruit in plaats van vooruit gezocht worden + + + + Search &backwards + &Omgekeerd zoeken + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>Indien geselecteerd wordt alleen gezocht in de huidige selectie.</p></body></html> + + + + &Selection only + Alleen in &selectie + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Indien geselecteerd wordt de zoekterm geïnterpreteerd als een UNIX reguliere expressie. Zie hiervoor <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Reguliere Expressies in Wikibooks (Engels)</a>.</p></body></html> + + + + Use regular e&xpressions + Gebruik reguliere e&xpressies + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Zoek de eerstvolgende overeenkomst vanaf de cursorpositie, in de richting aangegeven door de optie "Omgekeerd zoeken" + + + + &Find Next + Volgende &zoeken + + + + F3 + + + + + &Replace + &Vervangen + + + + Highlight all the occurrences of the text in the page + Markeer alle overeenkomsten met de tekst in de pagina + + + + F&ind All + Alles z&oeken + + + + Replace all the occurrences of the text in the page + Vervang alle overeenkomsten met de tekst in de pagina + + + + Replace &All + Alles v&ervangen + + + + The searched text was not found + De gezochte tekst is niet gevonden + + + + The searched text was not found. + De gezochte tekst is niet gevonden. + + + + The searched text was replaced one time. + De gezochte tekst is één keer vervangen. + + + + The searched text was found one time. + De gezochte tekst is één keer gevonden. + + + + The searched text was replaced %1 times. + De gezochte tekst is %1 keer vervangen. + + + + The searched text was found %1 times. + De gezochte tekst is %1 keer gevonden. + + + + ForeignKeyEditor + + + &Reset + &Herstellen + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Vreemde-sleutelclausules (ON UPDATE, ON DELETE, etc.) + + + + ImportCsvDialog + + + Import CSV file + CSV-bestand importeren + + + + Table na&me + &Tabelnaam + + + + &Column names in first line + &Kolomnamen op eerste regel + + + + Field &separator + &Veldscheidingsteken + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + | + + + + + Other (printable) + Anders (afdrukbaar) + + + + + Other (code) + Anders (code) + + + + &Quote character + &Scheidingsteken tekenreeks + + + + " + " + + + + ' + ' + + + + &Encoding + &Encodering + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Other + Anders + + + + Trim fields? + Velden trimmen? + + + + Separate tables + Tabellen scheiden + + + + Advanced + Geavanceerd + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + Indien geselecteerd dan wordt een lege waarde in plaats van de standaardwaarde ingevoerd voor bestaande tabellen die een standaardwaarde hebben voor deze kolom. + + + + Ignore default &values + &Negeer standaardwaarden + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Indien geselecteerd dan wordt het importeren afgebroken zodra een lege waarde wordt geprobeerd in te voeren in een NIET NULL veld die geen standaardwaarde kent. + + + + Fail on missing values + Afbreken bij afwezige waarden + + + + Disable data type detection + Gegevenstypedetectie uitschakelen + + + + Disable the automatic data type detection when creating a new table. + Schakel automatische gegevenstypedetectie uit als een nieuwe tabel wordt gemaakt. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Tijdens het importeren in bestaande tabellen kunnen er conflicten optreden met primaire sleutels, unieke beperkingen en unieke indices. Deze instelling geeft je de keuze om daar een strategie voor te kiezen: standaard wordt het importeren afgebroken en teruggedraaid, maar je kunt ook kiezen om conflicterende records te negeren en dus niet te importeren, of om bestaande records te laten overschrijven door geïmporteerde records. + + + + Abort import + Importeren afbreken + + + + Ignore row + Record negeren + + + + Replace existing row + Bestaand record vervangen + + + + Conflict strategy + Conflictstrategie + + + + + Deselect All + Alles deselecteren + + + + Match Similar + Overeenkomende selecteren + + + + Select All + Alles selecteren + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Er bestaat al een tabel met de naam '%1' en importeren in een al bestaande tabel is alleen mogelijk als het aantal kolommen overeenkomt. + + + + There is already a table named '%1'. Do you want to import the data into it? + Er bestaat al een tabel met de naam '%1'. Wil je de gegevens hierin importeren? + + + + Creating restore point failed: %1 + Maken van een herstelpunt is mislukt: %1 + + + + Creating the table failed: %1 + Maken van de tabel is mislukt: %1 + + + + importing CSV + CSV wordt geïmporteerd + + + + Inserting row failed: %1 + Invoegen van record is mislukt: %1 + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + Het importeren van het bestand '%1' duurde %2ms. Hiervan werd %3ms gebruikt voor de rijfunctie. + + + + MainWindow + + + DB Browser for SQLite + DB-browser voor SQLite + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Databasestructuur + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Dit is de structuur van de geopende database. +Je kunt SQL-instructies vanuit een objectrij naar andere applicaties of andere vensters van 'DB-browser voor SQLite' verslepen. + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Gegevensbrowser + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Pragma's bewerken + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Waarschuwing: dit pragma kan niet uitgelezen worden en de waarde is daarom afgeleid. Dit pragma wijzigen kan ervoor zorgen dat een door een SQLite-extensie hergedefinieerde LIKE overschreven wordt. + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + SQL uitvoeren + + + + toolBar1 + werkbalk1 + + + + &File + &Bestand + + + + &Import + &Importeren + + + + &Export + &Exporteren + + + + &Edit + Be&werken + + + + &View + Bee&ld + + + + &Help + &Help + + + + &Tools + E&xtra + + + + DB Toolbar + Databasewerkbalk + + + + Edit Database &Cell + Database&cel bewerken + + + + SQL &Log + SQL-&log + + + + Show S&QL submitted by + Toon S&QL van + + + + User + Gebruiker + + + + Application + Applicatie + + + + Error Log + Foutenlog + + + + This button clears the contents of the SQL logs + Deze knop leegt de inhoud van de SQL-logs + + + + &Clear + &Legen + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + In dit kader kun je de logs inspecteren van alle SQL-opdrachten die door de applicatie of door jezelf zijn uitgevoerd + + + + &Plot + &Plot + + + + DB Sche&ma + Databasesche&ma + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Dit is de structuur van de geopende database. +Je kunt meerdere objectnamen vanuit de Naam-kolom naar de SQL-bewerker verslepen en je kunt hun eigenschappen dan bewerken met behulp van contextmenu's. Dit vergemakkelijkt het opstellen van SQL-instructies. +Je kunt SQL-instructies vanuit de Schema-kolom naar de SQL-bewerker of naar andere applicaties verslepen. + + + + + &Remote + Toegang op &afstand + + + + + Project Toolbar + Projectwerkbalk + + + + Extra DB toolbar + Werkbalk voor gekoppelde databases + + + + + + Close the current database file + Sluit het huidige databasebestand + + + + &New Database... + &Nieuwe database... + + + + + Create a new database file + Maak een nieuw databasebestand + + + + This option is used to create a new database file. + Deze optie wordt gebruikt om een nieuw databasebestand te maken. + + + + Ctrl+N + + + + + + &Open Database... + &Database openen... + + + + + + + + Open an existing database file + Een bestaand databasebestand openen + + + + + + This option is used to open an existing database file. + Deze optie wordt gebruikt om een bestaand databasebestand te openen. + + + + Ctrl+O + + + + + &Close Database + Database &sluiten + + + + This button closes the connection to the currently open database file + Deze knop verbreekt de verbinding met het huidig geopende databasebestand + + + + Ctrl+F4 + + + + + &Revert Changes + Wijzigingen &terugdraaien + + + + + Revert database to last saved state + Database terugdraaien naar de laatst opgeslagen staat + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Deze optie wordt gebruikt om het huidig geopende databasebestand terug te draaien naar de laatst opgeslagen staat. Alle wijzigingen die gemaakt zijn sinds de laatste opslag gaan verloren. + + + + &Write Changes + &Wijzigingen opslaan + + + + + Write changes to the database file + Wijzigingen opslaan in het databasebestand + + + + This option is used to save changes to the database file. + Deze optie wordt gebruikt om wijzigingen op te slaan in het databasebestand. + + + + Ctrl+S + + + + + Compact &Database... + &Database comprimeren... + + + + Compact the database file, removing space wasted by deleted records + Comprimeer het databasebestand door lege ruimte van verwijderde records te op te schonen + + + + + Compact the database file, removing space wasted by deleted records. + Comprimeer het databasebestand door lege ruimte van verwijderde records te op te schonen. + + + + E&xit + A&fsluiten + + + + Ctrl+Q + + + + + &Database from SQL file... + &Database vanuit SQL-bestand... + + + + Import data from an .sql dump text file into a new or existing database. + Importeer gegevens vanuit een .sql dump tekstbestand naar een nieuwe of bestaande database. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Deze optie stelt je in staat om gegevens vanuit een .sql dump tekstbestand te importeren naar een nieuwe of bestaande database. De meeste databaseprogramma's kunnen SQL-dumpbestanden maken, waaronder MySQL en PostgreSQL. + + + + &Table from CSV file... + &Tabel vanuit CSV-bestand... + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Open een assistent om gegevens uit een kommagescheiden tekstbestand te importeren naar een databasetabel. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Open een assistent om gegevens uit een kommagescheiden tekstbestand (CSV) te importeren naar een databasetabel. De meeste database- en spreadsheetprogramma's kunnen CSV-bestanden maken. + + + + &Database to SQL file... + &Database naar SQL-bestand... + + + + Export a database to a .sql dump text file. + Exporteer een database naar een .sql dump tekstbestand. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Deze optie stelt je in staat om een database te exporteren naar een .sql dump tekstbestand. SQL-dumpbestanden bevatten de benodigde gegevens om de database opnieuw te maken in de meeste databaseprogramma's, waaronder MySQL en PostgreSQL. + + + + &Table(s) as CSV file... + &Tabel(-len) naar CSV-bestand... + + + + Export a database table as a comma separated text file. + Exporteer een databasetabel naar een kommagescheiden tekstbestand. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Exporteer een databasetabel naar een kommagescheiden tekstbestand, om deze te kunnen importeren in ander database- of spreadsheetprogramma. + + + + &Create Table... + Tabel &maken... + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Open de tabel-makenassistent, waarin je namen en velden voor een nieuwe databasetabel kunt definiëren + + + + &Delete Table... + Tabel &verwijderen... + + + + + Delete Table + Tabel verwijderen + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Open de tabel-verwijderassistent, waarin je databasetabellen kunt selecteren om te verwijderen. + + + + &Modify Table... + Tabel &wijzigen... + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Open de tabel-wijzigingenassistent, waarin je een databasetabel kunt hernoemen. Het is hierin ook mogelijk om velden toe te voegen en te verwijderen en om veldnamen en -typen te wijzigen. + + + + Create &Index... + &Index maken... + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Open de index-makenassistent, waarin je een nieuwe index voor een bestaande databasetabel kunt definiëren. + + + + &Preferences... + I&nstellingen... + + + + + Open the preferences window. + Open het instellingenvenster. + + + + &DB Toolbar + &Databasewerkbalk + + + + Shows or hides the Database toolbar. + Toont of verbergt de databasewerkbalk. + + + + W&hat's This? + W&at is dit? + + + + Shift+F1 + + + + + &About + &Over + + + + &Recently opened + &Recent geopend + + + + Open &tab + &Tabblad openen + + + + This button opens a new tab for the SQL editor + Deze knop opent een nieuw tabblad in de SQL-bewerker + + + + Ctrl+T + + + + + &Execute SQL + SQL &uitvoeren + + + + Execute all/selected SQL + Voer alle of de geselecteerde SQL uit + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Deze knop voert de huidig geselecteerde SQL-instructies uit. Indien geen tekst geselecteerd is worden alle SQL-instructies uitgevoerd. + + + + Ctrl+Return + + + + + Open SQL file(s) + SQL-bestand(-en) openen + + + + This button opens files containing SQL statements and loads them in new editor tabs + Deze knop opent bestanden die SQL-instructies bevatten en laadt deze in nieuwe bewerkerstabbladen + + + + + + Save SQL file + SQL-bestand opslaan + + + + &Load Extension... + Extensie &laden... + + + + + Execute current line + Huidige regel uitvoeren + + + + Execute line + Regel uitvoeren + + + + This button executes the SQL statement present in the current editor line + Deze knop voert de SQL-instructies uit die zich op de huidige bewerkingsregel bevindt + + + + Shift+F5 + + + + + Export as CSV file + Exporteren als CSV-bestand + + + + Export table as comma separated values file + Tabel exporteren als bestand met kommagescheiden waarden + + + + &Wiki + &Wiki + + + + F1 + + + + + Bug &Report... + Bugs &rapporteren... + + + + Feature Re&quest... + Functionaliteit &verzoeken... + + + + Web&site + Web&site + + + + &Donate on Patreon... + &Doneren op Patreon... + + + + Sa&ve Project + P&roject opslaan + + + + + Save the current session to a file + De huidige sessie oplaan in een bestand + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + Deze knop stelt je in staat om alle instellingen met betrekking tot de geopende database op te slaan in een DB-browser voor SQLite-projectbestand + + + + Open &Project... + &Project openen... + + + + + Load a working session from a file + Een sessie laden vanuit een bestand + + + + This button lets you open a DB Browser for SQLite project file + Deze knop stelt je in staat om DB-browser voor SQLite-projectbestand te openen + + + + &Attach Database... + Database &koppelen... + + + + + Add another database file to the current database connection + Koppel nog een databasebestand aan de huidige databaseverbinding + + + + This button lets you add another database file to the current database connection + Deze knop stelt je in staat om nog een databasebestand aan de huidige databaseverbinding te koppelen + + + + &Set Encryption... + Encr&yptie instellen... + + + + + Save SQL file as + SQL-bestand opslaan als + + + + This button saves the content of the current SQL editor tab to a file + Deze knop slaat de inhoud van het huidige SQL-bewerkingstabblad op in een bestand + + + + &Browse Table + &Bladeren door tabel + + + + Copy Create statement + CREATE-instructie kopiëren + + + + Copy the CREATE statement of the item to the clipboard + De CREATE-instructie van het item kopiëren naar het klembord + + + + SQLCipher &FAQ + SQLCipher &FAQ + + + + Opens the SQLCipher FAQ in a browser window + Opent de SQLCipher FAQ in een browservenster + + + + Table(&s) to JSON... + Tabel(-&len) naar JSON-bestand... + + + + Export one or more table(s) to a JSON file + Exporteer een of meerdere tabel(-len) naar een JSON-bestand + + + + Open Data&base Read Only... + Database als &alleen-lezen openen... + + + + Open an existing database file in read only mode + Een bestaand databasebestand openen in alleen-lezenmodus + + + + Ctrl+Shift+O + + + + + Save results + Resultaten opslaan + + + + Save the results view + Het resultatenoverzicht opslaan + + + + This button lets you save the results of the last executed query + Deze knop stelt je in staat om de resultaten van de laatst uitgevoerde opdracht op te slaan + + + + + Find text in SQL editor + Tekst zoeken in de SQL-bewerker + + + + Find + Zoeken + + + + This button opens the search bar of the editor + Deze knop opent de zoekbalk van de bewerker + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Tekst zoeken of vervangen in de SQL-bewerker + + + + Find or replace + Zoeken of vervangen + + + + This button opens the find/replace dialog for the current editor tab + Deze knop opent het zoek-en-vervangdialoogvenster voor het huidige bewerkerstabblad + + + + Ctrl+H + + + + + Export to &CSV + Exporteren naar &CSV + + + + Save as &view + Opslaan als &view + + + + Save as view + Opslaan als view + + + + Shows or hides the Project toolbar. + Toont of verbergt de projectwerkbalk. + + + + Extra DB Toolbar + Gekoppelde-databaseswerkbalk + + + + New In-&Memory Database + Nieuwe werk&geheugendatabase + + + + Drag && Drop Qualified Names + Gekwalificeerde namen verslepen + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Gebruik gekwalificeerde namen (bijv. "Tabel"."Veld") wanneer ik objecten versleep naar de bewerker + + + + Drag && Drop Enquoted Names + Aangehaalde namen verslepen + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Gebruik aangehaalde entiteitsnamen (bijv. "Tabel1") wanneer ik objecten versleep naar de bewerker + + + + &Integrity Check + &Integriteit controleren + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Voert het pragma integrity_check uit op de geopende database en toont de resultaten in het tabblad SQL uitvoeren. Dit pragma doet een integriteitscontrole over de gehele database. + + + + &Foreign-Key Check + &Vreemde sleutels controleren + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Voert het pragma foreign_key_check uit op de geopende database en toont de resultaten in het tabblad SQL uitvoeren + + + + &Quick Integrity Check + Integriteit &snel controleren + + + + Run a quick integrity check over the open DB + Voert een snelle integriteitscontrole uit op de geopende database + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Voert het pragma quick_check uit op de geopende database en toont de resultaten in het tabblad SQL uitvoeren. Dit commando voert veel van de controles uit die het pragma integrity_check ook uitvoert, maar verloopt veel sneller. + + + + &Optimize + &Optimaliseren + + + + Attempt to optimize the database + Probeert de database te optimaliseren + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Voert het pragma optimize uit op de geopende database. Dit pragma kan optimalisaties uitvoeren die de prestaties van toekomstige SQL-opdrachten mogelijk verbeteren. + + + + + Print + Afdrukken + + + + Print text from current SQL editor tab + Tekst uit het huidige SQL-bewerkerstabblad afdrukken + + + + Open a dialog for printing the text in the current SQL editor tab + Opent een dialoogvenster voor het afdrukken van tekst uit het huidige SQL-bewerkerstabblad + + + + + Ctrl+P + + + + + Print the structure of the opened database + De structuur van de geopende database afdrukken + + + + Open a dialog for printing the structure of the opened database + Opent een dialoogvenster voor het afdrukken van de structuur van de geopende database + + + + Un/comment block of SQL code + Blok SQL-code wel/niet commentaar + + + + Un/comment block + Blok wel/niet commentaar + + + + Comment or uncomment current line or selected block of code + De huidige regel of het geselecteerde codeblok wel/niet markeren als commentaar + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Markeert het geselecteerde codeblok, of de huidige regel indien er geen selectie is, wel/niet als commentaar. Het gehele blok wordt omgezet op basis van de eerste regel. + + + + Ctrl+/ + + + + + Stop SQL execution + SQL uitvoeren stoppen + + + + Stop execution + Uitvoeren stoppen + + + + Stop the currently running SQL script + Stop het SQL script dat nu uitgevoerd wordt + + + + &Save Project As... + Pr&oject opslaan als... + + + + + + Save the project in a file selected in a dialog + Het project opslaan in een bestand dat je selecteert in een dialoogvenster + + + + Save A&ll + A&lles opslaan + + + + + + Save DB file, project file and opened SQL files + Het databasebestand, projectbestand en alle geopende SQL-bestanden opslaan + + + + Ctrl+Shift+S + + + + + Browse Table + Bladeren door tabel + + + + + Ctrl+W + + + + + Ctrl+L + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Ctrl+E + + + + + Window Layout + Vensterindeling + + + + Reset Window Layout + Vensterindeling herstellen + + + + Alt+0 + + + + + Simplify Window Layout + Vensterindeling versimpelen + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + Vensters dokken aan onderzijde + + + + Dock Windows at Left Side + Vensters dokken aan de linkerzijde + + + + Dock Windows at Top + Vensters dokken aan de bovenzijde + + + + The database is currenctly busy. + De database is momenteel bezig. + + + + Click here to interrupt the currently running query. + Klik hier om het SQL script dat nu uitgevoerd wordt te onderbreken. + + + + Encrypted + Versleuteld + + + + Database is encrypted using SQLCipher + Database is versleuteld met SQLCipher + + + + Read only + Aleen-lezen + + + + Database file is read only. Editing the database is disabled. + Het databasebestand is alleen-lezen. Het bewerken van de database is uitgeschakeld. + + + + Database encoding + Databasecodering + + + + + Choose a database file + Kies een databasebestand + + + + Could not open database file. +Reason: %1 + Kon het databasebestand niet openen. +Reden: %1 + + + + + + Choose a filename to save under + Kies een bestandsnaam om in op te slaan + + + + In-Memory database + Werkgeheugendatabase + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Je voert nog steeds SQL-instructies uit. Het sluiten van de database zal het uitvoeren stoppen en de database daarmee mogelijk inconsistent maken. Weet je zeker dat je de database wilt sluiten? + + + + Do you want to save the changes made to the project file '%1'? + Wil je de wijzigingen opslaan die je de gemaakt hebt voor projectbestand %1? + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + Weet je zeker dat je de tabel '%1' wilt verwijderen? +Alle gegevens die met deze tabel geassocieerd worden zullen verloren gaan. + + + + Are you sure you want to delete the view '%1'? + Weet je zeker dat je de view '%1' wilt verwijderen? + + + + Are you sure you want to delete the trigger '%1'? + Weet je zeker dat je de trigger '%1' wilt verwijderen? + + + + Are you sure you want to delete the index '%1'? + Weet je zeker dat je de index '%1' wilt verwijderen? + + + + Error: could not delete the table. + Fout: kon de tabel niet verwijderen. + + + + Error: could not delete the view. + Fout: kon de view niet verwijderen. + + + + Error: could not delete the trigger. + Fout: kon de trigger niet verwijderen. + + + + Error: could not delete the index. + Fout: kon de index niet verwijderen. + + + + Message from database engine: +%1 + Melding van de database: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Het bewerken van de tabel vereist dat niet-opgeslagen wijzigingen nu opgeslagen worden. +Weet je zeker dat de database op wilt slaan? + + + + Error checking foreign keys after table modification. The changes will be reverted. + Fout bij het controleren van vreemde sleutels na tabelwijzigingen. De wijzigingen zullen teruggedraaid worden. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Deze tabel kwam niet door de vreemde-sleutelscontrole.<br/>Voer 'Extra | Vreemde sleutels controleren' uit en repareer de gerapporteerde problemen. + + + + Edit View %1 + View %1 bewerken + + + + Edit Trigger %1 + Trigger %1 bewerken + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Je voert momenteel al SQL-instructies uit. Wil je deze stoppen en in plaats daarvan de huidige instructies uitvoeren? Wees je ervan bewust dat dit ervoor kan zorgen dat de database inconsistent wordt. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- SELECTIE WORDT UITGEVOERD IN '%1' +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- REGEL WORDT UITGEVOERD IN '%1' +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- ALLES WORDT UITGEVOERD IN '%1' +-- + + + + + At line %1: + In regel %1: + + + + Result: %1 + Resultaat: %1 + + + + Result: %2 + Resultaat: %2 + + + + %1 rows returned in %2ms + %1 records geretourneerd in %2ms + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Vacuümeren of pragma's omzetten zal jouw huidige transactie committeren. +Weet je het zeker? + + + + Execution finished with errors. + Uitvoering voltooid met fouten. + + + + Execution finished without errors. + Uitvoering voltooid zonder fouten. + + + + Choose text files + Kies tekstbestanden + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Er zijn fouten opgetreden tijdens het opslaan van het databasebestand. Daarom zijn niet alle wijzigingen opgeslagen. Je dient de volgende fouten eerst op te lossen: + +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Weet je zeker dat je alle wijzigingen die je gemaakt hebt in databasebestand '%1', nadat je deze voor het laatst opgeslagen hebt, ongedaan wilt maken? + + + + Choose a file to import + Kies een bestand om te importeren + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Wil je een nieuw databasebestand aanmaken om de geïmporteerde gegevens in te bewaren? +Als je nee antwoordt, wordt geprobeerd om de gegevens uit het SQL-bestand te importeren in de huidige database. + + + + File %1 already exists. Please choose a different name. + Bestand %1 bestaat al. Kies een andere naam. + + + + Error importing data: %1 + Fout bij het importeren van de gegevens: %1 + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Importeren voltooid. Sommige vreemde-sleutelbeperkingen werden echter geschonden. Repareer deze voordat je opslaat. + + + + Import completed. + Importeren voltooid. + + + + Delete View + View verwijderen + + + + Modify View + View wijzigen + + + + Delete Trigger + Trigger verwijderen + + + + Modify Trigger + Trigger wijzigen + + + + Delete Index + Index verwijderen + + + + Modify Index + Index wijzigen + + + + Modify Table + Tabel wijzigen + + + + Opened '%1' in read-only mode from recent file list + '%1' geopend vanuit recent-geopende-bestandenlijst in alleen-lezenmodus + + + + Opened '%1' from recent file list + '%1' geopend vanuit recent-geopende-bestandenlijst + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (alleen-lezen) + + + + Open Database or Project + Database of project openen + + + + Attach Database... + Database koppelen... + + + + Import CSV file(s)... + CSV-bestand(-en) importeren... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Selecteer de handeling die toegepast moet worden op het gesleepte bestand. <br/>Let op: alleen 'Importeren' kan op meerdere bestanden tegelijk toegepast worden. + Selecteer de handeling die toegepast moet worden op de gesleepte bestanden). <br/>Let op: alleen 'Importeren' kan op meerdere bestanden tegelijk toegepast worden. + + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Pragma's omzetten zal jouw huidige transactie committeren. +Weet je het zeker? + + + + Do you want to save the changes made to SQL tabs in a new project file? + Wil je de wijzigingen die je in de SQL-tabbladen gemaakt hebt opslaan in een nieuw projectbestand? + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + Wil je de wijzigingen die je in de SQL-tabbladen gemaakt hebt opslaan in het projectbestand '%1'? + + + + Do you want to save the changes made to the SQL file %1? + Wil je de wijzigingen die je in SQL-bestand %1 gemaakt hebt opslaan? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + De instructies in dit tabblad worden nog steeds uitgevoerd. Het sluiten van het tabblad zal het uitvoeren stoppen en de database daarmee mogelijk inconsistent maken. Weet je zeker dat je het tabblad wilt sluiten? + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Dit projectbestand gebruikt een oud bestandsformaat, omdat het gemaakt is met versie 3.10 of lager van DB-browser voor SQLite. Dit bestandsformaat wordt nog steeds volledig ondersteund, maar we adviseren je om al jouw projectbestanden om te zetten naar het nieuwe bestandsformaat, omdat oudere formaten in de toekomst mogelijk niet meer ondersteund zullen worden. Je kunt je bestanden omzetten door ze simpelweg te openen en opnieuw op te slaan. + + + + Select SQL file to open + Selecteer SQL-bestanden om te openen + + + + Text files(*.sql *.txt);;All files(*) + Tekstbestanden(*.sql *.txt);;Alle bestanden(*) + + + + Select file name + Selecteer bestandsnaam + + + + Select extension file + Selecteer extensiebestand + + + + Extension successfully loaded. + Extensie laden gelukt. + + + + Error loading extension: %1 + Fout bij het laden van extensie: %1 + + + + Could not find resource file: %1 + Kon het bronbestand niet vinden: %1 + + + + + Don't show again + Toon dit niet nogmaals + + + + New version available. + Nieuwe versie beschikbaar. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Er is een nieuwe versie van DB-browser voor SQLite beschikbaar (%1.%2.%3).<br/><br/>Je kunt deze downloaden op <a href='%4'>%4</a>. + + + + Choose a project file to open + Kies een projectbestand om te openen + + + + DB Browser for SQLite project file (*.sqbpro) + DB-browser voor SQLite-projectbestanden (*.sqbpro) + + + + Could not open project file for writing. +Reason: %1 + Kon het projectbestand niet openen om naar te schrijven. +Reden: %1 + + + + Project saved to file '%1' + Project opgeslagen in bestand '%1' + + + + Collation needed! Proceed? + Collatie vereist! Doorgaan? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Een table in deze database vereist een speciale collatiefunctie '%1' die deze applicatie niet kan bieden zonder extra informatie. +Wees je er bewust van dat als je doorgaat er slechte dingen kunnen gebeuren met jouw database. +Maak een backup! + + + + creating collation + collatie aan het maken + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Geef een nieuwe naam voor het SQL-tabblad. Gebruik het '&&'-teken om de een van de volgende tekens als sneltoets in te stellen. + + + + Please specify the view name + Geef de viewnaam op + + + + There is already an object with that name. Please choose a different name. + Er bestaat al een object met die naam. Kies een andere naam. + + + + View successfully created. + View maken gelukt. + + + + Error creating view: %1 + Fout bij het maken van view: %1 + + + + This action will open a new SQL tab for running: + Deze handeling opent een nieuw SQL-tabblad om het volgende uit te voeren: + + + + This action will open a new SQL tab with the following statements for you to edit and run: + Deze handeling opent een nieuw SQL-tabblad met volgende instructies die je zodoende kunt bewerken en uitvoeren: + + + + Press Help for opening the corresponding SQLite reference page. + Druk op Help om de bijbehorende SQLlite-referentiepagina te openen. + + + + Busy (%1) + Bezig (%1) + + + + Rename Tab + Tabblad hernoemen + + + + Duplicate Tab + Tabblad dupliceren + + + + Close Tab + Tabblad sluiten + + + + Opening '%1'... + Opent '%1'... + + + + There was an error opening '%1'... + Fout bij het openen van '%1'... + + + + Value is not a valid URL or filename: %1 + Waarde is geen geldige URL of bestandsnaam: %1 + + + + NullLineEdit + + + Set to NULL + Omzetten naar NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + Plot + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>Dit paneel toont de lijst van kolommen van de tabel die nu doorgebladerd wordt of van de zojuist uitgevoerde SQL-opdracht. Je kunt de kolommen selecteren die je wilt gebruiken als X- of Y-assen in de plot hieronder. De tabel toont gedetecteerde astypen die de plot zullen beïnvloeden. Voor de Y-as kun je alleen numerieke kolommen gebruiken, maar voor de X-as kun je de volgende gegevenstypen selecteren:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Datum/Tijd</span>: tekenreeksen volgens het formaat &quot;yyyy-MM-dd hh:mm:ss&quot; of &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Datum</span>: tekenreeksen volgens het formaat &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Tijd</span>: tekenreeksen volgens het formaat &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: andersoortige tekenreeksformaten. Als je dit selecteert voor de X-as dan wordt een staafdiagram geplot met de kolomwaarden als labels voor de staven</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeriek</span>: gehele of reële getallen</li></ul><p>Door dubbel te klikken op de Y-cellen kun je de kleur voor die grafiek aanpassen.</p></body></html> + + + + Columns + Kolommen + + + + X + X + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + Astype + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Hier wordt de plot getekend zodra je hierboven x- en y-waarden selecteert. + +Klik op punten om deze in de plot en in de tabel te selecteren. Ctrl+klik om meerdere punten te selecteren. + +Gebruik het muiswiel om te zoomen en sleep met de muis om het asbereik te veranderen. + +Selecteer de as of aslabels om alleen in die richting te slepen en te zoomen. + + + + Line type: + Lijntype: + + + + + None + Geen + + + + Line + Lijn + + + + StepLeft + Stap links + + + + StepRight + Stap rechts + + + + StepCenter + Stap gecentreerd + + + + Impulse + Impuls + + + + Point shape: + Puntvorm: + + + + Cross + Kruis + + + + Plus + Plus + + + + Circle + Cirkel + + + + Disc + Discus + + + + Square + Vierkant + + + + Diamond + Diamant + + + + Star + Ster + + + + Triangle + Driehoek + + + + TriangleInverted + Geïnverteerde driehoek + + + + CrossSquare + Vierkant met kruis + + + + PlusSquare + Vierkant met plus + + + + CrossCircle + Cirkel met kruis + + + + PlusCircle + Cirkel met plus + + + + Peace + Vredesteken + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Huidige plot opslaan...</p><p>Bestandsformaat volgens extensie (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Huidige plot opslaan... + + + + + Load all data and redraw plot + Laad alle gegevens en teken plot opnieuw + + + + Copy + Kopiëren + + + + Print... + Afdrukken... + + + + Show legend + Legenda tonen + + + + Stacked bars + Gestapelde staven + + + + Date/Time + Datum/Tijd + + + + Date + Datum + + + + Time + Tijd + + + + + Numeric + Numeriek + + + + Label + Label + + + + Invalid + Ongeldig + + + + + + Row # + Record # + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Laad alle gegevens en teken plot opnieuw. +Waarschuwing: door het partiële laadmechanisme zijn nog niet alle gegevens zijn uit de tabel opgehaald. + + + + Choose an axis color + Kies een askleur + + + + Choose a filename to save under + Kies een bestandsnaam om in op te slaan + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Alle bestanden(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + Dit plot bevat curves, maar de geselecteerde lijnstijl kan alleen toegepast worden op diagrammen die gesorteerd worden op X. Sorteer daarom de tabel of SQL-opdracht op X of selecteer een stijl die curves ondersteunt: Geen of Lijn. + + + + Loading all remaining data for this table took %1ms. + Het laden van alle overgebleven gegevens voor deze tabel duurde %1ms. + + + + PreferencesDialog + + + Preferences + Voorkeuren + + + + &General + &Algemeen + + + + Default &location + Standaard&locatie + + + + Remember last location + Onthoud laatste locatie + + + + Always use this location + Gebruik altijd deze locatie + + + + Remember last location for session only + Onthoud laatste locatie alleen gedurende sessie + + + + + + ... + ... + + + + Lan&guage + &Taal + + + + Toolbar style + Werkbalkstijl + + + + + + + + Only display the icon + Toon alleen het icoon + + + + + + + + Only display the text + Toon alleen de tekst + + + + + + + + The text appears beside the icon + Toon de tekst naast het icoon + + + + + + + + The text appears under the icon + Toon de tekst onder het icoon + + + + + + + + Follow the style + Volg de stijl + + + + Show remote options + Toon 'Toegang op afstand'-opties + + + + + + + + + + + + enabled + inschakelen + + + + Automatic &updates + Automatische &updates + + + + DB file extensions + Databasebestandsextensies + + + + Manage + Beheren + + + + Main Window + Hoofdvenster + + + + Database Structure + Databasestructuur + + + + Browse Data + Gegevensbrowser + + + + Execute SQL + SQL uitvoeren + + + + Edit Database Cell + Databasecel bewerken + + + + When this value is changed, all the other color preferences are also set to matching colors. + Indien deze waarde aangepast wordt, dan worden alle andere kleurvoorkeuren ook aangepast naar die stijl. + + + + Follow the desktop style + Volg de desktopstijl + + + + Dark style + Donkere stijl + + + + Application style + Applicatiestijl + + + + This sets the font size for all UI elements which do not have their own font size option. + Dit bepaalt het lettertypegrootte voor gebruikersinterface-elementen die geen eigen lettertypegrootte-instelling hebben. + + + + Font size + Lettertypegrootte + + + + &Database + &Database + + + + Database &encoding + Database&codering + + + + Open databases with foreign keys enabled. + Databases openen met vreemde-sleutelondersteuning ingeschakeld. + + + + &Foreign keys + &Vreemde sleutels + + + + Remove line breaks in schema &view + Verwijder regeleinden in schema&weergave + + + + Prefetch block si&ze + Prefetch-&blokgrootte + + + + Default field type + Standaard veldgegevenstype + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Indien geselecteerd worden de regeleinden verwijderd uit de schemakolom van het databasestructuurtabblad, -dock en uit geprinte afdrukken. + + + + Database structure font size + Lettertypegrootte databasestructuur + + + + SQ&L to execute after opening database + S&QL uitvoeren na het openen van database + + + + Data &Browser + Gegevens&browser + + + + Font + Lettertype + + + + &Font + &Lettertype + + + + Font si&ze + Lettertype&grootte + + + + Content + Inhoud + + + + Symbol limit in cell + Symboollimiet in cel + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Dit bepaalt het maximum aantal items dat voor sommige functionaliteiten met intensieve berekeningen toegestaan is: +Het maximum aantal records in een tabel om waarde-aanvulling in te schakelen aan de hand van de huidige invoer in de kolom. +Het maximaal aantal indices in een selectie om sommen en gemiddelden berekenen in te schakelen. +Voer 0 in om deze functionaliteiten uit te schakelen. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Dit bepaalt het maximum aantal records in een tabel om waarde-aanvulling in te schakelen aan de hand van de huidige invoer in de kolom. +Voer 0 in om waarde-aanvulling uit te schakelen. + + + + Threshold for completion and calculation on selection + Drempelwaarde voor aanvullingen en berekeningen op selecties + + + + Show images in cell + Toon afbeeldingen in cel + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Indien geselecteerd wordt in de cellen een voorvertoning getoond van BLOBs die afbeeldingsgegevens bevatten. Dit kan de prestaties van de gegevensbrowser echter beïnvloeden. + + + + Field display + Veldweergave + + + + Displayed &text + Weergegeven &tekst + + + + Binary + Binair + + + + NULL + NULL + + + + Regular + Gewoon + + + + + + + + + Click to set this color + Klik om een kleur te selecteren + + + + Text color + Tekstkleur + + + + Background color + Achtergrondkleur + + + + Preview only (N/A) + Enkel voorvertoning (N/B) + + + + Filters + Filters + + + + Escape character + Escape-teken + + + + Delay time (&ms) + Vertragingstijd (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Bepaalt de tijd die gewacht wordt voordat een nieuw filter wordt toegepast. Voer 0 in om wachten uit te schakelen. + + + + &SQL + &SQL + + + + Settings name + Instellingsnaam + + + + Context + Context + + + + Colour + Kleur + + + + Bold + Vet + + + + Italic + Cursief + + + + Underline + Onderstreept + + + + Keyword + Sleutelwoord + + + + Function + Functie + + + + Table + Tabel + + + + Comment + Commentaar + + + + Identifier + Entiteitsnaam + + + + String + Tekenreeks + + + + Current line + Huidige regel + + + + Background + Achtergrond + + + + Foreground + Voorgrond + + + + SQL editor &font + &Lettertype SQL-bewerker + + + + SQL &editor font size + Lettertypegrootte SQL-b&ewerker + + + + SQL &results font size + Lettertypegrootte SQL-&resultaten + + + + Tab size + Tabbreedte + + + + &Wrap lines + Regelteru&gloop toepassen + + + + Never + Nooit + + + + At word boundaries + Op woordbegrenzingen + + + + At character boundaries + Op letterbegrenzingen + + + + At whitespace boundaries + Op witruimtebegrenzingen + + + + &Quotes for identifiers + &Aanhalingstekens voor entiteitsnamen + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Kies het aanhalingstekensbeleid van de applicatie voor het demarceren van entiteitsnamen in SQL-code. + + + + "Double quotes" - Standard SQL (recommended) + "Dubbele aanhalingstekens" - Standaard SQL (aanbevolen) + + + + `Grave accents` - Traditional MySQL quotes + `Accent graves` - Traditionele MySQL aanhalingstekens + + + + [Square brackets] - Traditional MS SQL Server quotes + [Rechte haakjes] - Traditionele MS SQL-Server aanhalingstekens + + + + Code co&mpletion + Code-aan&vulling + + + + Keywords in &UPPER CASE + Sleutelwoorden in &BOVENKAST + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Indien geselecteerd worden SQL-sleutelwoorden voltooid in BOVENKAST-letters. + + + + Error indicators + Foutindicatoren + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Indien geselecteerd dan worden de SQL-coderegels die de fouten tijdens de laatste uitvoering veroorzaakten gemarkeerd en het resultatenkader toont de fout op de achtergrond + + + + Hori&zontal tiling + Hori&zontaal tegelen + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Indien geselecteerd worden de SQL-bewerker en de resultatenweergavetabel naast elkaar, in plaats van over elkaar heen, getoond. + + + + Close button on tabs + Sluitknoppen op tabbladen + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + Indien geselecteerd krijgen SQL-bewerkingstabbladen een sluitknop. Je kunt echter ook altijd het contextmenu of sneltoetsen gebruiken om ze te sluiten. + + + + &Extensions + &Extensies + + + + Select extensions to load for every database: + Selecteer extensies die voor iedere database geladen dienen te worden: + + + + Add extension + Extensie toevoegen + + + + Remove extension + Extensie verwijderen + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Hoewel SQLite de REGEXP operator ondersteunt heeft ze geen reguliere-expressiesalgoritme<br/>geïmplementeerd, maar doet ze hiervoor een beroep op de hostapplicatie. DB-browser voor SQLite<br/>implementeert dit algoritme voor jou, zodat je REGEXP direct kunt gebruiken.<br/>Omdat er echter meerdere implementaties mogelijk zijn en je mogelijk een andere implementatie<br/>wilt gebruiken, staat het je vrij om onze implementatie uit te schakelen en je eigen implementatie te laden<br/>via een extensie. Hiervoor is een herstart van de applicatie nodig.</p></body></html> + + + + Disable Regular Expression extension + Schakel extensie voor reguliere expressies uit + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite biedt een SQL-functie om extensies te laden vanuit een gedeelde bibliotheek. Activeer deze optie als je de <span style=" font-style:italic;">load_extension()</span> functie vanuit SQL-code wilt aanroepen.</p><p>Om veiligheidsredenen is deze manier van extensies laden standaard uitgeschakeld en dient via deze optie in te worden geschakeld. Je kunt extensies echter altijd laden via de gebruikersinterface, zelfs als deze optie uitgeschakeld is.</p></body></html> + + + + Allow loading extensions from SQL code + Extensies laden vanuit SQL-code toestaan + + + + Remote + Toegang op afstand + + + + Your certificates + Jouw certificaten + + + + File + Bestand + + + + + Subject CN + Subject GN + + + + Subject Common Name + Subject Gebruikelijk Naam + + + + Issuer CN + Verstrekker GN + + + + Issuer Common Name + Verstrekker Gebruikelijke Naam + + + + + Valid from + Geldig vanaf + + + + + Valid to + Geldig tot + + + + + Serial number + Serienummer + + + + CA certificates + CA-certificaten + + + + Common Name + Gebruikelijke naam + + + + Subject O + Subject O + + + + Organization + Organisatie + + + + Clone databases into + Database klonen naar + + + + Proxy + Proxy + + + + Configure + Instellen + + + + + Choose a directory + Kies een map + + + + The language will change after you restart the application. + De taal verandert nadat je de applicatie opnieuw hebt opgestart. + + + + Select extension file + Selecteer extensiebestand + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Extensies(*.so *.dylib *.dll);;Alle bestanden(*) + + + + Import certificate file + Certificaatbestand importeren + + + + No certificates found in this file. + Geen certificaten gevonden in dit bestand. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Weet je zeker dat je dit certificaat wilt verwijderen? Alle certificaatgegevens zullen worden verwijderd uit de applicatie-instellingen! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Weet je zeker dat je alle opgeslagen instellingen wilt verwijderen? +Al jouw instellingen zullen worden verwijderd en de standaardinstellingen zullen worden gebruikt. + + + + ProxyDialog + + + Proxy Configuration + Proxy-instellingen + + + + Pro&xy Type + Pro&xytype + + + + Host Na&me + &Hostnaam + + + + Port + &Poort + + + + Authentication Re&quired + &Authenticatie vereist + + + + &User Name + &Gebruikersnaam + + + + Password + &Wachtwoord + + + + None + Geen + + + + System settings + Systeeminstellingen + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Left + Links + + + + Right + Rechts + + + + Center + Gecentreerd + + + + Justify + Uitgevuld + + + + All files (*) + Alle bestanden (*) + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + SQLite-databasebestanden (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + DB-browser voor SQLite-projectbestanden (*.sqbpro) + + + + SQL Files (*.sql) + SQL-bestanden (*.sql) + + + + All Files (*) + Alle bestanden (*) + + + + Text Files (*.txt) + Tekstbestanden (*.txt) + + + + Comma-Separated Values Files (*.csv) + Kommagescheiden bestanden (*.csv) + + + + Tab-Separated Values Files (*.tsv) + Tabgescheiden bestanden (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Scheidingstekengescheiden bestanden (*.dsv) + + + + Concordance DAT files (*.dat) + Concordance-DAT-bestanden (*.dat) + + + + JSON Files (*.json *.js) + JSON-bestanden (*.json *.js) + + + + XML Files (*.xml) + XML-bestanden (*.xml) + + + + Binary Files (*.bin *.dat) + Binaire bestanden (*.bin *.dat) + + + + SVG Files (*.svg) + SVG-bestanden (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Hexdump-bestand (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + Extensies (*.so *.dylib *.dll) + + + + Error importing data + Fout bij het importeren van de gegevens + + + + from record number %1 + van recordnummer %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + CSV-bestand importeren... + + + + Cancel + Annuleren + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + SQLite-databasebestanden (*.db *.sqlite *.sqlite3 *.db3) + + + + RemoteCommitsModel + + + Commit ID + Commit ID + + + + Message + Bericht + + + + Date + Datum + + + + Author + Auteur + + + + Size + Grootte + + + + Authored and committed by %1 + Geautoriseerd en gecommitteerd door %1 + + + + Authored by %1, committed by %2 + Geautoriseerd door %1, gecommitteerd door %2 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Fout bij het openen van lijst met lokale databases. +%1 + + + + Error creating local databases list. +%1 + Fout bij het maken van lijst met lokale databases. +%1 + + + + RemoteDock + + + Remote + Toegang op afstand + + + + Identity + Identiteit + + + + Push currently opened database to server + Push huidig geopende database naar server + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>In dit paneel kun je externe databases van de dbhub.io website toevoegen aan DB-browser voor SQLite. Allereerst heb je een identiteit nodig:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Log in op de dbhub.io website (gebruik bijvoorbeeld jouw GitHub account of wat je maar wilt)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Klik de knop &quot;Generate client certificate&quot; (dat is jouw identiteit). Daarmee krijg je een certificaatbestand (sla deze op, op jouw lokale schijf).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Ga vervolgens naar het tabblad 'Toegang op afstand', in het instellingenvenster van DB-browser voor SQLite. Klik op de knop om een nieuw certificaat toe te voegen aan DB-browser for SQLite en kies dan het zojuist gedownloade certificaatbestand.</li></ol><p>Nu toont het paneel 'Toegang op afstand' jouw identiteit en kun je externe databases toevoegen.</p></body></html> + + + + Local + Lokaal + + + + Current Database + Huidige database + + + + Clone + Klonen + + + + User + Gebruiker + + + + Database + Database + + + + Branch + Tak + + + + Commits + Commits + + + + Commits for + Commits voor + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>Je gebruikt momenteel een ingebouwde, alleen-lezenindentiteit. Om jouw database te uploaden dien je jouw DBHub.io-account in te stellen en te gebruiken.</p><p>Nog geen DBHub.io account? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Maak er nu een aan</span></a> en importeer jouw certificaat <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">hier</span></a> om jouw databases te delen.</p><p>Bezoek <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">deze link</span></a> voor online hulp.</p></body></html> + + + + Back + Terug + + + + Delete Database + Database verwijderen + + + + Delete the local clone of this database + De lokale kloon van deze database verwijderen + + + + Open in Web Browser + In webbrowser openen + + + + Open the web page for the current database in your browser + De webpagina van de huidige database openen in je browser + + + + Clone from Link + Van link klonen + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + Hiermee download je een externe database om lokaal te bewerken aan de hand van de URL die verstrekt werd op de webpagina van de database. + + + + Refresh + Verversen + + + + Reload all data and update the views + Alle gegevens herladen en de views updaten + + + + F5 + + + + + Clone Database + Database klonen + + + + Open Database + Database openen + + + + Open the local copy of this database + Lokale kopie van deze database openen + + + + Check out Commit + Commit inladen + + + + Download and open this specific commit + Deze specifieke downloaden en openen + + + + Check out Latest Commit + Laatste commit inladen + + + + Check out the latest commit of the current branch + De laatste commit van de huidige tak inladen + + + + Save Revision to File + Revisie opslaan in bestand + + + + Saves the selected revision of the database to another file + Slaat de geselecteerde revisie van de database op in een ander bestand + + + + Upload Database + Database uploaden + + + + Upload this database as a new commit + Deze database uploaden als een nieuwe commit + + + + Select an identity to connect + Selecteer een identiteit om te verbinden + + + + Public + Openbaar + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + Dit downloadt een database van een externe server om lokaal te bewerken. +Voer een URL in van waaruit gekloond moet worden. Je kunt deze URL +genereren door te klikken op de 'Clone Database in DB4S'-knop op de +webpagina van de database. + + + + Invalid URL: The host name does not match the host name of the current identity. + Ongeldige URL: De hostnaam komt niet overeen met de hostnaam van de huidige identiteit. + + + + Invalid URL: No branch name specified. + Ongeldige URL: Geen taknaam opgegeven. + + + + Invalid URL: No commit ID specified. + Ongeldige URL: Geen commit-ID opgegeven. + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + Je hebt de lokale kloon van de database aangepast. Als je deze commit inlaadt overschrijft dit lokale wijzigingen. +Weet je zeker dat je door wilt gaan? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + De database heeft niet-opgeslagen wijzigingen. Weet je zeker dat je wilt pushen voordat je opslaat? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + De database die je probeert te verwijderen is op het ogenblik geopend. Sluit deze voordat je deze verwijdert. + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + Dit verwijdert de lokale database met alle wijzigingen die je nog niet gecommitteerd hebt. Weet je zeker dat je deze database wilt verwijderen? + + + + RemoteLocalFilesModel + + + Name + Naam + + + + Branch + Tak + + + + Last modified + Laatst gewijzigd + + + + Size + Grootte + + + + Commit + Commit + + + + File + Bestand + + + + RemoteModel + + + Name + Naam + + + + Last modified + Laatst gewijzigd + + + + Size + Grootte + + + + Commit + Commit + + + + Size: + Grootte: + + + + Last Modified: + Laatst gewijzigd: + + + + Licence: + Licentie: + + + + Default Branch: + Standaardtak: + + + + RemoteNetwork + + + Choose a location to save the file + Kies een locatie om het bestand in op te slaan + + + + Error opening remote file at %1. +%2 + Fout bij het openen van extern bestand %1. +%2 + + + + Error: Invalid client certificate specified. + Fout: ongeldig certificaatbestand opgegeven. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Geef de toegangsfrase voor dit client-certificaat op om te authenticeren. + + + + Cancel + Annuleren + + + + Uploading remote database to +%1 + Externe database wordt geüploadt naar +%1 + + + + Downloading remote database from +%1 + Externe database wordt gedownload vanaf +%1 + + + + + Error: The network is not accessible. + Fout: het netwerk is niet toegankelijk. + + + + Error: Cannot open the file for sending. + Fout: kan het te verzenden bestand niet openen. + + + + RemotePushDialog + + + Push database + Database pushen + + + + Database na&me to push to + Database&naam om naar te pushen + + + + Commit message + Commitbericht + + + + Database licence + Databaselicentie + + + + Public + Openbaar + + + + Branch + Tak + + + + Force push + Push forceren + + + + Username + Gebruikersnaam + + + + Database will be public. Everyone has read access to it. + Database wordt openbaar. Iedereen zal leestoegang hebben. + + + + Database will be private. Only you have access to it. + Database wordt privé. Alleen jij zal leestoegang hebben. + + + + Use with care. This can cause remote commits to be deleted. + Wees hier voorzichtig mee; dit kan ervoor zorgen dat externe commits verwijderd worden. + + + + RunSql + + + Execution aborted by user + Uitvoering afgebroken door gebruiker + + + + , %1 rows affected + , %1 records getroffen + + + + query executed successfully. Took %1ms%2 + Opdracht succesvol uitgevoerd. Duurde %1ms%2 + + + + executing query + opdracht wordt uitgevoerd + + + + SelectItemsPopup + + + A&vailable + Beschi&kbaar + + + + Sele&cted + Gese&lecteerd + + + + SqlExecutionArea + + + Form + Formulier + + + + Find previous match [Shift+F3] + Vorige overeenkomst zoeken [Shift+F3] + + + + Find previous match with wrapping + Vorige overeenkomst zoeken met terugloop + + + + Shift+F3 + + + + + The found pattern must be a whole word + Het gevonden patroon moet een heel woord zijn + + + + Whole Words + Hele woorden + + + + Text pattern to find considering the checks in this frame + Zoekterm die gezocht moet worden met de geselecteerde opties in dit kader + + + + Find in editor + Zoek in bewerker + + + + The found pattern must match in letter case + De gevonden overeenkomst moet identiek zijn in onder- en bovenkast + + + + Case Sensitive + Identieke onder-/bovenkast + + + + Find next match [Enter, F3] + Volgende overeenkomst zoeken [Enter, F3] + + + + Find next match with wrapping + Volgende overeenkomst zoeken met terugloop + + + + F3 + + + + + Interpret search pattern as a regular expression + Interpreteer zoekterm als reguliere expressie + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Indien geselecteerd wordt de zoekterm geïnterpreteerd als een UNIX reguliere expressie. Zie hiervoor <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Reguliere Expressies in Wikibooks (Engels)</a>.</p></body></html> + + + + Regular Expression + Reguliere expressie + + + + + Close Find Bar + Zoekbalk sluiten + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>Resultaten van de laatst uitgevoerde opdrachten.</p><p>Je kunt dit paneel ook inklappen en in plaats daarvan het <span style=" font-style:italic;">SQL-log</span>dock gebruiken met <span style=" font-style:italic;">Gebruiker</span> geselecteerd.</p></body></html> + + + + This field shows the results and status codes of the last executed statements. + Dit veld toont de resultaten en statuscodes van de laatst uitgevoerde opdrachten. + + + + Results of the last executed statements + Resultaten van de laatst uitgevoerde opdrachten + + + + Couldn't read file: %1. + Kon het bestand niet lezen: %1. + + + + + Couldn't save file: %1. + Kon het bestand niet opslaan: %1. + + + + Your changes will be lost when reloading it! + Jouw wijzigingen zullen verloren gaan als je het opnieuw laadt! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + Het bestand '%1' is aangepast door een ander programma. Wil je het herladen?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) De abs(X) functie retourneert de absolute waarde van het numerieke argument X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () De changes() functie retourneert het aantal databaserecords dat gewijzigd, ingevoegd +of verwijderd is door de meest recent voltooide INSERT-, DELETE- of UPDATE-instructie. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) De char(X1,X2,...,XN) functie retourneert een tekenreeks bestaande uit tekens +met de respectievelijke unicode-codepuntwaarden van de gehele getallen X1 tot en met XN. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) De coalesce(X,Y,...) functie retourneert een kopie van het eerste niet-NULL argument, of NULL als alle argument NULL zijn + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) De glob(X,Y) functie is het equivalent van de expressie "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) De ifnull(X,Y) functie retourneert een kopie van het eerste niet-NULL argument, of NULL als beide argumenten NULL zijn. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) De instr(X,Y) functie zoekt het eerste voorkomen van tekenreeks Y in tekenreeks X +en retourneert het aantal voorgaande tekens plus 1, of 0 als Y niet voorkomt in X. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) De hex(X) functie interpreteert het argument als een BLOB en retourneert de +hexadecimale voorstelling van de BLOB-inhoud als tekenreeks in bovenkast. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () De last_insert_rowid() functie retourneert het ROWID van het laatste record dat +door de databaseverbinding die de functie aanriep is ingevoegd. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) Voor een tekenreeks X, retourneert de length(X) functie het aantal tekens (en niet bytes) in X voor het eerste NUL-teken. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) De like(X,Y) functie wordt gebruikt als implementatie voor de expressie "Y LIKE X". + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) De like(X,Y,Z) functie wordt gebruikt als implementatie voor de expressie "Y LIKE X ESCAPE Z". + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) De load_extension(X) functie laadt SQLite extensies uit een gedeeld biblitheekbestand genaamd X. +Voor het gebruik van deze functie is autorisatie vanuit Instellingen nodig. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) De load_extension(X,Y) functie laadt SQLite extensies uit een gedeeld biblitheekbestand +genaamd X gebruikmakend van toegangspunt Y. +Voor het gebruik van deze functie is autorisatie vanuit Instellingen nodig. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) De lower(X) functie retourneert een kopie van de tekenreeks X waarbij alle ASCII-tekens omgezet worden naar onderkast. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) verwijdert alle spaties aan de linkerkant van X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) De ltrim(X,Y) functie retourneert een tekenreeks die gevormd wordt door alle +tekens die in Y voorkomen te verwijderen van de linkerkant van X. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) De max(X,Y,...) functie accepteert een variabel aantal argumenten en +retourneert het argument met de hoogste waarde, of NULL als enig argument NULL is. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) De min(X,Y,...) functie accepteert een variabel aantal argumenten en retourneert het argument met de laagste waarde. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) De nullif(X,Y) functie retourneert het eerste argument als de argumenten +verschillend zijn en NULL als de argumenten hetzelfde zijn. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) De printf(FORMAT,...) SQL functie werkt zoals de sqlite3_mprintf() functie +in de C-taal en de printf() functie uit de standaard C-bibliotheek. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) De quote(X) functie retourneert de tekst van een SQL literaal met de waarde van +het argument, geschikt om in te sluiten in een SQL-instructie. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () De random() functie retourneert een pseudowillekeurig geheel getal tussen -9223372036854775808 en +9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) De randomblob(N) functie retourneert een N-byte blob met pseudowillekeurige bytes. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) De replace(X,Y,Z) functie retourneert een tekenreeks samengesteld door alle +voorvallen van tekenreeks Y in tekenreeks X te vervangen door tekenreeks Z. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) De round(X) functie retourneert het zwevendekommagetal X afgerond naar nul cijfers achter de komma. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) De round(X,Y) functie retourneert het zwevendekommagetal X afgerond naar Y cijfers achter de komma. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X) verwijdert alle spaties aan de rechterkant van X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) De rtrim(X,Y) functie retourneert een tekenreeks die gevormd wordt door alle +tekens die in Y voorkomen te verwijderen van de rechterkant van X. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) De soundex(X) functie retourneert de soundex-codering van tekenreeks X als tekenreeks. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) retourneert alle tekens van de tekenreeks X, van het Y-ste teken tot en met het laatste. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) De substr(X,Y,Z) functie retourneert het deel van de tekenreeks X, vanaf het Y-ste teken, en met lengte Z. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () De total_changes() functie retourneert het aantal databaserecords dat gewijzigd is +door INSERT-, DELETE- of UPDATE-instructies sinds de databaseconnectie geopend werd. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) verwijdert alle spaties aan beide kanten van X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) De trim(X,Y) functie retourneert een tekenreeks die gevormd wordt door alle tekens +die in Y voorkomen te verwijderen van beide kanten van X. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) De typeof(X) functie retourneert een tekenreeks die aangeeft wat het gegevenstype van expressie X is. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) De unicode(X) functie retourneert het numerieke unicode-codepunt van het eerste teken in de tekenreeks X. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) De upper(X) functie retourneert een kopie van de tekenreeks X waarbij alle +onderkast ASCII-tekens omgezet worden naar hun bovenkast equivalent. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) De zeroblob(N) functie retourneert een blob met N 0x00 bytes. + + + + + + + (timestring,modifier,modifier,...) + (tijdtekenreeks,modificator,modificator,...) + + + + (format,timestring,modifier,modifier,...) + (formaat,tijdtekenreeks,modificator,modificator,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) De avg() functie retourneert de gemiddelde waarde van alle niet-NULL X in een groep. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) De count(X) functie retourneert het aantal maal dat X niet NULL is in een groep. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) De group_concat(X) functie retourneert een tekenreeks die de aaneenschakeling is van alle niet-NULL waarden van X. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) De group_concat(X,Y) functie retourneert een tekenreeks die de aaneenschakeling +is van alle niet-NULL waarden van X, met Y als scheidingsteken(-reeks). + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) De max(X) aggregaatfunctie retourneert de hoogste waarde van alle waarden in de groep. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) De min(X) aggregaatfunctie retourneert de laagste niet-NULL waarde van alle waarden in de groep. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) De sum(X) en total(X) aggregaatfuncties retourneren de opsomming van alle niet-NULL waarden in de groep. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () Het nummer van de rij binnen de huidige partitie. Rijen worden genummerd vanaf 1 +in de volgorde zoals gedefinieerd door de ORDER BY clausule in de vensterdefinitie, +of anders in arbitraire volgorde. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Het row_number() van de eerste peer in elke groep - de rang van de huidige rij +met hiaten. Als er geen ORDER BY clausule is, dan worden alle rijen als peer +beschouwd en retourneert deze functie altijd 1. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Het nummer van de peergroep van de huidige rij, binnen diens partitie - de rang +van de huidige rij zonder hiaten. Partities worden genummerd vanaf 1 in de volgorde +zoals gedefinieerd door de ORDER BY clausule in de vensterdefinitie. Als er geen +ORDER BY clausule is, dan worden alle rijen als peer beschouwd en retourneert deze functie altijd 1. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () Ondanks de naam retourneert deze functie altijd een waarde tussen 0,0 en 1,0 +gelijk aan (rang - 1)/(partitierijen - 1), waarbij rang de waarde is die geretourneerd +wordt door de ingebouwde vensterfunctie rank() en partitierijen het totaal aantal +rijen in de partitie is. Wanneer de partitie maar een rij bevat dan retourneert deze functie 0,0. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () De cumulatieve distributie. Berekend als rijnummer/partitierijen, waarbij rijnummer +de waarde is die geretourneerd wordt door row_number() voor de laatste peer in de +groep en partitierijen het aantal rijen in de partitie is. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) Argument N wordt behandeld als geheel getal. Deze functie deelt de partitie zo +evenredig als mogelijk op in N groepen en kent aan elke groep een getal tussen +1 en N toe , in de volgorde zoals gedefinieerd door de ORDER BY clausule, indien +aanwezig, en anders in arbitraire volgorde.. Indien nodig komen grote groepen eerst. +Deze functie retourneert het gehele getal dat toegekend is aan de groep waar de +huidige rij deel van uit maakt. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Evalueert de expressie expr tegen de vorige rij in de partitie en retourneert +het resultaat. Of NULL, indien er geen vorige rij bestaat (omdat de huidige rij de eerste is). + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,verschuiving) Indien het argument verschuiving wordt meegegeven dan dient +dit een niet-negatief geheel getal te zijn. In dat geval wordt de expressie expr tegen +de rij met afstand verschuiving voor de huidige rij in de partitie geëvalueerd en het +resultaat retourneerd. Als verschuiving 0 is dan wordt tegen de huidige rij geëvalueerd. +Indien er geen rij met afstand verschuiving voor de huidige rij bestaat, wordt NULL geretourneerd. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,verschuiving,standaardwaarde) Retourneert standaardwaarde als deze meegegeven +is of anders NULL wanneer de rij volgens de verschuiving niet bestaat. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Evalueert de expressie expr tegen de volgende rij in de partitie en retourneert +het resultaat. Of NULL, indien er geen volgende rij bestaat (omdat de huidige rij de laatste is). + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,verschuiving) Indien het argument verschuiving wordt meegegeven dan +dient dit een niet-negatief geheel getal te zijn. In dat geval wordt de expressie +expr tegen de rij met afstand verschuiving na de huidige rij in de partitie +geëvalueerd en het resultaat retourneerd. Als verschuiving 0 is dan wordt tegen +de huidige rij geëvalueerd. Indien er geen rij met afstand verschuiving na de +huidige rij bestaat, wordt NULL geretourneerd. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Deze ingebouwde vensterfunctie berekent het vensterkader voor elke rij, +op dezelfde manier als een geaggregeerde vensterfunctie. Evalueert voor elke rij +de expressie expr tegen de eerste rij in het vensterkader en retourneert de waarde. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Deze ingebouwde vensterfunctie berekent het vensterkader voor elke rij, +op dezelfde manier als een geaggregeerde vensterfunctie. Evalueert voor elke rij +de expressie expr tegen de laatste rij in het vensterkader en retourneert de waarde. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) Deze ingebouwde vensterfunctie berekent het vensterkader voor elke rij, +op dezelfde manier als een geaggregeerde vensterfunctie. Evalueert de expressie +expr tegen rij N van het vensterkader en retourneert de waarde. Rijen worden binnen +het vensterkader genummerd vanaf 1 in de volgorde zoals gedefinieerd door de +ORDER BY clausule,indien aanwezig, en anders in arbitraire volgorde. Als rij N niet +bestaat in de partitie dan wordt NULL geretourneerd. + + + + SqliteTableModel + + + reading rows + records lezen + + + + loading... + aan het laden... + + + + References %1(%2) +Hold %3Shift and click to jump there + Verwijst naar %1(%2) +Houdt %3Shift ingedrukt terwijl je klikt om er naartoe te springen + + + + Error changing data: +%1 + Fout bij het aanpassen van gegevens: +%1 + + + + retrieving list of columns + lijst met kolommen aan het ophalen + + + + Fetching data... + Gegevens aan het ophalen... + + + + + Cancel + Annuleren + + + + TableBrowser + + + Browse Data + Gegevensbrowser + + + + &Table: + &Tabel: + + + + Select a table to browse data + Selecteer een tabel om door gegevens te bladeren + + + + Use this list to select a table to be displayed in the database view + Gebruik deze lijst om een tabel te selecteren die getoond zal worden in de gegevensbrowser + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Dit is het databasetabeloverzicht: Je kunt hier de volgende handelingen uitvoeren: + - Beginnen met typen om waarden in de regel te bewerken. + - Dubbelklikken op een willekeurig record om diens inhoud te bewerken in het celbewerkingsvenster. + - Alt-Del om de celinhoud om te zetten naar NULL. + - Ctrl+" om het huidige record te dupliceren. + - Ctrl+' om de celwaarde boven te kopiëren. + - Gebruikelijke kopiëren/plakken handelingen. + + + + Text pattern to find considering the checks in this frame + Zoekterm die gezocht moet worden met de geselecteerde opties in dit kader + + + + Find in table + Zoek in tabel + + + + Find previous match [Shift+F3] + Vorige overeenkomst zoeken [Shift+F3] + + + + Find previous match with wrapping + Vorige overeenkomst zoeken met terugloop + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Volgende overeenkomst zoeken [Enter, F3] + + + + Find next match with wrapping + Volgende overeenkomst zoeken met terugloop + + + + F3 + + + + + The found pattern must match in letter case + De gevonden overeenkomst moet identiek zijn in onder-/bovenkast + + + + Case Sensitive + Identieke onder-/bovenkast + + + + The found pattern must be a whole word + Het gevonden patroon moet een heel woord zijn + + + + Whole Cell + Gehele cel + + + + Interpret search pattern as a regular expression + Interpreteer zoekterm als reguliere expressie + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Indien geselecteerd wordt de zoekterm geïnterpreteerd als een UNIX reguliere expressie. Zie hiervoor <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Reguliere Expressies in Wikibooks (Engels)</a>.</p></body></html> + + + + Regular Expression + Reguliere expressie + + + + + Close Find Bar + Zoekbalk sluiten + + + + Text to replace with + Tekst om mee te vervangen + + + + Replace with + Vervangen met + + + + Replace next match + Vervang volgende overeenkomst + + + + + Replace + Vervangen + + + + Replace all matches + Alle overeenkomsten vervangen + + + + Replace all + Alles vervangen + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Blader naar het begin</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Klikken op deze knop brengt je naar het begin van het hierboven getoonde tabeloverzicht.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Blader één pagina omhoog + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Klikken op deze knop bladert één pagina omhoog in het hierboven getoonde tabeloverzicht.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 van 0 + + + + Scroll one page downwards + Blader één pagina omlaag + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Klikken op deze knop bladert één pagina omlaag in het hierboven getoonde tabeloverzicht.</p></body></html> + + + + > + > + + + + Scroll to the end + Blader naar het einde + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>Klikken op deze knop brengt je naar het einde van het hierboven getoonde tabeloverzicht.</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Klik op deze knop om naar een specifiek record te springen</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Deze knop wordt gebruikt om naar het specifieke record van het Ga-naar-veld te springen.</p></body></html> + + + + Go to: + Ga naar: + + + + Enter record number to browse + Voer een recordnummer in om te browsen + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Voer een specifiek recordnummer in dit veld in en klik op de Ga naar-knop, om het record in het tabeloverzicht te tonen + + + + 1 + 1 + + + + Show rowid column + De rowid-kolom tonen + + + + Toggle the visibility of the rowid column + De zichtbaarheid van de rowid-kolom omschakelen + + + + Unlock view editing + Viewbewerking ontgrendelen + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Dit ontgrendelt de huidige view om deze te bewerken. Je hebt echter de juiste triggers nodig om te kunnen bewerken. + + + + Edit display format + Opmaak bewerken + + + + Edit the display format of the data in this column + De opmaak van de gegevens in deze kolom bewerken + + + + + New Record + Nieuw record + + + + + Insert a new record in the current table + Een nieuw record in de huidige tabel invoegen + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Deze knop maakt een nieuw record aan in de database. Houd de muis ingedrukt om een popupmenu met opties te openen:</p><ul><li><span style=" font-weight:600;">Nieuw record</span>: een nieuw record met standaardwaarden invoegen.</li><li><span style=" font-weight:600;">Waarden invoeren...</span>: opent een dialoogvenster om waarden in te voeren voordat ze in de database worden ingevoegd. Hiermee kun je waarden invoeren die aan de beperkingen voldoen. Dit dialoogvenster wordt tevens geopend als <span style=" font-weight:600;">Nieuw record</span> mislukte door deze beperkingen.</li></ul></body></html> + + + + + Delete Record + Record verwijderen + + + + Delete the current record + Het huidige record verwijderen + + + + + This button deletes the record or records currently selected in the table + Deze knop verwijdert huidig in de tabel geselecteerde records + + + + + Insert new record using default values in browsed table + Nieuw record invoegen met de standaardwaarden die gelden voor de getoonde tabel + + + + Insert Values... + Waarden invoeren... + + + + + Open a dialog for inserting values in a new record + Open een dialoogvenster om waarden voor een nieuw record in te voeren + + + + Export to &CSV + Exporteren als &CSV + + + + + Export the filtered data to CSV + De gefilterde gegevens exporteren naar CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Deze knop exporteert de gegevens van de tabel zoals deze nu getoond worden (door filters, opmaak en kolomsorteringen) naar een CSV-bestand. + + + + Save as &view + Opslaan als &view + + + + + Save the current filter, sort column and display formats as a view + De huidige filters, kolomsorteringen en opmaak opslaan als view + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Deze knop slaat de gegevens van de tabel zoals deze nu getoond worden (door filters, opmaak en kolomsorteringen) op als SQL-view zodat je er later doorheen kunt bladeren of deze in SQL-instructies kunt gebruiken. + + + + Save Table As... + Tabel opslaan als... + + + + + Save the table as currently displayed + Tabel opslaan zoals deze op het ogenblik wordt getoond + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>Dit popupmenu biedt de volgende opties om toe te passen op de huidig getoonde en gefilterde tabel:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Exporteren naar CSV: Deze optie exporteert de gegevens van de tabel zoals deze nu getoond worden (door filters, opmaak en kolomsorteringen) naar een CSV-bestand.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Opslaan als view: Deze optie slaat de gegevens van de tabel zoals deze nu getoond worden (door filters, opmaak en kolomsorteringen) op als SQL-view zodat je er later doorheen kunt bladeren of deze in SQL-instructies kunt gebruiken.</li></ul></body></html> + + + + Hide column(s) + Kolom(-men) verbergen + + + + Hide selected column(s) + Geselecteerde kolom(-men) verbergen + + + + Show all columns + Alle kolommen tonen + + + + Show all columns that were hidden + Alle kolommen tonen die verborgen waren + + + + + Set encoding + Encodering aanpassen + + + + Change the encoding of the text in the table cells + Encodering van de tekst in de tabelcellen aanpassen + + + + Set encoding for all tables + Encodering van alle tabellen aanpassen + + + + Change the default encoding assumed for all tables in the database + De standaard veronderstelde encodering voor alle tabellen aanpassen + + + + Clear Filters + Filters wissen + + + + Clear all filters + Alle filters wissen + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Deze knop wist alle filters onder de kolomkoppen voor de huidig getoonde tabel. + + + + Clear Sorting + Sortering opheffen + + + + Reset the order of rows to the default + Herstelt de sortering van de records naar de standaardsortering + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Deze knop heft alle sorteringen voor de huidig getoonde tabel op en zet deze terug naar de standaardsortering. + + + + Print + Afdrukken + + + + Print currently browsed table data + De huidig getoonde tabelgegevens afdrukken + + + + Print currently browsed table data. Print selection if more than one cell is selected. + De huidig getoonde tabelgegevens afdrukken. Drukt selectie af als meer dan één cel geselecteerd is. + + + + Ctrl+P + + + + + Refresh + Verversen + + + + Refresh the data in the selected table + Ververs de gegevens van de huidig geselecteerde tabel + + + + This button refreshes the data in the currently selected table. + Deze knop ververst de gegevens van de huidig geselecteerde tabel. + + + + F5 + + + + + Find in cells + In cellen zoeken + + + + Open the find tool bar which allows you to search for values in the table view below. + Open de zoekwerkbalk die je in staat stelt waarden te zoeken in het hieronder getoonde overzicht. + + + + + Bold + Vet + + + + Ctrl+B + + + + + + Italic + Cursief + + + + + Underline + Onderstreept + + + + Ctrl+U + + + + + + Align Right + Rechts uitlijnen + + + + + Align Left + Links uitlijnen + + + + + Center Horizontally + Horizontaal centreren + + + + + Justify + Uitvullen + + + + + Edit Conditional Formats... + Voorwaardelijke opmaakregels bewerken... + + + + Edit conditional formats for the current column + Voorwaardelijke opmaakregels voor de huidige kolom bewerken + + + + Clear Format + Opmaak wissen + + + + Clear All Formats + Alle opmaak wissen + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Wis alle celopmaak van geselecteerde cellen en wis alle voorwaardelijke opmaak van geselecteerde kolommen + + + + + Font Color + Tekstkleur + + + + + Background Color + Achtergrondkleur + + + + Toggle Format Toolbar + Toon/verberg opmaakwerkbalk + + + + Show/hide format toolbar + Toont of verbergt de opmaakwerkbalk + + + + + This button shows or hides the formatting toolbar of the Data Browser + Deze knop toont of verbergt de opmaakwerkbalk van de Gegevensbrowser + + + + Select column + Kolom selecteren + + + + Ctrl+Space + + + + + Replace text in cells + Tekst in cellen vervangen + + + + Filter in any column + Willekeurige kolom filteren + + + + Ctrl+R + + + + + %n row(s) + + %n record + %n records + + + + + , %n column(s) + + , %n kolom + , %n kolommen + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Som: %1; Gemiddelde: %2; Min.: %3; Max.: %4 + + + + Conditional formats for "%1" + Voorwaardelijke opmaakregels voor "%1" + + + + determining row count... + aantal records bepalen... + + + + %1 - %2 of >= %3 + %1 - %2 van >= %3 + + + + %1 - %2 of %3 + %1 - %2 van %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Voer een pseudo-primaire sleutel in om het bewerken van deze view in te schakelen. Dit dient de naam van een unieke-waardenkolom in de view te zijn. + + + + Delete Records + Records verwijderen + + + + Duplicate records + Records dupliceren + + + + Duplicate record + Record dupliceren + + + + Ctrl+" + + + + + Adjust rows to contents + Rijen aanpassen aan inhoud + + + + Error deleting record: +%1 + Fout bij het verwijderen van record: +%1 + + + + Please select a record first + Selecteer eerst een record + + + + There is no filter set for this table. View will not be created. + Er is geen filter voor deze tabel ingesteld. View wordt niet gemaakt. + + + + Please choose a new encoding for all tables. + Kies een nieuwe codering voor alle tabellen. + + + + Please choose a new encoding for this table. + Kies een nieuwe codering voor deze tabel. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Laat het veld leeg om de databasecodering te gebruiken. + + + + This encoding is either not valid or not supported. + De codering is niet geldig of wordt niet ondersteund. + + + + %1 replacement(s) made. + %1 vervangin(-en) gedaan. + + + + VacuumDialog + + + Compact Database + Database comprimeren + + + + Warning: Compacting the database will commit all of your changes. + Waarschuwing: wanneer je de database comprimeert zullen al jouw gemaakte wijzigingen gecommitteerd worden. + + + + Please select the databases to co&mpact: + Selecteer de databases om te co&mprimeren: + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_pl.qm b/src/SqliteDBProcess/src/translations/sqlb_pl.qm new file mode 100644 index 0000000..5d3d670 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_pl.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_pl.ts b/src/SqliteDBProcess/src/translations/sqlb_pl.ts new file mode 100644 index 0000000..80041b5 --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_pl.ts @@ -0,0 +1,7032 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + O Przeglądarce SQLite + + + + Version + Wersja + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>Przeglądarka SQLite jest darmowym otwartym oprogramowaniem przeznaczonym do graficznej edycji i tworzenia plików bazy danych SQLite.</p><p>Program podlega podwójnej licencji użytkowania: Publiczna licencja Mozilli Wersja 2 jak również Powszechna Licencja Publiczna GNU wersja 3 i późniejsza. Możesz zmieniać i rozpowszechniać program pod warunkami zawartymi w tych licencjach.</p><p>Zobacz <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> i <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> dla szczegółów.</p><p>Odwiedź naszą stronę internetową aby zapoznać się ze szczegółami na temat działania tego programu: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">To oprogramowanie używa GPL/LGPL Qt Toolkit z: </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Zobacz </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> na temat licencji i użytkowania.</span></p><p><span style=" font-size:small;">Używany również jest zestaw ikon Silk stworzony przez Mark James pod licencją Creative Commons Attribution 2.5 i 3.0.<br/>Zobacz </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> po więcej szczegółów.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Nowy rekord + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Podaj wartości dla nowego rekordu zwracając uwagę na ograniczenia.Pola wytłusczone są obowiązkowe. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + W kolumnie Wartość możesz podać wartość dla pola identyfikowanego w kolumnie Nazwa. Kolumna Rodzaj wskazuje rodzaj pola. Wartości domyślne są wyświetlane w tym samym stylu, co wartości NULL. + + + + Name + Nazwa + + + + Type + Rodzaj + + + + Value + Wartość + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Wartości do wstawienia. Uprzednio wypełnione domyślne wartości są wstawiane samoczynnie, chyba że zostały zmienione. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Tutaj pokazana jest kwerenda SQL dla dodania nowego rekordu zawierającego wartości wprowadzone w górnej ramce. Możesz ją ręcznie zmienić przed zapisem rekordu. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Zapisz</span> przekaże wyświetlone zapytanie SQL do bazy danych w celu zapisania nowego rekordu</p><p><span style=" font-weight:600;">Przywróć domyślne</span> przywróci wstępne wartości domyślne w kolumnie<span style=" font-weight:600;">Wartość</span></p><p><span style=" font-weight:600;">Zaniechaj</span> zamyka to okno bez robienia zmian.</p></body></html> + + + + Auto-increment + + Samoprzyrost + + + + Unique constraint + + Ograniczenie niepowtarzalności + + + + + Check constraint: %1 + + Ograniczenie sprawdzania: %1 + + + + + Foreign key: %1 + + Klucz obcy: %1 + + + + + Default value: %1 + + Wartość domyślna: %1 + + + + + Error adding record. Message from database engine: + +%1 + Nie można dodać rekordu. Wiadomość z silnika bazy danych: +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Jesteś pewien że chcesz przywrócić domyślne wartości dla wszystich wpisów? + + + + Application + + + Possible command line arguments: + Dozwolone argumenty wiersza poleceń: + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + Opcja -s/--sql wymaga argumentu + + + + The file %1 does not exist + Plik %1 nie istnieje + + + + The -t/--table option requires an argument + Opcja -t/--table wymaga argumentu + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + Ustawienia -o/--option oraz -O/--save-option wymagają argumentu w postaci group/setting=wartość + + + + Invalid option/non-existant file: %1 + Nieprawidłowa opcja lub nieistniejący plik: %1 + + + + SQLite Version + Wersja SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + + + + + Qt Version %1 + + + + + CipherDialog + + + SQLCipher encryption + Szyfrowanie SQLCipher + + + + &Password + &Hasło + + + + &Reenter password + Powtó&rz hasło + + + + Encr&yption settings + Ustawienia sz&yfrowania + + + + SQLCipher &3 defaults + Domyślne SQLCipher &3 + + + + SQLCipher &4 defaults + Domyślne SQLCipher &4 + + + + Custo&m + Włas&ny + + + + Page si&ze + Ro&zmiar strony + + + + &KDF iterations + Powtórzenia &KDF + + + + HMAC algorithm + Algorytm HMAC + + + + KDF algorithm + Algorytm KDF + + + + Plaintext Header Size + Rozmiar nagłówka zwykłego tekstu + + + + Passphrase + Hasło + + + + Raw key + Klucz + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Proszę podaj klucz do zaszyfrowania bazy danych. +Zwróć uwagę na to że wszelkie zmiany wprowadzone tutaj do opcjonalnych ustawień bedą wymagane przy każdym otwarciu pliku. +W celu deaktywacji szyfrowania pozostaw pola klucza puste. +Proces szyfrowania może zabrać dużo czasu w zależności od wielkości bazy danych. Zaleca się aby przed rozpoczęciem tego procesu zrobić kopię zapasową pliku. Wszelkie nie zapisane zmiany będą wprowadzone do bazy danych zanim szyfrowanie się rozpocznie. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Proszę podać hasło do zaszyfrowania bazy danych. +Jeśli zostały zmienione jakiekolwiek dodatkowe ustawienia dla pliku tej bazy danych będziesz musiał również podać tą informację. + + + + ColumnDisplayFormatDialog + + + Choose display format + Wybierz format wyświetlania + + + + Display format + Format wyświetlania + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Wybierz domyślny format wyświetlania dla kolumny '%1', który będzie stosowany dla każdej wartości, zanim zostanie ona wyświetlona. + + + + Default + Domyślny + + + + Decimal number + Liczba dziesiętna + + + + Exponent notation + Zapis wykładniczy + + + + Hex blob + Blob szestnastkowy + + + + Hex number + Liczba szesnastkowa + + + + Octal number + Liczba ósemkowa + + + + Round number + Liczba zaokrąglona + + + + Apple NSDate to date + Apple NSDate do daty + + + + Java epoch (milliseconds) to date + Java epoch (milisekundy) do daty + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + Data Juliańska do daty + + + + Unix epoch to date + Unix epoch do daty + + + + Unix epoch to local time + Unix epoch do czasu lokalnego + + + + Windows DATE to date + Windows DATE do daty + + + + Date as dd/mm/yyyy + Data w formacie dd/mm/rrrr + + + + Lower case + Małe litery + + + + Upper case + Duże litery + + + + Custom + Niestandardowy + + + + Custom display format must contain a function call applied to %1 + Własny format wyświetlania musi zawierać wywołanie funkcji zastosowanej na %1 + + + + Error in custom display format. Message from database engine: + +%1 + Błąd we własnym formacie wyświetlania. Wiadomość z silnika bazy danych: + +%1 + + + + Custom display format must return only one column but it returned %1. + Własny format wyświetlania musi zwracać tylko jedną kolumnę, a zwrócił %1. + + + + CondFormatManager + + + Conditional Format Manager + Zarządzanie formatowaniem warunkowym + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + To okno dialogowe umożliwia tworzenie i zmianę formatowania warunkowego. Wygląd komórki będzie będzie określony pierwszym spełnionym warunkiem dla danych komórki. Formatowania warunkowe można przesunąć w górę i w dół, gdzie te na górze są przetwarzane w pierwszej kolejności. Składnia dla warunków jest taka sama jak dla filtrów, a pusty warunek będzie pasował do wszystkich wartości. + + + + Add new conditional format + Dodaj nowe formatowanie warunkowe + + + + &Add + Dod&aj + + + + Remove selected conditional format + Usuń wybrane formatowanie warunkowe + + + + &Remove + &Usuń + + + + Move selected conditional format up + Przesuń w górę wybrane formatowanie warunkowe + + + + Move &up + Przesuń w &górę + + + + Move selected conditional format down + Przesuń w dół wybrane formatowanie warunkowe + + + + Move &down + Przesuń w &dół + + + + Foreground + Pierwszy plan + + + + Text color + Barwa tekstu + + + + Background + Tło + + + + Background color + Barwa tła + + + + Font + Czcionka + + + + Size + Rozmiar + + + + Bold + Pogrubienie + + + + Italic + Kursywa + + + + Underline + Podkreślenie + + + + Alignment + Wyrównanie + + + + Condition + Warunek + + + + + Click to select color + Kliknij, aby wybrać barwę + + + + Are you sure you want to clear all the conditional formats of this field? + Czy na pewno chcesz wyczyścić wszystkie formatowania warunkowe tego pola? + + + + DBBrowserDB + + + This database has already been attached. Its schema name is '%1'. + Baza danych została już dołączona. Nazwa jej schematu to '%1'. + + + + Please specify the database name under which you want to access the attached database + Proszę podaj nazwę bazy danych za pomocą której chcesz uzyskać dostęp do załączonej bazy + + + + Invalid file format + Nieprawidłowy format pliku + + + + Do you really want to close this temporary database? All data will be lost. + Czy na pewno chcesz zamknąć tę tymczasową bazę danych? Wszelkie zmiany bedą zapomniane. + + + + Do you want to save the changes made to the database file %1? + Czy na pewno chcesz zapisać zmiany dokonane w pliku bazy danych %1? + + + + Database didn't close correctly, probably still busy + Baza danych nie została zamknięta poprawnie, prawdopodobnie była nadal zajęta + + + + The database is currently busy: + Baza danych jest obecnie zajęta: + + + + Do you want to abort that other operation? + Czy na pewno chcesz przerwać tą inną operację? + + + + Exporting database to SQL file... + Eksportowanie bazy danych do pliku SQL… + + + + + Cancel + Zaniechaj + + + + + No database file opened + Plik z bazą danych nie jest obecnie otwarty + + + + Executing SQL... + Wykonywanie SQL… + + + + Action cancelled. + Zaniechano działania. + + + + + Error in statement #%1: %2. +Aborting execution%3. + Błąd w poleceniu #%1: %2. +Przerywam wykonywanie%3. + + + + + and rolling back + i przywracam + + + + didn't receive any output from %1 + nie otrzymano żadnego wyniku z %1 + + + + could not execute command: %1 + nie można wykonać polecenia: %1 + + + + Cannot delete this object + Nie można usunąć tego obiektu + + + + Cannot set data on this object + Nie można ustawić danych na tym objekcie + + + + + A table with the name '%1' already exists in schema '%2'. + Tabela o nazwie '%1' już istnieje w schemacie '%2'. + + + + No table with name '%1' exists in schema '%2'. + Tabela o nazwie '%1' nie istnieje w schemacie '%2'. + + + + + Cannot find column %1. + Nie można znaleźć kolumny %1. + + + + Creating savepoint failed. DB says: %1 + Nie można utworzyć punktu zapisu. BD zwraca: %1 + + + + Renaming the column failed. DB says: +%1 + Nie można przemianować tej kolumny. BD zwraca: +%1 + + + + + Releasing savepoint failed. DB says: %1 + Nie można zwolnić punktu zapisu. BD zwraca: %1 + + + + Creating new table failed. DB says: %1 + Nie można utworzyć nowej tabeli. BD zwraca: %1 + + + + Copying data to new table failed. DB says: +%1 + Nie można skopiować nowej tabeli. BD zwraca: +%1 + + + + Deleting old table failed. DB says: %1 + Nie można usunąć starej tabeli. BD zwraca: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + Błąd przemianowywania tabeli z '%1' na '%2'. +Wiadomość z silnika bazy danych: +%3 + + + + could not get list of db objects: %1 + nie można pobrać listy obiektów bd: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + Wystąpił błąd przy odtworzeniu niektórych obiektów powiązanych z tą bazą danych. Błędy tego rodzaju występują za zwyczaj w przypadku zmiany nazw niektórych kolumn. Sprawdź dokładnie następującą kwerendę SQL. Po dokonaniu zmian możesz ją ręcznie uruchomić: + + + + + + could not get list of databases: %1 + nie mogę odczytać listy baz danych: %1 + + + + Error setting pragma %1 to %2: %3 + Błąd przy ustawianiu pragmy %1 do %2: %3 + + + + File not found. + Nie znaleziono pliku. + + + + Error loading extension: %1 + Nie można wczytać rozszerzenia: %1 + + + + could not get column information + nie można uzyskać informacji o kolumnie + + + + DbStructureModel + + + Name + Nazwa + + + + Object + Obiekt + + + + Type + Rodzaj + + + + Schema + Polecenie tworzące + + + + Database + Baza danych + + + + Browsables + Obiekty do przeglądania + + + + All + Wszystkie + + + + Temporary + Tymczasowa + + + + Tables (%1) + Tabele (%1) + + + + Indices (%1) + Indeksy (%1) + + + + Views (%1) + Widoki (%1) + + + + Triggers (%1) + Wyzwalacze (%1) + + + + EditDialog + + + Edit database cell + Zmiana komórki bazy danych + + + + Mode: + Tryb: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + To jest lista dostępnych trybów dla edytora komórek. Wybierz tryb do wyświetlania lub edycji danych dla tej komórki. + + + + Text + Tekst + + + + RTL Text + Tekst od prawej do lewej + + + + Binary + Zapis dwójkowy + + + + + Image + Obraz + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + Sam dostosuj tryb edytora w zależności od wczytanych danych + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + To pole zaznaczane włącza lub wyłącza samoczynne przełączanie do trybu edytora. Po wybraniu nowej komórki lub zaimportowaniu nowych danych i przy włączonym samoczynnym przełączaniu, tryb dostosowuje się do wykrytego rodzaju danych. Następnie można zmienić tryb edytora ręcznie. Aby zapamiętać ten try ręczny przy przechodzeniu po komórkach, wystarczy odznaczyć to pole. + + + + Auto-switch + Sam przełączaj + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + Tryby edytora tekstu umożliwiają edycję zwykłego tekstu, a także danych JSON oraz XML +z podświetlaniem składni, samoformatowaniem oraz sprawdzaniem przed zapisem. + +Błędy są podkreślane czerwonym ślaczkiem. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Edytor Qt jest używany do pism od-prawej-do-lewej, które nie są obsługiwane przez domyślny edytor tekstu. Obecność znaków pism od-prawej-do-lewej jest wykrywana, a edytor sam przełącza się do tego trybu. + + + + Open preview dialog for printing the data currently stored in the cell + Otwiera okno dialogowe do podglądu drukowanych danych z danej komórki + + + + Auto-format: pretty print on loading, compact on saving. + Auto-formatowanie: upiększa tekst przy wczytywaniu i ściska przy zapisywaniu. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Po zaznaczeniu, dane są formatowane podczas ich wczytywania, łamiąc tekst w wierszach oraz wcinając go dla najlepszej czytelności. Przed zapisaniem, dane są oczyszczane poprzez usunięcie zakończeń wierszy oraz niepotrzebnych białych znaków. + + + + Word Wrap + Zawijaj słowa + + + + Wrap lines on word boundaries + Zawijaj wiersze na granicach słów + + + + + Open in default application or browser + Otwórz w domyślnej aplikacji lub przeglądarce + + + + Open in application + Otwórz w aplikacji + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + Wartość jest traktowana jako plik lub adres URL i otwierana w domyślnej aplikacji lub przeglądarce sieciowej. + + + + Save file reference... + Zapisz odniesienie pliku... + + + + Save reference to file + Zapisz odniesienie do pliku + + + + + Open in external application + Otwórz w zewnętrznej aplikacji + + + + Autoformat + Sam formatuj + + + + &Export... + &Eksportuj... + + + + + &Import... + &Importuj... + + + + + Import from file + Importuj z pliku + + + + + Opens a file dialog used to import any kind of data to this database cell. + Otwiera okno wyboru pliku z danymi do zaimportowania w tej komórce. + + + + Export to file + Eksportuj do pliku + + + + Opens a file dialog used to export the contents of this database cell to a file. + Otwiera okno pozwalające na wyeksportowanie zawartości komórki do pliku. + + + + Erases the contents of the cell + Czyści zawartość komórki + + + + Set as &NULL + Ustaw jako &NULL + + + + This area displays information about the data present in this database cell + Tutaj wyświetlane są informacje o danych obecnych w tej komórce + + + + Type of data currently in cell + Rodzaj danych obecnie znajdujących się w komórce + + + + Size of data currently in table + Rozmiar danych znajdujących się obecnie w tabeli + + + + Apply data to cell + Zapisz dane w komórce + + + + This button saves the changes performed in the cell editor to the database cell. + Ten przycisk zapisuje zmiany wykonane w edytorze komórki w komórce bazy danych. + + + + Apply + Zastosuj + + + + + Print... + Drukuj... + + + + Open preview dialog for printing displayed image + Otwórz podgląd wydruku dla aktualnie wyświetlonego obrazu + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Otwiera okno dialogowe do podglądu wyświetlanego tekstu + + + + Copy Hex and ASCII + Skopiuj Hex i ASCII + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Skopiuj zaznaczone kolumny szesnastkowe oraz ASCII do schowka + + + + Ctrl+Shift+C + + + + + + Image data can't be viewed in this mode. + Obrazy nie mogą zostać wyświetlone w tym trybie. + + + + + Try switching to Image or Binary mode. + Przejdź do trybu obrazu lub wartości binarnej. + + + + + Binary data can't be viewed in this mode. + Wartość dwójkowa nie może być wyświetlona w tym trybie. + + + + + Try switching to Binary mode. + Przejdź do trybu wartości binarnej. + + + + + Image files (%1) + Piki graficzne (%1) + + + + Binary files (*.bin) + Pliki Binarne (*.bin) + + + + Choose a file to import + Wybierz plik do zaimportowania + + + + %1 Image + %1 Grafika + + + + Choose a filename to export data + Wybierz nazwę pliku dla wyeksportowanych danych + + + + Invalid data for this mode + Nieprawidłowe dane w tym trybie + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + Komórka zawiera nieprawidłowe dane %1. Powód: %2. Czy na pewno wstawić je do komórki? + + + + + Type of data currently in cell: Text / Numeric + Rodzaj danych obecnie znajdujących się w komórce: Tekst/Liczba + + + + + + %n character(s) + + %n znak + %n znaki + %n znaków + + + + + Type of data currently in cell: %1 Image + Rodzaj danych obecnie znajdujących się w komórce: Obraz %1 + + + + %1x%2 pixel(s) + %1x%2 piksel(e) + + + + Type of data currently in cell: NULL + Rodzaj danych obecnie znajdujących się w komórce: NULL + + + + + %n byte(s) + + %n bajt + %n bajty + %n bajtów + + + + + Type of data currently in cell: Valid JSON + Rodzaj danych obecnie znajdujących się w komórce: Prawidłowy JSON + + + + Type of data currently in cell: Binary + Rodzaj danych obecnie znajdujących się w komórce: dwójkowa + + + + Couldn't save file: %1. + Nie można zapisać pliku: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + Zapisano dane do pliku tymczasowego i otwarto je w domyślnej aplikacji. Teraz możesz wprowadzić zmiany w pliku, a gdy będziesz gotowy, zapisz nowe dane w edytorze komórki lub zaniechaj jakichkolwiek zmian. + + + + EditIndexDialog + + + Edit Index Schema + Edytor tworzenia indeksu + + + + &Name + &Nazwa + + + + &Table + &Tabela + + + + &Unique + &Niepowtarzalny + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Aby ograniczyć indeks tylko do części tabeli można dopisać tutaj polecenie WHERE, które +zaznacza część tabeli, która ma zostać zaindeksowana + + + + Partial inde&x clause + Polecenie częściowego &indeksu + + + + Colu&mns + Kolu&mny + + + + Table column + Kolumna tabeli + + + + Type + Rodzaj + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Dodaj nową kolumnę wyrażenia do indeksu. Kolumny wyrażeń zawierają raczej wyrażenia SQL niż nazwy kolumn. + + + + Index column + Kolumna indeksu + + + + Order + Porządek + + + + Deleting the old index failed: +%1 + Usuwanie starego indeksu nie powiodło się: +%1 + + + + Creating the index failed: +%1 + Tworzenie indeksu nie powiodło się: +%1 + + + + EditTableDialog + + + Edit table definition + Edycja tworzenia tabeli + + + + Table + Tabela + + + + Advanced + Zaawansowane + + + + Without Rowid + Bez ID wiersza + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Uczyń z tej tabeli tablę 'WITHOUT rowid'. Ustawienie tej flagi wymaga pola rodzaju INTEGER z flagą klucza głównego ustawioną i flagą samoprzyrostu wyłączoną. + + + + Fields + Pola + + + + Database sche&ma + Sche&mat bazy danych + + + + Add + Dodaj + + + + Remove + Usuń + + + + Move to top + Przesuń na górę + + + + Move up + Przesuń w górę + + + + Move down + Przesuń w dół + + + + Move to bottom + Przesuń na dół + + + + + Name + Nazwa + + + + + Type + Rodzaj + + + + NN + NN + + + + Not null + Nie NULL + + + + PK + PK + + + + Primary key + Klucz główny + + + + AI + AI + + + + Autoincrement + Samoprzyrostowa + + + + U + U + + + + + + Unique + Niepowtarzalna + + + + Default + Domyślna + + + + Default value + Domyślna wartość + + + + + + Check + Sprawdzenie + + + + Check constraint + Ograniczenie sprawdzenia + + + + Collation + Zestawienie + + + + + + Foreign Key + Obcy klucz + + + + Constraints + Ograniczenia + + + + Add constraint + Dodaj ograniczenie + + + + Remove constraint + Usuń ograniczenie + + + + Columns + Kolumny + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Uwaga: </span>W określeniu tabeli jest coś, czego nasze przetwarzanie składni nie rozumie. Zmiana i zapis tej tabeli może skutkować kłopotami.</p></body></html> + + + + + Primary Key + Klucz główny + + + + Add a primary key constraint + Dodaj ograniczenie klucza głównego + + + + Add a foreign key constraint + Dodaj ograniczenie klucza obcego + + + + Add a unique constraint + Dodaj ograniczenie niepowtarzalności + + + + Add a check constraint + Dodaj ograniczenie sprawdzania + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Dla każdej tabeli może być tylko jeden klucz główny. Zmień istniejący klucz główny. + + + + Error creating table. Message from database engine: +%1 + Nie można utworzyć tabeli. Wiadomość z silnika bazy danych: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Istnieje już pole o tej nazwie. Przemianuj je najpierw lub wybierz inną nazwę dla tego pola. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Kolumna ma odwołanie do klucza obcego w tabeli %1 więc jej nazwa nie można zmienić jej nazwy. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + W tym polu istnieje co najmniej jeden wiersz z wartością równą NULL. Czyni to niemożliwym ustawienie tej flagi. Najpierw zmień dane tabeli. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + W tym polu istnieje co najmniej jeden wiersz z wartością nie będącą liczbą całkowitą. Czyni to niemożliwym ustawienie flagi AI. Najpierw zmień dane tabeli. + + + + Column '%1' has duplicate data. + + Kolumna '%1' zawiera powielone dane. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Czyni to niemożliwym nadanie flagi 'Unique'. Usuń powielone dane, aby móc nadać flagę 'Unique'. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Czy na pewno usunąć pole '%1'? +Wszystkie dane przechowywane w tym polu zostaną utracone. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Dodaj pola, które spełniają dane warunki przed ustawieniem flagi bez rowid: + - Ustawiono flagę głównego klucza + - Wyłączono samoprzyrost + + + + ExportDataDialog + + + Export data as CSV + Eksport danych jako CSV + + + + Tab&le(s) + Tabe&la/e + + + + Colu&mn names in first line + Nazwy kolu&mn w pierwszym wierszu + + + + Fie&ld separator + Znak oddzie&lający pola + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + Inny + + + + &Quote character + &Znak cytatu + + + + " + " + + + + ' + ' + + + + New line characters + Znak nowego wiersza + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Upiększ wydruk + + + + Export data as JSON + Eksport danych jako JSON + + + + exporting CSV + eksportowanie CSV + + + + + Could not open output file: %1 + Nie można otworzyć pliku wyjściowego: %1 + + + + exporting JSON + eksportowanie JSON + + + + + Choose a filename to export data + Wybierz nazwę pliku dla eksportowanych danych + + + + Please select at least 1 table. + Wybierz przynajmniej jedną tabelę. + + + + Choose a directory + Wybierz położenie + + + + Export completed. + Eksportowanie zakończone. + + + + ExportSqlDialog + + + Export SQL... + Eksportuj danych jako SQL + + + + Tab&le(s) + Tabel&a/e + + + + Select All + Zaznacz wszystkie + + + + Deselect All + Odznacz wszystkie + + + + &Options + &Opcje + + + + Keep column names in INSERT INTO + Pozostaw nazwy kolumn w INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Wiele rzędów (Wartości) dla polecenia INSERT + + + + Export everything + Eksportuj wszystko + + + + Export schema only + Eksportuj tylko schemat + + + + Export data only + Eksportuj tylko dane + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Zachowaj poprzedni schemat (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Zastąp poprzedni schemat (DROP TABLE, then CREATE TABLE) + + + + Please select at least one table. + Wybierz przynajmniej jedną tabelę. + + + + Choose a filename to export + Wybierz nazwę eksportowanego pliku + + + + Export completed. + Eksportowanie zakończono. + + + + Export cancelled or failed. + Eksportowanie nie udało się lub zostało zaniechane. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Znajdź... + + + + Find and Replace... + Znajdź i zamień… + + + + Print... + Drukuj... + + + + ExtendedTableWidget + + + Use as Exact Filter + Użyj jako dokładnego filtra + + + + Containing + Zawiera + + + + Not containing + Nie zawiera + + + + Not equal to + Nierówny + + + + Greater than + Większy niż + + + + Less than + Mniejszy niż + + + + Greater or equal + Większy lub równy + + + + Less or equal + Mniejszy lub równy + + + + Between this and... + Pomiędzy tym a... + + + + Regular expression + Wyrażenie regularne + + + + Edit Conditional Formats... + Zmień formatowanie warunkowe... + + + + Set to NULL + Ustaw jako NULL + + + + Copy + Skopiuj + + + + Copy with Headers + Skopiuj wraz z nagłówkami + + + + Copy as SQL + Skopiuj jako SQL + + + + Paste + Wklej + + + + Print... + Drukuj... + + + + Use in Filter Expression + Użyj w wyrażeniu filtra + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>Nie wczytano wszystkich danych. <b>Czu chcesz wczytać wszystkie dane przez zaznaczeniem wszystkich wierszy?</b><p><p>Odpowiedź <b>Nie</b> oznacza, że nie +zostanie wczytanych więcej danych i nie zostanie nic zaznaczone.<br/>Odpowiedź <b>Tak</b> oznacza, że trochę czasu może być potrzebne na wczytanie danych za to zaznaczenie będzie pełne.</p>Uwaga: Wczytanie wszystkich danych może wymagać dużej ilości pamięci dla dużych tabel. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + Nie można ustawić zaznaczonych na NULL. Kolumna %1 ma ograniczenie NOT NULL. + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + Zawartość schowka jest większa niż zaznaczony zakres. +Czy chcesz go wstawić mimo tego? + + + + FileExtensionManager + + + File Extension Manager + Zarządzanie Rozszerzeniami Plików + + + + &Up + &W górę + + + + &Down + W &dół + + + + &Add + Dod&aj + + + + &Remove + &Usuń + + + + + Description + Opis + + + + Extensions + Rozszerzenia + + + + *.extension + *.rozszerzenie + + + + FilterLineEdit + + + Filter + Filtr + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Te pola wejściowe umożliwiają szybkie filtrowanie na bieżącej tabeli. +Domyślnie, wiersze zawierające tekst wejściowy są odfiltrowywane. +Obsługiwane są następujące operatory: +% Znak wieloznaczny +> Większe niż +< Mniejsze niż +>= Równe lub większe +<= Równe lub mniejsze += Równe: dokładnie pasuje +<> Nierówne: nie pasuje +x~y Zakres: wartości pomiędzy x oraz y +/regexp/ Wartości pasujące do wyrażenia regularnego + + + + Clear All Conditional Formats + Wyczyść wszystkie formatowania warunkowe + + + + Use for Conditional Format + Użyj do formatowania warunkowego + + + + Edit Conditional Formats... + Edytuj formatowanie warunkowe... + + + + Set Filter Expression + Ustaw wyrażenia filtra + + + + What's This? + Co to jest? + + + + Is NULL + Jest NULL + + + + Is not NULL + Nie jest NULL + + + + Is empty + Jest puste + + + + Is not empty + Nie jest puste + + + + Not containing... + Nie zawiera... + + + + Equal to... + Równe... + + + + Not equal to... + Nierówne... + + + + Greater than... + Większe niż... + + + + Less than... + Mniejsze niż... + + + + Greater or equal... + Większe lub równe... + + + + Less or equal... + Mniejsze lub równe... + + + + In range... + W zakresie... + + + + Regular expression... + Wyrażenie regularne... + + + + FindReplaceDialog + + + Find and Replace + Znajdź i zastąp + + + + Fi&nd text: + Z&najdź tekst: + + + + Re&place with: + Zamień &z: + + + + Match &exact case + Rozróżniaj wielkość lit&er + + + + Match &only whole words + Tylk&o całe wyrazy + + + + When enabled, the search continues from the other end when it reaches one end of the page + Po zaznaczeniu, wyszukiwanie jest wznawiane od przeciwległego końca strony po osiągnięciu końca strony. + + + + &Wrap around + Za&wijaj + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Po zaznaczeniu, wyszukiwanie postępuje wstecz od położenia wskaźnika, w przeciwnym przypadku postępuje wprzód + + + + Search &backwards + Szukaj &na odwrót + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>Po zaznaczeniu, wzorzec do znalezienia jest szukany tylko w bieżącym zaznaczeniu.</p></body></html> + + + + &Selection only + Tylko &zaznaczenie + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Po zaznaczeniu, wzorzec do znalezienia jest rozważany jako wyrażenie regularne UNIX. Zajrzyj do <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Wyrażeń Regularnych w Wikibooks</a>.</p></body></html> + + + + Use regular e&xpressions + Stosuj wyrażenie &regularne + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Szukaj kolejnego wystąpienia od położenia wskaźnika i w stronę określoną poprzez +"Wyszukiwanie wstecz" + + + + &Find Next + Z&najdź następne + + + + F3 + + + + + &Replace + &Zastąp + + + + Highlight all the occurrences of the text in the page + Podświetl wszystkie wystąpienia tekstu na stronie + + + + F&ind All + Znajdź wszystk&ie + + + + Replace all the occurrences of the text in the page + Zastąp wszystkie wystąpienia w tekście na stronie + + + + Replace &All + Z&amień wszystkie + + + + The searched text was not found + Nie znaleziono szukanego tekstu + + + + The searched text was not found. + Nie znaleziono szukanego tekstu. + + + + The searched text was found one time. + Szukany tekst został znaleziony raz. + + + + The searched text was found %1 times. + Szukany tekst został znaleziony %1 razy. + + + + The searched text was replaced one time. + Szukany tekst został zamieniony raz. + + + + The searched text was replaced %1 times. + Szukany tekst został zamieniony %1 razy. + + + + ForeignKeyEditor + + + &Reset + &Resetuj + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Polecenia obcego klucza (ON UPDATE, ON DELETE itp.) + + + + ImportCsvDialog + + + Import CSV file + Importuj plik CSV + + + + Table na&me + &Nazwa tabeli + + + + &Column names in first line + &Nazwy kolumn w pierwszej linii + + + + Field &separator + &Znak oddzielający pola + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + | + + + + Other + Inny + + + + &Quote character + Znak &cytatów + + + + + Other (printable) + Inne (drukowalne) + + + + + Other (code) + Inny (kod) + + + + " + " + + + + ' + ' + + + + &Encoding + Kodowani&e + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Przycinać pola? + + + + Separate tables + Oddzielaj tabele + + + + Advanced + Zaawansowane + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + Przy importowaniu pustej wartości z pliku CSV do istniejącej tabeli z domyślną wartością dla tej kolumny, wstawiana jest ta domyślna wartość. Aby zamiast tego wstawić pustą wartość, wystarczy zaznaczyć to pole. + + + + Ignore default &values + Ignoruj domyślne &wartości + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Zaznacz to pole, aby zatrzymać importowanie, podczas importowania pustej wartości do kolumny NOT NULL bez domyślnej wartości. + + + + Fail on missing values + Zgłaszaj błąd dla brakujących wartości + + + + Disable data type detection + Wyłącz wykrywanie rodzajów danych + + + + Disable the automatic data type detection when creating a new table. + Wyłącz samowykrywanie rodzaju danych przy tworzeniu nowej tabeli. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Przy importowaniu do istniejącej tabeli o głównym kluczu, ograniczeniu lub indeksie niepowtarzalności istnieje szansa na sprzeczność. To ustawienie umożliwia wybranie strategii dla tego przypadku. Domyślnie importowanie jest przerywane, a zmiany wycofywane, lecz można także pominąć wiersze będące w sprzeczności lub zastąpić istniejący wiersz w tabeli. + + + + Abort import + Przerwij importowanie + + + + Ignore row + Pomiń wiersz + + + + Replace existing row + Zastąp istniejący wiersz + + + + Conflict strategy + Strategia na sprzeczności + + + + + Deselect All + Odznacz wszystkie + + + + Match Similar + Dopasuj do podobnych + + + + Select All + Zaznacz wszystkie + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Tabela o nazwie '%1' już istnieje i importowanie do istniejącej tabeli jest możliwe tylko gdy liczba kolumn zgadza się. + + + + There is already a table named '%1'. Do you want to import the data into it? + Tabela o nazwie '%1' już istnieje. Czy chcesz zaimportować dane do niej? + + + + Creating restore point failed: %1 + Nie można utworzyć punktu przywracania: %1 + + + + Creating the table failed: %1 + Tworzenie tabeli nie powiodło się: %1 + + + + importing CSV + importowanie CSV + + + + Inserting row failed: %1 + Wstawianie rzędu nie powiodło się: %1 + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + Importowanie pliku '%1' zajęło %2ms. Z tego %3ms spędzono na funkcji wiersza. + + + + MainWindow + + + DB Browser for SQLite + Przeglądarka SQLite + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Struktura danych + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Uwaga: to polecenie pragma nie jest czytelne, więc ta wartość powstała z domysłu. Zapisanie polecenie pragma może zastąpić LIKE dostarczony przez rozszerzenie SQLite. + + + + toolBar1 + toolBar1 + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Oto struktura bieżącej bazy danych. +Można przeciągać polecenia SQL z wiersza obiektu i upuszczać je na innych aplikacjach lub wstawiać je do innego wystąpienia 'Przeglądarki SQLite'. + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Przeglądarka danych + + + + Execute line + Wykonaj wiersz + + + + Un/comment block of SQL code + Dodaj/Usuń uwagę do kawałka kodu SQL + + + + Un/comment block + Dodaj/Usuń uwagę do kawałka kodu + + + + Comment or uncomment current line or selected block of code + Dodaj lub usuń uwagę do bieżącego wiersza lub zaznaczonego kawałka kodu + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Dodaj lub usuń uwagę do bieżącego wiersza lub zaznaczonych wierszy, gdy jest coś zaznaczone. Cały kawałek przełączany jest wg pierwszego wiersza. + + + + Ctrl+/ + + + + + Stop SQL execution + Zatrzymaj wykonywanie SQL + + + + Stop execution + Zatrzymaj wykonywanie + + + + Stop the currently running SQL script + Zatrzymaj wykonywanie bieżącego skryptu SQL + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Polecenia Pragmy + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + Polecenia SQL + + + + &File + &Plik + + + + &Import + &Importuj + + + + &Export + &Eksportuj + + + + &Edit + &Edycja + + + + &View + &Widok + + + + &Help + Po&moc + + + + &Tools + &Narzędzia + + + + DB Toolbar + Pasek zadań bazy danych + + + + Edit Database &Cell + Zmiana komórki bazy dany&ch + + + + SQL &Log + Dziennik SQ&L + + + + Show S&QL submitted by + Pokaż S&QL wydane przez + + + + User + Użytkownika + + + + Application + Aplikację + + + + Error Log + Dziennik błędów + + + + This button clears the contents of the SQL logs + Ten przycisk czyści zawartość logów SQL + + + + &Clear + Wy&czyść + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Ten panel umożliwia przegląd dziennika wszystkich poleceń SQL wydanych przez aplikację lub przez ciebie + + + + &Plot + &Wykres + + + + DB Sche&ma + Struktura da&nych + + + + &Remote + &Zdalne BD + + + + + Project Toolbar + Pasek zadań projektu + + + + Extra DB toolbar + Dodatkowy pasek zadań bazy danych + + + + + + Close the current database file + Zamknij obecny plik bazy danych + + + + &New Database... + &Nowa baza danych… + + + + + Create a new database file + Utwórz nowy plik bazy danych + + + + This option is used to create a new database file. + Ta opcja jest wykorzystywana do tworzenia nowego pliku bazy danych. + + + + Ctrl+N + + + + + + &Open Database... + &Otwórz bazę danych… + + + + + + + + Open an existing database file + Otwórz istniejącą bazę danych + + + + + + This option is used to open an existing database file. + Ta opcja otwiera istniejący plik bazy danych. + + + + Ctrl+O + + + + + &Close Database + Zamknij bazę dany&ch + + + + This button closes the connection to the currently open database file + Ten przycisk kończy połączenie z obecnie otwartym plikiem bazy danych + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + This button lets you open a DB Browser for SQLite project file + + + + + Browse Table + Przeglądaj tabelę + + + + + Ctrl+W + + + + + &Revert Changes + &Wycofaj zmiany + + + + + Revert database to last saved state + Przywróć bazę danych do ostatniego zapisanego stanu + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Ten działanie służy do przywrócenia bieżącej bazy danych do ostatnio zapisanego stanu. Wszystkie zmiany od czasu ostatniego zapisu zostaną utracone. + + + + &Write Changes + &Zapisz zmiany + + + + + Write changes to the database file + Zapisz zmiany w pliku bazy danych + + + + This option is used to save changes to the database file. + Ta opcja zapisuje zmiany w pliku bazy danych. + + + + Ctrl+S + + + + + Ctrl+Shift+O + + + + + &Save Project As... + Zapi&sz projekt jako... + + + + + + Save the project in a file selected in a dialog + Zapisuje projekt w pliku wskazanym w dialogu + + + + Save A&ll + Zapisz w&szystko + + + + + + Save DB file, project file and opened SQL files + Zapisuje plik bazy danych, projektu i otwarte pliki SQL + + + + Ctrl+Shift+S + + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Oto struktura bieżącej bazy danych. +Można przeciągać wiele nazw obiektów z kolumny nazwy i upuszczać je w edytorze SQL. Następnie można dostosować właściwości upuszczonych nazw poprzez menu podręczne. To ma na celu pomoc w tworzeniu polecenia SQL. +Można przeciągać polecenia SQL z kolumny schematu i upuszczać je w edytorze SQL lub innych aplikacjach. + + + + Compact &Database... + Ściśnij bazę &danych... + + + + Compact the database file, removing space wasted by deleted records + Ściśnij plik bazę danych, usuwając przestrzenie marnowane przez usunięte rekordy + + + + + Compact the database file, removing space wasted by deleted records. + Ściśnij plik bazę danych, usuwając przestrzenie marnowane przez usunięte rekordy. + + + + E&xit + &Wyjdź + + + + Ctrl+Q + + + + + &Database from SQL file... + Baza &danych z pliku SQL… + + + + Import data from an .sql dump text file into a new or existing database. + Importuj dane z pliku tekstowego zrzutu .sql do nowej lub istniejącej bazy danych. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + To działanie, umożliwia importowanie danych z pliku tekstowego zrzutu .sql do nowej lub istniejącej bazy danych. Pliki zrzutu SQL można utworzyć w większości silników baz danych, włączając w to MySQL oraz PostgreSQL. + + + + &Table from CSV file... + &Tabela z pliku CSV… + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Otwiera okno pomocnika do importowania danych z pliku CSV do tabeli bazy danych. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Otwiera okno pomocnika do importowania danych z pliku CSV do tabeli bazy danych. +Plik CSV można stworzyć na podstawie większości baz danych i aplikacji arkuszy kalkulacyjnych. + + + + &Database to SQL file... + Baza &danych do pliku SQL… + + + + Export a database to a .sql dump text file. + Eksportuj bazę danych do pliku tekstowego zrzutu .sql + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + To działanie umożliwia eksportowanie bazy danych do pliku tekstowego zrzutu .sql. Plik zrzutu SQL zawiera wszystkie dane niezbędne do odtworzenia bazy danych na większości silników baz danych, włączając w to MySQL oraz PostgreSQL. + + + + &Table(s) as CSV file... + &Tabele do pliku CSV… + + + + Export a database table as a comma separated text file. + Eksportuje tabelę bazy danych jako plik tekstowy, oddzielając wartości przecinkami. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Eksportuje tabelę bazy danych jako plik tekstowym który można zaimportować w innych aplikacjach bazodanowych lub arkuszach kalkulacyjnych; oddzielając wartości przecinkami. + + + + &Create Table... + &Utwórz tabelę… + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Otwiera okno tworzenia tabel, gdzie można zdefiniować nazwę i pola w nowej tabeli w bazie danych + + + + &Delete Table... + U&suń tabelę… + + + + + Delete Table + Usuń tabelę + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Otwiera pomocnika do Usunięcia Tabeli, gdzie można wybrać tabelę bazy danych do usunięcia. + + + + &Modify Table... + Z&mień tabelę… + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Otwiera pomocnika do Zmiany Tabeli, gdzie można przemianować istniejącą tabelą. +Można także dodawać i usuwać pola z tabli, a także zmieniać nazwy oraz rodzaje pól. + + + + Create &Index... + Utwórz &indeks… + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Otwiera pomocnika do Tworzenia Indeksu, gdzie można określić nowy indeks na istniejącej tabeli bazy danych. + + + + &Preferences... + &Ustawienia... + + + + + Open the preferences window. + Otwórz okno ustawień. + + + + &DB Toolbar + Pasek narzędzi bazy &danych + + + + Shows or hides the Database toolbar. + Pokazuje lub ukrywa pasek narzędzi Baza danych + + + + Ctrl+T + + + + + W&hat's This? + &Co to jest? + + + + Ctrl+F4 + + + + + Shift+F1 + + + + + &About + O progr&amie + + + + &Load Extension... + &Wczytaj rozszerzenia... + + + + &Wiki + &Wiki + + + + F1 + + + + + Bug &Report... + &Zgłoszenie błędu... + + + + Feature Re&quest... + Zgłoszenie ż&yczenia... + + + + Web&site + Strona &sieciowa + + + + &Donate on Patreon... + &Darowizna na Patreon... + + + + Open &Project... + Otwórz &projekt... + + + + &Attach Database... + Dołącz bazę d&anych... + + + + &Set Encryption... + U&staw szyfrowanie... + + + + This button saves the content of the current SQL editor tab to a file + Ten przycisk zapisuje treść bieżącej karty edytora SQL do pliku + + + + SQLCipher &FAQ + &Najczęściej zadawane pytania SQLCipher + + + + New In-&Memory Database + Nowa baza danych w-pa&mięci + + + + Drag && Drop Qualified Names + Przeciągnij && upuść nazwy ze struktury + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Używaj nazw ze struktury (np. "Tabela"."Pole") przy przeciąganiu obiektów i upuszczaniu ich w edytorze + + + + Drag && Drop Enquoted Names + Przeciągnij && upuść nazw w cudzysłowach + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Używaj nazw w cudzysłowach (np. "Tabela1") przy przeciąganiu obiektów i upuszczaniu ich w edytorze + + + + &Integrity Check + Sprawdzanie spójnośc&i + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Wykonuje polecenie pragma integrity_check na bieżącej bazie danych i zwraca wynik na karcie Wykonywania SQL. To polecenie pragma wykonuje sprawdzenie spójności całej bazy danych. + + + + &Foreign-Key Check + &Sprawdzenie obcego klucza + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Wykonuje polecenie pragma foreign_key_check na bieżącej bazie danych i zwraca wynik na karcie Wykonywania SQL + + + + &Quick Integrity Check + &Szybkie sprawdzenie spójności + + + + Run a quick integrity check over the open DB + Wykonaj sprawdzenie spójności bieżącej bazy danych + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Wykonuje polecenie pragma quick_check na bieżącej bazie danych i zwraca wynik na karcie Wykonywania SQL. To polecenie pragma wykonuje większość tego, co wykonuje polecenie pragma integrity_check lecz robi to znacznie szybciej. + + + + &Optimize + &Optymalizacja + + + + Attempt to optimize the database + Próba optymalizacji bazy danych + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Wykonuje polecenie pragma optimize na bieżącej bazie danych. To polecenie może wykonać optymalizacje, które zwiększą wydajność przyszłych zapytań. + + + + + Print + Drukuj + + + + Print text from current SQL editor tab + Drukuj tekst z bieżącej karty edytora SQL + + + + Open a dialog for printing the text in the current SQL editor tab + Otwiera okno dialogowe do drukowania tekstu w bieżącej karcie edytora SQL + + + + Print the structure of the opened database + Drukuj strukturę bieżącej bazy danych + + + + Open a dialog for printing the structure of the opened database + Otwiera okno dialogowe do drukowania struktury bieżącej bazy danych + + + + &Recently opened + Ostatnio otwie&rane + + + + Open &tab + Otwórz kar&tę + + + + This button opens a new tab for the SQL editor + Ten przycisk otwiera nową tabelę w edytorze SQL + + + + &Execute SQL + &Wykonaj SQL + + + + Execute all/selected SQL + Wykonaj wszystkie/zaznaczone SQL + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Ten przycisk wykona obecnie zaznaczone polecenia SQL. Jeśli nie zaznaczone tekstu, to zostaną wykonane wszystkie polecenia SQL. + + + + + + Save SQL file + Zapisz plik SQL + + + + + Execute current line + Wykonaj bieżący wiersz + + + + This button executes the SQL statement present in the current editor line + Ten przycisk wykonuje polecenie SQL z obecnego wiersza edytora + + + + Shift+F5 + + + + + Export as CSV file + Eksportuj do pliku CSV + + + + Export table as comma separated values file + Eksportuj tabelę jako plik z wartościami oddzielonymi przecinkami + + + + Sa&ve Project + &Zapisz projekt + + + + + Save the current session to a file + Zapisz obecną sesję do pliku + + + + + Load a working session from a file + Wczytaj otoczenie pracy z pliku + + + + + Add another database file to the current database connection + Dodaj kolejny plik bazy danych do połączenia bieżącej bazy danych + + + + This button lets you add another database file to the current database connection + Ten przycisk umożliwia dodanie kolejnego pliku bazy danych do połączenia bieżącej bazy danych + + + + + Save SQL file as + Zapisz plik SQL jako + + + + &Browse Table + &Przeglądaj tabelę + + + + Copy Create statement + Skopiuj polecenie tworzące + + + + Copy the CREATE statement of the item to the clipboard + Skopiuj polecenie CREATE elementu do schowka + + + + Opens the SQLCipher FAQ in a browser window + Otwiera FAQ SQLCipher w oknie przeglądarki + + + + Table(&s) to JSON... + Tabele do pliku J&SON… + + + + Export one or more table(s) to a JSON file + Eksportuj jedną lub więcej tabel do pliku JSON + + + + Open Data&base Read Only... + Otwórz &bazę danych tylko do odczytu… + + + + Open an existing database file in read only mode + Otwórz istniejący plik bazy danych w trybie tylko do odczytu + + + + Save results + Zapisz wyniki + + + + Save the results view + Zapisuje widok wyniku + + + + This button lets you save the results of the last executed query + Ten przycisk umożliwia zapisanie wyników ostatnio wykonanego zapytania + + + + + Find text in SQL editor + Znajdź tekst w edytorze SQL + + + + Find + Znajdź + + + + This button opens the search bar of the editor + Ten przycisk otwiera pasek wyszukiwania edytora + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Znajdź lub zastąp tekst w edytorze SQL + + + + Find or replace + Znajdź i zastąp + + + + This button opens the find/replace dialog for the current editor tab + Ten przycisk otwiera okno dialogowe znajdowania/zastępowania dla bieżącej karty edytora + + + + Ctrl+H + + + + + Export to &CSV + Eksportuj do &CSV + + + + Save as &view + Zapisz jako &widok + + + + Save as view + Zapisz jako widok + + + + Shows or hides the Project toolbar. + Pokazuje lub ukrywa pasek narzędzi Projekt. + + + + Extra DB Toolbar + Dodatkowy pasek narzędzi bazy danych + + + + Ctrl+Return + Ctrl+Return + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Ctrl+E + + + + + Reset Window Layout + Wyzeruj układ okien + + + + Alt+0 + + + + + The database is currenctly busy. + Baza danych jest obecnie zajęta. + + + + Click here to interrupt the currently running query. + Naciśnij tutaj, aby przerwać wykonywanie bieżącego zapytania. + + + + Encrypted + Szyfrowana + + + + Database is encrypted using SQLCipher + Baza danych jest zaszyfrowana z użyciem SQLCipher + + + + Read only + Tylko do odczytu + + + + Database file is read only. Editing the database is disabled. + Plik bazy danych jest tylko do odczytu. Edytowanie bazy danych jest wyłączone. + + + + Database encoding + Kodowanie bazy danych + + + + + Choose a database file + Wybierz plik bazy danych + + + + Could not open database file. +Reason: %1 + Nie można otworzyć pliku bazy danych. +Powód: %1 + + + + + + Choose a filename to save under + Wybierz nazwę pliku do zapisu + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Ustawianie wartości PRAGMA lub odkurzanie spowoduje wdrożenie twoich zmian +z bieżącej transakcji. +Czy na pewno? + + + + In-Memory database + Baza danych w-pamięci + + + + Do you want to save the changes made to the project file '%1'? + Czy chcesz zapisać zmiany wprowadzone w plik projektu '%1'? + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + Czy na pewno usunąć tabelę '%1'? +Wszystkie dane skojarzone z tą tabelą zostaną utracone. + + + + Are you sure you want to delete the view '%1'? + Czy na pewno usunąć widok '%1'? + + + + Are you sure you want to delete the trigger '%1'? + Czy na pewno usunąć wyzwalacz '%1'? + + + + + Are you sure you want to delete the index '%1'? + Czy na pewno usunąć indeks '%1'? + + + + Error: could not delete the table. + Błąd: nie można usunąć bazy danych. + + + + Error: could not delete the view. + Błąd: nie można usunąć widoku. + + + + Error: could not delete the trigger. + Błąd: nie można usunąć wyzwalacza. + + + + Error: could not delete the index. + Błąd: nie można usunąć indeksu. + + + + Message from database engine: +%1 + Wiadomość z silnika bazy danych: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Zmiana tabeli wymaga zapisania wszystkich oczekujących zmian. +Czy na pewno zapisać bazę danych? + + + + Error checking foreign keys after table modification. The changes will be reverted. + Błąd sprawdzania kluczy obcych po zmianie tabeli. Zmiany zostaną wycofane. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Tabela nie przeszła sprawdzenia klucza obcego.<br/>Należy wykonać 'Narzędzia | Sprawdzenie obcego klucza' i naprawić zgłoszone kłopoty. + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Już wykonujesz polecenia SQL. Czy zatrzymać je, aby wykonać bieżące polecenia? Działanie to może spowodować niespójność w bazie danych. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- WYKONYWANIE ZAZNACZENIA W '%1' +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- WYKONYWANIE WIERSZA W '%1' +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- WYKONYWANIE WSZYSTKIEGO W '%1' +-- + + + + + At line %1: + W wierszu %1: + + + + Result: %1 + Wynik: %1 + + + + Result: %2 + Wynik: %2 + + + + %1 rows returned in %2ms + Zwrócono %1 wierszy w czasie %2ms + + + + Choose text files + Wybierz pliki tekstowe + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + Project saved to file '%1' + Projekt zapisano do pliku '%1' + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Rename Tab + Przemianuj kartę + + + + Duplicate Tab + Powiel kartę + + + + Close Tab + Zamknij kartę + + + + Opening '%1'... + Otwieranie '%1'... + + + + There was an error opening '%1'... + Błąd otwierania '%1'... + + + + Value is not a valid URL or filename: %1 + Wartość nie jest prawidłowym adresem URL lub nazwą pliku: %1 + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Nie można zapisać bazy danych. Oznacza to, że nie wszystkie zmiany dało się zapisać w bazie danych. Najpierw trzeba pozbyć się następujących kłopotów. + +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Czy na pewno wycofać wszystkie zmiany wprowadzone w pliku bazy danych '%1' od czasu ostatniego zapisu? + + + + Choose a file to import + Wybierz pliki do zaimportowania + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (tylko do odczytu) + + + + Open Database or Project + Otwórz bazę danych lub projekt + + + + Attach Database... + Dołącz bazę danych... + + + + Import CSV file(s)... + Importuj plik(i) CSV... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Wybierz działanie dla upuszczonego pliku. <br/>Uwaga: tylko 'Import' przetworzy więcej niż jeden plik. + Wybierz działanie dla upuszczonych plików. <br/>Uwaga: tylko 'Import' przetworzy więcej niż jeden plik. + Wybierz działanie dla upuszczonych plików. <br/>Uwaga: tylko 'Import' przetworzy więcej niż jeden plik. + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + Czy chcesz zapisać zmiany wprowadzone w tabelach SQL do pliku projektu '%1'? + + + + Text files(*.sql *.txt);;All files(*) + Pliki tekstowe(*.sql *.txt);;Wszystkie pliki(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Czy utworzyć plik nowej bazy danych do przechowania zaimportowanych danych? +Jeśli nie, to dane zostaną zaimportowane do pliku bieżącej bazy danych. + + + + Window Layout + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Nadal wykonujesz polecenia SQL. Wykonywanie tych poleceń zostanie zatrzymane, po zamknięciu bazy danych, co może spowodować w niej niespójności. Czy na pewno zamknąć tę bazę danych? + + + + File %1 already exists. Please choose a different name. + Plik %1 już istnieje. Wybierz inną nazwę. + + + + Error importing data: %1 + Błąd importowania danych: %1 + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Ukończono import. Nastąpiło przekroczenie niektórych z ograniczeń obcego klucza. Napraw je przed zapisaniem. + + + + Import completed. + Importowanie zakończone. + + + + Delete View + Usuń widok + + + + Modify View + Zmień widok + + + + Delete Trigger + Usuń wyzwalacz + + + + Modify Trigger + Zmień wyzwalacz + + + + Delete Index + Usuń indeks + + + + Modify Index + Zmień indeks + + + + Modify Table + Zmień tabelę + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Ustawianie wartości PRAGMA spowoduje wdrożenie twoich zmian +z bieżącej transakcji. +Czy na pewno? + + + + Select SQL file to open + Wybierz plik SQL do otworzenia + + + + Select file name + Wybierz nazwę pliku + + + + Select extension file + Wybierz plik rozszerzenia + + + + Execution finished with errors. + Wykonano z błędami. + + + + Execution finished without errors. + Wykonano bez błędów. + + + + Do you want to save the changes made to SQL tabs in a new project file? + Czy chcesz zapisać zmiany wprowadzone w tabelach SQL do nowego pliku projektu? + + + + Do you want to save the changes made to the SQL file %1? + Czy chcesz zapisać zmiany wprowadzone w SQL do pliku %1? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + Polecenia w tej karcie nadal są wykonywane. Wykonywanie tych poleceń zostanie zatrzymane, po zamknięciu karty, co może spowodować niespójności w bazie danych. Czy na pewno zamknąć tę kartę? + + + + Extension successfully loaded. + Pomyślnie wczytano rozszerzenie. + + + + Error loading extension: %1 + Nie można wczytać rozszerzenia: %1 + + + + Could not find resource file: %1 + Nie można znaleźć pliku zasobów: %1 + + + + + Don't show again + Nie pokazuj ponownie + + + + New version available. + Nowa wersja jest dostępna. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Dostępna jest nowa wersja Przeglądarki SQLite (%1.%2.%3).<br/><br/>Pobierz z <a href='%4'>%4</a>. + + + + Choose a project file to open + Wybierz plik projektu do otworzenia + + + + DB Browser for SQLite project file (*.sqbpro) + Plik projektu Przeglądarki SQLite (*.sqbpro) + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Ten plik projektu używa starego formatu pliku, bo został stworzony przy użyciu Przeglądarki SQLite w wersji 3.10 lub niższej. Wczytywanie tego formatu pliku jest nadal w pełni obsługiwane, lecz zalecamy przekształcenie wszystkich plików projektu na nowy format pliku, bo obsługa starych formatów może zniknąć w przyszłości. Aby przekształcić plik, wystarczy go otworzyć i zapisać. + + + + Could not open project file for writing. +Reason: %1 + Nie można otworzyć pliku projektu do zapisu. +Powód: %1 + + + + Collation needed! Proceed? + Potrzebne zestawianie! Postąpić naprzód? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Tabela w tej bazie danych wymaga wyjątkowej funkcji zestawienia '%1' której ta aplikacja nie może dostarczyć bez dalszej wiedzy. +Pójścia z tym dalej, może spowodować uszkodzenia w bazie danych. +Stwórz kopię zapasową! + + + + creating collation + tworzenie zestawienia + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Przemianowuje kartę SQL. Wstaw znaku '&&' aby móc wykorzystać następujący po nim znak jako skrót klawiszowy. + + + + Please specify the view name + Określ nazwę widoku + + + + There is already an object with that name. Please choose a different name. + Istnieje już obiekt o tej nazwie. Nadaj inną nazwę. + + + + View successfully created. + Pomyślnie utworzono widok. + + + + Error creating view: %1 + Błąd tworzenia widoku: %1 + + + + This action will open a new SQL tab for running: + To działanie otworzy nową kartę SQL aby wykonać: + + + + Press Help for opening the corresponding SQLite reference page. + Naciśnij Pomoc, aby otworzyć powiązaną stronę w podręczniku SQLite. + + + + Busy (%1) + Zajęty (%1) + + + + NullLineEdit + + + Set to NULL + Ustaw na NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + Wykres + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>To okno pokazuje wykaz wszystkich kolumn w bieżącej tabeli lub właśnie wykonane zapytanie. Można wybrać kolumny wykorzystywane jako oś X lub Y do okna wykresu poniżej. Tabela pokazuje wykryty rodzaj osi, który wpłynie na wynikowy wykres. Dla osi Y można wybrać tylko kolumny liczbowe, a dla osi X można wybrać:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Data/Czas</span>: ciągi znaków o formacie &quot;yyyy-MM-dd hh:mm:ss&quot; lub &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Data</span>: ciągi znaków o formacie &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Czas</span>: ciągi znaków o formacie &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Etykieta</span>: inne ciągi znaków. Wybranie tej kolumny jako osi X utworzy wykres słupkowy z wartościami z kolumny będącymi etykietami dla słupków</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Liczbowe</span>: liczby całkowite lub rzeczywiste</li></ul><p>Aby zmienić barwy wykresu, należy kliknąć dwukrotnie na komórkach Y.</p></body></html> + + + + Columns + Kolumny + + + + X + X + + + + Y1 + + + + + Y2 + + + + + Axis Type + Rodzaj osi + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Tutaj rysowany jest wykres po wybraniu wartości x oraz y powyżej. + +Aby zaznaczyć punkt na wykresie i w tabeli, należy kliknąć na niego. Ctrl+Klik aby zaznaczyć zakres punktów. + +Aby zmienić zakres osi, należy kliknąć i przeciągnąć myszą. Aby powiększyć należy przewinąć rolką myszy. + +Aby przeciągnąć i powiększyć tylko w jedną stronę, należy wybrać osie lub etykiety osi. + + + + Line type: + Rodzaj linii: + + + + + None + Brak + + + + Line + Linia + + + + StepLeft + Krok w lewo + + + + StepRight + Krok w prawo + + + + StepCenter + Krok do środka + + + + Impulse + Impuls + + + + Point shape: + Kształt punktu: + + + + Cross + Krzyż + + + + Plus + Plus + + + + Circle + Kółko + + + + Disc + Dysk + + + + Square + Kwadrat + + + + Diamond + Diament + + + + Star + Gwiazda + + + + Triangle + Trójkąt + + + + TriangleInverted + Trójkąt odwrócony + + + + CrossSquare + Krzyż w kwadracie + + + + PlusSquare + Plus w kwadracie + + + + CrossCircle + Krzyż w okręgu + + + + PlusCircle + Plus w okręgu + + + + Peace + Znak pokoju + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Zapisz bieżący wykres...</p><p>Format pliku wybierany na podstawie rozszerzenia (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Zapisz bieżący wykres… + + + + + Load all data and redraw plot + Wczytaj wszystkie dane i przerysuj wykres + + + + Copy + Skopiuj + + + + Print... + Drukuj... + + + + Show legend + Pokaż legendę + + + + Stacked bars + Słupki na stosie + + + + Date/Time + Data/Czas + + + + Date + Data + + + + Time + Czas + + + + + Numeric + Liczbowa + + + + Label + Podpis + + + + Invalid + Nieprawidłowy + + + + + + Row # + Nr wiersza + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Wczytaj wszystkie dane i przerysuj wykres. +Uwaga: jeszcze nie wczytano wszystkich danych z tabeli ze względu na mechanizm częściowego wczytywania. + + + + Choose an axis color + Wybierz barwę osi + + + + Choose a filename to save under + Wybierz nazwę pliku do zapisu + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Wszystkie pliki(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + W tym wykresie występują krzywe, a wybrany wygląd linii można zastosować tylko dla wykresów uszeregowanych po X. Uszereguj tabelę lub zapytaj po X, aby usunąć krzywe lub wybierz jeden z wyglądów obsługiwanych przez krzywe: Brak lub Linia. + + + + Loading all remaining data for this table took %1ms. + Wczytywanie wszystkich pozostałych danych dla tej tabeli zajęło %1ms. + + + + PreferencesDialog + + + Preferences + Ustawienia + + + + &General + O&gólne + + + + Default &location + Domyś&lne położenie + + + + Remember last location + Pamiętaj ostatnie położenie + + + + Always use this location + Zawsze używaj poniższego położenia + + + + Remember last location for session only + Zapomnij ostatnie położenie, dopiero po zamknięciu programu + + + + + + ... + + + + + Lan&guage + &Język + + + + Toolbar style + Wygląd paska narzędzi + + + + + + + + Only display the icon + Wyświetl tylko ikonę + + + + + + + + Only display the text + Wyświetl tylko tekst + + + + + + + + The text appears beside the icon + Tekst obok ikony + + + + + + + + The text appears under the icon + Tekst pod ikoną + + + + + + + + Follow the style + Domyślnie dla wyglądu + + + + Show remote options + Pokaż ustawienia zdalnych BD + + + + + + + + + + + + enabled + włączone + + + + Automatic &updates + Sam &uaktualniaj + + + + DB file extensions + Rozszerzenia plików bazy danych + + + + Manage + Zarządzaj + + + + Main Window + Główne okno + + + + Database Structure + Struktura danych + + + + Browse Data + Przeglądarka danych + + + + Execute SQL + Wykonaj SQL + + + + Edit Database Cell + Zmiana komórki bazy danych + + + + When this value is changed, all the other color preferences are also set to matching colors. + Po zmianie tej wartości, wszystkie inne ustawienia barw zostaną także ustawione na +pasujące barwy. + + + + Follow the desktop style + Zgodny z systemem + + + + Dark style + Ciemny + + + + Application style + Wygląd programu + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + &Database + Baza &danych + + + + Database &encoding + Kodowani&e bazy danych + + + + Open databases with foreign keys enabled. + Otwiera bazy danych z włączonymi kluczami obcymi. + + + + &Foreign keys + &Obce klucze + + + + Remove line breaks in schema &view + Usuń podziały wierszy w &widoku schematu + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Po zaznaczeniu, usuwany jest znak łamania wiersza w kolumnie schematu karty struktury bazy danych, doku oraz drukowanym wyniku. + + + + Prefetch block si&ze + Ro&zmiar obszaru wczytanego z wyprzedzeniem + + + + SQ&L to execute after opening database + SQ&L do wykonania po otworzeniu bazy danych + + + + Default field type + Domyślny rodzaj pola + + + + Data &Browser + &Przeglądarka danych + + + + Font + Czcionka + + + + &Font + &Czcionka + + + + Font si&ze + Ro&zmiar czcionki + + + + Content + Zawartość + + + + Symbol limit in cell + Graniczna liczba znaków w komórce + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Jest to graniczna liczba elementów, która jest dozwolona dla niektórych obliczeniowo pracochłonnych działań: +Graniczna liczba wierszy w tabeli do włączenia uzupełniania wartości na podstawie bieżących wartości w kolumnie. +Graniczna liczba indeksów w zaznaczeniu do obliczenia sumy i średniej. +Można ustawić na 0, aby wyłączyć wszystkie te działania. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Jest to graniczna liczba wierszy w tabeli do włączenia uzupełniania wartości na podstawie wartości znajdujących się już w kolumnie. +Można ustawić na 0, aby wyłączyć uzupełnianie. + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + Proxy + Pośrednik + + + + Configure + Ustawienia + + + + Field display + Wyświetlanie pola + + + + Displayed &text + Wyświetlany &tekst + + + + Binary + Dane dwójkowe + + + + NULL + Wartości NULL + + + + Regular + Zwykłe dane + + + + + + + + + Click to set this color + Naciśnij, aby ustawić tę barwę + + + + Text color + Barwa tekstu + + + + Background color + Barwa tła + + + + Preview only (N/A) + Tylko do podglądu (ND) + + + + Filters + Filtry + + + + Escape character + Znak wyjścia + + + + Delay time (&ms) + Czas opóźnienia (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Ustaw czas oczekiwania przed zastosowaniem nowej wartości filtra. Może być ustawiony na 0, aby wyłączyć oczekiwanie. + + + + &SQL + &SQL + + + + Settings name + Nazwa ustawienia + + + + Context + Występowanie + + + + Colour + Barwa + + + + Bold + Pogrubienie + + + + Italic + Pochylenie + + + + Underline + Podkreślenie + + + + Keyword + Słowo kluczowe + + + + Function + Funkcja + + + + Table + Tabela + + + + Comment + Uwaga + + + + Identifier + Identyfikator + + + + String + Ciąg znaków + + + + Current line + Bieżący wiersz + + + + Background + Tło + + + + Foreground + Pierwszy plan + + + + SQL &editor font size + Rozmiar czcionki &edytora SQL + + + + SQL &results font size + &Rozmiar czcionki wyników SQL + + + + Tab size + Rozmiar tabulatora + + + + SQL editor &font + &Czcionka edytora SQL + + + + Database structure font size + + + + + Threshold for completion and calculation on selection + Uzupełniaj i obliczaj do tej liczby wierszy + + + + Show images in cell + Pokaż obrazy w komórce + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Włącz to, aby pokazać podgląd obiektów BLOB zawierających dane obrazów w komórkach. Może to jednak wpłynąć na wydajność przeglądarki danych. + + + + &Wrap lines + Za&wijaj wiersze + + + + &Quotes for identifiers + &Cudzysłowy dla identyfikatorów + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Wybierz zapis cudzysłowów stosowany w aplikacji do identyfikatorów w kodzie SQL. + + + + "Double quotes" - Standard SQL (recommended) + "Podwójne cudzysłowy" - Standard SQL (zalecane) + + + + `Grave accents` - Traditional MySQL quotes + `Pojedyncze cudzysłowy` - Tradycyjne cudzysłowy MySQL + + + + [Square brackets] - Traditional MS SQL Server quotes + [Nawiasy kwadratowe] - Tradycyjne cudzysłowy MS SQL Server + + + + Code co&mpletion + Uzupełnianie &kodu + + + + Keywords in &UPPER CASE + Słowa kl&uczowe WIELKIMI LITERAMI + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Po zaznaczeniu, polecenia SQL są uzupełniane wielkimi literami. + + + + Error indicators + Wskaźniki błędów + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Po zaznaczeniu, wiersze kodu SQL, które powodowały błędy podczas ostatniego wykonywania, są podświetlana, a okno wyniku pokazuje błąd w tle + + + + Hori&zontal tiling + Kafelki w po&ziomie + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Po zaznaczeniu, edytor kodu SQL oraz widok tabeli wynikowej będą wyświetlane obok siebie zamiast jedno nad drugim. + + + + Never + Nigdy + + + + At word boundaries + Na granicach słów + + + + At character boundaries + Na granicach znaków + + + + At whitespace boundaries + Na granicach białych znaków + + + + &Extensions + Rozsz&erzenia + + + + Select extensions to load for every database: + Wybierz rozszerzenia wczytywane dla każdej bazy danych: + + + + Add extension + Dodaj rozszerzenie + + + + Remove extension + Usuń rozszerzenie + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Mimo obsługi polecenia REGEXP, SQLite nie implementuje żadnego z algorytmu wyrażeń regularnych<br/>lecz zwraca się z powrotem do aplikacji, która je uruchomiła. Przeglądarka SQLite implementuje ten<br/>algorytm, aby móc od razu korzystać z REGEXP. Jednakże, ze względu na to, że istnieje wiele możliwych<br/>implementacji wyrażeń regularnych, to można wyłączyć ten wbudowany<br/>i wczytać swój własny. Wymaga to jednak ponownego uruchomienia aplikacji.</p></body></html> + + + + Disable Regular Expression extension + Wyłącz rozszerzenie wyrażeń regularnych + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite dostarcza funkcję SQL do wczytywania rozszerzeń z pliku biblioteki współdzielonej. Zaznacz to, aby używać funkcji <span style=" font-style:italic;">load_extension()</span> z kodu SQL.</p><p>Ze względu na bezpieczeństwo, wczytywanie rozszerzeń jest domyślnie wyłączone i musi zostać włączone przez to ustawienie. Zawsze można wczytywać rozszerzenia przez interfejs użytkownika, nawet gdy pole to jest odznaczone.</p></body></html> + + + + Allow loading extensions from SQL code + Zezwól na wczytywanie rozszerzeń z kodu SQL + + + + Remote + Zdalne BD + + + + CA certificates + Certyfikaty UC + + + + + Subject CN + NP podmiotu + + + + Common Name + Nazwa powszechna + + + + Subject O + O podmiotu + + + + Organization + Organizacja + + + + + Valid from + Ważny od + + + + + Valid to + Ważny do + + + + + Serial number + Numer seryjny + + + + Your certificates + Twoje certyfikaty + + + + File + Plik + + + + Subject Common Name + Nazwa powszechna podmiotu + + + + Issuer CN + NP wydawcy + + + + Issuer Common Name + Nazwa powszechna wydawcy + + + + Clone databases into + Pobieraj bazy danych do + + + + + Choose a directory + Wybierz katalog + + + + The language will change after you restart the application. + Język zmieni się po ponownym uruchomieniu aplikacji. + + + + Select extension file + Wybierz plik rozszerzenia + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Rozszerzenia(*.so *.dylib *.dll);;Wszystkie pliki(*) + + + + Import certificate file + Importuj plik certyfikatu + + + + No certificates found in this file. + Nie znaleziono certyfikatów w tym pliku. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Czy na pewno usunąć ten certyfikat? Wszystkie dane certyfikatu zostaną usunięte z ustawień aplikacji! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Czy na pewno wyczyścić wszystkie zapisane ustawienia? +Wszystkie zapisane ustawienia zostaną utracone i zastąpione domyślnymi. + + + + ProxyDialog + + + Proxy Configuration + Ustawienia proxy + + + + Pro&xy Type + &Rodzaj pośrednika: + + + + Host Na&me + Nazwa &gospodarza + + + + Port + Port + + + + Authentication Re&quired + &Wymagane uwierzytelnienie + + + + &User Name + Nazwa &użytkownika + + + + Password + Hasło + + + + None + Brak + + + + System settings + Ustawienia systemowe + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + All files (*) + Wszystkie pliki (*) + + + + Error importing data + Błąd importowania danych + + + + from record number %1 + z rekordu o numerze %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + Importowanie pliku CSV… + + + + Cancel + Zaniechaj + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + Pliki bazy danych SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + Do lewej + + + + Right + Do prawej + + + + Center + Do środka + + + + Justify + Wyjustuj + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + Pliki bazy danych SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + Przeglądarka BD dla plików projektu SQLite (*.sqbpro) + + + + SQL Files (*.sql) + Pliki SQL (*.sql) + + + + All Files (*) + Wszystkie pliki (*) + + + + Text Files (*.txt) + Pliki tekstowe (*.txt) + + + + Comma-Separated Values Files (*.csv) + Pliki z wartościami oddzielonymi przecinkiem (*.csv) + + + + Tab-Separated Values Files (*.tsv) + Pliki z wartościami oddzielonymi tabulatorem (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Pliki z wartościami oddzielonymi rozdzielaczem (*.dsv) + + + + Concordance DAT files (*.dat) + Pliki Concordance DAT (*.dat) + + + + JSON Files (*.json *.js) + Pliki JSON (*.json *.js) + + + + XML Files (*.xml) + Pliki XML (*.xml) + + + + Binary Files (*.bin *.dat) + Pliki dwójkowe (*.bin *.dat) + + + + SVG Files (*.svg) + Pliki SVG (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Pliki zrzutu szesnastkowego (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + Rozszerzenia (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + Data + + + + Author + + + + + Size + Rozmiar + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Nie można otworzyć wykazu lokalnych baz danych. +%1 + + + + Error creating local databases list. +%1 + Nie można utworzyć wykazu lokalnych baz danych. +%1 + + + + RemoteDock + + + Remote + Zdalne BD + + + + Identity + Tożsamość + + + + Push currently opened database to server + Wypchnij bieżącą bazę danych na serwer + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Local + + + + + Current Database + + + + + Clone + + + + + User + Użytkownika + + + + Database + Baza danych + + + + Branch + Gałąź + + + + Commits + + + + + Commits for + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + Odśwież + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>Obecnie używasz wbudowanej tożsamości, która jest tylko do odczytu. Aby wysłać bazę danych musisz posłużyć się kontem z DBHub.io.</p><p>Nie masz jeszcze konta DBHub.io? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Utwórz je teraz</span></a> i zaimportuj swój certyfikat<a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">tutaj</span></a>, aby móc dzielić się swoimi bazami danych.</p><p>Aby uzyskać pomoc w sieci, zajrzyj <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">tutaj</span></a>.</p></body></html> + + + + Back + Wstecz + + + + Select an identity to connect + + + + + Public + Publiczna + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + Nazwa + + + + Branch + Gałąź + + + + Last modified + Ostatnia zmiana + + + + Size + Rozmiar + + + + Commit + + + + + File + Plik + + + + RemoteModel + + + Name + Nazwa + + + + Commit + Wdroż + + + + Last modified + Ostatnia zmiana + + + + Size + Rozmiar + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + Wystąpił błąd podczas otwierania zdalnego pliku w %1. +%2 + + + + Error: Invalid client certificate specified. + Błąd: Podano nieprawidłowy certyfikat klienta. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Podaj hasło dla certyfikatu tego klienta, aby się uwierzytelnić. + + + + Cancel + Zaniechaj + + + + Uploading remote database to +%1 + Wysyłanie zdalnej bazy danych do +%1 + + + + Downloading remote database from +%1 + Pobieranie zdalnej bazy danych z +%1 + + + + + Error: The network is not accessible. + Błąd: Sieć jest niedostępna. + + + + Error: Cannot open the file for sending. + Błąd: Nie można otworzyć pliku do wysłania. + + + + RemotePushDialog + + + Push database + Wypchnij bazę danych + + + + Database na&me to push to + &Nazwa bazy danych, do której wypchnąć + + + + Commit message + Opis wdrożenia + + + + Database licence + Licencja bazy danych + + + + Public + Publiczna + + + + Branch + Gałąź + + + + Force push + Wymuś wypchnięcie + + + + Username + + + + + Database will be public. Everyone has read access to it. + Baza danych będzie publiczna. Każdy będzie mógł uzyskać do niej dostęp. + + + + Database will be private. Only you have access to it. + Baza danych będzie prywatna. Tylko Ty będziesz mieć do niej dostęp. + + + + Use with care. This can cause remote commits to be deleted. + Bądź ostrożny. Może to usunąć wdrożenia ze zdalnych miejsc. + + + + RunSql + + + Execution aborted by user + Wykonywanie przerwane przez użytkownika + + + + , %1 rows affected + , dotyczyło %1 wiersza + + + + query executed successfully. Took %1ms%2 + pomyślnie wykonano zapytanie. Zajęło to %1ms%2 + + + + executing query + wykonywanie zapytania + + + + SelectItemsPopup + + + A&vailable + &Dostępne + + + + Sele&cted + &Wybrane + + + + SqlExecutionArea + + + Form + Formularz + + + + Find previous match [Shift+F3] + Znajdź poprzednie trafienie [Shift+F3] + + + + Find previous match with wrapping + Znajdź poprzednie pasujące z zawijaniem + + + + Shift+F3 + + + + + The found pattern must be a whole word + Wzorzec do znalezienia musi być całym słowem + + + + Whole Words + Całe słowa + + + + Text pattern to find considering the checks in this frame + Wzorzec tekstu do znalezienia, biorąc pod uwagę pola zaznaczone w tym oknie + + + + Find in editor + Znajdź w edytorze + + + + The found pattern must match in letter case + Wzorzec do znalezienia musi pasować wielkością liter + + + + Case Sensitive + Rozróżniaj wielkość znaków + + + + Find next match [Enter, F3] + Znajdź następne trafienie [Enter, F3] + + + + Find next match with wrapping + Znajdź następne pasujące z zawijaniem + + + + F3 + + + + + Interpret search pattern as a regular expression + Rozpatrz wzorzec wyszukiwania jako wyrażenie regularne + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Po zaznaczeniu, wzorzec do znalezienia jest rozważany jako wyrażenie regularne UNIX. Zajrzyj do <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Wyrażeń Regularnych w Wikibooks</a>.</p></body></html> + + + + Regular Expression + Wyrażenie regularne + + + + + Close Find Bar + Zamknij pasek wyszukiwania + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>Wynik ostatnio wykonanych poleceń.</p><p>Zalecamy zwinięcie tego okna i otworzenie doku <span style=" font-style:italic;">Dziennika SQL</span> z wyborem <span style=" font-style:italic;">Użytkownika</span>.</p></body></html> + + + + Results of the last executed statements + Wyniki ostatnio wykonanych poleceń + + + + This field shows the results and status codes of the last executed statements. + To pole pokazuje wyniki i kody wyjścia ostatnio wykonanych poleceń + + + + Couldn't read file: %1. + Nie można odczytać pliku: %1. + + + + + Couldn't save file: %1. + Nie można zapisać pliku: %1. + + + + Your changes will be lost when reloading it! + Utracisz swoje zmiany po ponownym wczytaniu! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + Inny program zmienił plik "%1". Czy chcesz wczytać go ponownie?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) Funkcja abs(X) zwraca wartość bezwzględną argumentu liczbowego X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () Funkcja changes() zwraca liczbę wierszy bazy danych, które zostały wstawiony lub usunięte przez ostatnio ukończone polecenie INSERT, DELETE, or UPDATE. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) Funkcja char(X1,X2,...,XN) zwraca ciąg znaków składający się ze znaków mających wartości punków kodu unikod będących liczbami całkowitymi w zakresie od X1 do XN, odpowiednio. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) Funkcja coalesce() zwraca kopię swojego pierwszego argumentu nie-NULL lub NULL, jeśli wszystkie argumenty są NULL + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) Funkcja glob(X,Y) jest tożsama wyrażeniu "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) Funkcja ifnull() zwraca kopię swojego pierwszego argumentu nie-NULL lub NULL, jeśli oba argumenty są NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) Funkcja instr(X,Y) znajduje pierwsze wystąpienie ciągu znaków Y wewnątrz ciągu znaków X i zwraca liczbę znaków poprzedzających plus 1, lub 0, jeśli nie można znaleźć Y w X. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) Funkcja hex() interpretuje swoje argumenty jako KAWAŁKI i zwraca ciągi znaków, które są przedstawieniem szesnastkowym treści kawałka, zapisanym wielkimi literami. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () Funkcja last_insert_rowid() zwraca ROWID ostatniego wstawionego wiersza z połączenia bazy danych, która wywołała tę funkcję. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) Dla wartości ciągu znaków X, funkcja length(X) zwraca liczbę znaków (nie bajtów) w X do chwili napotkania pierwszego znaku NUL. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) Funkcja like() jest używana do implementacji wyrażenia "Y LIKE X". + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) Funkcja like() jest używana do implementacji wyrażenia "Y LIKE X ESCAPE Z". + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) Funkcja load_extension(X) wczytuje rozszerzenia SQLite z pliku biblioteki współdzielonej o nazwie X. +Aby użyć tej funkcji, należy wyrazić zgodę w Ustawieniach. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) Funkcja load_extension(X) wczytuje rozszerzenia SQLite z pliku biblioteki współdzielonej o nazwie X przy użyciu punktu wejściowego Y. +Aby użyć tej funkcji, należy wyrazić zgodę w Ustawieniach. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) Funkcja lower(X) zwraca kopię ciągu znaków X po przekształceniu wszystkich znaków ASCII na pisane małymi literami. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) usuwa odstępy z lewej strony X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) Funkcja ltrim(X,Y) zwraca ciąg znaków utworzony po usunięciu dowolnego i wszystkich znaków, które ukazują się w Y z lewej strony X. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) Funkcja wieloargumentowa max() zwraca argument o wartości największej lub NULL, jeśli dowolny argument jest NULL. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) Funkcja wieloargumentowa min() zwraca argument o wartości najmniejszej. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) Funkcja nullif(X,Y) zwraca swój pierwszy argument, jeśli argumenty są różne i NULL, jeśli argumenty są te same. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) Funkcja SQL printf(FORMAT,...) działa jak funkcja sqlite3_mprintf() języka C oraz printf() ze standardowej biblioteki C. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) Funkcja quote(X) zwraca dosłowny tekst SQL, który jest wartością jego argumentów +gotową do wstawienia w polecenie SQL. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () Funkcja random() zwraca pseudo-losową liczbę całkowitą z zakresu od -9223372036854775808 do +9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) Funkcja randomblob(N) zwraca N-bajtowy kawałek zawierający pseudo-losowe bajty. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) Funkcja replace(X,Y,Z) zwraca ciąg znaków utworzony poprzez podmianę ciągu znaków Z dla każdego wystąpienia ciągu znaków Y w ciągu znaków X. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) Funkcja round(X) zwraca wartość liczby zmiennoprzecinkowej X zaokrąglonej do części całkowitej. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) Funkcja round(X,Y) zwraca wartość liczby zmiennoprzecinkowej X zaokrąglonej do liczby znaków dziesiętnych określonych przez Y. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X) usuwa odstępy z prawej strony X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) Funkcja rtrim(X,Y) zwraca ciąg znaków utworzony po usunięciu dowolnego i wszystkich znaków, które ukazują się w Y z prawej strony X. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) Funkcja soundex(X) zwraca ciąg znaków X zakodowany jako soundex. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) zwraca wszystkie znaki do końca ciągu znaków X zaczynając od Y-tego. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) Funkcja substr(X,Y,Z) zwraca podciąg znaków ciągu wejściowego znaków X, który zaczyna się na Y-tym znaku i który jest długi na Z znaków. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () Funkcja total_changes() zwraca liczbę zmienionych wierszy przez polecenia INSERT, UPDATE lub DELETE od chwili nawiązania połączenia z bazą danych. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) usuwa odstępy z obu stron X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) Funkcja trim(X,Y) zwraca ciąg znaków utworzony po usunięciu dowolnego i wszystkich znaków, które ukazują się w Y z obu stron X. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) Funkcja typeof(X) zwraca ciąg znaków, który wskazuje na rodzaj danych wyrażenia X. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) Funkcja unicode(X) zwraca punkt numerycznego kodu unikodu odpowiadający pierwszemu znakowi ciągu X. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) Funkcja upper(X) zwraca kopię ciągu znaków X po przekształceniu wszystkich znaków ASCII na pisane wielkimi literami. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) Funkcja zeroblob(N) zwraca KAWAŁEK składający się z N bajtów 0x00. + + + + + + + (timestring,modifier,modifier,...) + (ciąg_znaków_czasu,zmieniacz,zmieniacz,...) + + + + (format,timestring,modifier,modifier,...) + (format,ciąg_znaków_czasu,zmieniacz,zmieniacz,...) + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) Funkcja avg() zwraca wartość średnią wszystkich nie-NULL X wewnątrz grupy. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) Funkcja count(X) zwraca liczbę tego ile razy X nie jest NULL w grupie. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) Funkcja group_concat() zwraca ciąg znaków, który jest złączeniem wszystkich wartości nie-NULL X. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) Funkcja group_concat() zwraca ciąg znaków będący złączeniem wszystkich wartości nie-NULL X. Jeśli obecne jest Y, to służy jako znak oddzielający wystąpienia X. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) Funkcja max() zwraca najwyższą wartość z wartości w grupie. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) Funkcja min() zwraca najmniejszą wartość nie-NULL z wartości w grupie. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Funkcje sum() oraz total() zwracają sumę wszystkich wartości nie-NULL w grupie. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () Numer wiersza wewnątrz bieżącej partycji. Partycje są ponumerowane od 1 w kolejności określonej przez wyrażenie ORDER BY w określeniu okna lub w dowolnej kolejności. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Numer wiersza row_number() pierwszego członka w każdej grupie - ranga bieżącego wiersza w rozstępach. Jeśli brak polecenia ORDER BY, to wszystkie wiersze są rozważane jako członkowie i funkcja zawsze zwraca 1. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Numer grupy bieżącego wiersza wewnątrz jego partycji - ranga bieżącego wiersza bez przerw. Partycje są ponumerowane od 1 w kolejności określonej przez wyrażenie ORDER BY w określeniu okna. Jeśli brak wyrażenia ORDER BY, to wszystkie wiersze są rozważane jako leżące obok siebie, a funkcja ta zwraca 1. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () Pomimo nazwy, funkcja ta zawsze zwraca wartość pomiędzy 0.0 oraz 1.0 równą (rank - 1)/(wiersze-partycji - 1), gdzie rank jest wartością zwracaną przez wbudowaną funkcję rank() okna, a wiersze-partycji jest całkowitą liczbą wierszy w partycji. Jeśli partycja zawiera tylko jeden wiersz, to ta funkcja zwraca 0.0. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () Rozkład nagromadzony. Obliczany jako numer-wiersza/wiersze-partycji, gdzie +numer-wiersza jest wartością zwracaną przez row_number() dla ostatniego +elementu w grupie, a wiersze-partycji to liczba wierszy w partycji. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) Argument N jest rozważany jako liczba całkowita. Ta funkcja dzieli partycję na N grup tak równo jak to możliwe i przypisuje liczbę całkowitą z zakresu od 1 do N każdej grupie w kolejności określonej przez polecenie ORDER BY lub dowolnej. Jeśli zajdzie taka potrzeba, to większe grupy wystąpią jako pierwsze. Ta funkcja zwraca liczbę całkowitą przypisaną do grupy, do której bieżący wiersz należy. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Zwraca wynik obliczania wyrażenia expr na poprzednim wierszu w partycji. Lub, jeśli nie ma poprzedniego wiersza (bo bieżący wiersz jest pierwszym), NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,przesunięcie) Jeśli podano argument przesunięcia, to musi on być nieujemną liczbą całkowitą. W tym przypadku wartością zwracaną jest wynik obliczenia wyrażenia na wierszu przesuniętym o daną liczbę wierszy wstecz względem bieżącego wiersza. Jeśli nie będzie takiego wiersza, to zwracane jest NULL. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,przesunięcie,domyślne) Jeśli podano także domyślne, to jest to wartości zwracana zamiast NULL, jeśli wiersz określony przez przesunięcie nie istnieje. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Zwraca wynik obliczania wyrażenia expr na następnym wierszu w partycji. Lub, jeśli nie ma następnego wiersza (bo bieżący wiersz jest ostatnim), NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,przesunięcie) Jeśli podano argument przesunięcia, to musi on być nieujemną liczbą całkowitą. W tym przypadku wartością zwracaną jest wynik obliczenia wyrażenia na wierszu przesuniętym o daną liczbę wierszy wprzód względem bieżącego wiersza. Jeśli nie będzie takiego wiersza, to zwracane jest NULL. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Ta wbudowana funkcja okna oblicza ramę okna dla każdego wiersza w ten sam sposób jak funkcja okna złożonego. Zwraca wartość expr obliczoną na pierwszym wierszu ramy okna dla każdego wiersza. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Ta wbudowana funkcja okna oblicza ramę okna dla każdego wiersza w ten sam sposób jak funkcja okna złożonego. Zwraca wartość expr obliczoną na ostatnim wierszu ramy okna dla każdego wiersza. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) Ta wbudowana funkcja okna oblicza ramę okna dla każdego wiersza w ten sam sposób jak funkcja okna złożonego. Zwraca wartość expr obliczoną na N-tym wierszu ramy okna. Wiersze są numerowane wewnątrz ramy okna poczynając od 1 w kolejności określonej przez polecenie ORDER BY jeśli jest obecne lub w dowolnej kolejności. Jeśli N-ty wiersz nie istnieje w partycji, to zwracane jest NULL. + + + + SqliteTableModel + + + reading rows + czytanie wierszy + + + + loading... + wczytywanie... + + + + References %1(%2) +Hold %3Shift and click to jump there + Odwołania %1(%2) +Przyciśnij %3Shift i kliknij, aby tu przejść + + + + Error changing data: +%1 + Wystąpił błąd podczas zmiany danych: +%1 + + + + retrieving list of columns + uzyskiwanie listy kolumn + + + + Fetching data... + Uzyskiwanie danych… + + + + + Cancel + Zaniechaj + + + + TableBrowser + + + Browse Data + Przeglądaj dane + + + + &Table: + &Tabela: + + + + Select a table to browse data + Wybierz tabelę, aby przeglądać dane + + + + Use this list to select a table to be displayed in the database view + Użyj tej listy, aby zaznaczyć tabelę wyświetlaną w widoku bazy danych + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Oto widok tabeli bazy danych. Możliwe są następujące działania: + - Pisanie do przeedytowania wartości w-wierszu. + - Dwukrotne kliknięcie na rekordzie, aby edytować jego zawartość w edytorze komórek. + - Alt+Del do usunięcia treści komórki i ustawienia NULL. + - Ctrl+" do powielenia bieżącego rekordu. + - Ctrl+' do skopiowania wartości z komórki powyżej. + - Standardowe zaznaczanie/kopiowanie/wklejanie. + + + + Text pattern to find considering the checks in this frame + Wzorzec tekstu do znalezienia, biorąc pod uwagę pola zaznaczone w tym oknie + + + + Find in table + Znajdź w tabeli + + + + Find previous match [Shift+F3] + Znajdź poprzednie pasujące [Shift+F3] + + + + Find previous match with wrapping + Znajdź poprzednie pasujące z mapowaniem + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Znajdź następne pasujące [Enter, F3] + + + + Find next match with wrapping + Znajdź następne pasujące z nawracaniem + + + + F3 + + + + + The found pattern must match in letter case + Wzorzec do znalezienia musi pasować wielkością liter + + + + Case Sensitive + Rozróżniaj wielkość liter + + + + The found pattern must be a whole word + Wzorzec do znalezienia musi być całym słowem + + + + Whole Cell + Cała komórka + + + + Interpret search pattern as a regular expression + Rozpatrz wzorzec wyszukiwania jako wyrażenie regularne + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Po zaznaczeniu, wzorzec do znalezienia jest rozważany jako wyrażenie regularne UNIX. Zajrzyj do <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Wyrażeń Regularnych w Wikibooks</a>.</p></body></html> + + + + Regular Expression + Wyrażenie regularne + + + + + Close Find Bar + Zamknij pasek wyszukiwania + + + + Text to replace with + Tekst do zastąpienia + + + + Replace with + Zastąp + + + + Replace next match + Zastąp następne pasujące wyrażenie + + + + + Replace + Zastąp + + + + Replace all matches + Zastąp wszystkie pasujące wyrażenia + + + + Replace all + Zastąp wszystkie + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Przewiń do początku</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Naciśnięcie tego przycisku kieruje na początek powyższego widoku tabeli.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Przewiń jedną stronę w górę + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Naciśnięcie tego przycisku przenosi o jedną stronę wyżej w powyższym widoku tabeli.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 z 0 + + + + Scroll one page downwards + Przewiń jedną stronę w dół + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Naciśnięcie tego przycisku przenosi o jedną stronę niżej w powyższym widoku tabeli.</p></body></html> + + + + > + > + + + + Scroll to the end + Przewiń na koniec + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Naciśnij tutaj, aby przejść do danego rekordu</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Ten przycisk służy to przejścia do rekordu o numerze podanym w obszarze Przejścia.</p></body></html> + + + + Go to: + Przejdź do: + + + + Enter record number to browse + Wprowadź numer rekordu do przejrzenia + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Wpisz numer rekordu w tym obszarze i naciśnij na Przejdź Do, aby wyświetlić rekord w widoku bazy danych + + + + 1 + 1 + + + + Show rowid column + Pokaż kolumnę ID wiersza + + + + Toggle the visibility of the rowid column + Pokaż/Ukryj kolumnę ID wiersza + + + + Unlock view editing + Odblokuj zmianę widoku + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + To umożliwia wprowadzanie zmian w bieżącym widoku. Jednakże potrzebne będą odpowiednie wyzwalacze do zmiany. + + + + Edit display format + Zmień format wyświetlania + + + + Edit the display format of the data in this column + Zmień sposób wyświetlania danych w tej kolumnie + + + + + New Record + Nowy rekord + + + + + Insert a new record in the current table + Wstaw nowy rekord bieżącej tabeli + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Ten przycisk tworzy nowy rekord w bazie danych. Przyciśnij przycisk myszy, aby otworzyć menu podręczne z różnymi ustawieniami:</p><ul><li><span style=" font-weight:600;">Nowy rekord</span>: wstawia nowy rekord o domyślnych wartościach do bazy danych.</li><li><span style=" font-weight:600;">Wstaw wartości...</span>: otwiera okno dialogowe do wpisywania wartości przed ich wstawieniem do bazy danych. Umożliwia to wpisanie wartości przy zachowaniu różnych ograniczeń. To okno dialogowe jest także otwarte, gdy nie powiedzie się wykonanie polecenia <span style=" font-weight:600;">Nowy rekord</span> ze względu na te ograniczenia .</li></ul></body></html> + + + + + Delete Record + Usuń rekord + + + + Delete the current record + Usuń bieżący rekord + + + + + This button deletes the record or records currently selected in the table + Ten przycisk usuwa obecnie zaznaczony rekord lub rekordy z tabeli + + + + + Insert new record using default values in browsed table + Wstaw nowy rekord przy użyciu domyślnych wartości bieżącej tabeli + + + + Insert Values... + Wstaw wartości... + + + + + Open a dialog for inserting values in a new record + Otwiera okno dialogowe do wstawiania wartości do nowego rekordu + + + + Export to &CSV + Eksportuj do &CSV + + + + + Export the filtered data to CSV + Eksportuj przefiltrowane dane do CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Ten przycisk wyeksportuje dane bieżącej tabeli tak jak są obecnie wyświetlane (po filtrach, z formatami wyświetlania i kolejnością kolumn) jako plik CSV. + + + + Save as &view + Zapisz jako &widok + + + + + Save the current filter, sort column and display formats as a view + Zapisuje bieżący filtr, kolumnę do szeregowania oraz formaty wyświetlania jako widok + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Ten przycisk zapisuje bieżące ustawienia oglądanej tabeli (filtry, formaty wyświetlania i kolejność kolumn) jako widok SQL, który można później przeglądać lub wstawić do polecenia SQL. + + + + Save Table As... + Zapisz tabelę jako... + + + + + Save the table as currently displayed + Zapisz tabelę tak, jak jest obecnie wyświetlana + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>To menu podręczne zawiera następujące ustawienie stosujące się do obecnie oglądanej i filtrowanej tabeli:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Eksportuj do CSV: eksportuje dane oglądanej tabeli tak jak jest obecnie wyświetlana (po filtrach, z formatami wyświetlania i kolejnością kolumn) do pliku CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Zapisz jako widok: zapisuje bieżące ustawienia oglądanej tabeli (filtry, formaty wyświetlania i kolejność kolumn) jako widok SQL, który można później przeglądać lub wstawić do polecenia SQL.</li></ul></body></html> + + + + Hide column(s) + Ukryj kolumnę/y + + + + Hide selected column(s) + Ukryj zaznaczoną/e kolumnę/y + + + + Show all columns + Pokaż wszystkie kolumny + + + + Show all columns that were hidden + Pokaż wszystkie ukryte kolumny + + + + + Set encoding + Ustaw kodowanie + + + + Change the encoding of the text in the table cells + Zmień kodowanie tekstu w komórkach tabeli + + + + Set encoding for all tables + Ustaw kodowanie dla wszystkich tabel + + + + Change the default encoding assumed for all tables in the database + Zmień domyślne kodowanie przyjęte dla wszystkich table w bazie danych + + + + Clear Filters + Wyczyść filtry + + + + Clear all filters + Wyczyść wszystkie filtry + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Ten przycisk wyczyści wszystkie filtry ustawione na polach wejściowych nagłówka dla bieżącej tabeli. + + + + Clear Sorting + Wyczyść szeregowanie + + + + Reset the order of rows to the default + Przywróć porządek wierszy do domyślnego + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Ten przycisk czyści kolumny szeregowania dla danej tabeli i powraca do domyślnego porządku. + + + + Print + Drukuj + + + + Print currently browsed table data + Wyświetl dane bieżącej tabeli + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Drukuj dane bieżącej tabeli. Drukuj zaznaczenie, jeśli zaznaczono więcej niż jedną komórkę. + + + + Ctrl+P + + + + + Refresh + Odśwież + + + + Refresh the data in the selected table + Odśwież dane w zaznaczonej tabeli + + + + This button refreshes the data in the currently selected table. + Ten przycisk odświeża dane w obecnie zaznaczonej tabeli. + + + + F5 + + + + + Find in cells + Znajdź w komórkach + + + + Open the find tool bar which allows you to search for values in the table view below. + Otwórz pasek wyszukiwania, który umożliwi wyszukiwanie wartości w poniższym widoku tabeli. + + + + + Bold + Pogrubienie + + + + Ctrl+B + + + + + + Italic + Kursywa + + + + + Underline + Podkreślenie + + + + Ctrl+U + + + + + + Align Right + Wyrównaj do prawej + + + + + Align Left + Wyrównaj do lewej + + + + + Center Horizontally + Wyśrodkuj w poziomie + + + + + Justify + Justowanie + + + + + Edit Conditional Formats... + Edytuj formatowanie warunkowe... + + + + Edit conditional formats for the current column + Zmień formatowania warunkowe dla bieżącej kolumny + + + + Clear Format + Wyczyść format + + + + Clear All Formats + Wyczyść wszystkie formatowania + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Wyczyść wszystkie formatowania warunkowe dla zaznaczonej komórki i wszystkie formatowania warunkowe dla zaznaczonych kolumn + + + + + Font Color + Barwa czcionki + + + + + Background Color + Barwa tła + + + + Toggle Format Toolbar + Pokaż pasek formatowania + + + + Show/hide format toolbar + Pokaż/ukryj pasek formatu + + + + + This button shows or hides the formatting toolbar of the Data Browser + Ten przycisk pokazuje lub ukrywa pasek formatowania dla przeglądarki danych + + + + Select column + Zaznacz kolumnę + + + + Ctrl+Space + Ctrl+Spacja + + + + Replace text in cells + Zastąp tekst w komórkach + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + %n wiersz + %n wiersze + %n wierszy + + + + + , %n column(s) + + , %n kolumna + , %n kolumny + , %n kolumn + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Suma: %1; Średnia: %2; Min: %3; Maks: %4 + + + + Conditional formats for "%1" + Formatowania warunkowe dla "%1" + + + + determining row count... + określanie liczby wierszy… + + + + %1 - %2 of >= %3 + %1 - %2 z >= %3 + + + + %1 - %2 of %3 + %1 - %2 z %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Podaj pseudo-główny klucz, aby rozpocząć edytowanie w tym widoku. Powinna to być nazwa niepowtarzalnej kolumny w widoku. + + + + Delete Records + Usuń rekordy + + + + Duplicate records + Powielone rekordy + + + + Duplicate record + Powiel rekord + + + + Ctrl+" + + + + + Adjust rows to contents + Dostosuj wiersze do treści + + + + Error deleting record: +%1 + Błąd usuwania rekordu: +%1 + + + + Please select a record first + Najpierw wybierz rekord + + + + There is no filter set for this table. View will not be created. + Nie ustawiono filtru dla tej tabeli. Widok nie zostanie utworzony. + + + + Please choose a new encoding for all tables. + Wybierz nowe kodowanie dla wszystkich tabel. + + + + Please choose a new encoding for this table. + Wybierz kodowanie dla tej tabeli. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Pozostaw pole pustym, aby użyć kodowania bazy danych. + + + + This encoding is either not valid or not supported. + To kodowanie jest nieprawidłowe lub nieobsługiwane + + + + %1 replacement(s) made. + Wykonano %1 zastąpień + + + + VacuumDialog + + + Compact Database + Ściśnij bazę danych... + + + + Warning: Compacting the database will commit all of your changes. + Uwaga: Ściskanie bazy danych spowoduje wdrożenie wszystkich twoich zmian. + + + + Please select the databases to co&mpact: + Wybierz bazę danych do ściś&nięcia: + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_pt_BR.qm b/src/SqliteDBProcess/src/translations/sqlb_pt_BR.qm new file mode 100644 index 0000000..c869afe Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_pt_BR.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_pt_BR.ts b/src/SqliteDBProcess/src/translations/sqlb_pt_BR.ts new file mode 100644 index 0000000..af7960b --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_pt_BR.ts @@ -0,0 +1,7023 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + Sobre DB Browser para SQLite + + + + Version + Versão + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB Browser para SQLite é uma ferramenta de código livre gratuita usada para criar, projetar e editar bancos de dados SQLite.</p><p>Ela é bi-licensiada sob a Mozilla Public License Version 2 e sob a GNU General Public License Version 3 ou posterior. Você pode modificar ou redistribuir ela sob as condições de qualquer uma dessas licenças.</p><p>Veja <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> e <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> para mais detalhes.</p><p>Para mais informações sobre esse programa visite nosso site em: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">Esse software usa o GPL/LGPL Qt Toolkit de </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Veja </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> para termos de licença e informação.</span></p><p><span style=" font-size:small;">Ele também usa o conjunto de ícones Silk por Mark James licenciado sob a Creative Commons Attribution 2.5 e 3.0.<br/>Veja </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> para detalhes.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Adicionar novo registro + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Entre valores para o novo registro considerando as restriões. Campos em negrito são obrigatórios. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + Na coluna Valor você pode especificar o valor para o campo identificado na coluna Nome. A coluna Tipo indica qual o tipo do campo. Valores padrão são exibidos no mesmo estilo que valores nulos. + + + + Name + Nome + + + + Type + Tipo + + + + Value + Valor + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Valores para inserir. Valores padrão pré-preenchidos são inseridos automaticamente a não ser que sejam alterados. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Quando você edita os valores no frame acima, a consulta SQL para inserir esse novo registro é exibida aqui-> Você pode editar manualmente a consulta antes de salvar. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Salvar</span> irá enviar o comando SQL exibido para o banco de dados para a inserção do novo registro.</p><p><span style=" font-weight:600;">Restaurar Padrões</span> irá restaurar os valores iniciais na coluna <span style=" font-weight:600;">Valor</span>.</p><p><span style=" font-weight:600;">Cancelar</span> irá fechar esse diálogo sem executar a consulta.</p></body></html> + + + + Auto-increment + + Auto-incremento + + + + + Unique constraint + + Restrição de unicidade + + + + + Check constraint: %1 + + Restrição de condição %1 + + + + + Foreign key: %1 + + Chave estrangeira: %1 + + + + + Default value: %1 + + Valor padrão: %1 + + + + + Error adding record. Message from database engine: + +%1 + Erro adicionando registro. Mensagem do banco de dados: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Você tem certeza que deseja restaurar todos os valores inseridos para os seus valores padrão? + + + + Application + + + Possible command line arguments: + Possíveis argumentos da linha de comando: + + + + Usage: %1 [options] [<database>|<project>] + + Uso: %1 [opções] [<banco de dados>|<projeto>] + + + + + -h, --help Show command line options + -h, --help Exibir opções de linha de comando + + + + -q, --quit Exit application after running scripts + -q, --quit Sair do programa após executar os scripts + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <arquivo> Executar esse arquivo de SQL após abrir o BD + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <tabela> Navegar essa tabela após abrir o banco de dados + + + + -R, --read-only Open database in read-only mode + -R, --read-only Abrir o banco de dados em modo somente leitura + + + + -o, --option <group>/<setting>=<value> + -o, -option <grupo>/<configuração>=valor + + + + Run application with this setting temporarily set to value + Roda a aplicação com esse valor para essa configuração temporariamente + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <grupo>/<configuração>=valor + + + + Run application saving this value for this setting + Roda a aplicação salvando esse valor para essa configuração + + + + -v, --version Display the current version + -v, --version Exibir a versão atual + + + + <database> Open this SQLite database + <banco de dados> Abre esse banco de dados SQLite + + + + <project> Open this project file (*.sqbpro) + <projeto> Abre esse projeto (*.sqbpro) + + + + The -s/--sql option requires an argument + A opção -s/--sql requer um argumento + + + + The file %1 does not exist + O arquivo %1 não existe + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + As opções -o/--option e -O/--save-option requerem um argumento no formato grupo/configuração=valor + + + + Invalid option/non-existant file: %1 + Opção inválida/arquivo inexistente: %1 + + + + SQLite Version + Versão do SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + SQLCipher versão %1 (baseado em SQLite %2) + + + + DB Browser for SQLite Version %1. + DB Browser para SQLite versão %1. + + + + Built for %1, running on %2 + Compilado para %1, rodando em %2 + + + + Qt Version %1 + Versão do Qt: %1 + + + + The -t/--table option requires an argument + A opção -t/--table requer um argumento + + + + CipherDialog + + + SQLCipher encryption + Encriptação SQLCipher + + + + &Password + &Senha + + + + &Reenter password + &Entre a senha novamente + + + + Encr&yption settings + &Configurações de encriptação + + + + SQLCipher &3 defaults + Padrões do SQLCipher &3 + + + + SQLCipher &4 defaults + Padrões do SQLCipher &4 + + + + Custo&m + Custo&mizado + + + + &KDF iterations + Iterações &KDF + + + + HMAC algorithm + Algoritmo de HMAC + + + + KDF algorithm + Algoritmo de KDF + + + + Plaintext Header Size + Tamanho do cabeçalho de texto + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Por favor, entre a chave usada para encriptar o banco de dados. +Se quaisquer das outras configurações foram alteradas você terá de prover essas informações também. + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Por favor, selecione uma chave para encriptar o banco de dados. +Note que se você alterar quaisquer configurações opcionais você terá de entrá-las todas as vezes que você abrir o arquivo do banco de dados. +Deixe os campos de senha em branco para desativar a encriptação. +O processo de encriptação pode demorar alguns minutos e você deve ter um backup do seu banco de dados! Alterações não salvas são aplicadas antes de se modificar a encriptação. + + + + Page si&ze + &Tamanho da página + + + + Passphrase + Palavra chave + + + + Raw key + Chave desencriptada + + + + ColumnDisplayFormatDialog + + + Choose display format + Escolha um formato de exibição + + + + Display format + Formato de exibição + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Escolha um formato de exibição para a coluna '%1' que será aplicado a cada valor antes de exibí-lo. + + + + Default + Padrão + + + + Decimal number + Número decimal + + + + Exponent notation + Notação exponencial + + + + Hex blob + BLOB hexadecimal + + + + Hex number + Número hexadecimal + + + + .NET DateTime.Ticks to date + .NET DateTime.Ticks até a data + + + + Julian day to date + Dia juliano para data + + + + Lower case + Caixa baixa + + + + Custom display format must contain a function call applied to %1 + Formato de exibição customizado precisa conter uma função aplicada a %1 + + + + Error in custom display format. Message from database engine: + +%1 + Erro em formato de exibição customizado. Mensagem da engine da base de dados: + +%1 + + + + Custom display format must return only one column but it returned %1. + Formato de exibição customizado precisa retornar apenas uma coluna mas retornou %1. + + + + Octal number + Octal + + + + Round number + Número arredondado + + + + Unix epoch to date + Era unix para data + + + + Upper case + Caixa alta + + + + Windows DATE to date + DATE do Windows para data + + + + Custom + Personalizado + + + + Apple NSDate to date + NSDate da Apple para date + + + + Java epoch (milliseconds) to date + Época Java (ms) para data + + + + Unix epoch to local time + Época Unix para tempo local + + + + Date as dd/mm/yyyy + Data como dd/mm/yyyy + + + + CondFormatManager + + + Conditional Format Manager + Gerenciador de formato condicional + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + Esse diálogo permite a criação e edição de formatos condicionais. O estilo de cada célula será escolhido pela primeira condição satisfeita pelo valor daquela célula. Formatos condicionais podem ser movidos para cima e para baixo, tendo precedência os formatos localizados mais acima. A sintaxe para as condições é a mesma utilizada para os filtros e uma condição vazia é sempre satisfeita. + + + + Add new conditional format + Adicionar novo formato condicional + + + + &Add + &Adicionar + + + + Remove selected conditional format + Remover formato condicional selecionado + + + + &Remove + &Remover + + + + Move selected conditional format up + Mover formato condicional selecionado para cima + + + + Move &up + Mover para &cima + + + + Move selected conditional format down + Mover formato condicional selecionado para baixo + + + + Move &down + Mover para &baixo + + + + Foreground + Plano de frente + + + + Text color + Cor do texto + + + + Background + Fundo + + + + Background color + Cor do plano de fundo + + + + Font + Fonte + + + + Size + Tamanho + + + + Bold + Negrito + + + + Italic + Itálico + + + + Underline + Sublinhado + + + + Alignment + Alinhamento + + + + Condition + Condição + + + + + Click to select color + Clique para selecionar a cor + + + + Are you sure you want to clear all the conditional formats of this field? + Você tem certeza de que deseja limpar todos os formatos condicionais deste campo? + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + Por favor, especifique o nome do banco de dados sob o qual você quer acessar o banco de dados anexado + + + + Do you want to save the changes made to the database file %1? + Você quer salvar as alterações feitas ao arquivo de banco de dados %1? + + + + Exporting database to SQL file... + Exportando banco de dados para arquivo SQL... + + + + + Cancel + Cancelar + + + + Executing SQL... + Executando SQL... + + + + Action cancelled. + Ação cancelada. + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + A restauração de alguns dos objetos associados com essa tabela falhou. Provavelmente porque os nomes de algumas colunas mudaram. Aqui está a consulta que você pode querer corrigir e executar manualmente: + + + + + + Error setting pragma %1 to %2: %3 + Erro definindo pragma %1 para %2: %3 + + + + File not found. + Arquivo não encontrado. + + + + Invalid file format + Formato de arquivo inválido + + + + + Error in statement #%1: %2. +Aborting execution%3. + Erro no comando #%1: %2. +Aborting execution%3. + + + + + and rolling back + e revertendo + + + + Cannot set data on this object + Não se pode definir dados nesse objeto + + + + could not get column information + não pôde obter informação sobre a coluna + + + + This database has already been attached. Its schema name is '%1'. + Esse banco de dados já foi anexado. O seu nome de esquema e '%1'. + + + + Do you really want to close this temporary database? All data will be lost. + Você realmente quer fechar esse banco de dados temporário? Todos os dados serão perdidos. + + + + Database didn't close correctly, probably still busy + A base de dados não fechou corretamente, provavelmente ainda ocupada + + + + The database is currently busy: + O banco de dados está ocupado: + + + + Do you want to abort that other operation? + Você quer abortar a outra operação? + + + + + No database file opened + Não há um arquivo de banco de dados aberto + + + + didn't receive any output from %1 + não recebeu nenhuma saída de %1 + + + + could not execute command: %1 + não pode executar comando: %1 + + + + Cannot delete this object + Não pode deletar esse objeto + + + + + A table with the name '%1' already exists in schema '%2'. + Uma tabela com o nome '%1' já existe no esquema '%2'. + + + + No table with name '%1' exists in schema '%2'. + Nem uma tabela chamada '%1' existe no esquema '%2'. + + + + + Cannot find column %1. + Não pode encontrar coluna %1. + + + + Creating savepoint failed. DB says: %1 + Criação de savepoint falhou. BD diz: %1 + + + + Renaming the column failed. DB says: +%1 + Renomeação de coluna falhou. BD diz: +%1 + + + + + Releasing savepoint failed. DB says: %1 + Liberação de savepoint falhou. BD diz: %1 + + + + Creating new table failed. DB says: %1 + Criação de tabela falhou. BD diz: %1 + + + + Copying data to new table failed. DB says: +%1 + Cópia de dados para uma nova tabela falhou. BD diz: +%1 + + + + Deleting old table failed. DB says: %1 + Deletando tabela antiga falhou. BD diz: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + Erro renomeando tabela de '%1' para '%2'. +Mensagem da engine do banco de dados: +%3 + + + + could not get list of db objects: %1 + não conseguiu listar objetos da BD: %1 + + + + could not get list of databases: %1 + não pôde obter a lista de bancos de dados: %1 + + + + Error loading extension: %1 + Erro carregado extensão: %1 + + + + DbStructureModel + + + Name + Nome + + + + Object + Objeto + + + + Type + Tipo + + + + Schema + Esquema + + + + Tables (%1) + Tabelas (%1) + + + + Indices (%1) + Índices (%1) + + + + Views (%1) + Vistas (%1) + + + + Triggers (%1) + Gatilhos (%1) + + + + All + Todos + + + + Database + Banco de dados + + + + Browsables + Navegáveis + + + + Temporary + Temporário + + + + EditDialog + + + Edit database cell + Editar célula + + + + Text + Texto + + + + Binary + Binário + + + + Erases the contents of the cell + Apaga os conteúdos da célula + + + + This area displays information about the data present in this database cell + Essa área exibe informação sobre os dados presentes nessa célula + + + + Type of data currently in cell + Tipo de dados atualmente na célula + + + + Size of data currently in table + Tamanho dos dados atualmente na célula + + + + Choose a filename to export data + Escolha um arquivo para exportar dados + + + + + Type of data currently in cell: Text / Numeric + Tipo de dados atualmente na célula: Texto / Numérico + + + + + + %n character(s) + + %n char + %n chars + + + + + Type of data currently in cell: Binary + Tipo de dados atualmente na célula: Binário + + + + + %n byte(s) + + %n byte + %n bytes + + + + + Mode: + Modo: + + + + + Image + Imagem + + + + Set as &NULL + Definir como &NULL + + + + Apply + Aplicar + + + + Type of data currently in cell: %1 Image + Tipo de dado atualmente na célula: %1 Imagem + + + + %1x%2 pixel(s) + %1x%2 pixel(s) + + + + Type of data currently in cell: NULL + Tipo de dado atualmente na célula: NULL + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Essa é a lista de modos suportados pelo editor de célula. Escolha um modo para visualizar ou editar os dados da célula atual. + + + + RTL Text + Texto para a esquerda + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + Automaticamente ajustar o modo do editor para o tipo de dado carregado + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Esse botão assinalável ativa ou desativa a troca automática do modo do editor. Quando uma nova célula é selecionado ou novos dados são importados e a troca automática está habilitada, o modo ajusta para o tipo detectado. Você pode então mudar o modo do editor manualmente. Se você quer manter o modo manualmente escolhido enquanto movendo pelas células, desmarque essa opção. + + + + Auto-switch + Auto-trocar + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + O modo do editor de texto deixa você editar tanto texto simples como JSON e XML com realce de sintaxe, formatação automática e validação antes de salvar. + +Erros são indicados com um sublinhado vermelho. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Esse editor do QT é usado para scripts da direita para a esquerda, que não são suportados pelo editor de texto padrão. Quando a presença de caracteres da direita para a esquerda é detectada, esse modo é automaticamente selecionado. + + + + Open preview dialog for printing the data currently stored in the cell + Abrir diálogo de prévia para impressão dos dados atualmente armazenados na célula + + + + Auto-format: pretty print on loading, compact on saving. + Auto-formatar: exibir formatado ao carregar, compactar ao salvar. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Quando ativado, a funcionalidade de auto-formatar formata os dados ao carregar, quebrando o texto em linhas e indentando ele para melhor legibilidade. Ao salvar os dados, o auto-formatador compacta os dados removendo espaços em branco desnecessários. + + + + Word Wrap + Quebra de linha + + + + Wrap lines on word boundaries + Quebra de linha em limites de palavras + + + + + Open in default application or browser + Abrir em aplicação padrão ou navegador + + + + Open in application + Abrir em aplicação + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + O valor é interpretado como um arquivo ou URL e aberto na aplicação padrão ou navegador. + + + + Save file reference... + Salvar referência de arquivo... + + + + Save reference to file + Salvar referência para arquivo + + + + + Open in external application + Abrir em aplicação externa + + + + Autoformat + Autoformatar + + + + &Export... + &Exportar... + + + + + &Import... + &Importar... + + + + + Import from file + Importar do arquivo + + + + + Opens a file dialog used to import any kind of data to this database cell. + Abre um seletor de arquivos usado para importar qualquer tipo de dado para essa célula. + + + + Export to file + Exportar para arquivo + + + + Opens a file dialog used to export the contents of this database cell to a file. + Abre um seletor de arquivo para exportar os conteúdos dessa célula para um arquivo. + + + + Apply data to cell + Aplicar dados à célula + + + + This button saves the changes performed in the cell editor to the database cell. + Esse botão salva as modificações realizadas no editor da célula para a célula do banco de dados. + + + + + Image data can't be viewed in this mode. + Dados de imagem não podem ser visualizados nesse modo. + + + + + Try switching to Image or Binary mode. + Tente mudar para modo de Imagem ou Binário. + + + + + Binary data can't be viewed in this mode. + Dados binários não podem ser visualizados nesse modo. + + + + + Try switching to Binary mode. + Tente mudar para modo binário. + + + + Couldn't save file: %1. + Não pôde salvar arquivo: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + Os dados foram salvos em um arquivo temporário e este foi aberto com a aplicação padrão. Você pode agora editar os dados e, quando você estiver pronto, salvar suas mudanças para o editor de células ou cancelar quaisquer mudanças. + + + + + Image files (%1) + Arquivos de imagem (%1) + + + + Binary files (*.bin) + Arquivos binários (*.bin) + + + + Choose a file to import + Escolha um arquivo para importar + + + + %1 Image + %1 Imagem + + + + Invalid data for this mode + Dados inválidos para esse modo + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + A célula contém dados inválidos %1. Motivo: %2. Você realmente quer aplicar isso? + + + + Type of data currently in cell: Valid JSON + Tipo de dados atualmente na célula: JSON válido + + + + + Print... + Imprimir... + + + + Open preview dialog for printing displayed image + Abrir diálogo de prévia para imprimir imagem exibida + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Abrir diálogo de prévia para imprimir texto exibido + + + + Copy Hex and ASCII + Copiar Hex e ASCII + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Copiar colunas hexadecimal e ASCII selecionadas para a área de transferência + + + + Ctrl+Shift+C + + + + + EditIndexDialog + + + &Name + &Nome + + + + Order + Ordem + + + + &Table + &Tabela + + + + &Unique + &Único + + + + Creating the index failed: +%1 + Criação de índice falhou: +%1 + + + + Edit Index Schema + Editar esquema do índice + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Para restringir o índice para somente uma parte da tabela você pode especificar uma cláusula WHERE aqui que seleciona a parte da tabela que deveria ser indexada + + + + Partial inde&x clause + Cláusula de índi&ce parcial + + + + Colu&mns + Colu&nas + + + + Table column + Coluna da tabela + + + + Type + Tipo + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Adicionar uma nova coluna de expressão para o índice. Colunas de expressão contêm expressões SQL em vez de nomes de coluna. + + + + Index column + Indexar coluna + + + + Deleting the old index failed: +%1 + Deletar o índice antigo falhou: +%1 + + + + EditTableDialog + + + Edit table definition + Editar definição da tabela + + + + Table + Tabela + + + + Advanced + Avançado + + + + Database sche&ma + Esque&ma do banco de dados + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Fazer dessa uma tabela 'SEM rowid'. Definir essa flag requer um campo do tipo INTEGER com a primary key flag definida e a auto increment flag não. + + + + Without Rowid + Sem Rowid + + + + Fields + Campos + + + + Add + Adicionar + + + + Remove + Remover + + + + Move to top + Mover para o topo + + + + Move up + Mover para cima + + + + Move down + Mover para baixo + + + + Move to bottom + Mover para o fundo + + + + + Name + Nome + + + + + Type + Tipo + + + + Not null + Não null + + + + PK + PK + + + + Primary key + Primary key + + + + AI + AI + + + + Autoincrement + Autoincrement + + + + U + U + + + + + + Unique + Unique + + + + Default + Default + + + + Default value + Default value + + + + + + Check + Check + + + + Check constraint + Check constraint + + + + Collation + Agrupamento + + + + + + Foreign Key + Foreign Key + + + + Constraints + Restrições + + + + Add constraint + Adicionar restrição + + + + Remove constraint + Remover restrição + + + + Columns + Colunas + + + + SQL + SQL + + + + + Primary Key + Chave primária + + + + Add a primary key constraint + Adicionar restrição de chave primária + + + + Add a foreign key constraint + Adicionar restrição de chave estrangeira + + + + Add a unique constraint + Adicionar uma restrição de unicidade + + + + Add a check constraint + Adicionar uma restrição de verificação + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Cada tabela pode ter apenas uma chave primária. Por favor, modifique a chave primária existente. + + + + Error creating table. Message from database engine: +%1 + Erro criando tabela. Mensagem da engine do banco de dados: +%1 + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Há pelo menos uma linha com esse campo definido NULL. Logo, é impossível definir essa flag. Por favor, mude os dados da tabela primeiro. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Há pelo menos uma linha com um valor não-inteiro nesse campo. Logo, é impossível definir essa flag. Por favor, mude os dados da tabela primeiro. + + + + Column '%1' has duplicate data. + + Coluna '%1' tem dados duplicados. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Isso faz com que seja impossível de se habilitar a flag de unicidade. Por favor, remova os dados duplicados para permitir que a flag seja habilitada. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Você tem certeza de que deseja deletar o campo '%1? +Todos os dados atualmente armazenados nesse campo serão perdidos. + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Já existe um campo com este nome. Por favor, renomeie-o primeiro ou escolha um nome diferente para esse campo. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Por favor, adicione um campo que atende aos seguintes critérios antes de definir a flag "without rowid": + - Flag "primary key" definida + - Incremento automático desativado + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Essa coluna é referenciada em uma chave estrangeira na tabela %1 e portanto seu nome não pode ser alterado. + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Alerta: </span>Nosso parser não entende algo dessa definição de tabela. Modificar e salvar essa tabela pode causar problemas.</p></body></html> + + + + NN + NN + + + + ExportDataDialog + + + Export data as CSV + Exportar dados como CSV + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + Outro + + + + &Quote character + &Áspas + + + + " + " + + + + ' + ' + + + + + Could not open output file: %1 + Não pôde abrir arquivo de saída: %1 + + + + + Choose a filename to export data + Escolha um arquivo para exportar dados + + + + Please select at least 1 table. + Por favor, selecione pelo menos uma tabela. + + + + Choose a directory + Escolha um diretório + + + + Export completed. + Exportação completa. + + + + New line characters + Caracteres de nova linha + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Tab&le(s) + Tabe&las(s) + + + + Colu&mn names in first line + &Nomes das colunas na primeira linha + + + + Fie&ld separator + Se&parador de campo + + + + Pretty print + Otimizar para leitura humana + + + + Export data as JSON + Exportar dados como JSON + + + + exporting CSV + exportando CSV + + + + exporting JSON + exportando JSON + + + + ExportSqlDialog + + + Export SQL... + Exportar SQL... + + + + &Options + &Opções + + + + Keep column names in INSERT INTO + Manter nomes de colunas em INSERT INTO + + + + Export schema only + Exportar somente esquema + + + + Choose a filename to export + Escolha um arquivo para exportar + + + + Export completed. + Exportação completa. + + + + Export cancelled or failed. + Exportação falhou ou foi cancelada. + + + + Tab&le(s) + Tabe&las(s) + + + + Select All + Selecionar tudo + + + + Deselect All + Limpar seleção + + + + Multiple rows (VALUES) per INSERT statement + Múltiplas linhas (VALUES) por INSERT + + + + Export everything + Exportar tudo + + + + Export data only + Exportar somente dados + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Manter esquema antigo (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Sobrescrever esquema antigo (DROP TABLE, then CREATE TABLE) + + + + Please select at least one table. + Por favor selecione pelo menos uma tabela. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Encontrar... + + + + Find and Replace... + Encontrar e substituir... + + + + Print... + Imprimir... + + + + ExtendedTableWidget + + + Set to NULL + Definir como NULL + + + + Copy + Copiar + + + + Paste + Colar + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + O conteúdo da área de transferência é maior do que o intervalo selecionado. +Deseja inserir mesmo assim? + + + + Use as Exact Filter + Usar como filtro exato + + + + Containing + Contendo + + + + Not containing + Não contendo + + + + Not equal to + Diferente de + + + + Greater than + Maior que + + + + Less than + Menor que + + + + Greater or equal + Maior ou igual a + + + + Less or equal + Menor ou igual a + + + + Between this and... + Entre isso e... + + + + Regular expression + Expressão regular + + + + Edit Conditional Formats... + Editar formatos condicionais... + + + + Copy with Headers + Copiar com cabeçalhos + + + + Copy as SQL + Copiar como SQL + + + + Print... + Imprimir... + + + + Use in Filter Expression + Usar na expressão de filtro + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>Nem todos os dados foram carregados. <b>Você quer carregar todos os dados antes de selecionar todas as linhas?</b><p><p>Respondendo <b>Não</b> significa que mais dados não serão carregados e a seleção não será executada.<br/>Respondendo <b>Sim</b> pode levar algum tempo enquanto os dados são carregados mas a seleção será incompleta.</p>Aviso: carregar todos os dados pode exigir uma grande quantidade de memória para tabelas grandes. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + Não é possível definir a seleção como NULL. Coluna %1 tem uma restrição de nulidade. + + + + FileExtensionManager + + + File Extension Manager + Gerenciador de extensão de arquivo + + + + &Up + &Subir + + + + &Down + &Descer + + + + &Add + &Adicionar + + + + &Remove + &Remover + + + + + Description + Descrição + + + + Extensions + Extensões + + + + *.extension + *.extensão + + + + FilterLineEdit + + + Filter + Filtro + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Esses campos de entrada permitem você realizar filtros rápidos na tabela atualmente selecionada. +Por padrão, as linhas que contém o texto de entrada são filtradas +Os seguintes operadores também são suportados: +% Curinga +> Maior que +< Menor que +>= Maior ou igual a +<= Menor ou igual a += Igual +<> Diferente +x~y Intervalo: valores entre x e y +/regexp/ Valores satisfazendo a expressão regular + + + + Clear All Conditional Formats + Limpar todos os formatos condicionais + + + + Use for Conditional Format + Usar para formato condicional + + + + Edit Conditional Formats... + Editar formatos condicionais... + + + + Set Filter Expression + Definir expressão de filtro + + + + What's This? + O que é isso? + + + + Is NULL + É NULL + + + + Is not NULL + Não é NULL + + + + Is empty + É vazio + + + + Is not empty + Não é vazio + + + + Not containing... + Não contendo... + + + + Equal to... + Igual a... + + + + Not equal to... + Diferente de... + + + + Greater than... + Maior que... + + + + Less than... + Menor que... + + + + Greater or equal... + Maior ou igual... + + + + Less or equal... + Menor ou igual... + + + + In range... + No intervalo... + + + + Regular expression... + Expressão regular... + + + + FindReplaceDialog + + + Find and Replace + Encontrar e substituir + + + + Fi&nd text: + E&ncontrar texto: + + + + Re&place with: + Su&bstituir com: + + + + Match &exact case + Casar caixa &exata + + + + Match &only whole words + Casar s&omente palavras inteiras + + + + When enabled, the search continues from the other end when it reaches one end of the page + Quando ativado, a busca continua do outro fim quando ela atinge um fim da página + + + + &Wrap around + &Envolver em torno + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Quando ativado, a busca retrocede a partir do cursor em vez de ir para frente + + + + Search &backwards + Buscar para &trás + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>Quando selecionado, o padrão procurado é testado somente na seleção atual.</p></body></html> + + + + &Selection only + &Somente seleção + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Quando selecionado, o padrão a ser encontrado é interpretado como uma expressão regular UNIX. Veja <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression nos Wikibooks</a>.</p></body></html> + + + + Use regular e&xpressions + Usar e&xpressões regulares + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Encontrar a próxima ocorrência a partir da posição do cursor na direção selecionada por "Buscar para trás" + + + + &Find Next + &Encontrar próximo + + + + F3 + + + + + &Replace + &Substituir + + + + Highlight all the occurrences of the text in the page + Realçar todas as ocorrências do texto na página + + + + F&ind All + Encontrar &todos + + + + Replace all the occurrences of the text in the page + Substituir todas as ocorrências do texto na página + + + + Replace &All + Substituir &todos + + + + The searched text was not found + O texto procurado não foi encontrado + + + + The searched text was not found. + O texto procurado não foi encontrado. + + + + The searched text was found one time. + O texto procurado foi encontrado uma vez. + + + + The searched text was found %1 times. + O texto procurado foi encontrado %1 vezes. + + + + The searched text was replaced one time. + O texto procurado foi substituído uma vez. + + + + The searched text was replaced %1 times. + O texto procurado foi substituído %1 vezes. + + + + ForeignKeyEditor + + + &Reset + &Resetar + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Cláusulas de chave estrangeira (ON UPDATE, ON DELETE etc.) + + + + ImportCsvDialog + + + Import CSV file + Importar arquivo CSV + + + + &Column names in first line + Nomes das &colunas na primeira linha + + + + Field &separator + &Separador de campos + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + | + + + + Other + Outro + + + + &Quote character + &Áspas + + + + + Other (printable) + Outro (imprimível) + + + + + Other (code) + Outro (código) + + + + " + " + + + + ' + ' + + + + &Encoding + &Encoding + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Trim fields? + + + + Creating restore point failed: %1 + Criação de ponto de restauração falhou: %1 + + + + Creating the table failed: %1 + Criação de tabela falhou: %1 + + + + Inserting row failed: %1 + Inserir linha falhou: %1 + + + + Separate tables + Tabelas separadas + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Quando importando em uma tabela existente com uma chave primária, restrições de unicidade ou índice único há uma chance para conflitos. Essa opção permite a você selecionar uma estratégia para esse caso. Por padrão, a importação é abortada e revertida, mas você também pode escolher ignorar e não importar linhas conflitantes ou substituir as entradas existentes na tabela. + + + + Abort import + Abortar importação + + + + Ignore row + Ignorar linha + + + + Replace existing row + Substituir linhas existentes + + + + Conflict strategy + Estratégia para conflitos + + + + + Deselect All + Limpar seleção + + + + Match Similar + Detectar similares + + + + Select All + Selecionar tudo + + + + Table na&me + No&me da tabela + + + + Advanced + Avançado + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + Quando importando um valor em branco do arquivo CSV em uma tabela existente com um valor padrão para essa coluna, aquele valor padrão é inserido. Ative essa opção para inserir um valor em branco em vez. + + + + Ignore default &values + Ignorar &valores padrão + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Ative essa opção para parar a importação quando tentando importar um valor em branco em uma coluna NOT NULL sem um valor padrão. + + + + Fail on missing values + Falhar em valores faltando + + + + Disable data type detection + Desativar detecção de tipo de dados + + + + Disable the automatic data type detection when creating a new table. + Desativa a detecção automática de tipo de dados quando criando uma nova tabela. + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Já existe uma tabela chamada '%1' e uma importação em uma tabela existente só é possível se o número de colunas bate. + + + + There is already a table named '%1'. Do you want to import the data into it? + Já existe uma tabela chamada '%1'. Você quer importar os dados nela? + + + + importing CSV + Importando CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + Importando o arquivo '%1' levou %2 ms. Desses, %3 ms foram gastos na função da linha. + + + + MainWindow + + + DB Browser for SQLite + DB Browser para SQLite + + + + toolBar1 + toolBar1 + + + + &File + &Arquivo + + + + &Import + &Importar + + + + &Export + E&xportar + + + + &Edit + &Editar + + + + &View + &Exibir + + + + &Help + A&juda + + + + DB Toolbar + Barra de ferramentas do banco de dados + + + + User + Usuário + + + + Application + Aplicativo + + + + &Clear + &Limpar + + + + &New Database... + &Novo banco de dados... + + + + + Create a new database file + Criar um novo arquivo de banco de dados + + + + This option is used to create a new database file. + Essa opção e utilizada para criar um novo arquivo de banco de dados. + + + + Ctrl+N + + + + + + &Open Database... + &Abrir banco de dados... + + + + + + + + Open an existing database file + Abre um arquivo de banco de dados existente + + + + + + This option is used to open an existing database file. + Esta opção abre um arquivo de banco de dados existente. + + + + Ctrl+O + + + + + &Close Database + &Fechar banco de dados + + + + + Ctrl+W + + + + + + Revert database to last saved state + Reverter banco de dados para o último estado salvo + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Essa opção é usada para reverter o atual arquivo de banco de dados para seu último estado salvo. Todas as modificações feitas desde a última operação de salvamento são perdidas. + + + + + Write changes to the database file + Salva modificações para o arquivo de banco de dados + + + + This option is used to save changes to the database file. + Essa opção é usada para salvar modificações para o arquivo de banco de dados. + + + + Ctrl+S + + + + + Compact the database file, removing space wasted by deleted records + Compactar o arquivo do banco de dados, removendo espaço desperdiçado por registros deletados + + + + + Compact the database file, removing space wasted by deleted records. + Compactar o arquivo do banco de dados, removendo espaço desperdiçado por registros deletados. + + + + E&xit + &Sair + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Importar dados de um arquivo de texto .sql em um banco de dados. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Essa opção deixa você importar dados de um arquivo SQL em um banco de dados. Arquivos de SQL podem ser criados na maioria dos bancos de dados, como MySQL e PostgreSQL. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Abre um assistente que permite você importar dados de um arquivo CSV em uma tabela de banco de dados. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Abre um assistente que permite você importar dados de um arquivo CSV em uma tabela de banco de dados. Arquivos CSV podem ser criados pela maioria dos programas de banco de dados e planilhas. + + + + Export a database to a .sql dump text file. + Exportar o banco de dados para um arquivo de texto .sql. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Essa opção permite você exportar um banco de dados para um arquivo de texto .sql. Arquivos de despejo SQL contêm todos os dados necessários para recriar o banco de dados na maioria dos motores de banco de dados, incluindo MySQL e PostgreSQL. + + + + Export a database table as a comma separated text file. + Exportar uma tabela de banco de dados como um arquivo CSV. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Exportar uma tabela de banco de dados como um arquivo CSV, pronto para ser importado por outro banco de dados ou planilhas. + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Abre o assistente de criação de tabelas, em que é possível definir o nome e os campos para uma nova tabela no banco de dados + + + + + Delete Table + Deletar tabela + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Abre o assistente de deleção de tabelas, em que você pode selecionar uma tabela para ser eliminada. + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Abre o assistente de modificação de tabelas, em que você pode renomear uma tabela existente. Também é possível adicionar ou deletar campos de uma tabela, assim como modificar nomes e tipos de campos. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Abre o assistente de criação de índice, em que é possível definir um novo índice em um tabela de banco de dados já existente. + + + + &Preferences... + &Configurações... + + + + + Open the preferences window. + Abre a janela de configurações. + + + + &DB Toolbar + Barra de ferramentas do banco de &dados + + + + Shows or hides the Database toolbar. + Exibe ou oculta a barra de ferramentas do banco de dados. + + + + Shift+F1 + + + + + &Recently opened + &Recentemente aberto + + + + Open &tab + Abrir &aba + + + + Ctrl+T + + + + + &Execute SQL + &Executar SQL + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + Executar SQL + + + + + + Save SQL file + Salvar arquivo SQL + + + + + Execute current line + Executar linha atual + + + + Ctrl+E + + + + + Export as CSV file + Exportar como arquivo CSV + + + + Export table as comma separated values file + Exportar tabela como CSV + + + + + Save the current session to a file + Salvar a atual sessão para um arquivo + + + + + Load a working session from a file + Carregar uma sessão de um arquivo + + + + + Save SQL file as + Salvar arquivo SQL como + + + + &Browse Table + &Navegar tabela + + + + Copy Create statement + Copiar comando Create + + + + Copy the CREATE statement of the item to the clipboard + Copia o comando CREATE do item para a área de transferência + + + + Ctrl+Return + Ctrl+ENTER + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Reset Window Layout + Resetar layout da janela + + + + Alt+0 + + + + + The database is currenctly busy. + O banco de dados está ocupado. + + + + Click here to interrupt the currently running query. + Clique aqui para interromper a consulta atual. + + + + Database encoding + Codificação do banco de dados + + + + Database is encrypted using SQLCipher + Banco de dados encriptado usando SQLCipher + + + + + Choose a database file + Escolha um arquivo de banco de dados + + + + + + Choose a filename to save under + Escolha um nome de arquivo para salvar + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Você tem certeza de que deseja desfazer todas as modificações feitas no arquivo de banco de dados '%1' desde o último salvamento? + + + + Choose a file to import + Escolha um arquivo para importar + + + + Text files(*.sql *.txt);;All files(*) + Arquivos de texto(*.sql *.txt);;Todos os arquivos(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Você deseja criar um novo arquivo de banco de dados para armazenar os dados importados? +Se você disser que não, tentaremos importar os dados do arquivo SQL para o banco de dados atual. + + + + Window Layout + Layout da janela + + + + Simplify Window Layout + Simplificar layout da janela + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + Encaixar janelas embaixo + + + + Dock Windows at Left Side + Encaixar janelas à esquerda + + + + Dock Windows at Top + Encaixar janelas no topo + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Você ainda está executando comandos SQL. Fechar o banco de dados agora fará a execução parar, talvez deixando o banco de dados em um estado inconsistente. Você tem certeza de que deseja fechar o banco de dados? + + + + Do you want to save the changes made to the project file '%1'? + Você quer salvar as modificações feitas para o arquivo de projeto '%1'? + + + + Result: %1 + Resulto: %1 + + + + File %1 already exists. Please choose a different name. + Arquivo %1 já existe. Por favor, escolha um nome diferente. + + + + Error importing data: %1 + Erro importando dados: %1 + + + + Import completed. + Importação completa. + + + + Delete View + Deletar vista + + + + Delete Trigger + Deletar gatilho + + + + Delete Index + Deletar índice + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Definir valores de PRAGMA vai cometer sua transação atual. +Você tem certeza? + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + Você quer salvar as mudanças feitas nas abas de SQL no arquivo de projeto '%1'? + + + + Select SQL file to open + Selecione arquivo SQL para abrir + + + + Select file name + Selecione o nome do arquivo + + + + Select extension file + Selecione o arquivo de extensão + + + + Extension successfully loaded. + Extensão carregada com sucesso. + + + + Error loading extension: %1 + Erro carregado extensão: %1 + + + + + Don't show again + Não mostrar novamente + + + + New version available. + Nova versão disponível. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Uma nova vesão do DB Browser para SQLite está disponível (%1.%2.%3)<br/><br/>Por favor, baixe em <a href='%4'>%4</a>. + + + + DB Browser for SQLite project file (*.sqbpro) + Arquivo de projeto DB Browser para SQLite (*.sqbpro) + + + + SQL &Log + &Log do SQL + + + + Show S&QL submitted by + Exibir S&QL enviado por + + + + &Plot + &Plotar + + + + &Revert Changes + &Reverter modificações + + + + &Write Changes + &Escrever modificações + + + + &Database from SQL file... + &Banco de dados a partir de arquivo SQL... + + + + &Table from CSV file... + &Tabela a partir de arquivo CSV... + + + + &Database to SQL file... + &Banco de dados para arquivo SQL... + + + + &Table(s) as CSV file... + &Tabela para arquivo CSV... + + + + &Create Table... + &Criar tabela... + + + + &Delete Table... + &Deletar tabela... + + + + &Modify Table... + &Modificar tabela... + + + + Create &Index... + &Criar índice... + + + + W&hat's This? + O &que é isso? + + + + Sa&ve Project + &Salvar projeto + + + + Encrypted + Encriptado + + + + Read only + Somente leitura + + + + Database file is read only. Editing the database is disabled. + Arquivo de banco de dados é somente leitura. Edição do banco de dados está desativada. + + + + Execution finished with errors. + Execução finalizada com erros. + + + + Execution finished without errors. + Execução finalizada sem erros. + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Estrutura do banco de dados + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Navegar dados + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Editar pragmas + + + + Edit Database &Cell + Editar &célula do banco de dados + + + + DB Sche&ma + Esque&ma do banco de dados + + + + Open SQL file(s) + Abrir arquivo(s) SQL + + + + This button opens files containing SQL statements and loads them in new editor tabs + Este botão abre arquivos SQL e carrega eles em novas abas no editor + + + + Shift+F5 + + + + + Opens the SQLCipher FAQ in a browser window + Abre o FAQ do SQLCipher em uma janela do navegador + + + + Export one or more table(s) to a JSON file + Exporta uma ou mais tabela(s) para um arquivo JSON + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Erro enquanto salvava o banco de dados. Isso indica que nem todas as mudanças foram salvas. Você precisa resolver o seguinte erro primeiro. + +%1 + + + + &Remote + &Remoto + + + + Open an existing database file in read only mode + Abre um banco de dados existente em modo somente leitura + + + + Could not open database file. +Reason: %1 + Não pôde abrir arquivo do banco de dados. +Motivo: %1 + + + + Choose text files + Escolha arquivos de texto + + + + Modify View + Modificar vista + + + + Modify Trigger + Modificar gatilho + + + + Modify Index + Modificar índice + + + + Modify Table + Modificar tabela + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Definir valores de PRAGMA ou fazer vacuum irá commitar sua transação atual. +Deseja continuar? + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Essa é a estrutura do banco de dados aberto. +Você pode arrastar comandos SQL de uma linha e soltá-los em outras aplicações ou em outra instância do DB Browser para SQLite. + + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Alerta: esse pragma não é legível e esse valor foi inferido. Escrever o pragma pode sobrescrever um LIKE redefinido provido por uma extensão SQL. + + + + &Tools + Ferramen&tas + + + + Error Log + Log de erros + + + + This button clears the contents of the SQL logs + Esse botão limpa os logs do SQL + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Esse painel deixa você examinar um log de todos os comandos SQL dados pela aplicação ou por você + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Essa é a estrutura do banco de dados aberto. +Você pode arrastar múltiplos nomes de objetos da coluna Nome e largá-los no editor SQL e você pode ajustar as propriedades dos nomes largados usando o menu de contexto. Isso ajudaria você a compor comandos SQL. +Você pode arrastar comandos SQL da coluna Esquema e largá-los no editor SQL ou em outras aplicações. + + + + + + Project Toolbar + Barra de ferramentas do projeto + + + + Extra DB toolbar + Barra de ferramentas do banco de dados extra + + + + + + Close the current database file + Fechar o arquivo de banco de dados aberto + + + + This button closes the connection to the currently open database file + Esse botão fecha a conexão com o arquivo aberto + + + + Ctrl+F4 + + + + + Compact &Database... + Compactar banco de &dados... + + + + &About + &Sobre + + + + This button opens a new tab for the SQL editor + Esse botão abre uma nova aba para o editor SQL + + + + Execute all/selected SQL + Executar todo/selecionado SQL + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Esse botão executa o SQL selecionado. Se não existe SQL selecionado, todo o SQL é executado. + + + + &Load Extension... + &Carregar extensão... + + + + Execute line + Executar linha + + + + This button executes the SQL statement present in the current editor line + Esse botão executa o comando SQL presente na linha atual do editor + + + + &Wiki + &Wiki + + + + F1 + + + + + Bug &Report... + &Reportar bug... + + + + Feature Re&quest... + Re&quisitar feature... + + + + Web&site + &Site + + + + &Donate on Patreon... + &Doar no Patreon... + + + + Open &Project... + Abrir &projeto... + + + + &Attach Database... + &Anexar banco de dados... + + + + + Add another database file to the current database connection + Adiciona outro arquivo de banco de dados para a conexão atual + + + + This button lets you add another database file to the current database connection + Esse botão deixa você adicionar outro banco de dados para a conexão atual com o banco de dados + + + + &Set Encryption... + Definir en&criptação... + + + + This button saves the content of the current SQL editor tab to a file + Esse botão salva o conteúdo do editor SQL para um arquivo + + + + SQLCipher &FAQ + &FAQ do SQLCipher + + + + Table(&s) to JSON... + Tabela(&s) para JSON... + + + + Open Data&base Read Only... + Abrir &banco de dados somente leitura... + + + + Ctrl+Shift+O + + + + + Save results + Salvar resultados + + + + Save the results view + Salvar a vista de resultados + + + + This button lets you save the results of the last executed query + Esse botão deixa você salvar os resultados da última consulta executada + + + + + Find text in SQL editor + Encontrar texto no editor SQL + + + + Find + Encontrar + + + + This button opens the search bar of the editor + Esse botão abre a barra de busca do editor + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Encontrar ou substituir texto no editor SQL + + + + Find or replace + Encontrar ou substituir + + + + This button opens the find/replace dialog for the current editor tab + Esse botão abre o diálogo de encontrar/substituir para a aba atual do editor + + + + Ctrl+H + + + + + Export to &CSV + Exportar para &CSV + + + + Save as &view + Salvar como &vista + + + + Save as view + Salvar como vista + + + + Shows or hides the Project toolbar. + Mostra ou oculta a barra de ferramentos do Projeto. + + + + Extra DB Toolbar + Barra de ferramentas do banco de dados extra + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + Este botão lhe permite salvar todas as configurações associadas ao banco de dados aberto a um arquivo de projeto do DB Browser para SQLite + + + + This button lets you open a DB Browser for SQLite project file + Este botão lhe permite abrir um arquivo de projeto do DB Browser para SQLite + + + + New In-&Memory Database + Nova tabela em &memória + + + + Drag && Drop Qualified Names + Arrastar e soltar nomes qualificados + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Use nomes qualificados (p.e. "Tabela"."Campo") quando arrastando objetos e soltando eles no editor + + + + Drag && Drop Enquoted Names + Arrastar e soltar nomes entre áspas + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Use identificadores escapados (p.e. "Tabela1") quando arrastando e soltando objetos no editor + + + + &Integrity Check + Teste de &integridade + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Roda o teste de integridade sobre o banco de dados aberto e retorna os resultados na aba Executar SQL. + + + + &Foreign-Key Check + Teste de chave &estrangeira + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Roda o teste de chave estrangeira sobre o banco de dados aberto e retorna os resultados na aba Executar SQL + + + + &Quick Integrity Check + Teste de integridade &rápido + + + + Run a quick integrity check over the open DB + Roda um teste de integridade rápido sobre o banco de dados aberto + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Roda um outro pragma para a verificação de integridade do banco de dados. Faz quase tantos testes quando o outro PRAGMA mas executa muito mais rápido. + + + + &Optimize + &Otimizar + + + + Attempt to optimize the database + Tenta otimizar o banco de dados + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Roda o pragma de otimização sobre o banco de dados aberto. Esse pragma pode realizar otimizações que vão melhorar a performance de consultas futuras. + + + + + Print + Imprimir + + + + Print text from current SQL editor tab + Imprimir texto do editor SQL + + + + Open a dialog for printing the text in the current SQL editor tab + Abre um diálogo para imprimir o texto na aba atual do editor SQL + + + + Print the structure of the opened database + Imprime a estrutura do banco de dados aberto + + + + Open a dialog for printing the structure of the opened database + Abre um diálogo para imprimir a estrutura do banco de dados aberto + + + + Un/comment block of SQL code + Comentar bloco de SQL + + + + Un/comment block + Comentar bloco + + + + Comment or uncomment current line or selected block of code + Comentar ou remover comentário da linha ou bloco atualmente selecionado + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Comentar ou remover comentários das linhas selecionadas ou da linha atual, se não há seleção. Todo o bloco é alterado de acordo com a primeira linha. + + + + Ctrl+/ + + + + + Stop SQL execution + Parar execução do SQL + + + + Stop execution + Parar execução + + + + Stop the currently running SQL script + Parar o script de SQL atualmente executando + + + + &Save Project As... + &Salvar projeto como... + + + + + + Save the project in a file selected in a dialog + Salvar o projeto em um arquivo selecionado em um diálogo + + + + Save A&ll + Salvar &todos + + + + + + Save DB file, project file and opened SQL files + Salvar arquivo do BD, arquivo do projeto e arquivos SQL abertos + + + + Ctrl+Shift+S + + + + + Browse Table + Navegar tabelas + + + + In-Memory database + Banco de dados em memória + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + Você tem certeza de que deseja deletar a tabela '%1'? +Todos os dados associados com a tabela serão perdidos. + + + + Are you sure you want to delete the view '%1'? + Você tem certeza que deseja deletar a vista '%1'? + + + + Are you sure you want to delete the trigger '%1'? + Você tem certeza que deseja deletar o gatilho '%1'? + + + + Are you sure you want to delete the index '%1'? + Você tem certeza que deseja deletar o índice '%1'? + + + + Error: could not delete the table. + Erro: não pôde deletar a tabela. + + + + Error: could not delete the view. + Erro: não pôde deletar a vista. + + + + Error: could not delete the trigger. + Erro: não pôde deletar o gatilho. + + + + Error: could not delete the index. + Erro: não pôde deletar o índice. + + + + Message from database engine: +%1 + Mensagem do banco de dados: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Editar a tabela requer salvar todas as mudanças pendentes agora. +Você tem certeza que quer salvar o banco de dados? + + + + Edit View %1 + Editar vista %1 + + + + Edit Trigger %1 + Editar gatilho %1 + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Você já está executando comandos SQL. Você quer pará-los para executar os comandos atuais? Fechar o banco de dados agora pode deixá-lo em um estado inconsistente. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- EXECUTANDO SELEÇÃO EM '%1' +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- EXECUTANDO LINHA EM '%1' +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- EXECUTANDO TUDO EM '%1' +-- + + + + Opened '%1' in read-only mode from recent file list + Abiu '%1' em modo somente leitura a partir da lista de arquivos recentes + + + + Opened '%1' from recent file list + Abiu '%1' a partir da lista de arquivos recentes + + + + Project saved to file '%1' + Projeto salvo no arquivo '%1' + + + + This action will open a new SQL tab with the following statements for you to edit and run: + Esta ação abrirá uma nova aba SQL com os seguintes comandos para você editar e executar: + + + + Rename Tab + Renomear aba + + + + Duplicate Tab + Duplicar aba + + + + Close Tab + Fechar aba + + + + Opening '%1'... + Abrindo '%1'... + + + + There was an error opening '%1'... + Houve um erro abrindo '%1'... + + + + Value is not a valid URL or filename: %1 + Valor não é uma URL ou nome de arquivo válido: %1 + + + + %1 rows returned in %2ms + %1 linhas retornadas em %2 ms + + + + + At line %1: + Na linha %1: + + + + Result: %2 + Resultado: %2 + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Importação completa. Algumas chaves estrangeiras são violadas. Por favor corrija-as antes de salvar. + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (somente leitura) + + + + Open Database or Project + Abrir banco de dados ou projeto + + + + Attach Database... + Anexar banco de dados... + + + + Import CSV file(s)... + Importar arquivo(s) CSV... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Selecione a ação para aplicar ao %n arquivo dropado. <br/>Note que só 'Importar' vai processar mais de um arquivo. + Selecione a ação para aplicar aos %n arquivos dropados. <br/>Note que só 'Importar' vai processar mais de um arquivo. + + + + + Do you want to save the changes made to SQL tabs in a new project file? + Você quer salvar as mudanças feitas nas abas de SQL no arquivo de projeto? + + + + Do you want to save the changes made to the SQL file %1? + Você quer salvar as alterações feitas ao arquivo SQL %1? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + Os comandos nessa aba ainda estão executando. Fechar a aba vai parar a execução. Isso pode deixar o banco de dados em um estado inconsistente. Você tem certeza de que deseja fechar a aba? + + + + Could not find resource file: %1 + Não pôde encontrar o arquivo de recursos: %1 + + + + Choose a project file to open + Escolha um arquivo de projeto para abrir + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Esse arquivo de projeto está usando um formato de arquivo mais velho porque ele foi criado usando DB Browser para SQLite versão 3.10 ou menor. Esse arquivo é suportado mas nós aconselhamos converter todos os projetos para o novo formato de arquivos porque o suporte para arquivos antigos pode ser abandonado no futuro. Você pode converter seus arquivos simplesmente abrindo e salvando eles. + + + + Could not open project file for writing. +Reason: %1 + Não pôde abrir arquivo de projeto para a escrita. +Motivo: %1 + + + + Collation needed! Proceed? + Função de comparação necessária! Proceder? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Uma tabela nesse banco de dados requer uma função de comparação especial '%1' que esse aplicativo não pode prover. +So você optar por proceder, esteja avisado de que coisas ruins podem acontecer para o seu banco de dados. +Faça um backup! + + + + creating collation + criando função de comparação + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Defina um novo nome para a aba de SQL. Use o caractere '&&' para poder usar o seguinte caractere como um atalho de teclado. + + + + Please specify the view name + Por favor, especifique o nome da vista + + + + There is already an object with that name. Please choose a different name. + Já existe um objeto com esse nome. Por favor, escolha um nome diferente. + + + + View successfully created. + Vista criada com sucesso. + + + + Error creating view: %1 + Erro criando vista: %1 + + + + This action will open a new SQL tab for running: + Essa ação irá abrir uma nova aba SQL para rodar: + + + + Press Help for opening the corresponding SQLite reference page. + Pressione Help para abrir a página de referência SQL correspondente. + + + + Busy (%1) + Ocupado (%1) + + + + Error checking foreign keys after table modification. The changes will be reverted. + Erro verificando as chaves estrangeiras após modificação. Mudanças serão revertidas. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Essa tabela não passou um teste de chave estrangeira.<br/>Você deveria rodar 'Ferramentas | Teste de Chave Estrangeira| e corrigir os problemas reportados. + + + + NullLineEdit + + + Set to NULL + Definir como NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + Plotar + + + + Columns + Colunas + + + + X + X + + + + Line type: + Tipo da linha: + + + + + None + Nenhum + + + + Line + Linha + + + + StepLeft + Passo à esquerda + + + + StepRight + Passo à direita + + + + StepCenter + Passo centralizado + + + + Impulse + Impulso + + + + Point shape: + Ponto: + + + + Cross + Cruz + + + + Plus + Mais + + + + Circle + Círculo + + + + Disc + Disco + + + + Square + Quadrado + + + + Diamond + Diamante + + + + Star + Estrela + + + + Triangle + Triângulo + + + + TriangleInverted + Triângulo Invertido + + + + CrossSquare + Cruz Quadrado + + + + PlusSquare + Mais Quadrado + + + + CrossCircle + Cruz Círculo + + + + PlusCircle + Mais Círculo + + + + Peace + Paz + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Salvar plotagem atual...</p><p>Formato de arquivo definido pela extensão (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Salvar plotagem atual... + + + + + + Row # + Coluna # + + + + Choose a filename to save under + Escolha um nome de arquivo para salvar + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Todos os arquivos(*) + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>Esse painel mostra a lista de colunas da tabela atualmente exibida ou a consulta recém executada. Você pode selecionar as colunas que você quer que sejam utilizadas como os eixos X e Y para o painel de plotagem abaixo. A tabela mostra o tipo detectado de exio que será utilizado na plotagem. For o eixo Y você só pode selecionar colunas numéricas, mas para o eixo X você pode selecionar:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Data/Hora</span>: strings com o formato &quot;yyyy-MM-dd hh:mm:ss&quot; ou &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Data</span>: strings com o formato &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Hora</span>: strings com o formato &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Rótulo</span>: outros formatos de string. Selecionando essa coluna como X vai produzir um gráfico de barras com as colunas como rótulos para as barras</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numérico</span>: valores inteiros ou reais</li></ul><p>Clicando duas vezes nas células Y você pode mudar a cor usada para aquele gráfico.</p></body></html> + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + Tipo do eixo + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Aqui está um gráfico feito quando você seleciona os valores X e Y acima. + +Clique nos pontos para selecioná-los no gráfico e na tabela. Ctrl+Clique para selecionar um intervalo de pontos. + +Use o scroll do mouse para dar zoom e arraste o mouse para alterar o intervalo dos eixos. + +Selecione os eixos ou rótulos dos eixos para arrastar e dar zoom somente naquela orientação. + + + + + Load all data and redraw plot + Carregar todos os dados e plotar de novo + + + + Copy + Copiar + + + + Show legend + Mostrar legenda + + + + Stacked bars + Barras empilhadas + + + + Date/Time + Data/Hora + + + + Date + Data + + + + Time + Hora + + + + + Numeric + Numérico + + + + Label + Rótulo + + + + Invalid + Inválido + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Carregar todos os dados e plotar de novo. +Aviso: nem todos os dados foram obtidos da tabela ainda devido ao mecanismo de obtenção parcial. + + + + Choose an axis color + Escolher a cor do eixo + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + Existem curvas nesse gráfico e o estilo de linha selecionado só pode ser aplicado para gráficos ordenados por X. Ou ordene a tabela ou consulte por X para remover curvas ou selecione um dos estilos suportados por curvas: Nenhum ou Linha. + + + + Loading all remaining data for this table took %1ms. + Carregar os dados restantes para essa tabela levou %1ms. + + + + Print... + Imprimir... + + + + PreferencesDialog + + + Preferences + Configurações + + + + &General + &Geral + + + + Remember last location + Lembrar do último diretório + + + + Always use this location + Sempre usar esse diretório + + + + Remember last location for session only + Lembrar do último diretório somente nessa sessão + + + + + + ... + ... + + + + Default &location + Diretório &padrão + + + + Lan&guage + &Idioma + + + + Automatic &updates + &Atualizações automáticas + + + + + + + + + + + + enabled + ativado + + + + &Database + &Banco de dados + + + + Database &encoding + &Codificação do banco de dados + + + + Open databases with foreign keys enabled. + Abrir bancos de dados com chaves estrangeiras ativado. + + + + &Foreign keys + &Chaves estrangeiras + + + + Data &Browser + Navegador de &dados + + + + &SQL + &SQL + + + + Settings name + Settings name + + + + Context + Context + + + + Colour + Cor + + + + Bold + Negrito + + + + Italic + Itálico + + + + Underline + Underline + + + + Keyword + Palavra-chave + + + + Function + Função + + + + Table + Tabela + + + + Comment + Comentário + + + + Identifier + Identificador + + + + String + String + + + + Current line + Linha atual + + + + SQL &editor font size + Tamanho da fonte do &editor de SQL + + + + SQL editor &font + &Fonte do editor de SQL + + + + &Extensions + &Extensões + + + + Select extensions to load for every database: + Selecione extensões para carregar para todos os bancos de dados: + + + + Add extension + Adicionar extensão + + + + Remove extension + Remover extensão + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Embora suporte o operador REGEXP, SQLite não implementa expressões regulares mas recorre ao aplicativo em execução.<br/>DB Browser para SQLite implementa esse algoritmo para você poder utilizar REGEXP.<br/>Todavia, como existem múltiplas implementações possíveis desse algoritmo e você pode querer usar outra, você pode desativar a implementação do aplicativo e carregar a sua própria implementação através de uma extensão.<br/>Requer que o programa seja reiniciado.</p></body></html> + + + + Disable Regular Expression extension + Desativar extensão de expressões regulares + + + + + Choose a directory + Escolha um diretório + + + + The language will change after you restart the application. + A linguagem mudará após reiniciar o programa. + + + + Select extension file + Selecione arquivo de extensão + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Extensões(*.so *.dylib *.dll);;Todos os arquivos(*) + + + + Remove line breaks in schema &view + Remover quebras de linhas em &vista de esquema + + + + Prefetch block si&ze + &Tamanho de bloco de prefetch + + + + Default field type + Tipo padrão de campo + + + + Font + Fonte + + + + &Font + &Fonte + + + + NULL + NULL + + + + Regular + Regular + + + + Binary + Binário + + + + Background + Fundo + + + + Filters + Filtros + + + + Escape character + Caractere de escape + + + + Delay time (&ms) + Tempo de delay (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Definir o tempo de espera antes de aplicar um novo filtro de valor. Pode ser definido para zero para desativar espera. + + + + Tab size + Tamanho de tabulação + + + + Error indicators + Indicadores de erro + + + + Hori&zontal tiling + Disposição &horizontal + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Se ativados, o editor de SQL e a tabela de resultados são exibidos lado a lado em vez de um sobre o outro. + + + + Code co&mpletion + Co&mpletação de código + + + + Show remote options + Mostrar opções remotas + + + + SQ&L to execute after opening database + SQ&L para executar após abrir o banco de dados + + + + Content + Conteúdo + + + + Symbol limit in cell + Limite de símbolos na célula + + + + Threshold for completion and calculation on selection + Limite de compleção e cálculo em seleção + + + + Show images in cell + Mostrar imagens na célula + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Habilite essa opção para mostrar uma prévia de BLOBs contendo dados de imagens nas células. Isso pode afetar a performance do visualizados de dados. + + + + Remote + Remoto + + + + CA certificates + Certificados CA + + + + + Subject CN + Nome comum do sujeito + + + + Common Name + Nome comum + + + + Subject O + O do sujeito + + + + Organization + Organização + + + + + Valid from + Válido de + + + + + Valid to + Válido para + + + + + Serial number + Número serial + + + + Your certificates + Seus certificados + + + + File + Arquivo + + + + Subject Common Name + Nome comum do sujeito + + + + Issuer CN + CN do emissor + + + + Issuer Common Name + Nome Comum do emissor + + + + Import certificate file + Importar certificado + + + + No certificates found in this file. + Nem um certificado encontrado nesse arquivo. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Você tem certeza de que deseja remover esse certificado? Todos os dados do certificado serão deletados das configurações da aplicação! + + + + Clone databases into + Clonar bancos de dados em + + + + Toolbar style + Estilo da barra de ferramentas + + + + + + + + Only display the icon + Exibir apenas o ícone + + + + + + + + Only display the text + Exibir apenas o texto + + + + + + + + The text appears beside the icon + O texto aparece ao lado do ícone + + + + + + + + The text appears under the icon + O texto aparece sob o ícone + + + + + + + + Follow the style + Seguir o estilo + + + + DB file extensions + Extensões de arquivo de bancos de dados + + + + Manage + Gerenciar + + + + Main Window + Janela principal + + + + Database Structure + Estrutura do banco de dados + + + + Browse Data + Navegar dados + + + + Execute SQL + Executar SQL + + + + Edit Database Cell + Editar célula do banco de dados + + + + When this value is changed, all the other color preferences are also set to matching colors. + Quando este valor é alterado, todas as outras preferências de cor são definidas para cores compatíveis. + + + + Follow the desktop style + Seguir o estilo do desktop + + + + Dark style + Estilo escuro + + + + Application style + Estilo da aplicação + + + + This sets the font size for all UI elements which do not have their own font size option. + Isso define o tamanho da fonte para todos os elementos da interface que não possuem sua própria opção de tamanho de fonte. + + + + Font size + Tamanho da fonte + + + + Database structure font size + Tamanho da fonte da estrutura do banco de dados + + + + Font si&ze + &Tamanho da fonte + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Esse é o número máximo de itens permitidos para que algumas funcionalidades computacionalmente caras sejam habilitadas: +Número máximo de linhas em uma tabela para habilitar compleção de valores baseada nos valores atualmente na coluna. +Número máximo de índices em uma seleção para se calcular soma e média. +Pode ser deixado em 0 para se desabilitar as funcionalidades. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Esse é o número máximo de linhas na tabela para preencher baseado nos valores atualmente na coluna. +Pode ser 0 para desabilitar preenchimento. + + + + Field display + Exibição do campo + + + + Displayed &text + &Texto exibido + + + + + + + + + Click to set this color + Clique para definir essa cor + + + + Text color + Cor do texto + + + + Background color + Cor do plano de fundo + + + + Preview only (N/A) + Somente prévia (N/D) + + + + Foreground + Plano de frente + + + + SQL &results font size + Tamanho da fonte dos &resultados do SQL + + + + &Wrap lines + &Quebra de linhas + + + + Never + Nunca + + + + At word boundaries + Nos limites de palavras + + + + At character boundaries + Nos limites de caractere + + + + At whitespace boundaries + Nos limites de espaço em branco + + + + &Quotes for identifiers + Áspas &para identificadores + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Escolha as áspas utilizadas pela aplicação para identificadores no código SQL. + + + + "Double quotes" - Standard SQL (recommended) + "Áspas duplas" - SQL Padrão (recomendado) + + + + `Grave accents` - Traditional MySQL quotes + `Crases`- MySQL tradicional + + + + [Square brackets] - Traditional MS SQL Server quotes + [Colchetes] - MS SQL Server tradicional + + + + Keywords in &UPPER CASE + Palavras-chave em &CAIXA ALTA + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Quando definido, as palavras-chave SQL serão completadas em CAIXA ALTA. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Quando definido, as linhas de código SQL que causaram erros durante a última execução são destacadas e os resultados indicam os erros no fundo + + + + Close button on tabs + Botão para fechar abas + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + Se ativado, as abas do editor de SQL terão um botão para fechá-las. De qualquer forma, você pode usar o menu de contexto ou o atalho de teclado para fechá-las. + + + + Proxy + Proxy + + + + Configure + Configurar + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Você tem certeza que deseja limpar as configurações salvas? +Todas as suas preferências serão perdidas e os valores padrão serão utilizados. + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Quando ativado, as quebras de linha na coluna Esquema da aba Estrutura do banco de dados e nas saídas impressas são removidas. + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite provê uma função SQL para carregar extensões de um arquivo de biblioteca. Ative isso se você quer usar a função <span style=" font-style:italic;">load_extension()</span> a partir de código SQL.</p><p>Por motivos de segurança, carregamento de extensões é desabilitado por padrão e precisa ser habilitado através dessa configuração. Você sempre pode carregar extensões através da interface gráfica, mesmo com essa opção desabilitada.</p></body></html> + + + + Allow loading extensions from SQL code + Permitir o carregamento de extensões a partir de código SQL + + + + ProxyDialog + + + Proxy Configuration + Configuração do proxy + + + + Pro&xy Type + Tipo do pro&xy + + + + Host Na&me + No&me do host + + + + Port + Porta + + + + Authentication Re&quired + Au&tenticação necessária + + + + &User Name + Nome do &usuário + + + + Password + Senha + + + + None + Nenhum + + + + System settings + Configurações do sistema + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + Erro importando dados + + + + from record number %1 + a partir de registro número %1 + + + + . +%1 + . +%1 + + + + Cancel + Cancelar + + + + All files (*) + Todos arquivos (*) + + + + Importing CSV file... + Importando arquivo CSV... + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + Bancos de dados SQLite (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + Esquerda + + + + Right + Direita + + + + Center + Centro + + + + Justify + Justificar + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + Arquivos de banco de dados SQL (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + Arquivo de projeto DB Browser para SQLite (*.sqbpro) + + + + SQL Files (*.sql) + Arquivos SQL (*.sql) + + + + All Files (*) + Todos arquivos (*) + + + + Text Files (*.txt) + Arquivos de texto (*.txt) + + + + Comma-Separated Values Files (*.csv) + Arquivos de valores separados por vírgulas (*.csv) + + + + Tab-Separated Values Files (*.tsv) + Arquivos de valores separados por tabs (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Arquivos de valores separados por delimitadores (*.dsv) + + + + Concordance DAT files (*.dat) + Arquivos DAT Concordance (*.dat) + + + + JSON Files (*.json *.js) + Arquivos JSON (*.json) + + + + XML Files (*.xml) + Arquivos XML (*.xml) + + + + Binary Files (*.bin *.dat) + Arquivos binários (*.bin) + + + + SVG Files (*.svg) + Arquivos SVG (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Arquivos de dump hexadecimal (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + Extensões (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + ID do commit + + + + Message + Mensagem + + + + Date + Data + + + + Author + Autor + + + + Size + Tamanho + + + + Authored and committed by %1 + Autorado e cometido por %1 + + + + Authored by %1, committed by %2 + Autorado por %1, cometido por %2 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Erro abrindo lista local de bancos de dados. +%1 + + + + Error creating local databases list. +%1 + Erro criando lista local de bancos de dados. +%1 + + + + RemoteDock + + + Remote + Remoto + + + + Local + Local + + + + Identity + Identidade + + + + Push currently opened database to server + Enviar o banco de dados aberto para o servidor + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>Neste painel, bancos de dados remotos do dbhub.io podem ser adicionados ao DB Browser para SQLite. Primeiro você precisa adicionar uma identidade:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Entre no dbhub.io (use suas credenciais do GitHub ou algum outro método)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Clique o botão &quot;Gerar certificado do cliente&quot; (essa é sua identidade). Isto te dará um certificado (salve-o no disco local).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Vá para a aba Remoto nas configurações do DB Browser para SQLite. Clique no botão para adicionar um novo certificado ao DB Browser para SQLite e escolha o arquivo recém baixado.</li></ol><p>Agora o painel remoto mostra sua identidade e você pode adicionar bancos de dados remotos.</p></body></html> + + + + Current Database + Banco de dados atual + + + + Clone + Clonar + + + + User + Usuário + + + + Database + Banco de dados + + + + Branch + Ramo + + + + Commits + Commits + + + + Commits for + Commits para + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>Você está utilizando uma identidade somente leitura. Para fazer upload do seu banco de dados, você precisa configurar e usar a sua conta no DBHub.io.</p><p>Se você ainda não tem uma conta no DBHub, <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">crie uma agora</span></a> e importe seu certificado <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">aqui</span></a> para compartilhar os seus bancos de dados.</p><p>Para ajuda online, visite <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">este link</span></a>.</p></body></html> + + + + Back + Voltar + + + + Delete Database + Deletar banco de dados + + + + Delete the local clone of this database + Deletar o clone local desse banco de dados + + + + Open in Web Browser + Abrir no navegador Web + + + + Open the web page for the current database in your browser + Abrir a página da Web do banco de dados atual no seu navegador + + + + Clone from Link + Clonar a partir de um link + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + Use isso para baixar um banco de dados remoto para edição local usando uma URL encontrada na página na Web do banco de dados. + + + + Refresh + Atualizar + + + + Reload all data and update the views + Recarregar todos os dados e atualizar as vistas + + + + F5 + + + + + Clone Database + Clonar banco de dados + + + + Open Database + Abrir banco de dados + + + + Open the local copy of this database + Abrir a cópia local desse banco de dados + + + + Check out Commit + Ver commit + + + + Download and open this specific commit + Baixar e abrir esse commit específico + + + + Check out Latest Commit + Ver último commit + + + + Check out the latest commit of the current branch + Ver último commit do ramo atual + + + + Save Revision to File + Salvar revisão em arquivo + + + + Saves the selected revision of the database to another file + Salva a revisão selecionada do banco de dados em outro arquivo + + + + Upload Database + Fazer upload do banco de dados + + + + Upload this database as a new commit + Fazer upload desse banco de dados como um novo commit + + + + Select an identity to connect + Selecione uma identidade para se conectar + + + + Public + Público + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + Isso baixa um banco de dados de um servidor remoto para edição local. +Por favor ,entre a URL a partir da qual o clone será feito. Você pode gerar +essa URL clicando no botão 'Clone Database in DB4S' na página na Web +do banco de dados. + + + + Invalid URL: The host name does not match the host name of the current identity. + URL inválida: o nome do host não confere com o nome do host da identidade atual. + + + + Invalid URL: No branch name specified. + URL inválida: ramo não especificado. + + + + Invalid URL: No commit ID specified. + URL inválida: ID do commit não especificada. + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + Você modificou seu clone local do banco de dados. Obter esse commit sobrescreve essas mudanças locais. +Você tem certeza de que deseja continuar? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + O banco de dados tem mudanças não salvas. Você tem certeza de que deseja fazer o push antes de salvar? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + O banco de dados que você está tentando deletar está atualmente aberto. Por favor, feche-o antes de deletar. + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + Isso deleta a versão local desse banco de dados com todas as mudanças que você ainda não cometeu. Você tem certeza de que deseja deletar esse banco de dados? + + + + RemoteLocalFilesModel + + + Name + Nome + + + + Branch + Ramo + + + + Last modified + Última modificação + + + + Size + Tamanho + + + + Commit + Commit + + + + File + Arquivo + + + + RemoteModel + + + Name + Nome + + + + Last modified + Última modificação + + + + Size + Tamanho + + + + Size: + Tamanho: + + + + Last Modified: + Última modificação: + + + + Licence: + licença: + + + + Default Branch: + Ramo padrão: + + + + Commit + Commit + + + + RemoteNetwork + + + Choose a location to save the file + Escolha um lugar para salvar o arquivo + + + + Error opening remote file at %1. +%2 + Erro abrindo arquivo remoto em %1. +%2 + + + + Error: Invalid client certificate specified. + Erro: Certificado de cliente inválido especificado. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Por favor entre a frase chave para esse certificado de cliente para se autenticar. + + + + Cancel + Cancelar + + + + Uploading remote database to +%1 + Enviando banco de dados remoto para +%1 + + + + Downloading remote database from +%1 + Baixando banco de dados remoto de +%1 + + + + + Error: The network is not accessible. + Erro: A rede não é acessível. + + + + Error: Cannot open the file for sending. + Erro: Não pôde abrir o arquivo para envio. + + + + RemotePushDialog + + + Push database + Enviar banco de dados + + + + Database na&me to push to + No&me do banco de dados para enviar + + + + Commit message + Mensagem de commit + + + + Username + Nome de usuário + + + + Database licence + Licença do banco de dados + + + + Public + Público + + + + Database will be public. Everyone has read access to it. + Banco de dados será público. Todos poderão lê-lo. + + + + Database will be private. Only you have access to it. + Banco de dados será privado. Somente você terá acesso a ele. + + + + Branch + Ramo + + + + Force push + Forçar envio + + + + Use with care. This can cause remote commits to be deleted. + Use com cuidado. Isso pode causar a perda de commits remotos. + + + + RunSql + + + Execution aborted by user + Execução abortada pelo usuário + + + + , %1 rows affected + , %1 linhas afetadas + + + + query executed successfully. Took %1ms%2 + consulta executada com sucesso. Levou %1ms%2 + + + + executing query + executando consulta + + + + SelectItemsPopup + + + A&vailable + &Disponível + + + + Sele&cted + &Selecionado + + + + SqlExecutionArea + + + Form + Formulário + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>Resultados dos últimos comandos executados.</p><p>Você pode querer colapsar esse painel e usar o dock <span style=" font-style:italic;">Log SQL</span> com seleção <span style=" font-style:italic;">Usuário</span> em vez disso.</p></body></html> + + + + Results of the last executed statements + Resultados dos últimos comandos executados + + + + This field shows the results and status codes of the last executed statements. + Esse campo mostra os resultados e códigos de status dos últimos comandos executados. + + + + Find previous match [Shift+F3] + Encontrar resultado anterior [Shift+F3] + + + + Find previous match with wrapping + Encontrar resultado anterior com mapeamento + + + + Shift+F3 + + + + + The found pattern must be a whole word + O padrão encontrado precisa ser uma palavra inteira + + + + Whole Words + Palavras inteiras + + + + Text pattern to find considering the checks in this frame + Padrão de texto para encontrar considerando os testes nesse frame + + + + Find in editor + Encontrar no editor + + + + The found pattern must match in letter case + O padrão encontrado precisa casar em capitalização + + + + Case Sensitive + Sensível à capitalização + + + + Find next match [Enter, F3] + Encontrar próxima correspondência [Enter, F3] + + + + Find next match with wrapping + Encontrar próxima correspondência no arquivo inteiro + + + + F3 + + + + + Interpret search pattern as a regular expression + Interpretar padrão de busca como expressão regular + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Quando assinalado, o padrão a ser buscado é interpretado como uma expressão regular UNIX. Veja <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression nos Wikibooks</a>.</p></body></html> + + + + Regular Expression + Expressão Regular + + + + + Close Find Bar + Fechar barra de busca + + + + Couldn't read file: %1. + Não pôde ler arquivo: %1. + + + + + Couldn't save file: %1. + Não pôde salvar arquivo: %1. + + + + Your changes will be lost when reloading it! + Suas modificações serão perdidas quando recarregando! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + O arquivo "%1" foi modificado por outro programa. Você quer recarregá-lo?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) A função abs(X) retorna o valor absoluto do argumento numérico X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + + + + + (X) ltrim(X) removes spaces from the left side of X. + + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + + + + + (X) rtrim(X) removes spaces from the right side of X. + + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + + + + + (X) trim(X) removes spaces from both ends of X. + + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () O número de linhas dentro da partição atual. Linhas são numeradas de 1 na ordem definida pela cláusula ORDER BY na definição da janela, ou de forma arbitrária. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () O row_number() do primeiro elemento de cada grupo - o rank da linha atual com gaps. Se não há uma cláusula ORDER BY, então todas as linhas são consideradas elementos e essa função sempre retorna 1. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () O número do grupo de colegas da linha atual dentro da sua partição - o rank da linha atual sem intervalos. Partições são numeradas a partir de 1 na ordem definida pela cláusula ORDER BY na definição. Se não há ORDER BY, então todas as linhas são consideradas colegas e essa função sempre retorna 1. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () Apesar do nome, essa função sempre retorna um valor entre 0.0 e 1.0 igual a (rank - 1)/(linhas-na-partição - 1), onde rank é o valor retornado pela built-in rank() e linhas-na-partição é o número total de linhas na partição. Se a partição contém somente uma linha, essa função retorna 0. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () A distribuição cumulativa. Calculada como número-da-linha/linhas-na-partição em que número-da-linha é o valor retornado por row_number() para o último elemento do grupo e linhas-na-partição é o número de linhas na partição. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) Argumento N é interpretado como um inteiro. Essa função divide a partição em N grupos tão igualmente como possível e atribui um inteiro entre 1 e N para cada grupo, na ordem definida pela cláusula ORDER BY, ou em ordem arbitrária. Se necessário, grupos maiores ocorrem primeiro. Essa função retorna o valor inteiro atribuido ao grupo que a linha atual é parte de. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Retorna o resultado de avaliar expressão expr contra a linha anterior na partição. Ou, se não há linha anterior, NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) Se o offset é fornecido, então ele precisa ser um inteiro não-negativo. Nesse caso, o valor retornado é o resultado de avaliar expr contra a linha offset linhas antes da linha atual dentro da partição. Se offset é 0, então expr é avaliada contra a linha atual. Se não há linha offset linhas antes da linha atual, NULL é retornado. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) Se default também é fornecido, ele é retornado em vez de NULL se a linha identificada por offset não existe. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Retorna o resultado de avaliar a expressão expr contra a próxima linha na partição. Ou, se não há próxima linha, NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) Se o offset é fornecido, então ele precisa ser um inteiro não-negativo. Nesse caso, o valor retornado é o resultado de avaliar expr contra a linha offset linhas após a linha atual dentro da partição. Se offset é 0, então expr é avaliada contra a linha atual. Se não há linha offset linhas após a linha atual, NULL é retornado. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Essa função de janela built-in calcula o frame da janela para cada linha na mesma forma que uma função de janela agregada. Ela retorna o valor de expr avaliada contra a primeira linha do frame da janela para cada linha. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Essa função de janela built-in calcula o frame da janela para cada linha na mesma forma que uma função de janela agregada. Ela retorna o valor de expr avaliada contra a última linha do frame da janela para cada linha. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr) Essa função de janela built-in calcula o frame da janela para cada linha na mesma forma que uma função de janela agregada. Ela retorna o valor de expr avaliada contra a linha N do frame da janela para cada linha.Linhas são numeradas dentro do frame da janela começando em 1 na ordem definida pela cláusula ORDER BY se uma está presente, ou em ordem arbitrária, caso contrário. Se não há uma N-ésima linha na partição, NULL é retornado. + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) A função load_extension(X) carrega extensões para SQLite a partir de um arquivo chamado X. +Uso dessa função precisa ser autorizado em Preferências. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X,Y) A função load_extension(X) carrega extensões para SQLite a partir de um arquivo chamado X usando o ponto de entrada Y. +Uso dessa função precisa ser autorizado em Preferências. + + + + SqliteTableModel + + + Error changing data: +%1 + Erro modificando dados: +%1 + + + + reading rows + lendo linhas + + + + loading... + carregando... + + + + References %1(%2) +Hold %3Shift and click to jump there + Referencia %1(%2) +Segure %3Shift e clique para ir para lá + + + + retrieving list of columns + obtendo lista de colunas + + + + Fetching data... + Obtendo dados... + + + + + Cancel + Cancelar + + + + TableBrowser + + + Browse Data + Navegar dados + + + + &Table: + &Tabela: + + + + Select a table to browse data + Selecione uma tabela para navegar + + + + Use this list to select a table to be displayed in the database view + Use esta lista para selecionar uma tabela para ser exibida na vista do banco de dados + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Essa é a vista de tabela do banco de dados. Você pode fazer as seguintes ações: + - Começar a escrever para editar o valor. + - Clicar duas vezes em qualquer registro para editar seus conteúdos no editor de célula. + - Alt+Del para deletar o conteúdo da célula para NULL. + - Ctrl+" para duplicar o registro atual. + - Ctrl+' para copiar o valor da célula de cima. + - Seleção normal para copiar e colar. + + + + Text pattern to find considering the checks in this frame + Padrão de texto para encontrar considerando os testes nesse frame + + + + Find in table + Encontrar na tabela + + + + Find previous match [Shift+F3] + Encontrar resultado anterior [Shift+F3] + + + + Find previous match with wrapping + Encontrar resultado anterior com mapeamento + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Encontrar próxima correspondência [Enter, F3] + + + + Find next match with wrapping + Encontrar próxima correspondência com quebra de linha + + + + F3 + + + + + The found pattern must match in letter case + O padrão encontrado precisa casar em capitalização + + + + Case Sensitive + Sensível à capitalização + + + + The found pattern must be a whole word + O padrão encontrado precisa ser uma palavra inteira + + + + Whole Cell + Célula inteira + + + + Interpret search pattern as a regular expression + Interpretar padrão de busca como expressão regular + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>Quando marcado, o padrão para ser encontrado é interpretado como uma expressão regular do UNIX. Veja <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + Regular Expression + Expressão regular + + + + + Close Find Bar + Fechar barra de busca + + + + Text to replace with + Texto para substituir com + + + + Replace with + Substituir com + + + + Replace next match + Substituir próxima correspondência + + + + + Replace + Substituir + + + + Replace all matches + Substituir todas as correspondências + + + + Replace all + Substituir todos + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Rolar para o começo</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Clicar nesse botão navega até o começo da vista de tabela acima.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Rolar uma página para cima + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Clicando nesse botão navega uma página de registros para cima.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 de 0 + + + + Scroll one page downwards + Rolar uma página para baixo + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Clicando nesse botão navega uma página de registros para baixo.</p></body></html> + + + + > + > + + + + Scroll to the end + Rolar para o fim + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>Clicar nesse botão navega para o fim da tabela acima.</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Clique aqui para pular para o registro especificado</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Esse botão navega para o registro especificado na área Ir para.</p></body></html> + + + + Go to: + Ir para: + + + + Enter record number to browse + Entre o número do registro para navegar + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Digite o número de um registro nessa área e clique no botão Ir para: para exibir o registro na vista do banco de dados + + + + 1 + 1 + + + + Show rowid column + Mostrar coluna rowid + + + + Toggle the visibility of the rowid column + Alternar a visibilidade da coluna rowid + + + + Unlock view editing + Liberar edição da vista + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Isso libera a vista atual para edição. Todavia, você vai precisar dos gatilhos apropriados para editar. + + + + Edit display format + Editar formato de exibição + + + + Edit the display format of the data in this column + Editar o formato de exibição dos dados nessa coluna + + + + + New Record + Novo registro + + + + + Insert a new record in the current table + Inserir um novo registro na tabela atual + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Esse botão cria um novo registro no banco de dados. Segure o botão do mouse para abrir um menu de opções diferentes:</p><ul><li><span style=" font-weight:600;">Novo Registro</span>: insere um novo registro com valores padrão no banco de dados.</li><li><span style=" font-weight:600;">Inserir Valores...</span>: abre um diálogo para novos valores antes de serem inseridos no banco de dados. Isso permite a entrada de valores de acordo com as restrições. Esse diálogo também é abaerto se a opção<span style=" font-weight:600;">Novo Registro</span> falha devido a essas restrições.</li></ul></body></html> + + + + + Delete Record + Deletar registro + + + + Delete the current record + Deletar o registro atual + + + + + This button deletes the record or records currently selected in the table + Esse botão deleta o registro ou registros selecionados + + + + + Insert new record using default values in browsed table + Inserir novo registro usando valores padrão na tabela + + + + Insert Values... + Inserir valores... + + + + + Open a dialog for inserting values in a new record + Abre um diálogo para inserir valores em um novo registro + + + + Export to &CSV + Exportar para &CSV + + + + + Export the filtered data to CSV + Exportar dados filtrados para CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Esse botão exporta os dados da tabela como atualmente exibidos como um arquivo CSV. + + + + Save as &view + Salvar como &vista + + + + + Save the current filter, sort column and display formats as a view + Salva o filtro, ordenação e formato como uma vista + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Esse botão salva as configurações da tabela exibida como uma vista SQL que você pode utilizar em comandos SQL depois. + + + + Save Table As... + Salvar tabela como... + + + + + Save the table as currently displayed + Salva a tabela como atualmente exibida + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>Esse Menu provê as seguintes opções para a tabela atual:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Exportar para CSV: essa opção exporta os dados como estão exibidos para um arquivo CSV.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Salvar como vista: essa opção salva a configuração atual da tabela como uma vista SQL que você depois pode consultar em comandos SQL.</li></ul></body></html> + + + + Hide column(s) + Ocultar coluna(s) + + + + Hide selected column(s) + Ocultar coluna(s) selecionada(s) + + + + Show all columns + Mostrar todas as colunas + + + + Show all columns that were hidden + Mostrar todas as colunas ocultas + + + + + Set encoding + Definir codificação + + + + Change the encoding of the text in the table cells + Modificar a codificação do texto nas células da tabela + + + + Set encoding for all tables + Modificar codificação para todas as tabelas + + + + Change the default encoding assumed for all tables in the database + Modificar a codificação padrão assumida para todas as tabelas no banco de dados + + + + Clear Filters + Limpar filtros + + + + Clear all filters + Limpar todos os filtros + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Esse botão limpa todos os filtros definidos no cabeçalho para a tabela atualmente navegada. + + + + Clear Sorting + Limpar ordenamento + + + + Reset the order of rows to the default + Resetar a ordem das linhas para o padrão + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Esse botão limpa o ordenamento especificado para a tabela atual e volta para a ordem padrão. + + + + Print + Imprimir + + + + Print currently browsed table data + Imprimir dados da tabela atual + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Imprimir dados da tabela atual. Imprime a seleção se mais de uma célula está selecionada. + + + + Ctrl+P + + + + + Refresh + Atualizar + + + + Refresh the data in the selected table + Atualizar os dados na tabela selecionada + + + + This button refreshes the data in the currently selected table. + Este botão atualiza os dados na tabela atualmente selecionada. + + + + F5 + + + + + Find in cells + Encontrar em células + + + + Open the find tool bar which allows you to search for values in the table view below. + Abre a barra de ferramentas para buscar que permite que você busque por valores na vista da tabela abaixo. + + + + + Bold + Negrito + + + + Ctrl+B + + + + + + Italic + Itálico + + + + + Underline + Sublinhado + + + + Ctrl+U + + + + + + Align Right + Alinhar à direita + + + + + Align Left + Alinhar à esquerda + + + + + Center Horizontally + Centralizar horizontalmente + + + + + Justify + Justificar + + + + + Edit Conditional Formats... + Editar formatos condicionais... + + + + Edit conditional formats for the current column + Editar os formatos condicionais para a coluna atual + + + + Clear Format + Limpar formato + + + + Clear All Formats + Limpar todos os formatos + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Limpa toda a formatação das células selecionadas e todos os formatos condicionais das colunas selecionadas + + + + + Font Color + Cor do texto + + + + + Background Color + Cor do plano de fundo + + + + Toggle Format Toolbar + Alterar barra de ferramentas de formatação + + + + Show/hide format toolbar + Mostrar/esconder barra de ferramentas de formatação + + + + + This button shows or hides the formatting toolbar of the Data Browser + Esse botão mostra ou esconde a barra de ferramentas de formatação do navegador de dados + + + + Select column + Selecionar coluna + + + + Ctrl+Space + + + + + Replace text in cells + Substituir texto em células + + + + Filter in any column + Filtrar em qualquer coluna + + + + Ctrl+R + + + + + %n row(s) + + %n linha(s) + %n linhas + + + + + , %n column(s) + + , %n coluna(s) + , %n colunas + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Soma: %1; Média: %2; Mínimo: %3; Máximo: %4 + + + + Conditional formats for "%1" + Formatos condicionais para "%1" + + + + determining row count... + determinando número de linhas... + + + + %1 - %2 of >= %3 + %1 - %2 de >= %3 + + + + %1 - %2 of %3 + %1 - %2 de %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Por favor, entre uma pseudo-chave primária para habilitar edição nessa vista. Isso deveria ser o nome de uma coluna única na vista. + + + + Delete Records + Deletar registros + + + + Duplicate records + Duplicar registros + + + + Duplicate record + Duplicar registro + + + + Ctrl+" + + + + + Adjust rows to contents + Ajustar linhas aos conteúdos + + + + Error deleting record: +%1 + Erro deletando registro: +%1 + + + + Please select a record first + Por favor, selecione um registro primeiro + + + + There is no filter set for this table. View will not be created. + Não há filtro para essa tabela. Vista não será criada. + + + + Please choose a new encoding for all tables. + Por favor, escolha uma nova codificação para todas tabelas. + + + + Please choose a new encoding for this table. + Por favor, escolha uma nova codificação para essa tabela. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Deixe o campo em branco para usar a codificação do banco de dados. + + + + This encoding is either not valid or not supported. + Essa codificação é inválida ou não suportada. + + + + %1 replacement(s) made. + %1 substituição(ões) feita(s). + + + + VacuumDialog + + + Compact Database + Compactar banco de dados + + + + Warning: Compacting the database will commit all of your changes. + Alerta: compactando o banco de dados irá confirmar todas as suas modificações. + + + + Please select the databases to co&mpact: + Por favor selecione o banco de dados para co&mpactar: + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_ru.qm b/src/SqliteDBProcess/src/translations/sqlb_ru.qm new file mode 100644 index 0000000..37b587a Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_ru.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_ru.ts b/src/SqliteDBProcess/src/translations/sqlb_ru.ts new file mode 100644 index 0000000..2942de8 --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_ru.ts @@ -0,0 +1,6996 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + О программе Обозреватель для SQLite + + + + Version + Версия + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>Обозреватель для SQLite - это бесплатная программа, с открытым исходным кодом, предназначенная для создания и редактирования баз данных SQLite.</p><p>Программа лицензирована по двум лицензиям: Mozilla Public License Version 2 и GNU General Public License Version 3 or later. Можно изменять или распространять её на условиях этих лицензий.</p><p>Лицензии можно просмотреть по ссылкам <a href="http://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#0000ff;">http://www.gnu.org/licenses/gpl.html</span></a> и <a href="https://www.mozilla.org/MPL/2.0/index.txt"><span style=" text-decoration: underline; color:#0000ff;">https://www.mozilla.org/MPL/2.0/index.txt</span></a>.</p><p>Дополнительную информацию о программе можно узнать на веб-сайте:<br/><a href="https://sqlitebrowser.org"><span style=" text-decoration: underline; color:#0000ff;">https://sqlitebrowser.org</span></a></p><p><span style=" font-size:small;">Это программное обеспечение использует GPL/LGPL Qt Toolkit </span><a href="http://qt-project.org/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>Условия лицензии на Qt Toolkit </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;">.</span></p><p><span style=" font-size:small;">Эта программа также использует набор иконок Silk от Марка Джеймса (Mark James), лицензированный под лицензией Creative Commons Attribution 2.5 and 3.0.<br/>Подробная информация по адресу </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small; text-decoration: underline; color:#0000ff;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;">.</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + Добавить Новую Запись + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Введите значения для новой записи с учетом ограничений. Поля, выделенные жирным шрифтом, являются обязательными. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + В столбце "Значение" вы можете указать значение для поля, указанного в столбце "Имя". В столбце "Тип" указывается тип поля. Значения по умолчанию отображаются в том же стиле, что и значения NULL. + + + + Name + Имя + + + + Type + Тип + + + + Value + Значение + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Значения для вставки. Предварительно заполненные значения по умолчанию вставляются автоматически, если они не изменены. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Когда вы редактируете значения в верхнем фрейме, здесь отображается запрос SQL для вставки этой новой записи. Вы можете вручную отредактировать запрос перед сохранением. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Сохранение</span> отправит показанный оператор SQL в БД для вставки новой записи.</p><p><span style=" font-weight:600;">Восстановить значения по умолчанию</span> восстановит исходные значения в колонке <span style=" font-weight:600;">Значение</span>.</p><p><span style=" font-weight:600;">Отмена</span> закрывает этот диалог без выполнения запросов.</p></body></html> + + + + Auto-increment + + Авто-увеличение + + + + + Unique constraint + + Уникальнось + + + + + Check constraint: %1 + + Проверка: %1 + + + + + Foreign key: %1 + + Внешний ключ: %1 + + + + + Default value: %1 + + Значение по умолчанию: %1 + + + + + Error adding record. Message from database engine: + +%1 + Ошибка добавления записи. Сообщение из базы данных: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Вы действительно хотите восстановить все введенные значения по умолчанию? + + + + Application + + + Possible command line arguments: + + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + + + + + The file %1 does not exist + + + + + The -t/--table option requires an argument + + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + + + + + Invalid option/non-existant file: %1 + + + + + SQLite Version + Версия SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + + + + + Qt Version %1 + + + + + CipherDialog + + + SQLCipher encryption + Шифрование SQLCipher + + + + &Password + &Пароль + + + + &Reenter password + Пароль &ещё раз + + + + Encr&yption settings + + + + + SQLCipher &3 defaults + + + + + SQLCipher &4 defaults + + + + + Custo&m + + + + + Page si&ze + Размер &страницы + + + + &KDF iterations + + + + + HMAC algorithm + + + + + KDF algorithm + + + + + Plaintext Header Size + + + + + Passphrase + Фраза + + + + Raw key + Ключ + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Пожалуйста укажите ключ шифрования. +Если вы измените какую-либо опциональную настройку, то ее нужно будет вводить при каждом открытии этого файла базы данных. +Оставьте пароль пустым если шифрование не требуется. +Процесс может занять некоторое время и настоятельно рекомендуем создать резервную копию перед продолжением! Не сохраненные изменения автоматически будут сохранены. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Пожалуйста введите ключ для шифрования базы данных. +Если любые другие настройки были изменены для данной базы данный то нужно так же предоставить данную информацию. + + + + ColumnDisplayFormatDialog + + + Choose display format + Выберите формат отображения + + + + Display format + Формат отображения + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Выберите формат отображения для колонки '%1', который будет применен к каждому ее значению. + + + + Default + По умолчанию + + + + Decimal number + Десятичное число + + + + Exponent notation + Экспоненциальная запись + + + + Hex blob + Бинарные данные + + + + Hex number + Шестнадцатеричное число + + + + Apple NSDate to date + Apple NSDate дата + + + + Java epoch (milliseconds) to date + Java epoch дата + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + Юлианская дата + + + + Unix epoch to local time + Unix-время + + + + Date as dd/mm/yyyy + Дата в формате дд/мм/гггг + + + + Lower case + Нижний регистр + + + + Custom display format must contain a function call applied to %1 + + + + + Error in custom display format. Message from database engine: + +%1 + + + + + Custom display format must return only one column but it returned %1. + + + + + Octal number + Восьмеричное число + + + + Round number + Округленное число + + + + Unix epoch to date + Unix-дата + + + + Upper case + Верхний регистр + + + + Windows DATE to date + Windows дата + + + + Custom + Мой формат + + + + CondFormatManager + + + Conditional Format Manager + + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + + + + + Add new conditional format + + + + + &Add + &Добавить + + + + Remove selected conditional format + + + + + &Remove + &Удалить + + + + Move selected conditional format up + + + + + Move &up + + + + + Move selected conditional format down + + + + + Move &down + + + + + Foreground + Передний план + + + + Text color + Цвет текста + + + + Background + Фон + + + + Background color + Цвет фона + + + + Font + Шрифт + + + + Size + Размер + + + + Bold + Жирный + + + + Italic + Курсив + + + + Underline + Подчёркивание + + + + Alignment + + + + + Condition + + + + + + Click to select color + + + + + Are you sure you want to clear all the conditional formats of this field? + + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + + + + + Invalid file format + Ошибочный формат файла + + + + Do you want to save the changes made to the database file %1? + Сохранить сделанные изменения в файле базы данных %1? + + + + Exporting database to SQL file... + Экспорт базы данных в файл SQL... + + + + + Cancel + Отменить + + + + Executing SQL... + Выполнить код SQL... + + + + Action cancelled. + Действие отменено. + + + + This database has already been attached. Its schema name is '%1'. + Эта БД уже присоединена. Имя ее схемы - '%1'. + + + + Do you really want to close this temporary database? All data will be lost. + Вы действительно хотите закрыть эту временную БД? Все данные будут потеряны. + + + + Database didn't close correctly, probably still busy + + + + + The database is currently busy: + БД занята: + + + + Do you want to abort that other operation? + Вы хотите отменить эту операцию? + + + + + No database file opened + Файл БД не открыт + + + + + Error in statement #%1: %2. +Aborting execution%3. + Ошибка в выражении #%1: %2. +Прерываем выполнение%3. + + + + + and rolling back + и отменяем + + + + didn't receive any output from %1 + + + + + could not execute command: %1 + + + + + Cannot delete this object + Не удается удалить этот объект + + + + Cannot set data on this object + Невозможно назначить данные для этого объекта + + + + + A table with the name '%1' already exists in schema '%2'. + Таблица с именем '%1' уже существует в схеме '%2'. + + + + No table with name '%1' exists in schema '%2'. + + + + + + Cannot find column %1. + + + + + Creating savepoint failed. DB says: %1 + + + + + Renaming the column failed. DB says: +%1 + + + + + + Releasing savepoint failed. DB says: %1 + + + + + Creating new table failed. DB says: %1 + + + + + Copying data to new table failed. DB says: +%1 + + + + + Deleting old table failed. DB says: %1 + + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + + + + + could not get list of db objects: %1 + + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + Ошибка восстановления некоторых объектов, ассоциированных с этой таблицей. Наиболее вероятная причина этого - изменение имён некоторых столбцов таблицы. Вот SQL оператор, который нужно исправить и выполнить вручную: + + + + + + could not get list of databases: %1 + не могу получить список БД: %1 + + + + Error loading extension: %1 + Ошибка загрузки расширения: %1 + + + + could not get column information + не могу полчить информацию о колонке + + + + Error setting pragma %1 to %2: %3 + Ошибка установки прагмы %1 в %2: %3 + + + + File not found. + Файл не найден. + + + + DbStructureModel + + + Name + Имя + + + + Object + Объект + + + + Type + Тип + + + + Schema + Схема + + + + Database + База данных + + + + Browsables + Просматриваемые + + + + All + Все + + + + Temporary + Временный + + + + Tables (%1) + Таблицы (%1) + + + + Indices (%1) + Индексы (%1) + + + + Views (%1) + Представления (%1) + + + + Triggers (%1) + Триггеры (%1) + + + + EditDialog + + + Edit database cell + Редактирование ячейки базы данных + + + + Mode: + Режим: + + + + + Image + Изображение + + + + Set as &NULL + Присвоить &NULL + + + + Apply data to cell + Применить данные к ячейке + + + + This button saves the changes performed in the cell editor to the database cell. + Нажав эту кнопку, вы сохраните изменения произведенные в этом редакторе, в соответствующую ячейку БД. + + + + Apply + Применить + + + + Text + Текст + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Это список поддерживаемых режимов. Выбирете режим для просмотра или редактирования данных текущей ячейки. + + + + RTL Text + + + + + Binary + Двоичные данные + + + + JSON + + + + + XML + + + + + + Automatically adjust the editor mode to the loaded data type + Автоматически подбор режима редактора на основе данных + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Эта кнопка позволяет включать или отключать автоматическое переключение режима редактора. Когда выбрана новая ячейка или импортированы новые данные, а автоматическое переключение включено, режим настраивается на обнаруженный тип данных. Вы можете вручную изменить режим редактора. Если вы хотите сохранить этот режим ручного переключения при перемещении по ячейкам, выключите кнопку. + + + + Auto-switch + Автопереключение + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + + + + + Open preview dialog for printing the data currently stored in the cell + + + + + Auto-format: pretty print on loading, compact on saving. + Автоматическое форматирование: стилистическое форматирование при загрузке, компактность - при сохранении. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Когда включено, функция автоматического форматирования форматирует данные по загрузке, разбивая текст в строках и отступы для максимальной читаемости. При сохранении данных функция автоматического форматирования объединяет данные, удаляющие конец строк, и ненужные пробелы. + + + + Word Wrap + + + + + Wrap lines on word boundaries + + + + + + Open in default application or browser + + + + + Open in application + + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + + + + + Save file reference... + + + + + Save reference to file + + + + + + Open in external application + + + + + Autoformat + Автоформатирование + + + + &Export... + + + + + + &Import... + + + + + + Import from file + Импортировать из файла + + + + + Opens a file dialog used to import any kind of data to this database cell. + Открывает диалоговое окно файла, используемое для импорта любых данных в эту ячейку базы данных. + + + + Export to file + Экспортировать в файл + + + + Opens a file dialog used to export the contents of this database cell to a file. + Открывает диалоговое окно файла, используемое для экспорта содержимого этой ячейки базы данных в файл. + + + + Erases the contents of the cell + Очищается содержимое ячейки + + + + This area displays information about the data present in this database cell + Эта область отображает информацию о данных, находящихся в этой ячейке базы данных + + + + Type of data currently in cell + Тип данных в ячейке + + + + Size of data currently in table + Размер данных в таблице + + + + + Print... + Печать... + + + + Open preview dialog for printing displayed image + Открыть диалоговое окно предварительного просмотра для печати отображаемого изображения + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Открыть диалоговое окно предварительного просмотра для печати отображаемого текста + + + + Copy Hex and ASCII + Копировать HEX и ASCII + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Копировать выбранные HEX и ASCII столбцы в буфер обмена + + + + Ctrl+Shift+C + + + + + Choose a filename to export data + Выбрать имя файла для экспорта данных + + + + Type of data currently in cell: %1 Image + Тип данных в ячейке: %1 Изображение + + + + %1x%2 pixel(s) + %1x%2 пикселей + + + + Type of data currently in cell: NULL + Тип данных в ячейке: NULL + + + + + Type of data currently in cell: Text / Numeric + Тип данных в ячейке: Текст / Числовое + + + + + Image data can't be viewed in this mode. + Изображение не может быть отображено в этом режиме. + + + + + Try switching to Image or Binary mode. + Попробуйте переключиться в Бинарный режим или режим Изображения. + + + + + Binary data can't be viewed in this mode. + Бинарные данные не могут быть отображены в этом режиме. + + + + + Try switching to Binary mode. + Попробуйте переключиться в Бинарный режим. + + + + Couldn't save file: %1. + Не удалось сохранить файл:%1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + + + + + + Image files (%1) + Файлы изображений (%1) + + + + Binary files (*.bin) + Бинарные файлы (*.bin) + + + + Choose a file to import + Выбрать файл для импорта + + + + %1 Image + %1 Изображение + + + + Invalid data for this mode + Ошибочные данные для этого режима + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + Ячейка содержит ошибочные %1 данные. Причина: %2. Вы действительно хотите применить их? + + + + + + %n character(s) + + %n символ + %n символа + %n символов + + + + + Type of data currently in cell: Valid JSON + Тип данных в ячейке: JSON + + + + Type of data currently in cell: Binary + Тип данных в ячейке: Двоичные данные + + + + + %n byte(s) + + %n байт + %n байта + %n байтов + + + + + EditIndexDialog + + + &Name + &Имя + + + + Order + Сортировка + + + + &Table + &Таблица + + + + Edit Index Schema + Редактирование Индекса + + + + &Unique + &Уникальный + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Для ограничения индекса только частью таблицы вы можете указать здесь выражение WHERE, которое выбирает часть таблицы, которая должна быть проиндексирована + + + + Partial inde&x clause + &Частичный индекс + + + + Colu&mns + &Колонки + + + + Table column + Колонка таблицы + + + + Type + Тип + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Добавить новое колоночное-выражение в индекс. Колоночное выражение может содержкать SQL выражения вместо имен колонок. + + + + Index column + Колонка индекса + + + + Deleting the old index failed: +%1 + Удаление старого индекса завершилось с ошибкой: +%1 + + + + Creating the index failed: +%1 + Ошибка создания индекса: +%1 + + + + EditTableDialog + + + Edit table definition + Редактирование определения таблицы + + + + Table + Таблица + + + + Advanced + Дополнительно + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Чтобы создать таблицу 'без rowid', нужно чтобы в ней был INTEGER первичный ключ с отключенным автоинкрементом. + + + + Without Rowid + Без rowid + + + + Database sche&ma + + + + + Fields + Поля + + + + Add + + + + + Remove + + + + + Move to top + + + + + Move up + + + + + Move down + + + + + Move to bottom + + + + + + Name + Имя + + + + + Type + Тип + + + + NN + НП + + + + Not null + Не пустое (null) + + + + PK + ПК + + + + Primary key + Первичный ключ + + + + AI + АИ + + + + Autoincrement + Автоинкремент + + + + U + У + + + + + + Unique + Уникальное + + + + Default + По умолчанию + + + + Default value + Значение по умолчанию + + + + + + Check + Проверить + + + + Check constraint + Проверить ограничение + + + + Collation + + + + + + + Foreign Key + Внешний ключ + + + + Constraints + + + + + Add constraint + + + + + Remove constraint + + + + + Columns + Столбцы + + + + SQL + + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Внимание: </span>В описании этой таблицы есть что-то, что наш парсер не понимает. Модификация и сохрание этой таблицы может породить проблемы.</p></body></html> + + + + + Primary Key + + + + + Add a primary key constraint + + + + + Add a foreign key constraint + + + + + Add a unique constraint + + + + + Add a check constraint + + + + + Error creating table. Message from database engine: +%1 + Ошибка создания таблицы. Сообщение от движка базы данных: %1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Поле с таким именем уже существует. Пожалуйста переименуйте его, либо выберите другое имя для данного поля. + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + На данную колонку ссылкается внешний ключ в таблице %1, поэтому ее имя не может быть изменено. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Существует по крайней мере одна строка, где это поле установлено в NULL. Установить этот флаг нельзя. Сначала измените данные таблицы. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Существует по крайней мере одна строка, где это поле содержит нечисловое значение. Установить флаг АИ нельзя. Сначала измените данные таблицы. + + + + Column '%1' has duplicate data. + + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Удалить поле '%1'? +Все данные, которые в настоящий момент сохранены в этом поле, будут потеряны. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Перед тем как применять флаг без rowid, пожалуйста убедитесь, что существует столбец, который: + - является первичный ключом + - для него отключен автоинкремент + + + + ExportDataDialog + + + Export data as CSV + Экспортировать данные в формате CSV + + + + Tab&le(s) + &Таблицы + + + + Colu&mn names in first line + &Имена столбцов в первой строке + + + + Fie&ld separator + &Разделитель полей + + + + , + , + + + + ; + ; + + + + Tab + Табуляция + + + + | + | + + + + + + Other + Другой + + + + &Quote character + &Символ кавычки + + + + " + " + + + + ' + ' + + + + New line characters + Разделитель строк + + + + Windows: CR+LF (\r\n) + + + + + Unix: LF (\n) + + + + + Pretty print + Красивый вывод + + + + + Could not open output file: %1 + Не удалось открыть выходной файл: %1 + + + + + Choose a filename to export data + Выберите имя файла для экспорта данных + + + + Export data as JSON + Экспортировать данные как JSON + + + + exporting CSV + экспортирование CSV + + + + exporting JSON + экспортирование JSON + + + + Please select at least 1 table. + Пожалуйста, выберите хотя бы одну таблицу. + + + + Choose a directory + Выберать каталог + + + + Export completed. + Экспорт завершён. + + + + ExportSqlDialog + + + Export SQL... + Экспорт SQL.... + + + + Tab&le(s) + &Таблицы + + + + Select All + Выбрать все + + + + Deselect All + Отменить выбор + + + + &Options + &Опции + + + + Keep column names in INSERT INTO + Имя столбцов в выражении INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Несколько строк (VALUES) на INSERT выражение + + + + Export everything + Экспортировать все + + + + Export data only + Экспортировать только данные + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Проверять существоватние таблицы (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Удалять старую таблицу перед созданием (DROP TABLE, затем CREATE TABLE) + + + + Export schema only + Экспортировать только схему данных + + + + Please select at least one table. + Пожалуйста, выберите хотя бы одну таблицу. + + + + Choose a filename to export + Выберите имя файла для экспорта + + + + Export completed. + Экспорт завершён. + + + + Export cancelled or failed. + Экспорт отменён или возникли ошибки. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + + + + + Find and Replace... + Найти и Заменить... + + + + Print... + Печать... + + + + ExtendedTableWidget + + + Use as Exact Filter + Использовать как Точный Фильтр + + + + Containing + Содержит + + + + Not containing + + + + + Not equal to + Не равно + + + + Greater than + Больше чем + + + + Less than + Меньше чем + + + + Greater or equal + Больше или равно + + + + Less or equal + Меньше или равно + + + + Between this and... + Между этим и... + + + + Regular expression + + + + + Edit Conditional Formats... + + + + + Set to NULL + Сбросить в NULL + + + + Copy + Копировать + + + + Copy with Headers + Копировать с заголовками + + + + Copy as SQL + Копировать как SQL + + + + Paste + Вставить + + + + Print... + Печать... + + + + Use in Filter Expression + Использовать в Выражении Фильтра + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + Содержимое буфера обмена больше чем выделенный диапозон. +Все равно вставить? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + + + + + FileExtensionManager + + + File Extension Manager + Менеджер расширения файлов + + + + &Up + &Выше + + + + &Down + &Ниже + + + + &Add + &Добавить + + + + &Remove + &Удалить + + + + + Description + Описание + + + + Extensions + Расширения + + + + *.extension + + + + + FilterLineEdit + + + Filter + Фильтр + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + + + + + Clear All Conditional Formats + + + + + Use for Conditional Format + + + + + Edit Conditional Formats... + + + + + Set Filter Expression + Установить Выражение Фильтра + + + + What's This? + Что Это? + + + + Is NULL + NULL + + + + Is not NULL + не NULL + + + + Is empty + пусто + + + + Is not empty + не пусто + + + + Not containing... + + + + + Equal to... + Равно... + + + + Not equal to... + Не равно... + + + + Greater than... + Больше чем... + + + + Less than... + Меньше чем... + + + + Greater or equal... + Больше или равно... + + + + Less or equal... + Меньше или равно... + + + + In range... + В диапазоне... + + + + Regular expression... + + + + + FindReplaceDialog + + + Find and Replace + Поиск и Замена + + + + Fi&nd text: + &Текст для поиска: + + + + Re&place with: + Текст для &замены: + + + + Match &exact case + Учитывать &регистр + + + + Match &only whole words + Слова &целиком + + + + When enabled, the search continues from the other end when it reaches one end of the page + Когда отмечено, поиск продолжается с другого конца, когда он достигает противоположного конца страницы + + + + &Wrap around + &Закольцевать + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Когда отмечено, поиск возвращается назад из положения курсора, в противном случае он идет вперед + + + + Search &backwards + Искать в &обратном порядке + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + + + + + &Selection only + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>При проверке шаблон для поиска интерпретируется как регулярное выражение UNIX. <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Узнать больше о Регулярных выражениях на Wikibooks.org</a>.</p></body></html> + + + + Use regular e&xpressions + &Регулярные выражения + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + Найдите следующее вхождение из позиции курсора и в направлении, заданном "Искать назад" + + + + &Find Next + Искать &дальше + + + + F3 + + + + + &Replace + &Замена + + + + Highlight all the occurrences of the text in the page + Выделить все вхождения текста на странице + + + + F&ind All + Найти &все + + + + Replace all the occurrences of the text in the page + Заменить все вхождения текста на странице + + + + Replace &All + За&менить все + + + + The searched text was not found + Искомый текст не найден + + + + The searched text was not found. + Искомый текст не найден. + + + + The searched text was found one time. + Искомый текст найден один раз. + + + + The searched text was found %1 times. + Искомый текст найден %1 раз. + + + + The searched text was replaced one time. + Искомый текст заменен один раз. + + + + The searched text was replaced %1 times. + Искомый текст заменен %1 раз. + + + + ForeignKeyEditor + + + &Reset + &Сброс + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Условия (ON UPDATE, ON DELETE и т.д.) + + + + ImportCsvDialog + + + Import CSV file + Импортировать файл в формате CSV + + + + Table na&me + &Имя таблицы + + + + &Column names in first line + И&мена столбцов в первой строке + + + + Field &separator + &Разделитель полей + + + + , + + + + + ; + + + + + + Tab + Табуляция + + + + | + + + + + Other + Другой + + + + &Quote character + &Символ кавычки + + + + + Other (printable) + + + + + + Other (code) + + + + + " + + + + + ' + + + + + &Encoding + &Кодировка + + + + UTF-8 + + + + + UTF-16 + + + + + ISO-8859-1 + + + + + Trim fields? + Обрезать поля? + + + + Separate tables + Отдельные таблицы + + + + Advanced + Дополнительно + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + При импорте пустого значения из файла CSV в существующую таблицу для столбца с указанным значением по умолчанию оно будет вставлено. Активируйте эту опцию, чтобы вместо этого вставить пустое значение. + + + + Ignore default &values + Игнорировать значение &по-умолчанию + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Активируйте эту опцию чтобы прекратить импорт при попытке импорта пустого значения в NOT NULL колонку без значения по-умолчанию. + + + + Fail on missing values + Ошибка при отсутствии значений + + + + Disable data type detection + Отключить определение типа данных + + + + Disable the automatic data type detection when creating a new table. + Отключить автоматическое определение типа при создании новой таблицы. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + + + + + Abort import + + + + + Ignore row + + + + + Replace existing row + + + + + Conflict strategy + + + + + + Deselect All + Отменить Выбор + + + + Match Similar + Найти Совпадения + + + + Select All + Выбрать Все + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + Уже существует таблица с именем '%1' и импорт в существующую таблицу возможен, только если число столбцов совпадает. + + + + There is already a table named '%1'. Do you want to import the data into it? + Уже существует таблица с именем '%1'. Вы хотите импортировать данные в нее? + + + + Creating restore point failed: %1 + Ошибка сознания точки восстановления: %1 + + + + Creating the table failed: %1 + Ошибка создания таблицы: %1 + + + + importing CSV + импортирование CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + Импорт файла '%1' занял %2мс. Из них %3мс было потрачено в функции строки. + + + + Inserting row failed: %1 + Ошибка вставки строки: %1 + + + + MainWindow + + + DB Browser for SQLite + Обозреватель для SQLite + + + + toolBar1 + панельИнструментов1 + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Предупреждение: эта прагма не читается, и это значение было выведено. Применение прагмы может перезаписать переопределенный LIKE, предоставляемый расширением SQLite. + + + + &Tools + &Инструменты + + + + Error Log + + + + + This button clears the contents of the SQL logs + Эта кнопка очищает содержимое журналов SQL + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Эта панель позволяет вам просматривать журнал всех SQL-команд, выданных приложением или вами + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Это структура открытой БД. +Вы можете перетащить несколько имен объектов из столбца "Имя" и отбросить их в редактор SQL, и вы можете настроить свойства сброшенных имен с помощью контекстного меню. Это поможет вам при составлении SQL-инструкций. +Вы можете перетаскивать операторы SQL из столбца "Схема" и переносить их в редактор SQL или в другие приложения. + + + + + + Project Toolbar + Панель Инструментов Проекта + + + + Extra DB toolbar + Дополнительная Панель Инструментов БД + + + + + + Close the current database file + Закрыть файл текущей БД + + + + Ctrl+F4 + + + + + &About + О &программе + + + + This button opens a new tab for the SQL editor + Эта кнопка открывает новую вкладку для редактора SQL + + + + Execute all/selected SQL + Выполнить все/выбранный SQL + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Эта кнопка выполняет текущие выбранные операторы SQL. Если в текстовом редакторе ничего не выбрано , все инструкции SQL выполняются. + + + + &Load Extension... + &Загрузить расширение... + + + + Execute line + + + + + This button executes the SQL statement present in the current editor line + Эта кнопка выполняет оператор SQL, присутствующий в текущей строке редактора + + + + &Wiki + &Вики + + + + F1 + + + + + Bug &Report... + Баг &репорт... + + + + Feature Re&quest... + Запросить &функцию... + + + + Web&site + &Веб-сайт + + + + &Donate on Patreon... + Сделать &пожертвование в Patreon... + + + + Open &Project... + Открыть &проект... + + + + &Attach Database... + &Прикрепить БД... + + + + + Add another database file to the current database connection + Добавить другой файл БД в текущее соединение + + + + This button lets you add another database file to the current database connection + Эта кнопка позволяет добавить другой файл БД в текущее соединение с БД + + + + &Set Encryption... + Назначитть &шифрование... + + + + This button saves the content of the current SQL editor tab to a file + Эта кнопка сохраняет содержимое текущей вкладки редактора SQL в файл + + + + SQLCipher &FAQ + + + + + Table(&s) to JSON... + Таблицы в файл &JSON... + + + + Open Data&base Read Only... + Открыть БД &только для чтения... + + + + Ctrl+Shift+O + + + + + Save results + Сохранить результаты + + + + Save the results view + Сохранить результаты + + + + This button lets you save the results of the last executed query + Эта кнопка позволяет сохранить результаты последнего выполненного запроса + + + + + Find text in SQL editor + Найти текст в редакторе SQL + + + + Find + + + + + This button opens the search bar of the editor + Эта кнопка открывает панель поиска редактора + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + Найти или заменить текст в редакторе SQL + + + + Find or replace + + + + + This button opens the find/replace dialog for the current editor tab + Эта кнопка открывает диалог поиска/замены для текущей вкладки редактора + + + + Ctrl+H + + + + + Export to &CSV + Экспортировать в &CSV + + + + Save as &view + Сохранить как &представление + + + + Save as view + Сохранить как представление + + + + Shows or hides the Project toolbar. + Показывает или скрывает панель инструментов Проекта. + + + + Extra DB Toolbar + Дополнительная Панель Инструментов БД + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + This button lets you open a DB Browser for SQLite project file + + + + + New In-&Memory Database + Новая БД в &Памяти + + + + Drag && Drop Qualified Names + Квалифицированные имена при перетакскивании + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Квалифицированные имена (например, "Table"."Field") при перетаскивании объектов в редактор + + + + Drag && Drop Enquoted Names + Экранированные имена при перетаскивании + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Экранировать имена идентификаторов (например, "Table1"), когда перетаскиваются объекты в редактор + + + + &Integrity Check + Проверка &Целостности + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + Выполняет прагму integrity_check для открытой БД и возвращает результаты во вкладке "SQL". Эта прагма выполняет проверку целостности всей базы данных. + + + + &Foreign-Key Check + Проверка &Внешних ключей + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Запускает прагму foreign_key_check для открытой БД и возвращает результаты во вкладке "SQL" + + + + &Quick Integrity Check + &Быстрая Проверка Целостности + + + + Run a quick integrity check over the open DB + Запуск быстрой проверки целостности для открытый БД + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + Запускает прагму quick_check для открытой БД и возвращает результаты во вкладке "SQL". Эта команда выполняет большую часть проверки PRAGMA integrity_check, но работает намного быстрее. + + + + &Optimize + &Оптимизация + + + + Attempt to optimize the database + Попытка оптимизации БД + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Выполняет прагму optimize для открытой БД. Эта прагма может выполнять оптимизацию, которая улучшит производительность будущих запросов. + + + + + Print + Печать + + + + Print text from current SQL editor tab + Печать текста изтекущей вкладки редактора SQL + + + + Open a dialog for printing the text in the current SQL editor tab + Открывает диалоговое окно для печати текста из текущей вкладки редактора SQL + + + + Print the structure of the opened database + Печать структуры открытой БД + + + + Open a dialog for printing the structure of the opened database + Открывает диалоговое окно для печати структуры текущей БД + + + + Un/comment block of SQL code + + + + + Un/comment block + + + + + Comment or uncomment current line or selected block of code + + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + + + + + Ctrl+/ + + + + + Stop SQL execution + + + + + Stop execution + + + + + Stop the currently running SQL script + + + + + Browse Table + + + + + &Save Project As... + + + + + + + Save the project in a file selected in a dialog + + + + + Save A&ll + + + + + + + Save DB file, project file and opened SQL files + + + + + Ctrl+Shift+S + + + + + &File + &Файл + + + + &Import + &Импорт + + + + &Export + &Экспорт + + + + &Edit + &Редактирование + + + + &View + &Вид + + + + &Help + &Справка + + + + DB Toolbar + Панель инструментов БД + + + + Edit Database &Cell + Редактирование &ячейки БД + + + + DB Sche&ma + Схе&ма БД + + + + &Remote + &Удаленный сервер + + + + + Execute current line + Выполнить текущую строку + + + + Shift+F5 + + + + + Sa&ve Project + &Сохранить проект + + + + Open an existing database file in read only mode + Открыть существующий файл базы данных в режиме только для чтения + + + + Opens the SQLCipher FAQ in a browser window + Открыть SQLCiphier FAQ в браузере + + + + Export one or more table(s) to a JSON file + Экспортировать таблицы в JSON файл + + + + + Save SQL file as + Сохранить файл SQL как + + + + &Browse Table + Пр&осмотр данных + + + + User + Пользователем + + + + Application + Приложением + + + + &Clear + О&чистить + + + + &New Database... + &Новая база данных... + + + + + Create a new database file + Создать новый файл базы данных + + + + This option is used to create a new database file. + Эта опция используется, чтобы создать новый файл базы данных. + + + + Ctrl+N + + + + + + &Open Database... + &Открыть базу данных... + + + + + + + + Open an existing database file + Открыть существующий файл базы данных + + + + + + This option is used to open an existing database file. + Эта опция используется, чтобы открыть существующий файл базы данных. + + + + Ctrl+O + + + + + &Close Database + &Закрыть базу данных + + + + This button closes the connection to the currently open database file + Эта кнопка закрывает соединение с текущим файлом БД + + + + + Ctrl+W + + + + + + Revert database to last saved state + Вернуть базу данных в последнее сохранённое состояние + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Эта опция используется, чтобы вернуть текущий файл базы данных в его последнее сохранённое состояние. Все изменения, сделаные с последней операции сохранения теряются. + + + + + Write changes to the database file + Записать изменения в файл базы данных + + + + This option is used to save changes to the database file. + Эта опция используется, чтобы сохранить изменения в файле базы данных. + + + + Ctrl+S + + + + + Compact &Database... + &Уплотнить базу данных... + + + + Compact the database file, removing space wasted by deleted records + Уплотнить базу данных, удаляя пространство, занимаемое удалёнными записями + + + + + Compact the database file, removing space wasted by deleted records. + Уплотнить базу данных, удаляя пространство, занимаемое удалёнными записями. + + + + E&xit + &Выход + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Импортировать данные из текстового файла sql в новую или существующую базу данных. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Эта опция позволяет импортировать данные из текстового файла sql в новую или существующую базу данных. Файл SQL может быть создан на большинстве движков баз данных, включая MySQL и PostgreSQL. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Открыть мастер, который позволяет импортировать данные из файла CSV в таблицу базы данных. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Открыть мастер, который позволяет импортировать данные из файла CSV в таблицу базы данных. Файлы CSV могут быть созданы в большинстве приложений баз данных и электронных таблиц. + + + + Export a database to a .sql dump text file. + Экспортировать базу данных в текстовый файл .sql. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Эта опция позволяет экспортировать базу данных в текстовый файл .sql. Файлы SQL содержат все данные, необходимые для создания базы данных в большистве движков баз данных, включая MySQL и PostgreSQL. + + + + Export a database table as a comma separated text file. + Экспортировать таблицу базы данных как CSV текстовый файл. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Экспортировать таблицу базы данных как CSV текстовый файл, готовый для импортирования в другие базы данных или приложения электронных таблиц. + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Открыть мастер создания таблиц, где возможно определить имя и поля для новой таблиы в базе данных + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Открыть мастер удаления таблицы, где можно выбрать таблицу базы данных для удаления. + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Открыть мастер изменения таблицы, где возможно переименовать существующую таблиц. Можно добавить или удалить поля таблицы, так же изменять имена полей и типы. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Открыть мастер создания интекса, в котором можно определить новый индекс для существующей таблиц базы данных. + + + + &Preferences... + &Настройки... + + + + + Open the preferences window. + Открыть окно настроек. + + + + &DB Toolbar + &Панель инструментов БД + + + + Shows or hides the Database toolbar. + Показать или скрыть панель инструментов База данных. + + + + Shift+F1 + + + + + &Recently opened + &Недавно открываемые + + + + Open &tab + Открыть &вкладку + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Структура БД + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Это структура открытой БД. +Вы можете перетаскивать операторы SQL из строки "объект" и переносить их в другие приложения или в другой экземпляр "Обозреватель для SQLite". + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Данные + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Прагмы + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + SQL + + + + SQL &Log + &Журнал SQL + + + + Show S&QL submitted by + По&казывать SQL, выполненный + + + + &Plot + &График + + + + &Revert Changes + &Отменить изменения + + + + &Write Changes + &Записать изменения + + + + &Database from SQL file... + &База данных из файла SQL... + + + + &Table from CSV file... + &Таблицы из файла CSV... + + + + &Database to SQL file... + Базу &данных в файл SQL... + + + + &Table(s) as CSV file... + &Таблицы в файл CSV... + + + + &Create Table... + &Создать таблицу... + + + + &Delete Table... + &Удалить таблицу... + + + + &Modify Table... + &Изменить таблицу... + + + + Create &Index... + Создать и&ндекс... + + + + W&hat's This? + Что &это такое? + + + + &Execute SQL + В&ыполнить код SQL + + + + + + Save SQL file + Сохранить файл SQL + + + + Ctrl+E + + + + + Export as CSV file + Экспортировать в файл CSV + + + + Export table as comma separated values file + Экспортировать таблицу как CSV файл + + + + + Save the current session to a file + Сохранить текущее состояние в файл + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + + Load a working session from a file + Загрузить рабочее состояние из файла + + + + Copy Create statement + Копировать CREATE выражение + + + + Copy the CREATE statement of the item to the clipboard + Копировать CREATE выражение элемента в буффер обмена + + + + Ctrl+Return + + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Reset Window Layout + + + + + Alt+0 + + + + + The database is currenctly busy. + + + + + Click here to interrupt the currently running query. + + + + + Encrypted + Зашифровано + + + + Read only + Только для чтения + + + + Database file is read only. Editing the database is disabled. + База данных только для чтения. Редактирование запрещено. + + + + Database encoding + Кодировка базы данных + + + + Database is encrypted using SQLCipher + База данных зашифрована с использованием SQLCipher + + + + + Choose a database file + Выбрать файл базы данных + + + + Could not open database file. +Reason: %1 + Не удалось открыть файл базы данных. +Причина:%1 + + + + + + Choose a filename to save under + Выбрать имя, под которым сохранить данные + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Вышла новая версия Обозревателя для SQLite (%1.%2.%3).<br/><br/>Она доступна для скачивания по адресу <a href='%4'>%4</a>. + + + + DB Browser for SQLite project file (*.sqbpro) + Файл проекта Обозревателя для SQLite (*.sqbpro) + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Ошибка при сохранении файла базы данных. Это означает, что не все изменения в базе данных были сохранены. Сначала вам необходимо разрешить следующую ошибку. + +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Отменить все изменения, сделанные в файле базы данных '%1' после последнего сохранения? + + + + Choose a file to import + Выберать файл для импорта + + + + Text files(*.sql *.txt);;All files(*) + Текстовые файлы(*.sql *.txt);;Все файлы(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Создать новый файл базы данных, чтобы сохранить импортированные данные? +Если ответить Нет, будет выполнена попытка импортировать данные файла SQL в текущую базу данных. + + + + Window Layout + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + + + + + Do you want to save the changes made to the project file '%1'? + + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + File %1 already exists. Please choose a different name. + Файл %1 уже существует. Выберите другое имя. + + + + Error importing data: %1 + Ошибка импортирования данных: %1 + + + + Import completed. + Импорт завершён. + + + + Delete View + Удалить представление + + + + Modify View + Модифицировать представление + + + + Delete Trigger + Удалить триггер + + + + Modify Trigger + Модифицировать триггер + + + + Delete Index + Удалить индекс + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + + + + + Open Database or Project + + + + + Attach Database... + + + + + Import CSV file(s)... + + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + + + + + + + + Do you want to save the changes made to SQL tabs in a new project file? + + + + + Do you want to save the changes made to the SQL file %1? + + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + + + + + Could not find resource file: %1 + + + + + Choose a project file to open + Выберите файл проекта для открытия + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Этот файл проекта использует старый формат файла, потому что он был создан с использованием DB Browser для SQLite версии 3.10 или ниже. Загрузка этого формата по-прежнему полностью поддерживается, но мы советуем вам преобразовать все ваши файлы проекта в новый формат файла, поскольку поддержка более старых форматов может быть удалена в какой-то момент в будущем. Вы можете конвертировать ваши файлы, просто открывая и повторно сохраняя их. + + + + Could not open project file for writing. +Reason: %1 + + + + + Busy (%1) + + + + + Error checking foreign keys after table modification. The changes will be reverted. + Ошибка проверки внешних ключей после изменения таблицы. Изменения будут отменены. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Эта таблица не прошла проверку внешнего ключа. <br/> Вы должны запустить "Инструменты | Проверка внешнего ключа"и исправить сообщенные проблемы. + + + + Execution finished with errors. + + + + + Execution finished without errors. + + + + + + Delete Table + Удалить таблицу + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Установка значений PRAGMA завершит текущую транзакцию. Установить значения? + + + + In-Memory database + БД в памяти + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + Вы действительно хотите удалить таблицу '%1'? +Все данные, связанные с таблицей, будут потеряны. + + + + Are you sure you want to delete the view '%1'? + Вы действительно хотите удалить представление '%1'? + + + + Are you sure you want to delete the trigger '%1'? + Вы действительно хотите удалить триггер '%1'? + + + + Are you sure you want to delete the index '%1'? + Вы действительно хотите удалить индекс '%1'? + + + + Error: could not delete the table. + Ошибка: не удалось удалить таблицу. + + + + Error: could not delete the view. + Ошибка: не удалось удалить представление. + + + + Error: could not delete the trigger. + Ошибка: не удалось удалить триггер. + + + + Error: could not delete the index. + Ошибка: не удалось удалить индекс. + + + + Message from database engine: +%1 + Сообщение от СУБД: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Для редактирования таблицы необходимо сохранить все ожидающие изменения сейчас. +Вы действительно хотите сохранить БД? + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + + + + + -- EXECUTING SELECTION IN '%1' +-- + -- ВЫПОЛНЕНИЕ ВЫБОРКИ В '%1' +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- ВЫПОЛНЕНИЕ СТРОКИ В '%1' +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- ВЫПОЛНЕНИЕ ВСЕ В '%1' +-- + + + + + At line %1: + + + + + Result: %1 + + + + + Result: %2 + + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + Установка значений PRAGMA или вакуумирования приведет к фиксации текущей транзакции. +Уверены ли вы? + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Rename Tab + + + + + Duplicate Tab + + + + + Close Tab + + + + + Opening '%1'... + + + + + There was an error opening '%1'... + + + + + Value is not a valid URL or filename: %1 + + + + + %1 rows returned in %2ms + %1 строк возвращено за %2мс + + + + Choose text files + Выберите текстовые файлы + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + Импорт завершен. Нарушены некоторые ограничения внешних ключей. Пожалуйста, исправьте их перед сохранением. + + + + Modify Index + Модифицировать Индекс + + + + Modify Table + Модифицировать Таблицу + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + + + + + Select SQL file to open + Выбрать файл SQL для октрытия + + + + Select file name + Выбрать имя файла + + + + Select extension file + Выбрать расширение файла + + + + Extension successfully loaded. + Расширение успешно загружено. + + + + Error loading extension: %1 + Ошибка загрузки расширения: %1 + + + + + Don't show again + Не показывать снова + + + + New version available. + Доступна новая версия. + + + + Project saved to file '%1' + + + + + Collation needed! Proceed? + Нужно выполнить сопоставление! Продолжить? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Таблица в базе данных требует выполнения специальной функции сопоставления '%1'. +Если вы продолжите, то возможна порча вашей базы данных. +Создайте резервную копию! + + + + creating collation + + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + Задайте новое имя для вкладки SQL. Используйте символ '&&', чтобы разрешить использование следующего символа в качестве сочетания клавиш. + + + + Please specify the view name + Укажите имя представления + + + + There is already an object with that name. Please choose a different name. + Объект с указанным именем уже существует. Выберите другое имя. + + + + View successfully created. + Представление успешно создано. + + + + Error creating view: %1 + Ошибка создания представления: %1 + + + + This action will open a new SQL tab for running: + Это действие откроет новую вкладку SQL для запуска: + + + + Press Help for opening the corresponding SQLite reference page. + Нажмите "Справка" для открытия соответствующей справочной страницы SQLite. + + + + NullLineEdit + + + Set to NULL + Установить в NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + График + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>На этой панели отображается список столбцов текущей просматриваемой таблицы или только что выполненного запроса. Вы можете выбрать столбцы, которые вы хотите использовать в качестве оси X или Y для графика ниже. В таблице показан тип обнаруженной оси, который повлияет на итоговый график. Для оси Y вы можете выбирать только числовые столбцы, но для оси X вы можете выбрать:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Дата/Время</span>: строки с форматом &quot;гггг-ММ-дд чч:мм:сс&quot; или &quot;гггг-ММ-ддTчч:мм:сс&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Дата</span>: строки с форматом &quot;гггг-ММ-дд&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Время</span>: строки с форматом &quot;чч:мм:сс&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Текст</span>: строки лубого формата. Выбор этого столбца по оси X приведет к созданию графика Баров, со значениями столбцов в качестве меток для баров</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Числа</span>: целочисленные или вещественные значения</li></ul><p>Дважды щелкните по ячейкам Y, вы можете изменить используемый цвет для этого графика.</p></body></html> + + + + Columns + Столбцы + + + + X + X + + + + Y1 + + + + + Y2 + + + + + Axis Type + Ось + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Вот график, нарисованный, когда вы выбираете значения x и y выше. + +Нажмите на пункты, чтобы выбрать их на графике и в таблице. Ctrl + Click для выбора диапазона точек. + +Используйте колесико мыши для масштабирования и перетаскивания мышью для изменения диапазона осей. + +Выберите метки осей или осей для перетаскивания и масштабирования только в этой ориентации. + + + + Line type: + Линия: + + + + + None + Нет + + + + Line + Обычная + + + + StepLeft + Ступенчатая, слева + + + + StepRight + Ступенчатая, справа + + + + StepCenter + Ступенчатая, по центру + + + + Impulse + Импульс + + + + Point shape: + Отрисовка точек: + + + + Cross + Крест + + + + Plus + Плюс + + + + Circle + Круг + + + + Disc + Диск + + + + Square + Квадрат + + + + Diamond + Ромб + + + + Star + Звезда + + + + Triangle + Треугольник + + + + TriangleInverted + Треугольник перевернутый + + + + CrossSquare + Крест в квадрате + + + + PlusSquare + Плюс в квадрате + + + + CrossCircle + Крест в круге + + + + PlusCircle + Плюс в круге + + + + Peace + Мир + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Сохранить текущий график...</p><p>Формат файла выбирается расширением (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Сохранить текущий график... + + + + + Load all data and redraw plot + Загрузить все данные и перерисовать + + + + + + Row # + Строка # + + + + Copy + Копировать + + + + Print... + Печать... + + + + Show legend + Легенда + + + + Stacked bars + + + + + Date/Time + Дата/Время + + + + Date + Дата + + + + Time + Время + + + + + Numeric + Число + + + + Label + Текст + + + + Invalid + Ошибка + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Загружает все данные и перерисовыет график. +Предупреждение: не все данные были получены из таблицы из-за механизма частичной выборки. + + + + Choose an axis color + Выберите цвет оси + + + + Choose a filename to save under + Выбрать имя файла, под которым сохранить данные + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Все файлы(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + На этом графике есть кривые, и выбранный стиль линии может применяться только к графикам, отсортированным по X. Либо сортируйте таблицу или запрос по X, чтобы удалить кривые, либо выберите один из стилей, поддерживаемых кривыми: None или Line. + + + + Loading all remaining data for this table took %1ms. + + + + + PreferencesDialog + + + Preferences + Настройки + + + + &Database + &База данных + + + + Database &encoding + &Кодировка базы данных + + + + Open databases with foreign keys enabled. + Открывать базы данных с включенными внешними ключами. + + + + &Foreign keys + &Внешние ключи + + + + + + + + + + + + enabled + включены + + + + Default &location + &Расположение +по умолчанию + + + + + + ... + ... + + + + &General + &Общие + + + + Remember last location + Запоминать последнюю директорию + + + + Always use this location + Всегда открывать указанную + + + + Remember last location for session only + Запоминать последнюю директорию только для сессий + + + + Lan&guage + &Язык + + + + Automatic &updates + &Следить за обновлениями + + + + SQ&L to execute after opening database + + + + + Data &Browser + Обозреватель &данных + + + + Remove line breaks in schema &view + Удалить переводы строки в &схеме данных + + + + Show remote options + Опции "облака" + + + + Prefetch block si&ze + Размер блока &упреждающей выборки + + + + Default field type + Тип данных по умолчанию + + + + Font + Шрифт + + + + &Font + &Шрифт + + + + Content + Содержимое + + + + Symbol limit in cell + Количество символов в ячейке + + + + NULL + + + + + Regular + Обычные + + + + Binary + Двоичные данные + + + + Background + Фон + + + + Filters + Фильтры + + + + Threshold for completion and calculation on selection + + + + + Show images in cell + + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + + + + + Escape character + Символ экранирования + + + + Delay time (&ms) + Время задержки (&мс) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Время задержки перед применением нового фильтра. Нулевое значение отключает ожидание. + + + + &SQL + Р&едактор SQL + + + + Settings name + Имя настроек + + + + Context + Контекст + + + + Colour + Цвет + + + + Bold + Жирный + + + + Italic + Курсив + + + + Underline + Подчёркивание + + + + Keyword + Ключевое слово + + + + Function + Функция + + + + Table + Таблица + + + + Comment + Комментарий + + + + Identifier + Идентификатор + + + + String + Строка + + + + Current line + Текущая строка + + + + SQL &editor font size + Размер шрифта в &редакторе SQL + + + + Tab size + Размер табуляции + + + + SQL editor &font + &Шрифт в редакторе SQL + + + + Error indicators + Индикаторы ошибок + + + + Hori&zontal tiling + Гори&зонтальное распределение + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Если данная опция включена, то SQL редактор и результат запроса будут расположены рядом по горизонтали. + + + + Code co&mpletion + Авто&дополнение кода + + + + Toolbar style + Стиль тулбара + + + + + + + + Only display the icon + Только иконки + + + + + + + + Only display the text + Только текст + + + + + + + + The text appears beside the icon + Текст над иконкой + + + + + + + + The text appears under the icon + Текст под иконкой + + + + + + + + Follow the style + Указано в стиле + + + + DB file extensions + Расширения файлов БД + + + + Manage + Настроить + + + + Main Window + + + + + Database Structure + Структура БД + + + + Browse Data + Данные + + + + Execute SQL + SQL + + + + Edit Database Cell + Редактирование ячейки БД + + + + When this value is changed, all the other color preferences are also set to matching colors. + + + + + Follow the desktop style + + + + + Dark style + + + + + Application style + + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Когда отмечено, переносы строк в столбце 'Схема' во вкладке 'Структура базы данных', 'док' и 'печатный результат' удаляются. + + + + Database structure font size + + + + + Font si&ze + Ра&змер шрифта + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Максимальное количество строк в таблице для включения завершения значения на основе текущих значений в столбце. +Может быть установлено в 0 для отключения завершения. + + + + Field display + Отображение поля + + + + Displayed &text + Отображаемый &текст + + + + + + + + + Click to set this color + + + + + Text color + Цвет текста + + + + Background color + Цвет фона + + + + Preview only (N/A) + Предв. просмотр + + + + Foreground + Передний план + + + + SQL &results font size + &Размер шрифта + + + + &Wrap lines + &Перенос строк + + + + Never + Никогда + + + + At word boundaries + На границах слов + + + + At character boundaries + На границах символов + + + + At whitespace boundaries + На границах пробелов + + + + &Quotes for identifiers + Обравмление &идентификаторов + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Выберите механизм обрамления, используемый приложением для идентификаторов в коде SQL. + + + + "Double quotes" - Standard SQL (recommended) + "Двойные кавычки" - Cтандартный SQL (рекомендуется) + + + + `Grave accents` - Traditional MySQL quotes + `Гравис` - Традиционные кавычки MySQL + + + + [Square brackets] - Traditional MS SQL Server quotes + [Квадратные скобки] - традиционные кавычки для MS SQL Server + + + + Keywords in &UPPER CASE + Ключевые слова в &ВЕРХНЕМ РЕГИСТРЕ + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Когда отмечено, ключевые слова SQL будут в ВЕРХНЕМ РЕГИСТРЕ. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Когда установлено, строки кода SQL, вызвавшие ошибки во время последнего выполнения, подсвечиваются, а виджет результатов указывает на ошибку в фоновом режиме + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + &Extensions + Р&асширения + + + + Select extensions to load for every database: + Выберите расширения, чтобы загружать их для каждой базы данных: + + + + Add extension + Добавить расширение + + + + Remove extension + Удалить расширение + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Обозреватель для SQLite позволяет использовать оператор REGEXP 'из коробки'. Но тем <br/>не менее, возможны несколько различных вариантов реализаций данного оператора и вы свободны <br/>в выборе какую именно использовать. Можно отключить нашу реализацию и использовать другую - <br/>путем загрузки соответсвующего расширения. В этом случае требуется перезагрузка приложения.</p></body></html> + + + + Disable Regular Expression extension + Отключить расширение Регулярных Выражений + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + + + + + Allow loading extensions from SQL code + + + + + Remote + Удаленный сервер + + + + CA certificates + СА сертификаты + + + + Proxy + + + + + Configure + + + + + + Subject CN + + + + + Common Name + + + + + Subject O + + + + + Organization + + + + + + Valid from + + + + + + Valid to + + + + + + Serial number + + + + + Your certificates + Ваши сертификаты + + + + File + Файл + + + + Subject Common Name + + + + + Issuer CN + + + + + Issuer Common Name + + + + + Clone databases into + Путь для клонируемых БД + + + + + Choose a directory + Выберать каталог + + + + The language will change after you restart the application. + Язык будет применен после перезапуска приложения. + + + + Select extension file + Выберать файл расширения + + + + Extensions(*.so *.dylib *.dll);;All files(*) + + + + + Import certificate file + Импорт файла сертификата + + + + No certificates found in this file. + В данном файле не найден сертификат. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Вы действительно хотите удалить этот сертификат? Все данные сертификата будут удалены из настроек приложения! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Вы действительно хотите удалить все сохраненные настройки? +Все ваши предпочтения будут потеряны, и будут использоваться значения по умолчанию. + + + + ProxyDialog + + + Proxy Configuration + + + + + Pro&xy Type + + + + + Host Na&me + + + + + Port + + + + + Authentication Re&quired + + + + + &User Name + + + + + Password + + + + + None + Нет + + + + System settings + + + + + HTTP + + + + + Socks v5 + + + + + QObject + + + Error importing data + Ошибка импортирования данных + + + + from record number %1 + с записи номер %1 + + + + . +%1 + + + + + Importing CSV file... + Импортирование CSV файла... + + + + Cancel + Отменить + + + + All files (*) + Все файлы (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + Файлы SQLite баз данных (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + + + + + Right + + + + + Center + + + + + Justify + + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + + + + + DB Browser for SQLite Project Files (*.sqbpro) + + + + + SQL Files (*.sql) + + + + + All Files (*) + + + + + Text Files (*.txt) + + + + + Comma-Separated Values Files (*.csv) + + + + + Tab-Separated Values Files (*.tsv) + + + + + Delimiter-Separated Values Files (*.dsv) + + + + + Concordance DAT files (*.dat) + + + + + JSON Files (*.json *.js) + + + + + XML Files (*.xml) + + + + + Binary Files (*.bin *.dat) + + + + + SVG Files (*.svg) + + + + + Hex Dump Files (*.dat *.bin) + + + + + Extensions (*.so *.dylib *.dll) + + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + Дата + + + + Author + + + + + Size + Размер + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Ошибка при открытии списка локальных БД. +%1 + + + + Error creating local databases list. +%1 + Ошибка при создании списка локальных БД. +%1 + + + + RemoteDock + + + Remote + Удаленный сервер + + + + Identity + ID + + + + Push currently opened database to server + Отправить текущую БД на сервер + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Local + + + + + Current Database + + + + + Clone + + + + + User + Пользователем + + + + Database + База данных + + + + Branch + Ветка + + + + Commits + + + + + Commits for + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + Обновить + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + + + + + Back + + + + + Select an identity to connect + + + + + Public + Публичный + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + Имя + + + + Branch + Ветка + + + + Last modified + Изменен + + + + Size + Размер + + + + Commit + Коммит + + + + File + + + + + RemoteModel + + + Name + Имя + + + + Last modified + Изменен + + + + Size + Размер + + + + Commit + Коммит + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + Ошибка открытия файла %1. +%2 + + + + Error: Invalid client certificate specified. + Ошибка: Указан неверный сертификат клиента. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Пожалуйста введите ключевую фразу для этого сертификата клиента. + + + + Cancel + Отменить + + + + Uploading remote database to +%1 + Загружается удаленная БД в +%1 + + + + Downloading remote database from +%1 + Скачивается удаленная БД из +%1 + + + + + Error: The network is not accessible. + Ошибка: сеть недоступна. + + + + Error: Cannot open the file for sending. + Ошибка: не удается открыть файл для отправки. + + + + RemotePushDialog + + + Push database + Отправить БД + + + + Database na&me to push to + &Имя БД + + + + Commit message + Сообщение + + + + Database licence + Лицензия + + + + Public + Публичный + + + + Branch + Ветка + + + + Force push + Принудительно + + + + Username + + + + + Database will be public. Everyone has read access to it. + БД будет публичной. У каждого будет доступ на чтение к ней. + + + + Database will be private. Only you have access to it. + БД будет конфиденциальной. Только у вас будет доступ к ней. + + + + Use with care. This can cause remote commits to be deleted. + Используйте с осторожностью. Это может привести к удалению существующих коммитов. + + + + RunSql + + + Execution aborted by user + Выполнение прервано пользователем + + + + , %1 rows affected + , %1 строк изменено + + + + query executed successfully. Took %1ms%2 + запрос успешно выполнен. Заняло %1мс%2 + + + + executing query + + + + + SelectItemsPopup + + + A&vailable + + + + + Sele&cted + + + + + SqlExecutionArea + + + Form + Форма + + + + Find previous match [Shift+F3] + Найти предыдущее совпадение [Shift+F3] + + + + Find previous match with wrapping + Найти предыдущее совпадение, закольцевав поиск + + + + Shift+F3 + + + + + The found pattern must be a whole word + Найденный шаблон должен быть целым словом + + + + Whole Words + Слова Полностью + + + + Text pattern to find considering the checks in this frame + Шаблон для поиска, учитывая все проверки + + + + Find in editor + Найти в редакторе + + + + The found pattern must match in letter case + У найденного шаблона должен совпадать регистр + + + + Case Sensitive + Учитывать Регистр + + + + Find next match [Enter, F3] + Найти следующее совпдение [Enter, F3] + + + + Find next match with wrapping + Найти следующее совпадение, закольцевав поиск + + + + F3 + + + + + Interpret search pattern as a regular expression + Интерпретировать шаблон поиска как регулярное выражение + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>При проверке шаблон для поиска интерпретируется как регулярное выражение UNIX. <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Узнать больше о Регулярных выражениях на Wikibooks.org</a>.</p></body></html> + + + + Regular Expression + Регулярное выражение + + + + + Close Find Bar + Закрыть Поисковую Панель + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + + + + + Results of the last executed statements + Результаты последних выполненных операторов + + + + This field shows the results and status codes of the last executed statements. + Это поле показывает результаты и коды статусов последних выполненных операторов. + + + + Couldn't read file: %1. + Не удалось прочитать файл:%1. + + + + + Couldn't save file: %1. + Не удалось сохранить файл:%1. + + + + Your changes will be lost when reloading it! + + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) Функция abs(X) возвращает модуль числа аргумента X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () Функция changes() возвращает количество строк в базе данных, которые были изменены, вставлены или удалены после удачного выполнения INSERT, DELETE или UPDATE. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) Функция char(X1,X2,...,XN) возвращает строку составленную из символов, переданных в качестве аргументов. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) Функция coalesce() возвращает копию первого аргумента не равного NULL иначе если такого нет то возвращается NULL + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) Функция glob(X,Y) эквивалент выражению "Y GLOB X". + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) Функция ifnull() возвращает копию первого аргумента не равного NULL иначе если оба аргумента равны NULL то возвращает NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) Функция instr(X,Y) возвращает количество символов, начиная с которого в строке X найденна подстрока Y или 0 если таковая не обнаружена. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) Функция hex() интерпретирует аргумент как BLOB и возвращает строку в 16-ричной системе счисления с содержимым аргумента. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () Функция last_insert_rowid() возвращает ROWID последней вставленной строки. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) Для строкового значения X, функция length(X) возвращает количество символов (не байт) от начала строки до первого символа '\0'. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) Фукнция like() эквивалент выражению "Y LIKE X". + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) Функция like() эквивалент выражения "Y LIKE X ESCAPE Z". + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) Функция lower(X) возвращает копию строки X, в которой все ACSII символы переведены в нижний регистр. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) удаляет символы пробелов слева для строки X. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) Функция ltrim(X,Y) возвращает новую строку путем удаления из строки X слева любого символа из Y. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) Функция max() возвращает аргумент с максимальным значением, либо NULL если хотябы один аргумент равен NULL. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) Функция min() возвращает аргумент с минимальным значением. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) Функция nullif(X,Y) возвращает первый аргумент если аргументы различны либо NULL если они одинаковы. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) Функция printf(FORMAT,...) работает так же как printf() из стандартной библиотеки языка программирования Си. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) Функция quote(X) возвращает измененную строку X, которую можно использовать в SQL выражениях. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () Функция random() возвращает псевдо случайное целочисленное значение из диапозона от-9223372036854775808 до +9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) Функция randomblob(N) возвращает N-байтный BLOB, содержащий псевдо случайные байты. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) Функция replace(X,Y,Z) возвращает новую строку на основе строки X, заменой всех подстрок Y на Z. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) Функция round(X) округляет X до целого значения. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) Функция round(X,Y) округляет X до Y чисел после запятой справа. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X) удаляет символы пробела справа строки X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) Функция rtrim(X,Y) возвращает новую строку путем удаления из строки X справа любого символа из строки Y. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) Функция soundex(X) возвращает копию строки X, кодированную в формате soundex. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) возвращает подстроку из строки X, начиная с Y-го символа. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) Функция substr(X,Y,Z) возвращает подстроку из строки X, начиная с Y-го символа, длинной Z-символов. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () Функция total_changes() возвращает количество строк измененных с помощью INSERT, UPDATE или DELETE, начиная с того момента как текущее подключение к базе данных было открыто. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) удаляет пробелы с обоих сторон строки X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) Функция trim(X,Y) создает новую строку из X, путем удаления с обоих концов символов, которые присутсвуют в строке Y. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) Функция typeof(X) возвращает строку с типом данных выражения X. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) Функция unicode(X) возвращает числовое значение UNICODE кода символа. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) Функция upper(X) возвращает копию строки X, в которой для каждого ASCII символа регистр будет перобразован из нижнего в верхний. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) Функция zeroblob(N) возвращает BLOB размером N байт со значениями 0x00. + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) Функция avg() возвращает среднее значение для всех не равных NULL значений группы. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) Функция count(X) возвращает количество строк, в которых X не равно NULL в группе. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) Функция group_concat() возвращает строку из всех значений X не равных NULL. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) Функция group_concat() возвращает строку из всех значений X не равных NULL. Y - разделитель между значениями X. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) Аггрегатная функция max() возвращает максимальное значение для X. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) Аггрегатная функция min() возвращает минимальное значение для X. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Аггрегатные функции sum() и total() возвращают сумму всех не NULL значений для X. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () Число строк в текущем разделе. Строки нумеруются начиная с 1 в порядке, определенном выражением ORDER BY, или иначе в произвольном порядке. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Функция row_number() возвращает номер первой строки в каждой группе - ранг текущей строки с разрывами. Если не существует выражения ORDER BY, все строки считаются одноранговыми, и эта функция всегда возвращает 1. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Число одноранговой группы текущей строки в своем разделе - ранг текущей строки без пробелов. Разделы нумеруются, начиная с 1 в порядке, определенном выражением ORDER BY в определении окна. Если не существует предложения ORDER BY, все строки считаются одноранговыми, и эта функция всегда возвращает 1. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () Несмотря на имя, эта функция всегда возвращает значение между 0.0 и 1.0, равное (rank-1) / (partition-rows-1), где rank - это значение, возвращаемое встроенной функцией window rank () rows - это общее количество строк в разделе. Если раздел содержит только одну строку, эта функция возвращает 0.0. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () Кумулятивное распределение. Рассчитывается как номер-строки / строки-раздела, где номер-строки - это значение, возвращаемое row_number() для последнего однорангового узла в группе, а строки-раздела- количество строк в разделе. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) Аргумент N обрабатывается как целое число. Эта функция делит раздел на N групп как можно более равномерно и назначает целое число от 1 до N каждой группе в порядке, определенном выражением ORDER BY, или в произвольном порядке, при его отсутствии. При необходимости сначала появляются большие группы. Эта функция возвращает целочисленное значение, присвоенное группе, в которой находится текущая строка. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Возвращает результат вычисления выражения expr в предыдущей строке раздела. Или, если нет предыдущей строки (поскольку текущая строка является первой), NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr, offset) Если аргумент offset укзан, то он должен быть неотрицательным целым числом. В этом случае возвращаемое значение является результатом вычисления expr в строках смещения строк до текущей строки в разделе. Если смещение равно 0, то expr вычисляется относительно текущей строки. Если перед текущей строкой нет строк смещения строк, возвращается NULL. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr, offset, default) Если задано значение по умолчанию, оно возвращается вместо NULL, если строка, идентифицированная с помощью смещения, не существует. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Возвращает результат вычисления выражения expr в следующей строке раздела. Или, если нет следующей строки (поскольку последняя строка является последней), NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr, offset) Если аргумент offset указан, то он должен быть неотрицательным целым числом. В этом случае возвращаемое значение является результатом вычисления expr в строках смещения строк после текущей строки в разделе. Если смещение равно 0, то expr вычисляется относительно текущей строки. Если после текущей строки нет строк смещения строки, возвращается NULL. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Эта встроенная Оконная Функция вычисляет Оконный Кадр для каждой строки так же, как Функция Окна агрегата. Она возвращает значение выполнения выражения expr, оцениваемое по отношению к первой строке в оконном фрейме для каждой строки. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Эта встроенная Оконная Функция вычисляет Оконный Кадр для каждой строки так же, как Функция Окна агрегата. Она возвращает значение выполнения выражения expr, оцениваемое по отношению к последней строке в оконном фрейме для каждой строки. + (expr) Эта встроенная функция окна вычисляет оконный кадр для каждой строки так же, как функция окна агрегата. Он возвращает значение expr, оцениваемое по последней строке в оконном фрейме для каждой строки. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr, N) Эта встроенная функция окна вычисляет оконный фрейм для каждой строки так же, как функция окна агрегата. Она возвращает значение выполнения выражения expr, оцениваемое по строке N оконного фрейма. Строки нумеруются в рамке окна, начиная с 1 в порядке, определенном выражением ORDER BY, если оно присутствует, или в произвольном порядке в противном случае. Если в разделе нет N-й строки, возвращается NULL. + + + + SqliteTableModel + + + reading rows + читаем строки + + + + loading... + загрузка... + + + + References %1(%2) +Hold %3Shift and click to jump there + Ссылается на %1(%2) +Нажмите %3Shift и клик чтобы переместиться туда + + + + Error changing data: +%1 + Ошибка изменения данных: +%1 + + + + retrieving list of columns + получаем список колонок + + + + Fetching data... + Подгружаем данные... + + + + + Cancel + Отменить + + + + TableBrowser + + + Browse Data + Данные + + + + &Table: + &Таблица: + + + + Select a table to browse data + Выберите таблицу для просмотра данных + + + + Use this list to select a table to be displayed in the database view + Используйте этот список, чтобы выбрать таблицу, которая должна быть отображена в представлении базы данных + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Это представление таблицы БД. Вы можете выполнить следующие действия: + - Начните писать для редактирования, введя значение. + - Дважды щелкните любую запись, чтобы отредактировать ее содержимое в окне редактора ячеек. + - Alt + Del для обнуления содержимого ячейки в NULL. + - Ctrl + " для дублирования текущей записи. + - Ctrl + ' для копирования значения из ячейки выше. + - Стандартные операции выбора и копирования/вставки. + + + + Text pattern to find considering the checks in this frame + Шаблон для поиска, учитывая все проверки + + + + Find in table + + + + + Find previous match [Shift+F3] + Найти предыдущее совпадение [Shift+F3] + + + + Find previous match with wrapping + Найти предыдущее совпадение, закольцевав поиск + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Найти следующее совпдение [Enter, F3] + + + + Find next match with wrapping + Найти следующее совпадение, закольцевав поиск + + + + F3 + + + + + The found pattern must match in letter case + У найденного шаблона должен совпадать регистр + + + + Case Sensitive + Учитывать Регистр + + + + The found pattern must be a whole word + Найденный шаблон должен быть целым словом + + + + Whole Cell + + + + + Interpret search pattern as a regular expression + Интерпретировать шаблон поиска как регулярное выражение + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>При проверке шаблон для поиска интерпретируется как регулярное выражение UNIX. <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Узнать больше о Регулярных выражениях на Wikibooks.org</a>.</p></body></html> + + + + Regular Expression + Регулярное выражение + + + + + Close Find Bar + Закрыть Поисковую Панель + + + + Text to replace with + + + + + Replace with + + + + + Replace next match + + + + + + Replace + + + + + Replace all matches + + + + + Replace all + + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Прокрутить к началу</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Нажатие этой кнопки переводит к началу в таблице выше.</p></body></html> + + + + |< + + + + + Scroll one page upwards + Страница вверх + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Нажатие этой кнопки перемещает одну страницу записей вверх в виде таблицы выше.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 из 0 + + + + Scroll one page downwards + Страница вниз + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Нажатие этой кнопки перемещает одну страницу записей вниз в виде таблицы выше.</p></body></html> + + + + > + > + + + + Scroll to the end + Прокрутить к концу + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Нажмите здесь, чтобы перейти к указанной записи</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Эта кнопка используется, чтобы переместиться к записи, номер которой указан в области Перейти к</p></body></html> + + + + Go to: + Перейти к: + + + + Enter record number to browse + Введите номер записи для просмотра + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Напечатайте номер записи в этой области и нажмите кнопку Перейти к:, чтобы отобразить запись в представлении базы данных + + + + 1 + 1 + + + + Show rowid column + Отображать колонку rowid + + + + Toggle the visibility of the rowid column + + + + + Unlock view editing + Разблокировать возможность редактирования + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Разблокировать текущий вид для редактирования. Однако для редактирования вам понадобятся соответствующие триггеры. + + + + Edit display format + Формат отображения + + + + Edit the display format of the data in this column + Редактирование формата отображения для данных из этой колонки + + + + + New Record + Добавить запись + + + + + Insert a new record in the current table + Добавить новую запись в текущую таблицу + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>Эта кнопка создает новую запись в базе данных. Удерживайте кнопку мыши, чтобы открыть всплывающее меню различных параметров:</p><ul><li><span style=" font-weight:600;">Новая Запись</span>: вставляет новую запись со значениями по умолчанию.</li><li><span style=" font-weight:600;">Вставить Значения...</span>: открывает диалог для ввода значений перед тем, как они будут вставленны в БД. Это позволяет вводить значения, назначая различные ограничения. Этот диалог также открывается, если <span style=" font-weight:600;">Новая Запись</span> опция не срабатывает из-за этих ограничений.</li></ul></body></html> + + + + + Delete Record + Удалить запись + + + + Delete the current record + Удалить текущую запись + + + + + This button deletes the record or records currently selected in the table + Эта кнопка удаляет запись или записи, выбранные в настоящее время в таблице + + + + + Insert new record using default values in browsed table + Вставляет новую запись, используя значения по умолчанию в просматриваемой таблице + + + + Insert Values... + Вставить Значения... + + + + + Open a dialog for inserting values in a new record + Открывает диалоговое окно для вставки значений в новую запись + + + + Export to &CSV + Экспортировать в &CSV + + + + + Export the filtered data to CSV + Экспортировать отфильтрованные данные в CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Эта кнопка экспортирует данные просматриваемой таблицы так как отображается (после обработки фильтрами, форматами отображения и т.д.) в виде файла CSV. + + + + Save as &view + Сохранить как &представление + + + + + Save the current filter, sort column and display formats as a view + Сохранить текущие фильтры, столбецы сортировки и форматы отображания в виде представления + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Эта кнопка сохраняет текущие настройки просматриваемой таблицы (фильтры, форматы отображения и столбец сортировки) в виде представления SQL, которое вы можете впоследствии просмотреть или использовать в операторах SQL. + + + + Save Table As... + + + + + + Save the table as currently displayed + Сохранить таблицу так как сейчас отображается + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>Это всплывающее меню предоставляет следующие параметры, применяемые к текущей просматриваемой и отфильтрованной таблице:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Экспортировать ввиде CSV: данные просматриваемой таблицы сохраняется так как отображается (после применения фильтров, форматов отображения и порядка колонок) в CSV файл.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Сохранить как вид: эта опция сохраняет настройки текущей отображаемой таблицы (фильтры, форматы отображения и порядок колонок) как SQL вид, который вы позже можете просматривать или использовать в SQL выражениях.</li></ul></body></html> + + + + Hide column(s) + Скрыть колонки + + + + Hide selected column(s) + Скрыть выбранные колонки + + + + Show all columns + Показать все колонки + + + + Show all columns that were hidden + Показать все колонки, которые были скрыты + + + + + Set encoding + Кодировка + + + + Change the encoding of the text in the table cells + Изменение кодировки текста в данной таблице + + + + Set encoding for all tables + Установить кодировку для всех таблиц + + + + Change the default encoding assumed for all tables in the database + Изменить кодировку по умолчанию для всех таблиц в базе данных + + + + Clear Filters + + + + + Clear all filters + Очистить все фильтры + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Эта кнопка очищает все фильтры, установленные в полях ввода заголовка для текущей просматриваемой таблицы. + + + + Clear Sorting + + + + + Reset the order of rows to the default + + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + + + + + Print + Печать + + + + Print currently browsed table data + Печатать отображаемую таблицу + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Распечатывайте текущие данные таблицы. Выбор печати, если выбрано несколько ячеек. + + + + Ctrl+P + + + + + Refresh + Обновить + + + + Refresh the data in the selected table + Обновить данные в выбранной таблице + + + + This button refreshes the data in the currently selected table. + Эта кнопка обновляет данные выбранной в данный момент таблицы. + + + + F5 + + + + + Find in cells + + + + + Open the find tool bar which allows you to search for values in the table view below. + + + + + + Bold + Жирный + + + + Ctrl+B + + + + + + Italic + Курсив + + + + + Underline + Подчёркивание + + + + Ctrl+U + + + + + + Align Right + + + + + + Align Left + + + + + + Center Horizontally + + + + + + Justify + + + + + + Edit Conditional Formats... + + + + + Edit conditional formats for the current column + + + + + Clear Format + + + + + Clear All Formats + + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + + + + + + Font Color + + + + + + Background Color + + + + + Toggle Format Toolbar + + + + + Show/hide format toolbar + + + + + + This button shows or hides the formatting toolbar of the Data Browser + + + + + Select column + + + + + Ctrl+Space + + + + + Replace text in cells + + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + + + + + + + + , %n column(s) + + + + + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + + + + + Conditional formats for "%1" + + + + + determining row count... + определяем количество строк... + + + + %1 - %2 of >= %3 + %1 - %2 из >= %3 + + + + %1 - %2 of %3 + %1 - %2 из %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Пожалуйста, введите псевдо-первичный ключ, чтобы разрешить редактирование в этом представлении. Это должно быть имя уникального столбца в представлении. + + + + Delete Records + Удалить Записи + + + + Duplicate records + Дублированные записи + + + + Duplicate record + Дубликат записи + + + + Ctrl+" + + + + + Adjust rows to contents + + + + + Error deleting record: +%1 + Ошибка удаления записи: %1 + + + + Please select a record first + Сначала выберите запись + + + + There is no filter set for this table. View will not be created. + Для этой таблицы не установлен фильтр. Представление не будет создано. + + + + Please choose a new encoding for all tables. + Пожалуйста выбирите новую кодировку для всех таблиц. + + + + Please choose a new encoding for this table. + Пожалуйста выбирите новую кодировку для данной таблицы. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Оставьте это поле пустым если хотите чтобы использовалась кодировка по умолчанию. + + + + This encoding is either not valid or not supported. + Неверная кодировка либо она не поддерживается. + + + + %1 replacement(s) made. + + + + + VacuumDialog + + + Compact Database + Не понятно, что лучше "уплотнение" или "сжатие"? + Уплотнение базы данных + + + + Warning: Compacting the database will commit all of your changes. + Предупреждение: Уплотнение базы данных зафиксирует все изменения, которые были сделаны. + + + + Please select the databases to co&mpact: + Выберите объекты для &уплотнения: + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_tr.qm b/src/SqliteDBProcess/src/translations/sqlb_tr.qm new file mode 100644 index 0000000..21ab22a Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_tr.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_tr.ts b/src/SqliteDBProcess/src/translations/sqlb_tr.ts new file mode 100644 index 0000000..626a9fb --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_tr.ts @@ -0,0 +1,7006 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + SQLite DB Browser Hakkında + + + + Version + Versiyon + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html> <head /> <body> <p> DB Browser for SQLite, SQLite veritabanı dosyaları oluşturmak, tasarlamak ve düzenlemek için kullanılan açık kaynak kodlu, ücretsiz bir araçtır. </p> <p> 'Mozilla Kamu Lisansı Sürüm 2' ve 'GNU Genel Kamu Lisansı Sürüm 3 veya üstü' olmak üzere iki lisansa sahiptir. Bu lisansların koşulları çerçevesinde yazılımı düzenleyebilir veya yeniden dağıtabilirsiniz. </p> <p> Detaylar için, lütfen <a href="http://www.gnu.org/licenses/gpl.html" >http://www.gnu.org/licenses/gpl.html</a > ve <a href="https://www.mozilla.org/MPL/2.0/index.txt" >https://www.mozilla.org/MPL/2.0/index.txt</a > adreslerini ziyaret ediniz. </p> <p> Bu yazılım hakkında detaylı bilgi için lütfen internet sitemizi ziyaret ediniz: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a> </p> <p> <span style=" font-size:small;" >Bu yazılım GPL/LGPL lisansına sahip Qt Araç Kitini (<a href="http://qt-project.org/" ><span style=" font-size:small;">http://qt-project.org/</span></a>) kullanmaktadır.</span> <br /> <span style=" font-size:small;">Lisans koşulları ve bilgiler için </span ><a href="http://qt-project.org/doc/qt-5/licensing.html" ><span style=" font-size:small;" >http://qt-project.org/doc/qt-5/licensing.html</span ></a ><span style=" font-size:small;"> adresini ziyaret ediniz.</span > </p> <p> <span style=" font-size:small;" > Bu yazılım ayrıca, Mark James tarafından hazırlanan, 'Creative Commons Attribution 2.5 veya 3.0' lisansına sahip Silk ikon setini kullanmaktadır. <br />Detaylar için </span ><a href="http://www.famfamfam.com/lab/icons/silk/" ><span style=" font-size:small;" >http://www.famfamfam.com/lab/icons/silk/</span ></a ><span style=" font-size:small;"> adresini ziyaret ediniz.</span> </p> </body> </html> + + + + AddRecordDialog + + + Add New Record + Yeni Kayıt Ekle + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + Yeni kayıt için kısıtlamaları göz önüne alarak yeni değerleri giriniz. Kalın vurgulu alanlar zorunludur. + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + Değer sütununda, isim sütunuyla belirtilen alan için değer belirtebilirsiniz. Tip sütunu alanın tipini belirtir. Varsayılan değerler NULL ile aynı stilde görüntülenir. + + + + Name + İsim + + + + Type + Tip + + + + Value + Değer + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + Eklenecek değerler. Varsayılan olarak doldurulmuş değerler, değiştirilmedikleri takdirde otomatik olarak ekleneceklerdir. + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + Üstteki bölümdeki değerleri değiştirdiğinizde, yeni kaydı eklemek için kullanılacak sorgu burada görüntülenir. Kaydet butonuna basmadan önce manuel olarak bu sorguyu düzenleyebilirsiniz. + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html> <head /> <body> <p> <span style=" font-weight:600;">Kaydet</span> butonu yeni kaydı eklemek için ilgili SQL ifadesini veritabanına gönderir. </p> <p> <span style=" font-weight:600;">Varsayılanları Yükle</span> butonu <span style=" font-weight:600;">Değer</span> sütunundakileri varsayılanlarına yükler. </p> <p> <span style=" font-weight:600;">İptal</span> butonu sorguyu çalıştırmadan bu pencereyi kapatır. </p> </body> </html> + + + + Auto-increment + + Otomatik-Artan + + + + + Unique constraint + + Benzersiz kısıtı + + + + + Check constraint: %1 + + Kısıtlamayı kontrol et: %1 + + + + + Foreign key: %1 + + Yabancı anahatar: %1 + + + + + Default value: %1 + + Varsayılan değer: %1 + + + + + Error adding record. Message from database engine: + +%1 + Kayıt eklenirken hata oluştu. Veritabanı motoru mesajı: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + Girilen bütün değerleri varsayılanlarına döndürmek istediğinize emin misiniz? + + + + Application + + + Possible command line arguments: + Muhtemel komut satırı argümanları: + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + -s/--sql opsiyonu bir argüman gerektirir + + + + The file %1 does not exist + %1 dosyası mevcut değil + + + + The -t/--table option requires an argument + -t/--table opsiyonu bir argüman gerektirir + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + -o/--option ve -O/--save-option opsiyonları grup/ayar=değer formatında bir argüman gerektirir + + + + Invalid option/non-existant file: %1 + Geçersiz seçenek veya mevcut olmayan dosya: %1 + + + + SQLite Version + SQLite Versiyonu + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + %1 için derlendi, %2 üzerinde çalışıyor + + + + Qt Version %1 + + + + + CipherDialog + + + SQLCipher encryption + SQLCipher şifrelemesi + + + + &Password + &Parola + + + + &Reenter password + Pa&rolayı tekrar girin + + + + Encr&yption settings + Şifreleme A&yarları + + + + SQLCipher &3 defaults + SQLCipher &3 varsayılanları + + + + SQLCipher &4 defaults + SQLCipher &4 varsayılanları + + + + Custo&m + &Özel + + + + Page si&ze + &Sayfa boyutu + + + + &KDF iterations + &KDF yinelemeleri + + + + HMAC algorithm + HMAC algoritması + + + + KDF algorithm + KDF algoritması + + + + Plaintext Header Size + Düz Metin Üstbilgi Boyutu + + + + Passphrase + Parola + + + + Raw key + Ham anahtar + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Lütfen veritabanını şifrelemek için anahtar ayarlayın. +Unutmayın, bunun dışında isteğe bağlı yapacağınız herhangi değişikliklerde, veritabanı dosyasını her açtığınızda şifrenizi yeniden girmeniz gerekecektir. +Şifrelemeyi devre dışı bırakmak için parola alanını boş bırakınız. +Şifreleme işlemi biraz zaman alabilir ve bu işlemi yapmadan önce veritabanınızın yedeğini almalısınız! Kaydedilmemiş değişiklikler şifreniz değiştirilmeden önce kaydedilir. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Lütfen veritabanınızı şifrelemek için kullandığınız anahtarı giriniz. +Bu veritabanı için herhangi bir başka ayar daha yapılmışsa, bu bilgileri de sağlamalısınız. + + + + ColumnDisplayFormatDialog + + + Choose display format + Görüntüleme formatını seçiniz + + + + Display format + Görüntüleme formatı + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + '%1' sütunu için görüntülemeden önce uygulanacak bir görüntüleme formatı seçin. + + + + Default + Varsayılan + + + + Decimal number + Ondalık sayı + + + + Exponent notation + Üslü gösterim + + + + Hex blob + Onaltılık ikili veri + + + + Hex number + Onaltılık sayı + + + + Apple NSDate to date + Apple NSDate tipinden tarih tipine + + + + Java epoch (milliseconds) to date + Java epoch (milisaniye) tipinden tarih tipine + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + Julian day tipinden tarih tipine + + + + Unix epoch to local time + Unix epoch tipinden yerel zaman tipine + + + + Date as dd/mm/yyyy + dd/mm/yyyy tarih formatı + + + + Lower case + Küçük harf + + + + Custom display format must contain a function call applied to %1 + Özel görüntüleme formatı, %1 için uygulanan fonksiyon çağrısı içermelidir + + + + Error in custom display format. Message from database engine: + +%1 + Özel görüntüleme formatınde hata oluştu. Veritabanı motoru mesajı: + +%1 + + + + Custom display format must return only one column but it returned %1. + Özel görüntüleme formatı sadece bir sütun döndürmeli: %1. + + + + Octal number + Sekizlik sayı + + + + Round number + Küsüratsız sayı + + + + Unix epoch to date + Unix epoch tipinden tarih tipine + + + + Upper case + Büyük harf + + + + Windows DATE to date + Windows DATE tipinden tarih tipine + + + + Custom + Özel + + + + CondFormatManager + + + Conditional Format Manager + Koşullu Biçim Yöneticisi + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + Bu iletişim kutusu koşullu biçimler oluşturmaya ve düzenlemeye izin verir. Her hücre stili, hücre verisi için ilk sağlanan koşul tarafından seçilecektir. Koşullu biçimler yukarı ve aşağı taşınabilir, üst sıralardakiler alt sıralardakilere göre önceliklidir. Koşullar için sözdizimi, filtreler ile aynıdır ve boş koşullar tüm hücreler için geçerlidir. + + + + Add new conditional format + Yeni koşullu biçim oluştur + + + + &Add + &Ekle + + + + Remove selected conditional format + Seçilen koşullu biçimi sil + + + + &Remove + &Sil + + + + Move selected conditional format up + Seçilen koşullu biçimi yukarı taşı + + + + Move &up + Y&ukarı taşı + + + + Move selected conditional format down + Seçilen koşullu biçimi aşağı taşı + + + + Move &down + Aşağı &Taşı + + + + Foreground + Ön plan + + + + Text color + Yazı rengi + + + + Background + Arka plan + + + + Background color + Arka plan rengi + + + + Font + Yazı tipi + + + + Size + Boyut + + + + Bold + Kalın + + + + Italic + İtalik + + + + Underline + Altı çizili + + + + Alignment + Hizalama + + + + Condition + Koşul + + + + + Click to select color + Renk seçmek için tıklayın + + + + Are you sure you want to clear all the conditional formats of this field? + Bu alanın tüm koşullu biçimlerini silmek istediğinizden emin misiniz? + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + Lütfen veritabanının ismini erişmek istediğiniz bağlı veritabanının altında belirtin + + + + Invalid file format + Geçersiz dosya formatı + + + + Do you want to save the changes made to the database file %1? + %1 veritabanı dosyasında yaptığınız değişiklikleri kaydetmek istiyor musunuz? + + + + Exporting database to SQL file... + veritabanı, SQL dosyası olarak dışa aktarılıyor... + + + + + Cancel + İptal + + + + Executing SQL... + SQL yürütülüyor... + + + + Action cancelled. + İşlem iptal edildi. + + + + This database has already been attached. Its schema name is '%1'. + Bu veritabanı zaten mevcut ve şemasının ismi '%1'. + + + + Do you really want to close this temporary database? All data will be lost. + Gerçekten geçici veritabanını kapatmak istiyor musunuz? Bütün veriler kaybedilecek. + + + + Database didn't close correctly, probably still busy + Veritabanı doğru bir şekilde kapatılamadı, muhtemelen hâlâ kullanımda + + + + The database is currently busy: + Veritabanı şu anda meşgul: + + + + Do you want to abort that other operation? + Diğer işlemi iptal etmek istiyor musunuz? + + + + + No database file opened + Hiçbir veritabanı dosyası açılmamış + + + + + Error in statement #%1: %2. +Aborting execution%3. + Belirtilen ifadede hata oluştu: #%1: %2 +Yürütme durduruluyor %3. + + + + + and rolling back + ve işlem geri alınıyor + + + + didn't receive any output from %1 + %1 sorgusundan herhangi bir çıktı alınamadı + + + + could not execute command: %1 + komut işletilemedi: %1 + + + + Cannot delete this object + Bu obje silinemiyor + + + + Cannot set data on this object + Bu objeye veri atanamıyor + + + + + A table with the name '%1' already exists in schema '%2'. + '%2' şemasında '%1' isimli tablo zaten mevcut. + + + + No table with name '%1' exists in schema '%2'. + '%2' şeması içerisinde '%1' isminde bir tablo yok. + + + + + Cannot find column %1. + %1 sütunu bulunamadı. + + + + Creating savepoint failed. DB says: %1 + Kayıt noktası oluşturulamadı. Veritabanı mesajı: %1 + + + + Renaming the column failed. DB says: +%1 + Sütun yeniden adlandırılamadı. Veritabanı motoru mesajı: +%1 + + + + + Releasing savepoint failed. DB says: %1 + Kayıt noktası serbest bırakılamadı. Veritabanı motoru mesajı: %1 + + + + Creating new table failed. DB says: %1 + Veri tabanı oluşturulamadı. Veritabanı mesajı: %1 + + + + Copying data to new table failed. DB says: +%1 + Yeni tabloya veri kopyalanamadı. Veritabanı mesajı: +%1 + + + + Deleting old table failed. DB says: %1 + Eski tablolar silinemedi: Veritabanı mesajı: %1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + '%1' tablosu '%2' olarak adlandırılırken hata oluştu. +Veritabanı motoru mesajı: +%3 + + + + could not get list of db objects: %1 + veritabanı objelerinin listesi alınamadı: %1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + Bu tabloyla ilişkili bazı objelerin restore işlemi başarısız. Bu hata büyük olasılıkla sütunların isminin değişimden kaynaklanıyor. SQL sorgusunu elle düzeltmek ve yürütmek isterseniz: + + + + + + could not get list of databases: %1 + veri tabanı listesi alınamadı: %1 + + + + Error loading extension: %1 + Eklenti yüklenirken hata oluştu: %1 + + + + could not get column information + sütun bilgisi alınamadı + + + + Error setting pragma %1 to %2: %3 + Belirtilen pragma ayarlanırken hata oluştu: %1 > %2: %3 + + + + File not found. + Dosya bulunamadı. + + + + DbStructureModel + + + Name + İsim + + + + Object + Obje + + + + Type + Tip + + + + Schema + Şema + + + + Database + Veritabanı + + + + Browsables + Görüntülenebilir olanlar + + + + All + Tümü + + + + Temporary + Geçici + + + + Tables (%1) + Tablolar (%1) + + + + Indices (%1) + İndisler (%1) + + + + Views (%1) + Görünümler (%1) + + + + Triggers (%1) + Tetikleyiciler (%1) + + + + EditDialog + + + Edit database cell + Veritabanı hücresini düzenle + + + + Mode: + Mod: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + Bu, hücre düzenleyicisi için desteklenen modların listesidir. Geçerli hücrenin verilerini görüntülemek veya düzenlemek için bir mod seçin. + + + + RTL Text + Sağdan Sola Okunan Metin + + + + + Image + Görüntü + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + Düzenleyici modunu otomatik olarak yüklenen veri tipine ayarlar + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + Bu onay kutusu, editör modunun otomatik olarak değiştirilmesini etkinleştirir veya devre dışı bırakır. Bu kutucuk işaretliyken, yeni bir hücre seçildiğinde veya yeni veriler içe aktarıldığında, mod algılanan veri türüne göre ayarlanır. Daha sonra editör modunu manuel olarak değiştirebilirsiniz. Hücreler arasında hareket ederken bu manuel modu korumak isterseniz, kutucuğun işaretini kaldırın. + + + + Auto-switch + Otomatik geçiş + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + Metin editorü modları,otomatik biçimlendirme, metin, JSON veya XML verilerinizi vurgulu olarak düzenlemenizi ve kayıttan önce formatlamanızı ve doğrulamanızı sağlar . + +Hatalar, kırmızı dalgalı alt çizgiyle belirtilir. + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + Qt editör, varsayılan metin editörü tarafından desteklenmeyen sağdan sola okunan dillde yazılmış betikleri için kullanılır. + + + + Open preview dialog for printing the data currently stored in the cell + Şu anda hücrede saklanan veriyi yazdırmak için önizleme penceresini aç + + + + Auto-format: pretty print on loading, compact on saving. + Otomatik format: yüklenirken aşamasında kaliteli baskı, kayıt açısından da tasarrufludur. + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + Etkinleştirildiğinde, otomatik biçimlendirme özelliği yükleme sırasında verileri biçimlendirir, metni satırlara böler ve maksimum okunabilirlik için girintili yapar. Veri kaydederken otomatik biçimlendirme özelliği, satır sonu karakterlerini ve gereksiz boşlukları kaldırarak verileri sıkıştırır. + + + + Word Wrap + Kelime Kaydırma + + + + Wrap lines on word boundaries + Kelime sınırlarında kelimeyi kaydırır + + + + + Open in default application or browser + Varsayılan program veya görüntüleyicide aç + + + + Open in application + Uygualamada aç + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + Değe,r bir dosya veya URL olarak yorumlanır ve varsayılan uygulamada veya web tarayıcısında açılır. + + + + Save file reference... + Dosya referansını kaydet... + + + + Save reference to file + Referansı dosyaya kaydet + + + + + Open in external application + Harici bir programda aç + + + + Autoformat + Otomatik format + + + + &Export... + D&ışa aktar... + + + + + &Import... + &İçe aktar... + + + + + Import from file + Dosyadan içe aktar + + + + + Opens a file dialog used to import any kind of data to this database cell. + Veritabanı hücresine herhangi bir tipte veri yüklemek için bir dosya iletişim kutusu açar. + + + + Export to file + Dosyaya aktar + + + + Opens a file dialog used to export the contents of this database cell to a file. + Veritabanı hücresinin içeriğini bir dosyaya aktarmak için kullanılan bir dosya iletişim kutusu açar. + + + + + Print... + Yazdır... + + + + Open preview dialog for printing displayed image + Görüntülenen resmi yazdırmak için önizleme penceresini aç + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + Görüntülenen yazıyı yazdırmak için önizleme penceresini aç + + + + Copy Hex and ASCII + Onaltılık ve ASCII değerini kopyala + + + + Copy selected hexadecimal and ASCII columns to the clipboard + Seçilen onaltılık ve ASCII sütunlarını panoya kopyala + + + + Ctrl+Shift+C + + + + + Set as &NULL + &NULL olarak ayarla + + + + Apply data to cell + Veriyi hücreye uygula + + + + This button saves the changes performed in the cell editor to the database cell. + Bu buton, hücre editöründe yapılan değişiklikleri veritabanı hücresine kaydeder. + + + + Apply + Uygula + + + + Text + Metin + + + + Binary + İkili + + + + Erases the contents of the cell + Hücre içeriğini siler + + + + This area displays information about the data present in this database cell + Bu alan veritabanı hücresinin içindeki içerik hakkında bilgileri görüntüler + + + + Type of data currently in cell + Şu anda hücrenin içinde bulunan veri tipi + + + + Size of data currently in table + Şuan da tablonun içinde bulunan verinin boyutu + + + + Choose a filename to export data + Veriyi dışa aktarmak için dosya ismi seçiniz + + + + + Image data can't be viewed in this mode. + Imaj verisi bu modda görüntülenemiyor. + + + + + Try switching to Image or Binary mode. + Görüntü veya İkili mod arasında geçiş yapın. + + + + + Binary data can't be viewed in this mode. + İkili veri bu modda görüntülenemiyor. + + + + + Try switching to Binary mode. + İkili veri moduna geçmeyi deneyin. + + + + + Image files (%1) + Görüntü dosyaları (%1) + + + + Binary files (*.bin) + İkili dosyalar (*.bin) + + + + Choose a file to import + İçe aktarmak için dosya seçiniz + + + + %1 Image + %1 imajı + + + + Invalid data for this mode + Bu mod için geçersiz veri + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + Hücre geçersiz %1 verisi içeriyor. Sebep: %2. Bu değişikliği hücreye gerçekten uygulamak istiyor musunuz? + + + + Type of data currently in cell: %1 Image + Şu anda hücrenin içinde bulunan veri tipi: %1 Imajı + + + + %1x%2 pixel(s) + %1x%2 piksel + + + + Type of data currently in cell: NULL + Şu anda hücrenin içinde bulunan veri tipi: NULL + + + + Type of data currently in cell: Valid JSON + Şu anda hücrenin içinde bulunan veri tipi: Doğrulanmış JSON + + + + Couldn't save file: %1. + Dosya kaydedilemedi: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + Veriler geçici bir dosyaya kaydedildi ve varsayılan uygulama ile açıldı. Artık dosyayı düzenleyebilir ve hazır olduğunuzda, kaydedilen yeni verileri hücre editörüne uygulayabilir veya değişiklikleri iptal edebilirsiniz. + + + + + Type of data currently in cell: Text / Numeric + Şuan da hücresinin içinde bulunan verinin tipi: Metin / Nümerik + + + + + + %n character(s) + + %n karakter + + + + + Type of data currently in cell: Binary + Şuan da hücresinin içinde bulunan verinin tipi: İkili Veri + + + + + %n byte(s) + + %n bayt + + + + + EditIndexDialog + + + &Name + &İsim + + + + Order + Sırala + + + + &Table + &Tablo + + + + Edit Index Schema + Index Şemasını Düzenle + + + + &Unique + Benzersi&z + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Index'i tablonun yalnızca bir bölümüyle sınırlamak için, burada tablonun dizine alınması gereken kısmını seçen bir WHERE deyimi belirtebilirsiniz + + + + Partial inde&x clause + Kısmi inde&x hükmü + + + + Colu&mns + Sütu&nlar + + + + Table column + Tablo sütunu + + + + Type + Tip + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Index için yeni bir ifade sütunu ekleyin. İfade sütunları, sütun adları değil SQL ifadesi içerir. + + + + Index column + Index sütunu + + + + Deleting the old index failed: +%1 + Eski index silinemedi: +%1 + + + + Creating the index failed: +%1 + İndeks oluşturma hatası: %1 + + + + EditTableDialog + + + Edit table definition + Tablo tanımını düzenle + + + + Table + Tablo + + + + Advanced + Gelişmiş + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Tabloyu satır ID'si olmadan ayarlayın. Bu ayar için, Tamsayı(Integer) tipinde otomatik arttır özelliği olmayan ve birincil anahtar olarak ayarlanmış bir alan gerekli. + + + + Without Rowid + Satır ID(Rowid) Kullanma + + + + Database sche&ma + Veritabanı &Şeması + + + + Fields + Alanlar + + + + Add + Ekle + + + + Remove + Sil + + + + Move to top + En yukarı taşı + + + + Move up + Yukarı taşı + + + + Move down + Aşağı taşı + + + + Move to bottom + En aşağı taşı + + + + + Name + İsim + + + + + Type + Tip + + + + NN + NN + + + + Not null + NULL Olamaz + + + + PK + Birincil Anahtar + + + + Primary key + Birincil Anahtar + + + + AI + Otomatik Arttırma + + + + Autoincrement + Otomatik Arttırma + + + + U + Benzersiz + + + + + + Unique + Benzersiz + + + + Default + Varsayılan + + + + Default value + Varsayılan değer + + + + + + Check + Kontrol + + + + Check constraint + Kısıtlama Kontrol + + + + Collation + Karşılaştırma + + + + + + Foreign Key + Yabancı Anahtar + + + + Constraints + Kısıtlar + + + + Add constraint + Kısıt ekle + + + + Remove constraint + Kısıtı kaldır + + + + Columns + Sütunlar + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html> <head /> <body> <p> <span style=" font-weight:600; color:#ff0000;">Uyarı: </span>Bu tablo tanımında ayrıştırıcının tam olarak anlayamadığı bir şey var. Bu tabloyu değiştirmek ve kaydetmek sorunlara neden olabilir. </p> </body> </html> + + + + + Primary Key + Birincil Anahtar + + + + Add a primary key constraint + Birinci anahtar kısıtlaması ekle + + + + Add a foreign key constraint + Yabancı anahtar kısıtı ekle + + + + Add a unique constraint + Benzersiz kısıtı ekle + + + + Add a check constraint + Kontrol kısıtı ekle + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + Her tabloda yalnızca bir birincil anahtar bulunabilir. Mevcut birincil anahtarı düzenlemeyi denedin. + + + + Error creating table. Message from database engine: +%1 + Tablo oluşturma hatası. veritabanı motorunun mesajı: %1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Bu isme sahip alan zaten var. Lütfen bu alan için farklı bir isim kullanın veya aynı isme sahip alanı yeniden adlandırın. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Tablonuzun en az bir satırında boş bırakılmış alan var. Bu sebeple bu özelliği etkinleştirmek imkansız. Lütfen ilk önce tablonuzdaki veriyi değiştirin. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Tablonuzun en az bir satırında tamsayı dışında değer içeren alan var. Bu sebeğle otomatik arttır özelliğini etkinleştirmek imkansız. Lütfen ilk önce tablonuzdaki veriyi değiştirin. + + + + Column '%1' has duplicate data. + + '%1' sütununda yinelenen veriler var. + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + Şu anda 'Benzersiz' kısıtı eklenmesi imkansız.'Benzersiz' kısıtını ekleyebilmek için lütfen yinelenen değerleri silin. + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + Bu sütun%1 tablosundaki yabancı bir anahtar tarafından referans alınıyor, bu nedenle adı değiştirilemez. + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Gerçekten '%1' alanını silmek istediğinize emin misiniz? Bu alanda mevcut bütün verilerinizi kaybedeceksiniz. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Lütfen 'Satır ID(Rowid) Kullanma' özelliğini etkinleştirmek için öncelikle aşağıdaki ölçütleri karşılayan alan ekleyin: +- Birincil anahtar ayarlayın +- Otomatik arttır ayarını devre dışı bırakın + + + + ExportDataDialog + + + Export data as CSV + Veriyi CSV olarak dışa aktar + + + + Tab&le(s) + Tab&lolar + + + + Colu&mn names in first line + Sütu&n isimleri ilk satırda + + + + Fie&ld separator + &Alan ayracı + + + + , + , + + + + ; + ; + + + + Tab + Tab karakteri + + + + | + | + + + + + + Other + Diğer + + + + &Quote character + &Tırnak karakteri + + + + " + " + + + + ' + ' + + + + New line characters + Yeni satır karakterleri + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Düzenli baskı + + + + + Could not open output file: %1 + Oluşturulan dosya açılamadı: %1 + + + + + Choose a filename to export data + Verileri dışarı aktarmak için dosya ismi seçiniz + + + + Export data as JSON + Veriyi JSON olarak dışa aktar + + + + exporting CSV + CSV dışa aktarılıyor + + + + exporting JSON + JSON dışa aktarılıyor + + + + Please select at least 1 table. + Lütfen en az 1 tablo seçiniz. + + + + Choose a directory + Dizin seçiniz + + + + Export completed. + Dışa aktarma tamamlandı. + + + + ExportSqlDialog + + + Export SQL... + SQL dosyasını dışa aktar... + + + + Tab&le(s) + Tablo&lar + + + + Select All + Tümünü Seç + + + + Deselect All + Tüm Seçimi İptal Et + + + + &Options + &Seçenekler + + + + Keep column names in INSERT INTO + INSERT ve INTO komutlarında sütun isimlerini tut + + + + Multiple rows (VALUES) per INSERT statement + Tek INSERT ifadesi için çok satırlı (VALUES) ifade + + + + Export everything + Her şeyi dışa aktar + + + + Export data only + Sadece veriyi dışa aktar + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Eski şemayı tut (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Eski şemanın üzerine yaz (DROP TABLE, then CREATE TABLE) + + + + Export schema only + Sadece şemayı dışa aktar + + + + Please select at least one table. + Lütfen en az bir tablo seçiniz. + + + + Choose a filename to export + Dışa aktarmak için dosya ismi seçiniz + + + + Export completed. + Dışa aktarma tamamlandı. + + + + Export cancelled or failed. + Dışa aktarma iptal edildi veya başarısız. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + Bul... + + + + Find and Replace... + Bul ve Değiştir... + + + + Print... + Yazdır... + + + + ExtendedTableWidget + + + Use as Exact Filter + Tam Filtre Olarak Kullan + + + + Containing + İçersin + + + + Not containing + İçermesin + + + + Not equal to + Eşit değil + + + + Greater than + Büyüktür + + + + Less than + Küçüktür + + + + Greater or equal + Büyük eşit + + + + Less or equal + Küçük eşit + + + + Between this and... + Şunların arasında... + + + + Regular expression + Düzenli ifadeler (RegEx) + + + + Edit Conditional Formats... + Koşullu Biçimleri Düzenle... + + + + Set to NULL + NULL olarak ayarla + + + + Copy + Kopyala + + + + Copy with Headers + Üst Başlıklarla Kopyala + + + + Copy as SQL + SQL olarak Kopyala + + + + Paste + Yapıştır + + + + Print... + Yazdır... + + + + Use in Filter Expression + Filtre İfadesinde Kullan + + + + Alt+Del + Alt+De + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + Pano içeriği seçilen aralıktan daha büyük. + Yine de eklemek istiyor musunuz? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p> Tüm veriler yüklenmedi. <b>Tüm satırları seçmeden önce tüm verileri yüklemek istiyor musunuz?</b> </p> <p></p> <p> <b>Hayır</b> olarak cevaplamak, tüm verileri yüklemeyecek ve seçim işlemini uygulanmayacak. <br /> <b>Evet</b> seçeneği biraz zaman alabilir ama seçim işlemini gerçekleştirecektir. </p> Uyarı: Tüm verilerin yüklenmesi büyük tablolar için büyük miktarda bellek gerektirebilir. + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + Seçim NULL olarak ayarlanamıyor. %1 sütununda NOT NULL kısıtlaması var. + + + + FileExtensionManager + + + File Extension Manager + Dosya Uzantı Yöneticisi + + + + &Up + &Yukarı + + + + &Down + &Aşağı + + + + &Add + &Ekle + + + + &Remove + &Sil + + + + + Description + Açıklama + + + + Extensions + Uzantılar + + + + *.extension + *.uzantı + + + + FilterLineEdit + + + Filter + Filtre + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + Bu giriş alanları, seçili tabloda hızlı filtreler gerçekleştirmenizi sağlar. +Varsayılan olarak, metin içeren satırlar filtrelenir. +Ayrıca aşağıdaki operatörler de destekleniyor: +% Joker +> Büyüktür +< Küçüktür +>= Büyük eşit +<= Küçük eşit += Eşittir +<> Eşit değil +x~y Aralık: değerler x ve y arasında +/regexp/ Kurallı ifadelerle(RegExp) eşleşen değerler + + + + Clear All Conditional Formats + Tüm Koşullu Biçimleri Temizle + + + + Use for Conditional Format + Koşullu Biçim için Kullan + + + + Edit Conditional Formats... + Koşullu Biçimleri Düzenle... + + + + Set Filter Expression + Filtre İfadesi Ayarla + + + + What's This? + Bu nedir? + + + + Is NULL + NULL mu + + + + Is not NULL + NULL değil mi + + + + Is empty + Boş mu + + + + Is not empty + Boş değil mi + + + + Not containing... + İçermiyor... + + + + Equal to... + Şuna eşit... + + + + Not equal to... + Şuna eşit değil... + + + + Greater than... + Büyüktür... + + + + Less than... + Küçüktür... + + + + Greater or equal... + Büyük eşit... + + + + Less or equal... + Küçük eşit... + + + + In range... + Aralıkta mı... + + + + Regular expression... + Düzenli ifade (RegEx)... + + + + FindReplaceDialog + + + Find and Replace + Bul ve Değiştir + + + + Fi&nd text: + &Aranan Metin: + + + + Re&place with: + Şununla d&eğiştir: + + + + Match &exact case + Büyük kü&çük harfe duyarlı + + + + Match &only whole words + Kelimenin ta&mamını eşleştir + + + + When enabled, the search continues from the other end when it reaches one end of the page + Etkinleştirildiğinde, arama sayfanın bir ucuna ulaştığında diğer uçtan devam eder + + + + &Wrap around + Ba&şa dön + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + Ayarlandığında, arama imleç konumundan geriye doğru gider, aksi takdirde ileri gider + + + + Search &backwards + Geri&ye doğru ara + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>İşaretlendiğinde, girilen desen yalnızca geçerli seçimde aranır.</p></body></html> + + + + &Selection only + Sadece se&çimde ara + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html> <head /> <body> <p> İşaretlendiğinde, girilen desen UNIX düzenli ifadesi olarak yorumlanır. <a href="https://en.wikibooks.org/wiki/Regular_Expressions" >Wikibooks</a > üzerinden düzenli ifadeleri inceleyebilirsiniz. </p> </body> </html> + + + + Use regular e&xpressions + Düzenli ifadeleri &kullan + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + İmleç konumundan itibaren belirtilen yönde bir sonraki eşleşmeyi bulur + + + + &Find Next + Sonrakini &Bul + + + + F3 + + + + + &Replace + &Değiştir + + + + Highlight all the occurrences of the text in the page + Eşleşen tüm kelimeleri vurgula + + + + F&ind All + Tüm&ünü Bul + + + + Replace all the occurrences of the text in the page + Sayfadaki bulunan metinlerin tümünü değiştir + + + + Replace &All + &Tümünü Değiştir + + + + The searched text was not found + Aranan metin bulunamadı + + + + The searched text was not found. + The searched text was not found. + + + + The searched text was found one time. + Aranan metin bir kez bulundu. + + + + The searched text was found %1 times. + Aranan metin %1 kez bulundu. + + + + The searched text was replaced one time. + Aranan metin bir kez değiştirildi. + + + + The searched text was replaced %1 times. + Aranan metin %1 kez değiştirildi. + + + + ForeignKeyEditor + + + &Reset + &Sıfırla + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + Yabancı anahtar hükümleri (ON UPDATE, ON DELETE vb.) + + + + ImportCsvDialog + + + Import CSV file + CSV dosyasını içe aktar + + + + Table na&me + Tablo İs&mi + + + + &Column names in first line + İlk satır &sütun isimleri içeriyor + + + + Field &separator + Alan &ayracı + + + + , + , + + + + ; + ; + + + + + Tab + Tab karakteri + + + + | + | + + + + Other + Diğer + + + + &Quote character + &Tırnak karakteri + + + + + Other (printable) + Diğer (yazdırılabilir) + + + + + Other (code) + Diğer (Kod) + + + + " + " + + + + ' + ' + + + + &Encoding + &Kodlama + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Alanlar biçimlendirilsin mi? + + + + Separate tables + Tablolar ayrılmış + + + + Advanced + Gelişmiş + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + CSV dosyasından boş bir değer alındığında, sütunun varsayılan değeri kullanılır. Varsayılan değer yerine boş bir değer eklemek için bu seçeneği etkinleştirin. + + + + Ignore default &values + &Varsayılan değerleri yoksay + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + Varsayılan değeri olmayan NOT NULL kısıtına sahip bir sütuna, boş bir değer içe aktarmaya çalışırken içe aktarmayı durdurmak için bu seçeneği etkinleştirin. + + + + Fail on missing values + Eksik değerde işlemi durdur + + + + Disable data type detection + Veri tipi algılamayı devre dışı bırak + + + + Disable the automatic data type detection when creating a new table. + Yeni bir tablo oluştururken otomatik veri tipi algılamayı devre dışı bırakın. + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + Birincil anahtar, benzersiz kısıtı veya benzersiz index kısıtına sahip mevcut bir tablo içe aktarırken çakışma meydana gelebilir. Bu seçenek, bu durum için bir strateji seçmenize olanak tanır: Varsayılan olarak işlem iptal edilir ve geri alınır, ancak isterseniz çakışmaları yoksayıp içe aktarmazsınız veya yeni satırları mevcut olanlarla değiştirebilirsiniz. + + + + Abort import + İçe aktarmayı iptal et + + + + Ignore row + Satırı yoksay + + + + Replace existing row + Varolan kaydı değiştir + + + + Conflict strategy + Çakışma stratejisi + + + + + Deselect All + Tüm seçimi iptal et + + + + Match Similar + Benzerleri Eşleştir + + + + Select All + Tümünü Seç + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + '%1' isminde bir tablo zaten var, var olan bir tablo için içe aktarma, yalnızca sütun sayıları eşitse mümkün olabilir. + + + + There is already a table named '%1'. Do you want to import the data into it? + '%1' adında bir tablo zaten var. Verileri içe aktarmak istiyor musunuz? + + + + Creating restore point failed: %1 + Geri yükleme noktası oluşturma başarısız: %1 + + + + Creating the table failed: %1 + Tablo oluşturma başarısız: %1 + + + + importing CSV + CSV İçe Aktarma + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + '%1' dosyasını içe aktarmak %2ms sürdü. %3ms satır fonksiyonunda harcandı. + + + + Inserting row failed: %1 + Satır ekleme başarısız: %1 + + + + MainWindow + + + DB Browser for SQLite + SQLite DB Browser + + + + toolBar1 + toolBar1 + + + + Opens the SQLCipher FAQ in a browser window + SQLCipher Hakkında SSS bölümünü tarayıcı penceresinde açar + + + + Export one or more table(s) to a JSON file + Bir veya daha fazla tabloyu JSON dosyası olarak dışa aktarın + + + + Open an existing database file in read only mode + Mevcut bir veritabanı dosyasını salt okunur modda açar + + + + &File + &Dosya + + + + &Import + &İçe Aktar + + + + &Export + &Dışa Aktar + + + + &Edit + Düz&enle + + + + &View + &Görünüm + + + + &Help + &Yardım + + + + DB Toolbar + Veritabanı Araç Çubuğu + + + + Edit Database &Cell + Veritabanı Hü&cresini Düzenle + + + + DB Sche&ma + Veritabanı Şe&ması + + + + &Remote + &Uzak Bilgisayar + + + + + Execute current line + Geçerli satırı yürüt + + + + This button executes the SQL statement present in the current editor line + Bu buton, geçerli editör satırında bulunan SQL ifadesini yürütür + + + + Shift+F5 + + + + + Sa&ve Project + Projeyi &Kaydet + + + + User + Kullanıcı + + + + Application + Uygulama + + + + &Clear + &Temizle + + + + &New Database... + Ye&ni Veritabanı... + + + + + Create a new database file + Yeni bir veritabanı dosyası oluştur + + + + This option is used to create a new database file. + Bu seçenek yeni bir veritabanı dosyası oluşturmak için kullanılır. + + + + Ctrl+N + + + + + + &Open Database... + &Veritabanı Aç... + + + + + + + + Open an existing database file + Mevcut veritabanı dosyasını aç + + + + + + This option is used to open an existing database file. + Bu seçenek mevcut veritabanı dosyasını açmak için kullanılır. + + + + Ctrl+O + + + + + &Close Database + Veritabanı &Kapat + + + + + Ctrl+W + + + + + + Revert database to last saved state + Veritabanını en son kaydedilen duruma döndür + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Bu seçenek veritabanını en son kaydedilen durumuna döndürür. Geçerli kayıttan sonra yaptığınız tüm değişiklikler kaybolacaktır. + + + + + Write changes to the database file + Değişiklikleri veritabanı dosyasına kaydet + + + + This option is used to save changes to the database file. + Bu seçenek değişiklikleri veritabanı dosyasına kaydetmenizi sağlar. + + + + Ctrl+S + + + + + Compact the database file, removing space wasted by deleted records + Veritabanı dosyasını genişletmek, silinen kayıtlardan dolayı meydana gelen boşlukları temizler + + + + + Compact the database file, removing space wasted by deleted records. + Veritabanı dosyasını genişletmek, silinen kayıtlardan dolayı meydana gelen boşlukları temizler. + + + + E&xit + &Çıkış + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Verileri .sql uzantılı döküm dosyasından varolan veya yeni veritabanına aktarın. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Bu seçenek verileri .sql döküm dosyasından varolan veya yeni veritabanına aktarmanıza olanak sağlar. SQL dosyaları MySQL ve PostgreSQL dahil olmak üzere birçok veritabanı motorları tarafından oluştururlar. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Virgülle ayrılmış metin dosyalarını veritabanınızın içine aktarmanızı sağlayan sihirbazı açar. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Virgülle ayrılmış metin dosyalarını veritabanınızın içine aktarmanızı sağlayan sihirbazı açar. CSV dosyaları çoğu veritabanı motorları ve elektronik tablo uygulamaları tarafından oluştururlar. + + + + Export a database to a .sql dump text file. + Veritabanını .sql döküm dosyası olarak dışa aktar. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Bu seçenek veritabanını .sql döküm dosyası olarak dışa aktarmanızı sağlar. SQL döküm dosyaları veritabanını, MySQL ve PostgreSQL dahil birçok veritabanı motorunda yeniden oluşturmak için gereken verilerin tümünü içerir. + + + + Export a database table as a comma separated text file. + Veritabanı tablosunu virgülle ayrılmış metin dosyası olarak dışa aktar. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Veritabanını virgülle ayrılmış metin dosyası olarak diğer veritabanı veya elektronik tablo uygulamalarına aktarmaya hazır olacak şekilde dışa aktarın. + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Tablo Oluşturma sihirbazı, veritabanı için alanlarını ve ismini ayarlayabileceğiniz, yeni bir tablo oluşturmanızı sağlar + + + + + Delete Table + Tabloyu Sil + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Tablo Silme sihirbazı, seçtiğiniz tabloları silmenizi sağlar. + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Tablo Düzenleme sihirbazı, varolan tablonuzu yeniden adlandırmanıza olanak sağlar. Ayrıca yeni alan ekleyebilir, silebilir hatta alanların ismini ve tipini de düzenleyebilirsiniz. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + İndeks Oluşturma sihirbazı, varolan veritabanı tablosuna yeni indeks tanımlamanıza olanak sağlar. + + + + &Preferences... + &Tercihler... + + + + + Open the preferences window. + Tercihler penceresini açar. + + + + &DB Toolbar + &Veritabanı Araç Çubuğu + + + + Shows or hides the Database toolbar. + Veritabanı araç çubuğunu gösterir veya gizler. + + + + Shift+F1 + + + + + &Recently opened + En son açılanla&r + + + + Open &tab + Se&kme Aç + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Veritabanı Yapısı + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + Bu, açılan veritabanının yapısıdır. +SQL ifadelerini bir nesne satırından sürükleyip başka uygulamalara veya 'DB Browser for SQLite programının başka bir penceresine bırakabilirsiniz. + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Veriyi Görüntüle + + + + Un/comment block of SQL code + Kod bloğunu yorum satırına dönüştür/yorum satırını iptal et + + + + Un/comment block + Yorum satırına dönüştür/yorum satırını iptal et + + + + Comment or uncomment current line or selected block of code + Geçerli satırı veya kod bloğunu, yorum satırına dönüştür veya yorum satırını iptal et + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + Geçerli satırı veya kod bloğunu, yorum satırına dönüştür veya yorum satırını iptal et. Hiç seçim yoksa tüm bloklar ilk satır baz alınarak değiştirilir. + + + + Ctrl+/ + + + + + Stop SQL execution + SQL yürütmesini durdur + + + + Stop execution + Yürütmeyi durdur + + + + Stop the currently running SQL script + Şu anda çalışan SQL betiğini durdur + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Pragmaları Düzenle + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + Uyarı: Bu pragma okunamaz ve bu değer çıkartıldı. Bu pragmayı yazmak, bir SQLite eklentisi tarafından sağlanan yeniden tanımlanmış bir LIKE'nin üzerine yazabilir. + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + SQL kodunu yürüt + + + + &Tools + Ara&çlar + + + + SQL &Log + SQL &Günlüğü + + + + Show S&QL submitted by + Şuna ait S&QL'i göster + + + + Error Log + Hata Günlüğü + + + + This button clears the contents of the SQL logs + Bu buton SQL günlüğünün içeriğini temizler + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + Bu panel, uygulama veya kendiniz tarafından verilen tüm SQL komutlarının bir günlüğünü incelemenizi sağlar + + + + &Plot + &Çizim + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + Bu, açılan veritabanının yapısıdır. +Birden çok nesne adını Ad sütunundan sürükleyip SQL editörüne bırakabilir ve bırakılan adların özelliklerini bağlam menüsünü kullanarak ayarlayabilirsiniz. Bu, SQL ifadeleri oluşturmanıza yardımcı olacaktır. +SQL deyimlerini Şema sütunundan sürükleyip SQL editörüne veya diğer uygulamalara bırakabilirsiniz. + + + + + + Project Toolbar + Proje Araç Çubuğu + + + + Extra DB toolbar + Ekstra Veritabanı araç çubuğu + + + + + + Close the current database file + Geçerli veritabano dosyasını kapat + + + + This button closes the connection to the currently open database file + Bu buton, şu anda açık olan veritabanı dosyasına ait bağlantıyı kapatır + + + + Ctrl+F4 + + + + + &Revert Changes + Değişiklikleri &Geri Al + + + + &Write Changes + Değişiklikleri &Kaydet + + + + Compact &Database... + Veriabanını &Sıkıştır... + + + + Execute all/selected SQL + Tüm/seçin SQL sorgusunu yürüt + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + Bu buton seçili olan SQL ifadesini yürütür. Hiçbir metin seçilmezse, tüm SQL ifadeleri yürütülür. + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + &Load Extension... + Ek&lenti Yükle... + + + + Execute line + Tek satır yürüt + + + + &Wiki + &Wiki + + + + F1 + + + + + Bug &Report... + Hata &Raporu... + + + + Feature Re&quest... + &Özellik Talebi... + + + + Web&site + Web &Sitesi + + + + &Donate on Patreon... + &Patreon üzerinden Bağış Yapın... + + + + Open &Project... + &Proje Aç... + + + + &Attach Database... + &Veritabanı Ekle... + + + + + Add another database file to the current database connection + Şu anki veritabanı bağğlantısına başka bir veritabanı dosyası ekle + + + + This button lets you add another database file to the current database connection + Bu buton, geçerli veritabanı bağlantısına başka bir veritabanı dosyası eklemenizi sağlar + + + + &Set Encryption... + &Şifreleme Belirtle... + + + + SQLCipher &FAQ + SQLCipher &SSS + + + + Table(&s) to JSON... + Tablodan &JSON dosyasına... + + + + Open Data&base Read Only... + Salt &Okunur Veritabanı Aç... + + + + Ctrl+Shift+O + + + + + Save results + Sonuçları kaydet + + + + Save the results view + Sonuç görünümünü kaydet + + + + This button lets you save the results of the last executed query + Bu buton son yürütülen sorgunun sonuçlarını kaydetmenizi sağlar + + + + + Find text in SQL editor + SQL editörünte metin ara + + + + Find + Bul + + + + This button opens the search bar of the editor + Bu buton editörün arama çubuğunu açar + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + SQL editöründe metin bul veya değiştir + + + + Find or replace + Bul veya değiştir + + + + This button opens the find/replace dialog for the current editor tab + Bu buton, geçerli editör sekmesi için bul / değiştir iletişim kutusunu açar + + + + Ctrl+H + + + + + Export to &CSV + &CSV dosyası olarak dışa aktar + + + + Save as &view + &Görünüm olarak kaydet + + + + Save as view + Görünüm olarak kaydet + + + + Browse Table + Tabloyu Görüntüle + + + + Shows or hides the Project toolbar. + Proje araç çubuğunu gösterir veya gizler. + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + This button lets you open a DB Browser for SQLite project file + + + + + Extra DB Toolbar + Ekstra Veritabanı Araç Çubuğu + + + + New In-&Memory Database + &Yeni Bellek İçi Veritabanı + + + + Drag && Drop Qualified Names + Nitelikli İsimleri Sürükle && Bırak + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + Nesneleri sürükleyip düzenleyiciye bırakırken özel isimleri kullanın (örn. "Tablo". "Alan") + + + + Drag && Drop Enquoted Names + İsimleri Sürükle && Bırak + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + Nesneleri sürükleyip editöre bırakırken çıkış karakter belirleyicilerini kullanın(ör. "Tablo1") kullanın + + + + &Integrity Check + &Bütünlük Denetimi + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + integrity_check pragmasını açılan veritabanı üzerinde çalıştırır ve 'SQL Kodunu Yürüt' sekmesinde sonuçları döndürür. Bu pragma veritabanının tamamının bütünlüğünü kontrol eder. + + + + &Foreign-Key Check + &Yabancı anahtar kontrolü + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + Foreign_key_check pragmasını açık veritabanı üzerinde çalıştırır ve 'SQL Kodunu Yürüt' sekmesinde sonuçları döndürür + + + + &Quick Integrity Check + &Hızlı Bütünlük Testi + + + + Run a quick integrity check over the open DB + Açık veritabanı üzerinde hızlı bir bütünlük denetimi yapın + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + quick_check pragmasını açık veritabanı üzerinde çalıştırır ve 'SQL Kodunu Yürüt' sekmesinde sonuçları döndürür. Bu komut PRAGMA integrity_check denetiminin çoğunu yapar, ancak çok daha hızlı çalışır. + + + + &Optimize + &Optimize + + + + Attempt to optimize the database + Veritabanını optimize etmeyi dene + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + Açılan veritabanı üzerinden optimizasyon pragmasını çalıştırır. Bu uygulama gelecekteki sorguların performansını artırmaya yardımcı olabilir. + + + + + Print + Yazdır + + + + Print text from current SQL editor tab + Geçerli SQL düzenleyici sekmesinden metni yazdırın + + + + Open a dialog for printing the text in the current SQL editor tab + Geçerli SQL düzenleyici sekmesindeki metni yazdırmak için bir iletişim kutusu açın + + + + Print the structure of the opened database + Şu anda açık olan veritabanı yapısını yazdırın + + + + Open a dialog for printing the structure of the opened database + Açılan veritabanının yapısını yazdırmak için bir bir iletişim kutusu açın + + + + &Save Project As... + Projeyi &Farklı Kaydet... + + + + + + Save the project in a file selected in a dialog + Projeyi iletişim kutusunda seçilen bir dosyaya kaydedin + + + + Save A&ll + Tümünü &Kaydet + + + + + + Save DB file, project file and opened SQL files + Veritabanı dosyasını, proje dosyasını ve açılan SQL dosyalarını kaydedin + + + + Ctrl+Shift+S + + + + + &Database from SQL file... + SQL &dosyasından veritabanı... + + + + &Table from CSV file... + CSV dosyasından &tablo... + + + + &Database to SQL file... + Veritabanından SQL &dosyası... + + + + &Table(s) as CSV file... + &Tablodan CSV dosyası olarak... + + + + &Create Table... + &Tablo Oluştur... + + + + &Delete Table... + &Tabloyu Sil... + + + + &Modify Table... + Tabloyu &Düzenle... + + + + Create &Index... + &Index Oluştur... + + + + W&hat's This? + Bu &nedir? + + + + &About + &İptal + + + + This button opens a new tab for the SQL editor + Bu buton SQL editörü için yeni bir sekme açar + + + + &Execute SQL + &SQL kodunu yürüt + + + + + + Save SQL file + SQL dosyasını kaydet + + + + Ctrl+E + + + + + Export as CSV file + CSV dosyası olarak dışa aktar + + + + Export table as comma separated values file + Tabloyu virgülle ayrılmış girdiler dosyası olarak dışa aktar + + + + + Save the current session to a file + Geçerli oturumu dosyaya kaydet + + + + + Load a working session from a file + Dosyadan çalışma oturumunu yükle + + + + + Save SQL file as + SQL dosyasını bu şekilde kaydet + + + + This button saves the content of the current SQL editor tab to a file + Bu buton geçerli SQL editörü sekmesinin içeriğini bir dosyaya kaydeder + + + + &Browse Table + &Tabloyu Görüntüle + + + + Copy Create statement + 'Create' ifadesini kopyala + + + + Copy the CREATE statement of the item to the clipboard + Objenin 'Create' ifadesini panoya kopyala + + + + Ctrl+Return + + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Encrypted + Şifrelenmiş + + + + Read only + Salt okunur + + + + Database file is read only. Editing the database is disabled. + Veritabanı salt okunur. Veritabanı düzenleme devre dışı. + + + + Database encoding + Veritabanı kodlaması + + + + Database is encrypted using SQLCipher + Veritabanı SQLCipher kullanılırak şifrelendi + + + + + Choose a database file + Veritabanı dosyasını seçiniz + + + + + + Choose a filename to save under + Kaydetmek için dosya ismi seçiniz + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Veritabanı dosyası kaydedilirken hata oluştu. Bu, veritabanındaki tüm değişikliklerin kaydedilmediği anlamına gelir. Önce aşağıdaki hatayı çözmeniz gerekir. + +%1 + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Son kayıttan itibaren '%1' dosyasına yaptığınız değişiklikleri geri almak istediğinize emin misiniz? + + + + Choose a file to import + İçe aktarmak için dosya seçiniz + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (salt okunur) + + + + Open Database or Project + Veritabanı veya Proje Açın + + + + Attach Database... + Veritabanı Ekle... + + + + Import CSV file(s)... + CSV dosyalarını içe aktarın... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + Bırakılan dosyalara uygulanacak eylemi seçin. <br/>Not: yalnızca 'İçe Aktar' birden fazla dosyayı işleyecektir. + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + SQL sekmelerinde yapılan değişiklikleri '%1' proje dosyasına kaydetmek istiyor musunuz? + + + + Text files(*.sql *.txt);;All files(*) + Metin dosyaları(*.sql *.txt);;Tüm dosyalar(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + İçeri aktarılan verileri tutmak için yeni bir veritabanı dosyası oluşturmak istiyor musunuz? +Eğer cevabınız hayır ise biz SQL dosyasındaki verileri geçerli veritabanına aktarmaya başlayacağız. + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + Şu anda SQL sorgularını yürütüyorsunuz. Veritabanının şimdi kapatılması, muhtemelen veritabanını tutarsız bir durumda bırakarak yürütmeyi durduracaktır. Veritabanını kapatmak istediğinizden emin misiniz? + + + + Do you want to save the changes made to the project file '%1'? + '%1' proje dosyasında yapılan değişiklikleri kaydetmek istiyor musunuz? + + + + File %1 already exists. Please choose a different name. + %1 dosyası zaten mevcut. Lütfen farklı bir isim seçiniz. + + + + Error importing data: %1 + Dosya içeri aktarılırken hata oluştu: %1 + + + + Import completed. + İçeri aktarma tamamlandı. + + + + Delete View + Görünümü Sil + + + + Modify View + Görünümü Düzenle + + + + Delete Trigger + Tetikleyiciyi Sil + + + + Modify Trigger + Tetikleyiciyi Düzenle + + + + Delete Index + İndeksi Sil + + + + Modify Index + Index'i Düzenle + + + + Modify Table + Tabloyu Düzenle + + + + Do you want to save the changes made to SQL tabs in a new project file? + SQL sekmelerinde yapılan değişiklikleri yeni bir proje dosyasına kaydetmek istiyor musunuz? + + + + Do you want to save the changes made to the SQL file %1? + %1 SQL dosyasında yapılan değişiklikleri kaydetmek istiyor musunuz? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + Bu sekmedeki sorgular hala yürütülüyor. Sekmenin kapatılması yürütmeyi durdurur. Bu durum, veritabanını tutarsız bir durumda bırakabilir. Sekmeyi kapatmak istediğinizden emin misiniz? + + + + Could not find resource file: %1 + Kaynak dosya bulunamadı: %1 + + + + Choose a project file to open + Açmak için bir proje dosyası seçin + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + Bu proje dosyası eski bir formatta, çünkü DB Browser for SQLite 3.10 veya daha düşük bir sürüm ile oluşturulmuş. Bu dosya biçiminin yüklenmesi hala tam olarak desteklenmektedir, ancak gelecekte daha eski biçimlere yönelik destek azalabileceğinden, tüm proje dosyalarınızı yeni dosya biçimine dönüştürmenizi öneririz. Dosyalarınızı açıp yeniden kaydederek dönüştürebilirsiniz. + + + + Could not open project file for writing. +Reason: %1 + Proje dosyası yazmaya açılamadı. +Nedeni: %1 + + + + Busy (%1) + Meşgul (%1) + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + PRAGMA değerlerini ayarlamak geçerli işleminizi yürütmeye alacaktır. +Bunu yapmak istediğinize emin misiniz? + + + + Window Layout + + + + + Reset Window Layout + Pencere Düzenini Sıfırla + + + + Alt+0 + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + The database is currenctly busy. + Verştabanı şu anda meşgul. + + + + Click here to interrupt the currently running query. + Çalışmakta olan sorguyu kesmek için burayı tıklayın. + + + + Could not open database file. +Reason: %1 + Veritabanı dosyası açılamadı. +Nedeni: %1 + + + + In-Memory database + Bellek İçi Veritabanı + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + '%1' tablosunu silmek istediğinizden emin misiniz? +Tabloyla ilişkili tüm veriler kaybedilecektir. + + + + Are you sure you want to delete the view '%1'? + '%1' görünümünü silmek istediğinizden emin misiniz? + + + + Are you sure you want to delete the trigger '%1'? + '%1' tetikleyicisini silmek istediğinizden emin misiniz? + + + + Are you sure you want to delete the index '%1'? + '%1' indexsini silmek istediğinizden emin misiniz? + + + + Error: could not delete the table. + Hata: tablo silinemedi. + + + + Error: could not delete the view. + Hata: görünüm silinemedi. + + + + Error: could not delete the trigger. + Hata: tetikleyici silinemedi. + + + + Error: could not delete the index. + Hata: index silinemedi. + + + + Message from database engine: +%1 + Veritabanı motorundan mesaj: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + Tabloyu düzenlemek için bekleyen tüm değişikliklerin şimdi kaydedilmesi gerekir. +Veritabanını kaydetmek istediğinizden emin misiniz? + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + Şu anda zaten yürütülen SQL sorguları var. Bunun yerine, şimdiki sorguları çalıştırmak için şu anda yürütülen sorguyu durdurmak istiyor musunuz? Bunun veritabanını tutarsız bir durumda bırakabileceğini unutmayın. + + + + -- EXECUTING SELECTION IN '%1' +-- + -- SEÇİM '%1' İÇERİSİNDE YÜRÜTÜLÜYOR +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- SATIR '%1' İÇERİSİNDE YÜRÜTÜLÜYOR +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- TÜMÜ '%1' İÇERİSİNDE YÜRÜTÜLÜYOR +-- + + + + + At line %1: + %1. satırda: + + + + Result: %1 + Sonuç: %1 + + + + Result: %2 + Sonuç: %2 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + PRAGMA değerlerini ayarlamak veya vakumlamak mevcut işleminizi kaydeder. +Emin misiniz? + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Rename Tab + Sekmeyi Yeniden Adlandır + + + + Duplicate Tab + Sekmeyi Klonla + + + + Close Tab + Sekmeyi Kapat + + + + Opening '%1'... + '%1' açılıyor... + + + + There was an error opening '%1'... + '%1' açılırken hata oluştu... + + + + Value is not a valid URL or filename: %1 + Geçersiz bir URL veya dosya adı: %1 + + + + %1 rows returned in %2ms + %2ms içerisinde %1 tane satır döndürüldü + + + + Choose text files + Metin dosyaları seçin + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + İçe aktarma tamamlandı. Bazı yabancı anahtar kısıtları ihlal edildi. Lütfen kaydetmeden önce bunları çözün. + + + + Select SQL file to open + Açmak için SQL dosyasını seçiniz + + + + Select file name + Dosya ismi seçiniz + + + + Select extension file + Eklenti dosyasını seçiniz + + + + Extension successfully loaded. + Eklenti başarıyla yüklendi. + + + + Error loading extension: %1 + Eklenti yüklenirken hata oluştu: %1 + + + + + Don't show again + Bir daha gös'terme + + + + New version available. + Yeni sürüm mevcut. + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Yeni bir SQLite DB Browser sürümü mevcut (%1.%2.%3).<br/><br/>Lütfen buradan indiriniz: <a href='%4'>%4</a>. + + + + Project saved to file '%1' + Proje '%1' dosyasına kaydedildi + + + + Collation needed! Proceed? + Harmanlama gerekli! Devam edilsin mi? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Bu veritabanınındaki bir tablo özel '%1' koleksiyon fonksiyonu gerektirmektedir. +Daha fazla bilgi olmadan program bunu sağlayamaz. Eğer bu şekilde devam edecekseniz, veritabanınıza kötü şeyler olabileceğinin farkında olun ve yedek oluşturun. +Bir yedek oluşturun! + + + + creating collation + harmanlama oluşturuluyor + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + SQL sekmesi için yeni bir ad belirleyin. Aşağıdaki karakteri klavye kısayolu olarak kullanmak için '&&' karakterini kullanın. + + + + Please specify the view name + Lütfen görünüm ismini belirtin + + + + There is already an object with that name. Please choose a different name. + Bu isme sahip obje zaten mevcut. Lütfen farklı bir isim seçiniz. + + + + View successfully created. + Görünüm başarıyla oluşturuldu. + + + + Error creating view: %1 + Görünüm oluşturma hatası: %1 + + + + This action will open a new SQL tab for running: + Bu işlem çalıştırmak için yeni bir SQL sekmesi açar: + + + + Press Help for opening the corresponding SQLite reference page. + İlgili SQLite referans sayfasını açmak için Yardım'a basın. + + + + DB Browser for SQLite project file (*.sqbpro) + SQLite DB Browser proje dosyası (*.sqbpro) + + + + Error checking foreign keys after table modification. The changes will be reverted. + Tablo değişikliğinden sonra yabancı anahtarlar kontrol edilirken hata oluştu. Değişiklikler geri alınacak. + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + Bu tablo birincil anahtar kontrolünden geçmedi.<br/>'Araçlar | Birinci Anahat Kontrolü' komutunu çalıştırın ve raporlanan sorunları düzeltin. + + + + Execution finished with errors. + Yürütme hatalarla tamamlandı. + + + + Execution finished without errors. + Yürütme hatasız tamamlandı. + + + + NullLineEdit + + + Set to NULL + NULL olarak ayarlar + + + + Alt+Del + + + + + PlotDock + + + Plot + Grafik Çizimi + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html> <head /> <body> <p> Bu bölme, o anda taranan tablonun sütunları listesini veya yürütülen sorguyu gösterir. Aşağıdaki çizim bölmesi için X veya Y ekseni olarak kullanılmasını istediğiniz sütunları seçebilirsiniz. Tablo, ortaya çıkan grafiği etkileyecek algılanan eksen tipini gösterir. Y ekseni için yalnızca sayısal sütunlar seçebilirsiniz, ancak X ekseni için aşağıdakileri seçebilirsiniz: </p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;" > <li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" > <span style=" font-weight:600;">Tarih/Saat</span>: &quot;yyyy-MM-dd hh:mm:ss&quot; veya &quot;yyyy-MM-ddThh:mm:ss&quot; ve string formatında </li> <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" > <span style=" font-weight:600;">Tarih</span>: &quot;yyyy-MM-dd&quot; ve string formatında </li> <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" > <span style=" font-weight:600;">Saat</span>: &quot;hh:mm:ss&quot; ve string formatında </li> <li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" > <span style=" font-weight:600;">Başlık</span>: diğer string formatları. Bu sütunun X ekseni için seçilmesi, sütun değerlerinin çubukları için etiket oluşturur. </li> <li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" > <span style=" font-weight:600;">Nümerik</span>: integer veya real tipindeki değerler </li> </ul> <p> Y hücrelerini çift tıklatarak o grafik için kullanılan rengi değiştirebilirsiniz. </p> </body> </html> + + + + Columns + Sütun + + + + X + X + + + + Y1 + + + + + Y2 + + + + + Axis Type + Eksen Tipi + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + Yukarıdaki x ve y değerlerini seçtiğinizde çizilen bir grafik. + +Noktaları grafikte ve tabloda seçmek için üzerine tıklayın. Nokta aralığı seçmek için Ctrl+Tıklama yapın. + +Yakınlaştırma için fare tekerleğini ve eksen aralığını değiştirmek için fare tekerini kullanın. + +Yalnızca geçerli yönde sürüklemek ve yakınlaştırmak için eksen veya eksen etiketlerini seçin. + + + + Line type: + Çizgi Tipi: + + + + + None + Hiçbiri + + + + Line + Çizgi + + + + StepLeft + Sola Basamakla + + + + StepRight + Sağa Basamakla + + + + StepCenter + Merkeze Basamakla + + + + Impulse + Kaydırmalı + + + + Point shape: + Nokta şekli: + + + + Cross + Çarpı + + + + Plus + Artı + + + + Circle + Daire + + + + Disc + Disk + + + + Square + Kare + + + + Diamond + Elmas + + + + Star + Yıldız + + + + Triangle + Üçgen + + + + TriangleInverted + Ters Üçgen + + + + CrossSquare + Çapraz Kare + + + + PlusSquare + Kare İçinde Artı + + + + CrossCircle + Daire İçinde Çarpı + + + + PlusCircle + Daire İçinde Artı + + + + Peace + Barış Simgesi + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Geçerli çizimi kaydet...</p><p>Uzantıya göre seçilen dosya formatları (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Geçerli çizimi kaydet... + + + + + Load all data and redraw plot + Tüm verileri yükle ve grafiği yeniden çiz + + + + + + Row # + Satır # + + + + Copy + Kopyala + + + + Print... + Yazdır... + + + + Show legend + Göstergeyi göster + + + + Stacked bars + Yığılmış çubuklar + + + + Date/Time + Tarih/Saat + + + + Date + Tarih + + + + Time + Saat + + + + + Numeric + Nümerik + + + + Label + Etiket + + + + Invalid + Geçersiz + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + Tüm verileri yükle ve grafiği yeniden çiz. +Uyarı: Kısmi yükleme mekanizması nedeniyle tüm veriler tablodan henüz alınmadı. + + + + Choose an axis color + Bir eksen rengi seçin + + + + Choose a filename to save under + Altına kaydetmek için dosya ismi seçiniz + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Tüm dosyalar(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + Bu grafikte eğriler var ve seçilen çizgi stili yalnızca X'e göre sıralanmış grafiklere uygulanabilir. Eğrileri kaldırmak için tabloyu veya sorguyu X'e göre sıralayın veya eğriler tarafından desteklenen stillerden birini seçin: 'Hiçbiri' veya 'Çizgi'. + + + + Loading all remaining data for this table took %1ms. + Bu tablo için kalan tüm verilerin yüklenmesi %1ms sürdü. + + + + PreferencesDialog + + + Preferences + Tercihler + + + + &General + &Genel + + + + Remember last location + Son dizini hatırla + + + + Always use this location + Her zaman bu dizini kullan + + + + Remember last location for session only + Aynı oturum için son dizini hatırla + + + + + + ... + ... + + + + Default &location + Varsayılan &dizin + + + + Lan&guage + Di&l + + + + Automatic &updates + Otomatik &güncellemeler + + + + + + + + + + + + enabled + etkin + + + + Show remote options + Uzak bilgisayar opsiyonlarını göster + + + + &Database + &Veritabanı + + + + Database &encoding + &Veritabanı kodlaması + + + + Open databases with foreign keys enabled. + Veritabanlarını Yabancı Anahtarlar etkin olacak şekilde aç. + + + + &Foreign keys + &Yabancı Anahtarlar + + + + Data &Browser + Veri &Görüntüleyici + + + + Remove line breaks in schema &view + Şema &görünümde satır sonlarını kaldır + + + + Prefetch block si&ze + Önceden getirme blo&k boyutu + + + + SQ&L to execute after opening database + Veritabanı açıldıktan sonra yürütülecek SQ&L + + + + Default field type + Varsayılan dosya tipi + + + + Font + Yazı + + + + &Font + &Yazı + + + + Content + İçerik + + + + Symbol limit in cell + Hücredeki sembol limiti + + + + Threshold for completion and calculation on selection + Seçimdeki tamamlama ve hesaplama eşiği + + + + Show images in cell + Resimleri hücrede göster + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + Hücrelerde görüntü verileri içeren BLOB tipindeki verilerin önizlemesini göstermek için bu seçeneği etkinleştirin. Ancak bu, veri görüntüleyicisinin performansını etkileyebilir. + + + + NULL + NULL + + + + Regular + Kurallı + + + + Binary + İkili veri + + + + Background + Arka plan + + + + Filters + Filtreler + + + + Toolbar style + Araç çubuğu stili + + + + + + + + Only display the icon + Sadece ikonu göster + + + + + + + + Only display the text + Sadece metni göster + + + + + + + + The text appears beside the icon + Metin simgenin yanında görünsün + + + + + + + + The text appears under the icon + Metin simgenin altında görünsün + + + + + + + + Follow the style + Stili baz al + + + + DB file extensions + Veritabanı dosya uzantıları + + + + Manage + Yönet + + + + Main Window + Ana Pencere + + + + Database Structure + Veritabanı Yapısı + + + + Browse Data + Verileri Görüntüle + + + + Execute SQL + SQL kodunu yürütme + + + + Edit Database Cell + Veritabanı Hücresini Düzenleme + + + + When this value is changed, all the other color preferences are also set to matching colors. + Bu değer değiştirildiğinde, diğer tüm renk tercihleri de eşleşen renklere ayarlanır. + + + + Follow the desktop style + Masaüstü stilini baz al + + + + Dark style + Koyu Tema + + + + Application style + Uygulama stili + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + Etkinleştirildiğinde, Veritabanı Yapısı sekmesinin Şema sütununda satır sonu karakterleri ve yazdırılan çıktılar kaldırılır. + + + + Database structure font size + + + + + Font si&ze + Yazı B&oyutu + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + Bu, bazı hesaplama açısından pahalı işlevlerin etkinleştirilmesine izin verilen maksimum öğe sayısıdır: +Sütundaki geçerli değerlere dayalı olarak değer tamamlamayı etkinleştirmek için bir tablodaki maksimum satır sayısı. +Toplam ve ortalamayı hesaplamak için bir seçimdeki maksimum index sayısı. +İşlevleri devre dışı bırakmak için 0 olarak ayarlanabilir. + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + Bu, sütundaki geçerli değerlere dayalı olarak değer tamamlamayı etkinleştirmek için bir tablodaki maksimum satır sayısıdır. +Tamamlamayı devre dışı bırakmak için 0 olarak ayarlanabilir. + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + Proxy + Proxy + + + + Configure + Yapılandır + + + + Field display + Alan görünümü + + + + Displayed &text + Görün&tülenen metin + + + + + + + + + Click to set this color + Bu rengi ayarlamak için tıklayın + + + + Text color + Metin rengi + + + + Background color + Arka plan rengi + + + + Preview only (N/A) + Sadece önizleme (N/A) + + + + Escape character + Kaçış karakteri + + + + Delay time (&ms) + Gecikme süresi (&ms) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Yeni bir filtre değeri uygulanmadan önce bekleme süresini ayarlayın. Beklemeyi devre dışı bırakmak için 0 olarak ayarlanabilir. + + + + &SQL + &SQL + + + + Settings name + Ayarlar ismi + + + + Context + Özellik + + + + Colour + Renk + + + + Bold + Kalın + + + + Italic + İtalik + + + + Underline + Altı çizili + + + + Keyword + Anahtar Kelime + + + + Function + Fonksiyon + + + + Table + Tablo + + + + Comment + Yorum + + + + Identifier + Kimlik + + + + String + String + + + + Current line + Geçerli satır + + + + SQL &editor font size + SQL &Editör yazı boyutu + + + + Tab size + TAB karakter boyutu + + + + &Wrap lines + &Satırları kaydır + + + + Never + Asla + + + + At word boundaries + Kelime dahilinde + + + + At character boundaries + Karakter dahilinde + + + + At whitespace boundaries + Beyaz boşluk dahilinde + + + + &Quotes for identifiers + Tanımlıyıcılar için &tırnaklar + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + Uygulama tarafından SQL kodundaki tanımlayıcılar için kullanılan tırnak stilini seçin. + + + + "Double quotes" - Standard SQL (recommended) + "Çift tırnak" - Standart SQL (önerilir) + + + + `Grave accents` - Traditional MySQL quotes + `Ters tırnaklar` - Geleneksel MySQL tırnakları + + + + [Square brackets] - Traditional MS SQL Server quotes + [Köşeli parantezler] - Geleneksel MS SQL Server + + + + Keywords in &UPPER CASE + Anahtar kelimeler B&ÜYÜK HARFLİ + + + + When set, the SQL keywords are completed in UPPER CASE letters. + Ayarlandığında, SQL anahtar kelimeleri BÜYÜK HARFLERLE tamamlanır. + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + Ayarlandığında, son yürütme sırasında hatalara neden olan SQL kod satırları vurgulanır ve sonuç çerçevesi arka plandaki hatayı gösterir + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html> <head /> <body> <p> SQLite, paylaşılmış kütüphane dosyasından eklenti yüklemeye yarayan bir fonksiyon sunar. <span style=" font-style:italic;">load_extension()</span> fonksiyonunu SQL kodu içerisinde kullanmak istiyorsanız fonksiyonu aktive edin. </p> <p> Güvenlik nedeniyle, uzantı yüklemesi varsayılan olarak kapalıdır ve bu ayar ile etkinleştirilmelidir. Bu seçenek devre dışı bırakılmış olsa bile, uzantıları her zaman GUI üzerinden yükleyebilirsiniz. </p> </body> </html> + + + + Allow loading extensions from SQL code + SQL kodundan eklenti yüklemeye izin ver + + + + Remote + Uzak Bilgisayar + + + + CA certificates + CA sertifikaları + + + + + Subject CN + CN Konusu + + + + Common Name + Yaygın İsim + + + + Subject O + Konu O + + + + Organization + Organizasyon + + + + + Valid from + Şundan tarihten itibaren geçerli + + + + + Valid to + Şu tarihe kadar geçerli + + + + + Serial number + Seri numarası + + + + Your certificates + Sertifikalarınız + + + + File + Dosya + + + + Subject Common Name + Ortak Konu Adı + + + + Issuer CN + CN Sağlayıcısı + + + + Issuer Common Name + Ortak Sağlayıcı Adı + + + + Clone databases into + Veritabanını şuraya kopyala + + + + SQL editor &font + SQL Editör &yazı boyutu + + + + Error indicators + Hata belirteçleri + + + + Hori&zontal tiling + Ya&tay Döşeme + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Etkinleştirilirse, SQL kod düzenleyicisi ve sonuç tablosu görünümü üst üste yerine yan yana gösterilir. + + + + Code co&mpletion + Kod ta&mamlama + + + + Foreground + Ön plan + + + + SQL &results font size + S&QL sonuçları yazı tipi boyutu + + + + &Extensions + &Eklentiler + + + + Select extensions to load for every database: + Her veritabanında kullanmak için eklenti seçiniz: + + + + Add extension + Eklenti Ekle + + + + Remove extension + Eklenti Sil + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Kurallı ifade(REGEXP) operatörü aktif edildiğinde SQLite, herhangi bir kurallı ifade uygulamaz ama şuan da çalışan uygulamayı geri çağırır. <br/>SQLite DB Browser kurallı ifadeyi kutunun dışında kullanmanıza izin vermek için bu algoritmayı uygular. <br/>Birden çok muhtemel uygulama olduğu gibi sizde farklı birini kullanabilirsiniz.<br/>Programın uygulamalarını devre dışı bırakmakta ve kendi eklentinizle kendi uygulamanızı yüklemekte özgürsünüz.<br/>Ayrıca uygulamayı yeniden başlatmak gerekir.</p></body></html> + + + + Disable Regular Expression extension + Kurallı İfade eklentisini devre dışı bırak + + + + + Choose a directory + Dizin seçiniz + + + + The language will change after you restart the application. + Seçilen dil uygulama yeniden başlatıldıktan sonra uygulanacaktır. + + + + Select extension file + Eklenti dosyası seçiniz + + + + Extensions(*.so *.dylib *.dll);;All files(*) + Eklentiler(*.so *.dylib *.dll);;Tüm dosyalar(*) + + + + Import certificate file + Sertifika dosyası içe aktar + + + + No certificates found in this file. + Bu dosyada sertifika bulunamadı. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Bu sertifikayı kaldırmak istediğinizden emin misiniz? Tüm sertifika verileri uygulama ayarlarından silinecektir! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + Kaydedilen tüm ayarları silmek istediğinizden emin misiniz? +Tüm tercihleriniz kaybolacak ve varsayılan değerler kullanılacak. + + + + ProxyDialog + + + Proxy Configuration + Proxy Yapılandırması + + + + Pro&xy Type + Pro&xy Tipi + + + + Host Na&me + A&na Bilgisayar Adı + + + + Port + Port + + + + Authentication Re&quired + Kimlik &Doğrulaması Gerekli + + + + &User Name + K&ullanıcı Adı + + + + Password + Parola + + + + None + Hiçbiri + + + + System settings + Sistem ayarları + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + Veriyi içe aktarılırken hata oluştu + + + + from record number %1 + kayıt numarasından: %1 + + + + . +%1 + . %1 + + + + Importing CSV file... + CSV dosyası içe aktarılıyor... + + + + Cancel + İptal + + + + All files (*) + Tüm dosyalar (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + SQLite veritabanı dosyaları (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + Sola Hizala + + + + Right + Sağa Hizala + + + + Center + Ortala + + + + Justify + İki yana yasla + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + SQLite Veritabanı Dosyaları (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + DB Browser for SQLite Proje Dosyaları (*.sqbpro) + + + + SQL Files (*.sql) + SQL Dosyaları (*.sql) + + + + All Files (*) + Tüm Dosyalar (*) + + + + Text Files (*.txt) + Metin Dosyaları (*.txt) + + + + Comma-Separated Values Files (*.csv) + Virgülle Ayrılmış Değerler Dosyaları (* .csv) + + + + Tab-Separated Values Files (*.tsv) + Tab ile Ayrılmış Değerler Dosyaları (*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + Sınırlayıcı ile Ayrılmış Değerler Dosyaları (* .dsv) + + + + Concordance DAT files (*.dat) + Uyumluluk DAT dosyaları (* .dat) + + + + JSON Files (*.json *.js) + JSON dosyaları (*.json *.js) + + + + XML Files (*.xml) + XML Dosyaları (*.xml) + + + + Binary Files (*.bin *.dat) + İkili Dosyalar (*.bin *.dat) + + + + SVG Files (*.svg) + SVG Dosyaları (*.svg) + + + + Hex Dump Files (*.dat *.bin) + Onaltılık Döküm Dosyaları (* .dat * .bin) + + + + Extensions (*.so *.dylib *.dll) + Eklentiler (* .so * .dylib * .dll) + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + Tarih + + + + Author + + + + + Size + Boyut + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Yerel veritabanı listesi açılamadı. +%1 + + + + Error creating local databases list. +%1 + Yerel veritabanı listesi oluşturulamadı. +%1 + + + + RemoteDock + + + Remote + Uzak Bilgisayar + + + + Identity + Kmlik + + + + Push currently opened database to server + Şu anda açık olan veritabanını sunucuya aktar + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Local + + + + + Current Database + + + + + Clone + + + + + User + Kullanıcı + + + + Database + Veritabanı + + + + Branch + Branch + + + + Commits + + + + + Commits for + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + Yenile + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html> <head /> <body> <p> Şu anda dahili, salt okunur kimlik kullanıyorsunuz. Kendi veritabanınızı yüklemek için DBHub.io hesabı kullanıp konfigure etmeniz gerekiyor. </p> <p> Henüz DBHub.io hesabınız yok mu? <a href="https://dbhub.io/" ><span style=" text-decoration: underline; color:#007af4;" >Şimdi bir tane oluşturun</span ></a > ve veritabanınızı paylaşmak için <a href="#preferences" ><span style=" text-decoration: underline; color:#007af4;" >buradan</span ></a > sertifikanızı içe aktarın. </p> <p> Çevrimiçi yardım için <a href="https://dbhub.io/about" ><span style=" text-decoration: underline; color:#007af4;" >burayı</span ></a > ziyaret edin. </p> </body> </html> + + + + Back + Geri + + + + Select an identity to connect + + + + + Public + + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + İsim + + + + Branch + Branch + + + + Last modified + Son değiştirilme + + + + Size + Boyut + + + + Commit + Commit + + + + File + + + + + RemoteModel + + + Name + İsim + + + + Commit + Commit + + + + Last modified + Son değiştirilme + + + + Size + Boyut + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + %1 adresinde bulunan dosya açılamadı. %2 + + + + Error: Invalid client certificate specified. + Hata: Geçersiz istemci sertifikası belirtildi. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Kimlik doğrulaması için lütfen istemci sertifikasının parolasını girin. + + + + Cancel + İptal + + + + Uploading remote database to +%1 + Uzak veritabanı karşıya yükleniyor +%1 + + + + Downloading remote database from +%1 + Uzaktaki sunucu indiriliyor: +%1 + + + + + Error: The network is not accessible. + Hata: Ağa erişilemiyor. + + + + Error: Cannot open the file for sending. + Hata: Dosya gönderim için açılamadı. + + + + RemotePushDialog + + + Push database + Veritabanını aktar + + + + Database na&me to push to + Aktarılacak veritaba&nı adı + + + + Commit message + Commit mesajı + + + + Database licence + Veritabanı lisansı + + + + Public + Halka açık + + + + Branch + Branch + + + + Force push + Aktarmaya zorla + + + + Username + + + + + Database will be public. Everyone has read access to it. + Veritabanı halka açık olacak. Herkes okuma iznine sahip olacak. + + + + Database will be private. Only you have access to it. + Veritabanı özel olacak. Sadece sizin erişiminiz olacak. + + + + Use with care. This can cause remote commits to be deleted. + Dikkatlice kullanın. Bu, uzaktaki değişikliklerin silinmesine sebep olabilir. + + + + RunSql + + + Execution aborted by user + Yürütme kullanıcı tarafından durduruldu + + + + , %1 rows affected + , %1 satır etkilendi + + + + query executed successfully. Took %1ms%2 + sorgu başarıyla yürütüldü. %1ms%2 sürdü + + + + executing query + sorgu yürütülüyor + + + + SelectItemsPopup + + + A&vailable + &Kullanılabilir + + + + Sele&cted + &Seçilen + + + + SqlExecutionArea + + + Form + Form + + + + Find previous match [Shift+F3] + Önceki eşleşmeyi bul [Shift, F3] + + + + Find previous match with wrapping + Sarmalayarak bir önceki eşleşmeyi bul + + + + Shift+F3 + + + + + The found pattern must be a whole word + Bulunan desen tam bir kelime olmalıdır + + + + Whole Words + Kelimenin Tamamı + + + + Text pattern to find considering the checks in this frame + Bu alandaki kontrolleri baz alarak bulunacak metin deseni + + + + Find in editor + Editörde ara + + + + The found pattern must match in letter case + Bulunan desen büyük küçük harfe duyarlı olmalıdır + + + + Case Sensitive + Büyük küçük harfe duyarı + + + + Find next match [Enter, F3] + Sonraki eşleşmeyi bul [Enter, F3] + + + + Find next match with wrapping + Sarmalayarak bir sonraki eşleşmeyi bul + + + + F3 + + + + + Interpret search pattern as a regular expression + Arama desenini düzenli ifade(RegEx) olarak yorumla + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html> <head /> <body> <p> İşaretlendiğinde, girilen desen UNIX düzenli ifadesi olarak yorumlanır. <a href="https://en.wikibooks.org/wiki/Regular_Expressions" >Wikibooks</a > üzerinden düzenli ifadeleri inceleyebilirsiniz. </p> </body> </html> + + + + Regular Expression + Kurallı İfade (RegEx) + + + + + Close Find Bar + Araba çubuğunu kapat + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html> <head /> <body> <p>Son yürütülen ifadelerin sonuçları.</p> <p> Bu paneli daraltmak ve bunun yerine <span style=" font-style:italic;">SQL Log Günlüğünü</span> <span style=" font-style:italic;">Kullanıcı</span> seçimi ile kullanmak isteyebilirsiniz. </p> </body> </html> + + + + Results of the last executed statements + Son yürütülen ifadenin sonucu + + + + This field shows the results and status codes of the last executed statements. + Bu alan son yürütülen ifadenin durum kodlarını ve sonuçlarını gösterir. + + + + Couldn't read file: %1. + Dosya okunamadı: %1. + + + + + Couldn't save file: %1. + Dosya kaydedilemedi: %1. + + + + Your changes will be lost when reloading it! + Yeniden yüklerken değişiklikleriniz kaybolacak! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + "%1" dosyası başka bir program tarafından değiştirildi. Yeniden yüklemek istiyor musunuz?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) abs(X) fonksiyonu X sayısal argümanının mutlak değerini döndürür. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () changes() fonksiyonu en son yürütülen INSERT, DELETE veya UPDATE ifadesinden etkilenen veritabanı satırlarının sayısını döndürür. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) char(X1,X2,...,XN) fonksiyonu sırasıyla X1'den XN'e kadar olan tamsayıların unicode karakter karşılıklarından oluşan dizeyi döndürür. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) coalesce() fonksiyonu NULL olmayan ilk argümanı döndürür. Eğer tüm argümanlar NULL ise NULL değerini döndürür + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) glob(X,Y) fonksiyonu "Y GLOB X" ifadesinin eşdeğerini döndürür. + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) ifnull() fonksiyonu NULL olmayan ilk argümanı döndürür. Eğer her iki argüman da NULL ise NULL değerini döndürür. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) instr(X,Y) fonksiyonu ilk önce X dizesinin içinde Y dizesinin içeriğini arar ve eşleşen yerden önceki karakterlerin sayısının 1 fazlasını döndürür. Eğer Y, X içerisinde bulunmazsa 0 değerini döndürür. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) hex() fonksiyonu argümanı BLOB olarak yorumlar ve BLOB içeriğinin büyük harf onaltılık kısmını dize olarak döndürür. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () last_insert_rowid() fonksiyonu çağrılan veritabanı bağlantısından en son eklenen satırın ROWID değerini döndürür. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) length() fonksiyonu X dize değeri için NULL ifadesine kadar olan karakter sayısını döndürür (bayt olarak değil). + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) like() fonksiyonu "Y LIKE X" ifadesini uygulamak için kullanılır. + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) like() fonksiyonu "Y LIKE X ESCAPE Z" ifadesini uygulamak için kullanılır. + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + (X) load_extension(X) fonksiyonu, SQLite eklentilerini X adlı paylaşılan kitaplık dosyasından yükler. Bu işlevin kullanımına Tercihler'den izin verilmelidir. + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + (X, Y) load_extension(X) işlevi, Y giriş noktasını kullanarak X adlı paylaşılan kitaplık dosyasından SQLite eklentilerini yükler. +Bu işlevin kullanımına Tercihler'den izin verilmelidir. + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) lower(X) fonksiyonu tüm X dizesinin tüm ASCII karakterlerinin küçük harfe dönüştürülmüş karşılığını döndürür. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) fonksiyonu X'in sol tarafındaki boşlukları siler. + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) ltrim(X,Y) fonksiyonu X'in sol tarafındaki Y'de bulunan tüm karakterlerin silinmiş halini dize halinde döndürür. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) Çok argümanlı max() fonksiyonu en büyük değere sahip argümanı döndürür. Eğer herhangi bir argüman NULL ise NULL değerini döndürür. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) Çok argümanlı min() fonksiyonu en küçük değere sahip argümanı döndürür. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) nullif(X,Y) fonksiyonu eğer argümanlar farklı ise ilk argümanı, eğer argümanlar aynı ise NULL döndürür. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) printf(FORMAT,...) SQL fonksiyonu C dilindeki sqlite3_mprintf() fonksiyonu ve standard C kütüphanesindeki printf() fonksiyonu ile aynı mantıkta çalışır. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) quote(X) fonksiyonu girilen argümanlardan SQL ifadesi olarak tam anlamıyla dahil edilmeye uygun olanları döndürür. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () random() fonksiyonu -9223372036854775808 ve +9223372036854775807 tamsayı değerli arasında rastgele değer döndürür. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) randomblob(N) fonksiyonu rastgele bayt içeren N-byte türünde blob döndürür. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) replace(X,Y,Z) fonksiyonu X içindeki her Y argümanını, Z argümanıyla değiştirmesiyle oluşan dizeyi döndürür. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) round(X) fonksiyonu X ondalıklı sayısının ondalıklı kısmın sıfıra yuvarlanmasıyla oluşan değeri döndürür. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) round(X,Y) fonksiyonu X ondalıklı sayısının Y kadar sağındaki ondalıklı kısmı sıfıra yuvarlanmasıyla oluşan değeri döndürür. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X) fonksiyonu X'in sağ tarafındaki boşlukları siler. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) rtrim(X,Y) fonksiyonu X'in sağ tarafındaki Y'de bulunan tüm karakterlerin silinmiş halini dize halinde döndürür. + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) soundex(X) fonksiyonu X dizesinin soundex kodlamasını string olarak döndürür. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) fonksiyonu X dizesinin başlangıcından Y. indekse kadar olan string bölümünü döndürür. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) substr(X,Y,Z) fonksiyonu X dizesinin Y. indeksinden başlayarak Z uzunluğu kadar olan string bölümünü döndürür. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () total_changes() fonksiyonu geçerli veritabanı bağlantısı açıldığından itibaren INSERT, UPDATE veya DELETE ifadelerinden etkilenen toplam satır sayısını döndürür. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) fonksiyonu X'in içinde bulunan boşlukları siler. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) trim(X,Y) fonksiyonu X'in içindeki Y'de bulunan tüm karakterlerin silinmiş halini dize halinde döndürür. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) typeof(X) fonksiyonu X ifadesinin veri tipini gösteren dizeyi döndürür. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) unicode(X) fonksiyonu X'in ilk karakterine karşılık gelen unicode kod noktasını döndürür. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) upper(X) fonksiyonu tüm X dizesinin tüm küçük ASCII karakterlerinin büyük harf karşılığına çevrilmiş kopyasını döndürür. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) zeroblob(N) fonksiyonu 0x00'ın N bayt kadar meydana gelmiş halini BLOB olarak döndürür. + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) avg() fonksiyonu bir gruptaki NULL olmayan tüm X değerlerinin ortalama değerini döndürür. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) count(X) fonksiyonu bir gruptaki X'in kaç kere NULL olmadığının sayısını döndürür. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) group_concat() fonksiyonu X'in NULL olmayan tüm değerlerle birleşimini dize olarak döndürür. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) group_concat() fonksiyonu X'in NULL olmayan tüm değerlerle birleşimini dize olarak döndürür. Eğer Y parametresi mevcutsa X'in örnekleri arasında ayraç olarak kullanılır. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) max() küme fonksiyonu gruptaki tüm değerler arasından en büyük değeri döndürür. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) min() küme fonksiyonu gruptaki NULL olmayan tüm değerler arasından en küçük değeri döndürür. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) sum() ve total() küme fonksiyonları gruptaki NULL olmayan tüm değerlerin toplamını döndürür. + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + () Geçerli bölümdeki satır sayısı. Satırlar, 1'den başlayarak, tanım penceresinde ORDER BY ifadesi tarafından tanımlanan sırada veya aksi takdirde rastgele sırada numaralandırılır. + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () row_number() her gruptaki ilk eşin - boşlukları olan geçerli satırın sırası. ORDER BY ifadesi yoksa, tüm satırlar eş olarak kabul edilir ve bu işlev her zaman 1 değerini döndürür. + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + () Geçerli satırın kendi bölümündeki eş grubunun sayısı - boşluklar olmadan geçerli satırın sırası. Bölümler, 1'den başlayarak, tanım penceresindeki ORDER BY ifadesi tarafından tanımlanan sırada numaralandırılır. ORDER BY iifadesi yoksa, tüm satırlar eş olarak kabul edilir ve bu işlev her zaman 1 değerini döndürür. + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + () İsme rağmen, bu işlev her zaman 0.0 ile 1.0 arasında (sıralama - 1) / (bölüm satırları - 1) değerine bir değer döndürür; burada sıralama, yerleşik pencere rank() fonksiyonu ve bölüm- tarafından döndürülen değerdir. satırlar, bölümdeki toplam satır sayısıdır. Bölüm yalnızca bir satır içeriyorsa, bu işlev 0,0 değerini döndürür. + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + () Kümülatif dağılım. Satır-sayısı/bölüm-satırları olarak hesaplanır; burada satır-sayısı, gruptaki son eş için row_number() tarafından döndürülen değerdir ve bölüm-satırdaki bölüm sayısıdır. + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + (N) N argümanı bir tamsayı olarak ele alınır. Bu işlev, bölümü olabildiğince eşit bir şekilde N gruplarına böler ve ORDER BY ifadesi tarafından tanımlanan sırada veya aksi takdirde rasgele sırayla her gruba 1 ve N arasında bir tam sayı atar. Gerekirse, önce daha büyük gruplar oluşur. Bu işlev, geçerli satırın parçası olduğu gruba atanan tamsayı değerini döndürür. + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + (expr) Bölümdeki önceki satıra göre expr ifade değerlendirmesinin sonucunu döndürür. Veya, önceki satır yoksa (geçerli satır ilk satır olduğu için), NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + (expr,offset) Uzaklık değişkeni sağlanırsa, negatif olmayan bir tam sayı olmalıdır. Bu durumda, döndürülen değer, bölüm içindeki geçerli satırdan önce satır ofseti satırlarına göre ifade değerlendirmesinin sonucudur. Ofset 0 ise, ifade geçerli satıra göre değerlendirilir. Geçerli satırdan önce satır kaydırma satırları yoksa, NULL döndürülür. + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + (expr,offset,default) Varsayılan da sağlanmışsa, ofset ile tanımlanan satır yoksa NULL döndürülür. + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + (expr) Bölümdeki bir sonraki satıra göre expr ifade değerlendirmesinin sonucunu döndürür. Veya, bir sonraki satır yoksa (geçerli satır son olduğu için), NULL. + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + (expr,offset) Uzaklık değişkeni sağlanırsa, negatif olmayan bir tam sayı olmalıdır. Bu durumda, döndürülen değer, bölüm içindeki geçerli satırdan sonra ifade ofset satırlarına göre ifade değerlendirmesinin sonucudur. Ofset 0 ise, ifade geçerli satıra göre değerlendirilir. Geçerli satırdan sonra satır ofseti satırı yoksa, NULL döndürülür. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + (expr) Bu yerleşik pencere işlevi, her satır için pencere çerçevesini birleştirilmiş pencere işlevi ile aynı şekilde hesaplar. Her satır için pencere çerçevesindeki ilk satıra karşı değerlendirilen ifade değerini döndürür. + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + (expr) Bu yerleşik pencere işlevi, her satır için pencere çerçevesini birleştirilmiş pencere işlevi ile aynı şekilde hesaplar. Her satır için pencere çerçevesindeki son satıra göre değerlendirilen ifade değerini döndürür. + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + (expr,N) Bu yerleşik pencere işlevi, her satır için pencere çerçevesini birleştirilmiş pencere işlevi ile aynı şekilde hesaplar. Pencere çerçevesinin N satırına göre değerlendirilen ifade değerini döndürür. Satırlar, pencere çerçevesi içinde 1'den başlayarak, ORDER BY deyimi tarafından varsa veya başka bir şekilde rastgele sırada numaralandırılır. Bölümde N'inci satırı yoksa, NULL döndürülür. + + + + SqliteTableModel + + + reading rows + satırlar okunuyor + + + + loading... + yükleniyor... + + + + References %1(%2) +Hold %3Shift and click to jump there + Referanslar %1(%2) +Buraya atlamak için %3Shift'e basılı tutun ve tıklayın + + + + Error changing data: +%1 + Veri değiştirme hatası: %1 + + + + retrieving list of columns + sütunların listesi alınıyor + + + + Fetching data... + Veri alınıyor... + + + + + Cancel + İptal + + + + TableBrowser + + + Browse Data + Veriyi Görüntüle + + + + &Table: + &Tablo: + + + + Select a table to browse data + Verileri görüntülemek için tablo seçiniz + + + + Use this list to select a table to be displayed in the database view + Veritabanı görünümünde gösterilecek tabloyu seçmek için bu listeyi kullanın + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + Bu veritabanı tablosu görünümüdür. Aşağıdaki işlemleri yapabilirsiniz: +  - Satır içi değeri düzenlemek için yazmaya başlayın. +  - İçeriklerini hücre düzenleyici penceresinde düzenlemek için herhangi bir kaydı çift tıklayın. +  - Hücre içeriğini NULL'a dönüştürmek için Alt + Del tuşlarına basın. +  - Geçerli kaydı çoğaltmak için Ctrl + "tuşlarına basın. +  - Yukarıdaki hücreden değeri kopyalamak için Ctrl + '. +  - Standart seçim ve kopyalama / yapıştırma işlemleri. + + + + Text pattern to find considering the checks in this frame + Bu çerçevedeki kontrolleri baz alarak bulmak için metin deseni + + + + Find in table + Tabloda ara + + + + Find previous match [Shift+F3] + Önceki eşleşmeyi bul [Shift,F3] + + + + Find previous match with wrapping + Sarmalayarak bir önceki eşleşmeyi bul + + + + Shift+F3 + + + + + Find next match [Enter, F3] + Sonraki eşleşmeyi bul [Enter, F3] + + + + Find next match with wrapping + Sarmalayarak bir sonraki eşleşmeyi bul + + + + F3 + + + + + The found pattern must match in letter case + Bulunan desen büyük küçük harfe duyarlı şekilde eşleşmelidir + + + + Case Sensitive + Büyük Küçük Harfe Duyarlı + + + + The found pattern must be a whole word + Bulunan kalıp tam bir kelime olmalıdır + + + + Whole Cell + Tüm hücre + + + + Interpret search pattern as a regular expression + Arama desenini düzenliifade olarak yorumlama + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html> <head /> <body> <p> İşaretlendiğinde, girilen desen UNIX düzenli ifadesi olarak yorumlanır. <a href="https://en.wikibooks.org/wiki/Regular_Expressions" >Wikibooks</a > üzerinden düzenli ifadeleri inceleyebilirsiniz. </p> </body> </html> + + + + Regular Expression + Düzenli İfade (RegEx) + + + + + Close Find Bar + Arama Çubuğunu Kapat + + + + Text to replace with + Değiştirilecek metin + + + + Replace with + Şununla değiştir + + + + Replace next match + Sonraki eşleşmeyi değiştir + + + + + Replace + Değiştir + + + + Replace all matches + Tüm eşleşenleri değiştir + + + + Replace all + Tümünü Değiştir + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Başa sürükle</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Bu butona basıldığında üstteki tablo görünümünün başlangıcına kaydırılır.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + Bir sayfa yukarı kaydır + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>Bu butona tıklamak, yukarıdaki tablo görünümünde kayıt sayfasını yukarı doğru kaydırır.</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 / 0 + + + + Scroll one page downwards + Bir sayfa aşağı kaydır + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>Bu butona tıklamak, yukarıdaki tablo görünümünde kayıt sayfasını aşağıya doğru kaydırır.</p></body></html> + + + + > + > + + + + Scroll to the end + Sona sürükle + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>İstediğiniz kayda atlamak için buraya tıklayın</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Bu buton belirtilen kayıt numarasına gitmek için kullanılır.</p></body></html> + + + + Go to: + Bu kayda gidin: + + + + Enter record number to browse + Görüntülemek için kayıt numarasını giriniz + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Bu alana veritabanı görünümünde görüntülemek istediğiniz kayıt numarasını giriniz ve Bu kayda gidin butonuna tıklayınız + + + + 1 + 1 + + + + Show rowid column + rowid sütununu göster + + + + Toggle the visibility of the rowid column + Rowid sütununun görünürlüğünü ayarla + + + + Unlock view editing + Görünüm düzenlemenin kilidini aç + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Bu, geçerli görünümün düzenleme için kilidini açar. Ancak, düzenleme için uygun tetikleyicilere ihtiyacınız olacaktır. + + + + Edit display format + Görüntüleme formatını düzenle + + + + Edit the display format of the data in this column + Bu sütundaki verilerin görüntüleme biçimini düzenleyin + + + + + New Record + Yeni Kayıt + + + + + Insert a new record in the current table + Geçerli tabloya yeni bir kayıt ekle + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html> <head /> <body> <p> Bu düğme veritabanında yeni bir kayıt oluşturur. Farklı seçeneklerin olduğu açılır menüsüyü görüntülemek için fare düğmesini basılı tutun: </p> <ul> <li> <span style=" font-weight:600;">Yeni Kayıt</span>: veritabanına varsayılan değerleri olan yeni bir kayıt ekler. </li> <li> <span style=" font-weight:600;">Değerler Ekleyin...</span>: veritabanına eklenmeden önce değerleri girmek için bir iletişim kutusu açın. Bu, farklı kısıtlamaları karşılayan değerlerin girilmesine izin verir. Bu iletişim kutusu, bu kısıtlamalar nedeniyle <span style=" font-weight:600;">Yeni Kayıt</span> seçeneği başarısız olursa da açılır. </li> </ul> </body> </html> + + + + + Delete Record + Kaydı Sil + + + + Delete the current record + Geçerli kaydı sil + + + + + This button deletes the record or records currently selected in the table + Bu buton tabloda seçili olan kaydı veya kayıtları siler + + + + + Insert new record using default values in browsed table + Görüntülenen tablosundaki varsayılan değerleri kullanarak yeni kayıt ekle + + + + Insert Values... + Değerler Ekle... + + + + + Open a dialog for inserting values in a new record + Yeni bir kayda değer eklemek için bir iletişim kutusu açın + + + + Export to &CSV + &CSV dosyası olarak dışa aktar + + + + + Export the filtered data to CSV + Filtrelenmiş veriyi CSV olarak dışa aktar + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + Bu buton, görüntülenen tablonun verilerini şu anda görüntülendiği şekliyle (filtrelerden, görüntüleme biçimlerinden ve sütunların sıralamasına kadar) bir CSV dosyası olarak dışa aktarır. + + + + Save as &view + &Görünüm olarak kaydet + + + + + Save the current filter, sort column and display formats as a view + Geçerli filtreyi, sütunu ve görüntüleme biçimlerini bir görünüm olarak kaydedin + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + Bu buton, görüntülenen tablonun geçerli ayarlarını (filtreler, görüntü formatları ve sütunların sırasına kadar) daha sonra göz atabileceğiniz veya SQL ifadelerinde kullanabileceğiniz bir SQL görünümü olarak kaydeder. + + + + Save Table As... + Tabloyu Farklı Kaydet... + + + + + Save the table as currently displayed + Tabloyu şu anda gösterilen şekilde kaydet + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html> <head /> <body> <p> Bu açılır menü, o anda görüntülenen ve filtrelenen tablo için geçerli olan aşağıdaki seçenekleri sunar: </p> <ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;" > <li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" > CSV olarak Dışa Aktar: Bu seçenek, görüntülenen tablonun verilerini şu anda görüntülendiği şekliyle (filtrelerden, görüntüleme biçimlerinden ve sipariş sütunun sıralamasına kadar) bir CSV dosyasına aktarır. </li> <li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" > Görünüm olarak kaydet: Bu seçenek, göz atılan tablonun geçerli ayarlarını (filtreler, görüntü formatları ve sipariş sütun sıralamasına kadar) daha sonra göz atabileceğiniz veya SQL ifadelerinde kullanabileceğiniz bir SQL görünümü olarak kaydeder. </li> </ul> </body> </html> + + + + Hide column(s) + Sütunları gizle + + + + Hide selected column(s) + Seçilen sütunları gizle + + + + Show all columns + Tüm sütunları göster + + + + Show all columns that were hidden + Gizlenen tüm sütunları göster + + + + + Set encoding + Kodlama seç + + + + Change the encoding of the text in the table cells + Tablo hücrelerindeki metnin kodlamasını değiştirme + + + + Set encoding for all tables + Tüm tablolar için kodlama seç + + + + Change the default encoding assumed for all tables in the database + Veritabanındaki tüm tablolar için varsayılan kodlamayı değiştirme + + + + Clear Filters + Filtreleri Temizle + + + + Clear all filters + Tüm filtreleri temizle + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + Bu buton, o anda görüntülenen tablonun başlık giriş alanlarında ayarlanan tüm filtreleri temizler. + + + + Clear Sorting + Sıralamayı Temizle + + + + Reset the order of rows to the default + Satırların sırasını varsayılana sıfırla + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + Bu buton, o anda görüntülenen tablo için belirtilen sıralama sütunlarını temizler ve varsayılan sıraya geri döner. + + + + Print + Yazdır + + + + Print currently browsed table data + Şu anda görüntülenen tablo verilerini yazdır + + + + Print currently browsed table data. Print selection if more than one cell is selected. + Şu anda görüntülenen tablo verilerini yazdırın. Birden fazla hücre seçilirse seçimi yazdırın. + + + + Ctrl+P + + + + + Refresh + Yenile + + + + Refresh the data in the selected table + Seçilen tablodaki verileri yenile + + + + This button refreshes the data in the currently selected table. + Bu buton, seçilen tablodaki verileri yeniler. + + + + F5 + + + + + Find in cells + Hücrelerde ara + + + + Open the find tool bar which allows you to search for values in the table view below. + Aşağıdaki tablo görünümünde değerleri aramanıza izin veren bul araç çubuğunu açın. + + + + + Bold + Kalın + + + + Ctrl+B + + + + + + Italic + İtalik + + + + + Underline + Altı çizili + + + + Ctrl+U + + + + + + Align Right + Sağa Hizala + + + + + Align Left + Sola Hizala + + + + + Center Horizontally + Yatayda Ortala + + + + + Justify + İki yana yasla + + + + + Edit Conditional Formats... + Koşullu Biçimlendirmeyi Düzenle... + + + + Edit conditional formats for the current column + Geçerli sütun için koşullu biçimlendirmeyi düzenle + + + + Clear Format + Biçimlendirmeleri Temizle + + + + Clear All Formats + Tüm Biçimlendirmeleri Temizle + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + Seçilen hücrelerdeki tüm hücre biçimlendirmelerini ve seçilen sütunlardaki tüm koşullu biçimleri temizle + + + + + Font Color + Yazı Rengi + + + + + Background Color + Arka Plan Rengi + + + + Toggle Format Toolbar + Biçim Araç Çubuğunu Aç/Kapat + + + + Show/hide format toolbar + Biçim araç çubuğunu göster/gizle + + + + + This button shows or hides the formatting toolbar of the Data Browser + Bu düğme Veri Görüntüleyici'nin biçimlendirme araç çubuğunu gösterir veya gizler + + + + Select column + Sütun seç + + + + Ctrl+Space + + + + + Replace text in cells + Hücrelerdeki metinleri değiştir + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + %n satır + + + + + , %n column(s) + + , %n sütun + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . Toplam: %1; Ortalama: %2; Min: %3; Maks: %4 + + + + Conditional formats for "%1" + "%1" için koşullu biçimlendirme + + + + determining row count... + satır sayısı belirleniyor... + + + + %1 - %2 of >= %3 + %1 - %2 >= %3 + + + + %1 - %2 of %3 + %1 - %2 / %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Bu görünümde düzenlemeyi etkinleştirmek için lütfen sözde birincil anahtar girin. Bu, görünümdeki benzersiz bir sütunun adı olmalıdır. + + + + Delete Records + Kayıtları Sil + + + + Duplicate records + Yinelenen kayıtlar + + + + Duplicate record + Yinelenen kayıt + + + + Ctrl+" + + + + + Adjust rows to contents + Satırları içeriklere göre ayarlama + + + + Error deleting record: +%1 + Kayıt silme hatası: +%1 + + + + Please select a record first + Lütfen öncelikle kaydı seçiniz + + + + There is no filter set for this table. View will not be created. + Bu tablo için ayarlanmış filtre yok. Görünüm oluşturulmaz. + + + + Please choose a new encoding for all tables. + Lütfen tüm tablolar için yeni bir kodlama seçin. + + + + Please choose a new encoding for this table. + Lütfen bu tablo için yeni bir kodlama seçin. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Veritabanı kodlamasını kullanmak için alanı boş bırakın. + + + + This encoding is either not valid or not supported. + Bu kodlama geçerli değil veya desteklenmiyor. + + + + %1 replacement(s) made. + %1 değişimi yapıldı. + + + + VacuumDialog + + + Compact Database + Veritabanını Sıkıştır + + + + Warning: Compacting the database will commit all of your changes. + Uyarı: Veritabanını sıkıştırmak bütün değişikliklerinizi kaydedecektir. + + + + Please select the databases to co&mpact: + Sıkıştır&mak istediğiniz veritabanını seçiniz: + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_uk_UA.qm b/src/SqliteDBProcess/src/translations/sqlb_uk_UA.qm new file mode 100644 index 0000000..dfb5e51 Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_uk_UA.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_uk_UA.ts b/src/SqliteDBProcess/src/translations/sqlb_uk_UA.ts new file mode 100644 index 0000000..8594b2c --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_uk_UA.ts @@ -0,0 +1,6959 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + Про Оглядач БД для SQLite + + + + Version + Версія + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + + + + + AddRecordDialog + + + Add New Record + + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + + + + + Name + Ім'я + + + + Type + Тип + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + + + + + Auto-increment + + + + + + Unique constraint + + + + + + Check constraint: %1 + + + + + + Foreign key: %1 + + + + + + Default value: %1 + + + + + + Error adding record. Message from database engine: + +%1 + + + + + Are you sure you want to restore all the entered values to their defaults? + + + + + Application + + + Possible command line arguments: + Доступні ключі командного рядку: + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + -s/--sql опція вимагає аргумент + + + + The -t/--table option requires an argument + -t/--table параметр таблиці вимагає аргумент + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + + + + + Invalid option/non-existant file: %1 + Невірна опція/файл не існує: %1 + + + + SQLite Version + Версія SQLite + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + + + + + Qt Version %1 + + + + + The file %1 does not exist + Файл %1 не існує + + + + CipherDialog + + + SQLCipher encryption + Шифрування SQLCipher + + + + &Password + &Пароль + + + + &Reenter password + &Пароль ще раз + + + + Encr&yption settings + + + + + SQLCipher &3 defaults + + + + + SQLCipher &4 defaults + + + + + Custo&m + + + + + Page si&ze + &Розмір сторінки + + + + &KDF iterations + + + + + HMAC algorithm + + + + + KDF algorithm + + + + + Plaintext Header Size + + + + + Passphrase + Парольна фраза + + + + Raw key + Необроблений ключ + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + Будь ласка, вкажіть ключ шифрування. +Якщо Ви зміните будь-яке опційне налаштування, то його доведеться вводити під час кожного відкриття цього файлу бази даних. +Залиште поля паролю порожніми, щоб відімкнути шифрування. +Процес може тривати деякий час. Рекомендується створити резервну копію перед продовженням! Всі незбережені зміни збережуться автоматично. + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + Будь ласка, введіть ключ для шифрування бази даних. +Якщо будь-які інші налаштування були змінені для цієї бази даних, то потрібно надати цю інформацію також. + + + + ColumnDisplayFormatDialog + + + Choose display format + Оберіть формат показу + + + + Display format + Формат показу + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + Оберіть формат показу для колонки '%1'. Формат застосується до кожного її значенням. + + + + Default + За замовчуванням + + + + Decimal number + Десяткове число + + + + Exponent notation + Експоненціальний запис + + + + Hex blob + Бінарні дані + + + + Hex number + Шістнадцяткове число + + + + Apple NSDate to date + Дата Apple NSDate + + + + Java epoch (milliseconds) to date + + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + Дата за Юліанським календарем + + + + Unix epoch to local time + + + + + Date as dd/mm/yyyy + + + + + Lower case + Нижній регістр + + + + Custom display format must contain a function call applied to %1 + + + + + Error in custom display format. Message from database engine: + +%1 + + + + + Custom display format must return only one column but it returned %1. + + + + + Octal number + Вісімкове число + + + + Round number + Округлене число + + + + Unix epoch to date + Unix-час + + + + Upper case + Верхній регістр + + + + Windows DATE to date + Windows дата + + + + Custom + Мій формат + + + + CondFormatManager + + + Conditional Format Manager + + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + + + + + Add new conditional format + + + + + &Add + + + + + Remove selected conditional format + + + + + &Remove + + + + + Move selected conditional format up + + + + + Move &up + + + + + Move selected conditional format down + + + + + Move &down + + + + + Foreground + + + + + Text color + + + + + Background + Фон + + + + Background color + + + + + Font + Шрифт + + + + Size + Розмір + + + + Bold + Жирний + + + + Italic + Курсив + + + + Underline + Підкреслення + + + + Alignment + + + + + Condition + + + + + + Click to select color + + + + + Are you sure you want to clear all the conditional formats of this field? + + + + + DBBrowserDB + + + This database has already been attached. Its schema name is '%1'. + + + + + Please specify the database name under which you want to access the attached database + Будь ласка, вкажіть ім'я бази даних, під яким Ви хочете отримати доступ до під'єднаних баз даних + + + + Invalid file format + Неправильний формат файлу + + + + Do you really want to close this temporary database? All data will be lost. + + + + + Do you want to save the changes made to the database file %1? + Зберегти зроблені зміни у файлі бази даних %1? + + + + Database didn't close correctly, probably still busy + + + + + The database is currently busy: + + + + + Do you want to abort that other operation? + + + + + Exporting database to SQL file... + Експорт бази даних у файл SQL... + + + + + Cancel + Скасувати + + + + + No database file opened + + + + + Executing SQL... + Виконати код SQL... + + + + Action cancelled. + Дію скасовано. + + + + + Error in statement #%1: %2. +Aborting execution%3. + Помилка в операторі #%1: %2. +Виконання скасовано%3. + + + + + and rolling back + і відкочено + + + + didn't receive any output from %1 + + + + + could not execute command: %1 + + + + + Cannot delete this object + + + + + Cannot set data on this object + Не вдається встановити дані в цей об'єкт + + + + + A table with the name '%1' already exists in schema '%2'. + + + + + No table with name '%1' exists in schema '%2'. + + + + + + Cannot find column %1. + + + + + Creating savepoint failed. DB says: %1 + + + + + Renaming the column failed. DB says: +%1 + + + + + + Releasing savepoint failed. DB says: %1 + + + + + Creating new table failed. DB says: %1 + + + + + Copying data to new table failed. DB says: +%1 + + + + + Deleting old table failed. DB says: %1 + + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + + + + + could not get list of db objects: %1 + + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + Не вдалося скасувати видалення деяких об'єктів, асоційованих із цією таблицею. Найімовірніша причина цього - зміна імен деяких стовпців таблиці. Ось SQL оператор, який потрібно виправити і виконати вручну: + + + + could not get list of databases: %1 + + + + + Error loading extension: %1 + Помилка завантаження розширення: %1 + + + + could not get column information + неможливо отримати інформацію про стовпець + + + + Error setting pragma %1 to %2: %3 + Помилка встановлення Прагми %1 в %2: %3 + + + + File not found. + Файл не знайдено. + + + + DbStructureModel + + + Name + Ім'я + + + + Object + Об'єкт + + + + Type + Тип + + + + Schema + Схема + + + + Database + + + + + Browsables + + + + + All + Все + + + + Temporary + + + + + Tables (%1) + Таблиці (%1) + + + + Indices (%1) + Індекси (%1) + + + + Views (%1) + Перегляди (%1) + + + + Triggers (%1) + Тригери (%1) + + + + EditDialog + + + Edit database cell + Редагування комірки бази даних + + + + Mode: + Режим: + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + + + + + RTL Text + + + + + + Image + Зображення + + + + JSON + + + + + XML + + + + + + Automatically adjust the editor mode to the loaded data type + + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + + + + + Auto-switch + + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + + + + + Open preview dialog for printing the data currently stored in the cell + + + + + Auto-format: pretty print on loading, compact on saving. + + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + + + + + Word Wrap + + + + + Wrap lines on word boundaries + + + + + + Open in default application or browser + + + + + Open in application + + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + + + + + Save file reference... + + + + + Save reference to file + + + + + + Open in external application + + + + + Autoformat + + + + + &Export... + + + + + + &Import... + + + + + + Import from file + + + + + + Opens a file dialog used to import any kind of data to this database cell. + + + + + Export to file + + + + + Opens a file dialog used to export the contents of this database cell to a file. + + + + + + Print... + + + + + Open preview dialog for printing displayed image + + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + + + + + Copy Hex and ASCII + + + + + Copy selected hexadecimal and ASCII columns to the clipboard + + + + + Ctrl+Shift+C + + + + + Set as &NULL + Присвоїти &NULL + + + + Apply data to cell + + + + + This button saves the changes performed in the cell editor to the database cell. + + + + + Apply + Застосувати + + + + Text + Текст + + + + Binary + Двійкові дані + + + + Erases the contents of the cell + Очищення вмісту комірки + + + + This area displays information about the data present in this database cell + Ця зона показує інформацію про дані, що є в цій комірці бази даних + + + + Type of data currently in cell + Тип даних у комірці + + + + Size of data currently in table + Розмір даних у таблиці + + + + Choose a filename to export data + Вибрати ім'я файлу для експорту даних + + + + Type of data currently in cell: %1 Image + Тип даних у комірці: %1 Зображення + + + + %1x%2 pixel(s) + %1x%2 пікселів + + + + Type of data currently in cell: NULL + Тип даних у комірці: NULL + + + + + Type of data currently in cell: Text / Numeric + Тип даних у комірці: Текст / Числове + + + + + Image data can't be viewed in this mode. + + + + + + Try switching to Image or Binary mode. + + + + + + Binary data can't be viewed in this mode. + + + + + + Try switching to Binary mode. + + + + + + Image files (%1) + + + + + Binary files (*.bin) + + + + + Choose a file to import + Оберіть файл для імпорту + + + + %1 Image + + + + + Invalid data for this mode + + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + + + + + + + %n character(s) + + %n символ + %n символу + %n символів + + + + + Type of data currently in cell: Valid JSON + + + + + Type of data currently in cell: Binary + Тип даних у комірці: Двійкові дані + + + + Couldn't save file: %1. + Неможливо зберегти файл: %1. + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + + + + + + %n byte(s) + + %n байт + %n байта + %n байтів + + + + + EditIndexDialog + + + &Name + &Ім'я + + + + Order + Сортування + + + + &Table + &Таблиця + + + + Edit Index Schema + Редагування індексу схеми + + + + &Unique + &Унікальний + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + Для обмеження індексу частиною таблиці оберіть пункт WHERE, який обере частину таблиці для індексації + + + + Partial inde&x clause + Частковий клас інде&кса + + + + Colu&mns + Стов&пці + + + + Table column + Стовпець таблиці + + + + Type + Тип + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + Додати новий стовпець виразу до індекса. Стовпці виразів містять SQL вирази, а не імена стовпців + + + + Index column + Стовпець індексу + + + + Deleting the old index failed: +%1 + Невдале видалення старого індексу: +%1 + + + + Creating the index failed: +%1 + Невдале створення індексу + + + + EditTableDialog + + + Edit table definition + Редагування визначення таблиці + + + + Table + Таблиця + + + + Advanced + Додатково + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + Щоб створити таблицю 'WITHOUT rowid', потрібно, щоб у ній був первинний ключ INTEGER з відімкненим автоінкрементом. + + + + Without Rowid + Без ідентифікатора + + + + Fields + Поля + + + + Database sche&ma + + + + + Add + + + + + Remove + + + + + Move to top + + + + + Move up + + + + + Move down + + + + + Move to bottom + + + + + + Name + Ім'я + + + + + Type + Тип + + + + NN + + + + + Not null + Не (null) + + + + PK + ПК + + + + Primary key + Первинний ключ + + + + AI + АІ + + + + Autoincrement + Автоінкремент + + + + U + У + + + + + + Unique + Унікальне + + + + Default + За замовчуванням + + + + Default value + Значення за замовчуванням + + + + + + Check + Перевірити + + + + Check constraint + Перевірити обмеження + + + + Collation + + + + + + + Foreign Key + Зовнішній ключ + + + + Constraints + + + + + Add constraint + + + + + Remove constraint + + + + + Columns + Стовпці + + + + SQL + + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + + + + + + Primary Key + + + + + Add a primary key constraint + + + + + Add a foreign key constraint + + + + + Add a unique constraint + + + + + Add a check constraint + + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + Поле з таким ім'ям уже існує. Будь ласка, переіменуйте його або виберіть інше ім'я для цього поля. + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + + + + + Error creating table. Message from database engine: +%1 + Помилка створення таблиці. Повідомлення від ядра бази даних: +%1 + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + На цей стовпець посилається зовнішній ключ у таблиці %1, тому її ім'я неможливо змінити. + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + Існує принаймні один рядок, де це поле встановлено в NULL. Встановити цей прапорець неможливо. Спочатку змініть дані таблиці. + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + Існує принаймні один рядок, де це поле містить нечислове значення. Встановити прапорець АІ неможливо. Спочатку змініть дані таблиці. + + + + Column '%1' has duplicate data. + + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + Ви впевнені, що хочете видалити поле '%1'? +Всі дані, які містяться в цьому полі, будуть втрачені. + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + Будь ласка, перед встановленням прапорця без rowid додайте поле, яке має такі критерії: +- встановлено прапорець первинного ключа +- відімкнений автоінкремент + + + + ExportDataDialog + + + Export data as CSV + Експортувати дані у форматі CSV + + + + Tab&le(s) + &Таблиці + + + + Colu&mn names in first line + &Імена стовпців у першому рядку + + + + Fie&ld separator + &Роздільник полів + + + + , + , + + + + ; + ; + + + + Tab + Табуляція + + + + | + | + + + + + + Other + Інший + + + + &Quote character + &Символ лапок + + + + " + " + + + + ' + ' + + + + New line characters + Новий роздільник рядків + + + + Windows: CR+LF (\r\n) + Windows: CR+LF (\r\n) + + + + Unix: LF (\n) + Unix: LF (\n) + + + + Pretty print + Гарний висновок + + + + + Could not open output file: %1 + Не вдалося відкрити вихідний файл: %1 + + + + + Choose a filename to export data + Виберіть ім'я файлу для експорту даних + + + + Export data as JSON + Експортувати дані у форматі JSON + + + + exporting CSV + + + + + exporting JSON + + + + + Please select at least 1 table. + Будь ласка, оберіть хоча б 1 таблицю. + + + + Choose a directory + Оберіть каталог + + + + Export completed. + Експорт завершено. + + + + ExportSqlDialog + + + Export SQL... + Експорт SQL... + + + + Tab&le(s) + &Таблиці + + + + Select All + Обрати все + + + + Deselect All + Скасувати вибір + + + + &Options + &Опції + + + + Keep column names in INSERT INTO + Імена стовпців у виразі INSERT INTO + + + + Multiple rows (VALUES) per INSERT statement + Кілька рядків (VALUES) на INSERT вираз + + + + Export everything + Експортувати всі + + + + Export data only + Експортувати тільки дані + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + Стара схема (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + Перезаписати стару схему (DROP TABLE, тоді CREATE TABLE) + + + + Export schema only + Експортувати тільки схему даних + + + + Please select at least one table. + + + + + Choose a filename to export + Оберіть ім'я файлу для експорту + + + + Export completed. + Експорт завершено. + + + + Export cancelled or failed. + Експорт скасовано або виникла помилка. + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + + + + + Find and Replace... + + + + + Print... + + + + + ExtendedTableWidget + + + Use as Exact Filter + + + + + Containing + + + + + Not containing + + + + + Not equal to + + + + + Greater than + + + + + Less than + + + + + Greater or equal + + + + + Less or equal + + + + + Between this and... + + + + + Regular expression + + + + + Edit Conditional Formats... + + + + + Set to NULL + Встановити в NULL + + + + Copy + Копіювати + + + + Copy with Headers + + + + + Copy as SQL + + + + + Paste + Вставити + + + + Print... + + + + + Use in Filter Expression + + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + Вміст буфера обміну більше ніж обраний діапазон. +Все одно вставити? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + + + + + FileExtensionManager + + + File Extension Manager + + + + + &Up + + + + + &Down + + + + + &Add + + + + + &Remove + + + + + + Description + + + + + Extensions + + + + + *.extension + + + + + FilterLineEdit + + + Filter + Фільтр + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + + + + + Clear All Conditional Formats + + + + + Use for Conditional Format + + + + + Edit Conditional Formats... + + + + + Set Filter Expression + + + + + What's This? + + + + + Is NULL + + + + + Is not NULL + + + + + Is empty + + + + + Is not empty + + + + + Not containing... + + + + + Equal to... + + + + + Not equal to... + + + + + Greater than... + + + + + Less than... + + + + + Greater or equal... + + + + + Less or equal... + + + + + In range... + + + + + Regular expression... + + + + + FindReplaceDialog + + + Find and Replace + + + + + Fi&nd text: + + + + + Re&place with: + + + + + Match &exact case + + + + + Match &only whole words + + + + + When enabled, the search continues from the other end when it reaches one end of the page + + + + + &Wrap around + + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + + + + + Search &backwards + + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + + + + + &Selection only + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Use regular e&xpressions + + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + + + + + &Find Next + + + + + F3 + + + + + &Replace + + + + + Highlight all the occurrences of the text in the page + + + + + F&ind All + + + + + Replace all the occurrences of the text in the page + + + + + Replace &All + + + + + The searched text was not found + + + + + The searched text was not found. + + + + + The searched text was found one time. + + + + + The searched text was found %1 times. + + + + + The searched text was replaced one time. + + + + + The searched text was replaced %1 times. + + + + + ForeignKeyEditor + + + &Reset + &Скинути + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + + + + + ImportCsvDialog + + + Import CSV file + Імпортувати файл у форматі CSV + + + + Table na&me + + + + + &Column names in first line + І&мена стовпців у першому рядку + + + + Field &separator + &Роздільник полів + + + + , + , + + + + ; + ; + + + + + Tab + Табуляція + + + + | + | + + + + Other + Інший + + + + &Quote character + &Символ лапок + + + + + Other (printable) + + + + + + Other (code) + + + + + " + " + + + + ' + ' + + + + &Encoding + &Кодування + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + Обрізати поля? + + + + Separate tables + Розділити таблиці + + + + Advanced + Додатково + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + + + + + Ignore default &values + + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + + + + + Fail on missing values + + + + + Disable data type detection + + + + + Disable the automatic data type detection when creating a new table. + + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + + + + + Abort import + + + + + Ignore row + + + + + Replace existing row + + + + + Conflict strategy + + + + + + Deselect All + Скасувати вибір + + + + Match Similar + Співпадіння + + + + Select All + Обрати все + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + + + + + There is already a table named '%1'. Do you want to import the data into it? + + + + + Creating restore point failed: %1 + Помилка створення точки відновлення: %1 + + + + Creating the table failed: %1 + Помилка створення таблиці: %1 + + + + importing CSV + + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + + + + + Inserting row failed: %1 + Помилка вставки рядка: %1 + + + + MainWindow + + + DB Browser for SQLite + Оглядач для SQLite + + + + toolBar1 + панельІнструментів1 + + + + &Remote + &Віддалений + + + + &File + &Файл + + + + &Import + &Імпорт + + + + &Export + &Експорт + + + + &Edit + &Редагування + + + + &View + &Вид + + + + &Help + &Довідка + + + + &Tools + + + + + DB Toolbar + Панель інструментів БД + + + + Edit Database &Cell + Редагування &комірки БД + + + + Error Log + + + + + This button clears the contents of the SQL logs + + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + + + + + DB Sche&ma + Схе&ма БД + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + Виконати SQL + + + + + Execute current line + Виконати поточний рядок + + + + This button executes the SQL statement present in the current editor line + + + + + Shift+F5 + + + + + Sa&ve Project + &Зберегти проект + + + + Opens the SQLCipher FAQ in a browser window + Відкрити SQLCiphier ЧаПи в браузері + + + + Export one or more table(s) to a JSON file + Експортувати таблиці в JSON файл + + + + + Save SQL file as + Зберегти файл SQL як + + + + This button saves the content of the current SQL editor tab to a file + + + + + &Browse Table + Пе&регляд таблиці + + + + User + Користувачем + + + + Application + Додатком + + + + &Clear + О&чистити + + + + &New Database... + &Нова база даних... + + + + + Create a new database file + Створити новий файл бази даних + + + + This option is used to create a new database file. + Ця опція використовується щоб створити новий файл бази даних. + + + + Ctrl+N + + + + + + &Open Database... + &Відкрити базу даних... + + + + + + + + Open an existing database file + Відкрити існуючий файл бази даних + + + + + + This option is used to open an existing database file. + Ця опція використовується, щоб відкрити існуючий файл бази даних. + + + + Ctrl+O + + + + + &Close Database + &Закрити базу даних + + + + This button closes the connection to the currently open database file + + + + + + Ctrl+W + + + + + + Revert database to last saved state + Повернути базу даних до останнього збереженого стану + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + Ця опція використовується, щоб повернути поточний файл бази даних до його останнього збереженого стану. Всі зміни, зроблені з останньої операції збереження, буде втрачено. + + + + + Write changes to the database file + Записати зміни у файл бази даних + + + + This option is used to save changes to the database file. + Ця опція використовується, щоб зберегти зміни у файлі бази даних. + + + + Ctrl+S + + + + + Compact &Database... + + + + + Compact the database file, removing space wasted by deleted records + Ущільнити базу даних, видаливши простір, зайнятий видаленими записами + + + + + Compact the database file, removing space wasted by deleted records. + Ущільнити базу даних, видаливши простір, зайнятий видаленими записами. + + + + E&xit + &Вихід + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + Імпортувати дані з текстового файлу .sql в нову або існуючу базу даних. + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + Ця опція дає змогу імпортувати дані з текстового файлу .sql у нову або існуючу базу даних. Файл SQL можна створити на більшості двигунів баз даних, включно з MySQL і PostgreSQL. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + Відкрити майстер, який дає змогу імпортувати дані з файлу CSV у таблицю бази даних. + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + Відкрити майстер, який дає змогу імпортувати дані з файлу CSV у таблицю бази даних. Файли CSV можна створити в більшості програм баз даних і електронних таблиць. + + + + Export a database to a .sql dump text file. + Експортувати базу даних у текстовий файл .sql. + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + Ця опція дає змогу експортувати базу даних у текстовий файл .sql. Файли SQL містять всі дані, необхідні для створення бази даних у більшості движків баз даних, включно з MySQL і PostgreSQL. + + + + &Table(s) as CSV file... + Таблиці у файл CSV... + + + + Export a database table as a comma separated text file. + Експортувати таблицю бази даних як CSV текстовий файл. + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + Експортувати таблицю бази даних як CSV текстовий файл, готовий для імпортування в інші бази даних або програми електронних таблиць. + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + Відкрити майстер створення таблиць, де можливо визначити ім'я і поля для нової таблиці в базі даних + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + Відкрити майстер видалення таблиці, де можна вибрати таблицю бази даних для видалення. + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + Відкрити майстер зміни таблиці, де можливо перейменувати існуючу таблиць. Можна додати або видалити поля таблиці, так само змінювати імена полів і типи. + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + Відкрити майстер створення Індексу, в якому можна визначити новий індекс для існуючої таблиці бази даних. + + + + &Preferences... + &Налаштування... + + + + + Open the preferences window. + Відкрити вікно налаштувань. + + + + &DB Toolbar + &Панель інструментів БД + + + + Shows or hides the Database toolbar. + Показати або приховати панель інструментів БД. + + + + Shift+F1 + + + + + Execute all/selected SQL + + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + Execute line + + + + + &Wiki + + + + + F1 + + + + + Bug &Report... + + + + + Feature Re&quest... + + + + + Web&site + + + + + &Donate on Patreon... + + + + + &Attach Database... + + + + + + Add another database file to the current database connection + + + + + This button lets you add another database file to the current database connection + + + + + &Set Encryption... + + + + + SQLCipher &FAQ + + + + + Table(&s) to JSON... + + + + + Open Data&base Read Only... + + + + + Ctrl+Shift+O + + + + + Save results + + + + + Save the results view + + + + + This button lets you save the results of the last executed query + + + + + + Find text in SQL editor + + + + + Find + + + + + This button opens the search bar of the editor + + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + + + + + Find or replace + + + + + This button opens the find/replace dialog for the current editor tab + + + + + Ctrl+H + + + + + Export to &CSV + Експортувати в &CSV + + + + Save as &view + Зберегти як &вигляд + + + + Save as view + Зберегти як вигляд + + + + Browse Table + + + + + Shows or hides the Project toolbar. + + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + This button lets you open a DB Browser for SQLite project file + + + + + Extra DB Toolbar + + + + + New In-&Memory Database + + + + + Drag && Drop Qualified Names + + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + + + + + Drag && Drop Enquoted Names + + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + + + + + &Integrity Check + + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + + + + + &Foreign-Key Check + + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + + + + + &Quick Integrity Check + + + + + Run a quick integrity check over the open DB + + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + + + + + &Optimize + + + + + Attempt to optimize the database + + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + + + + + + Print + + + + + Print text from current SQL editor tab + + + + + Open a dialog for printing the text in the current SQL editor tab + + + + + Print the structure of the opened database + + + + + Open a dialog for printing the structure of the opened database + + + + + &Save Project As... + + + + + + + Save the project in a file selected in a dialog + + + + + Save A&ll + + + + + + + Save DB file, project file and opened SQL files + + + + + Ctrl+Shift+S + + + + + &Recently opened + &Недавно відкриті + + + + Open &tab + Відкрити &вкладку + + + + Open an existing database file in read only mode + Відкрити існуючий файл БД у режимі тільки для читання + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + Структура БД + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + Переглянути дані + + + + Un/comment block of SQL code + + + + + Un/comment block + + + + + Comment or uncomment current line or selected block of code + + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + + + + + Ctrl+/ + + + + + Stop SQL execution + + + + + Stop execution + + + + + Stop the currently running SQL script + + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + Редагувати прагму + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + + + + + SQL &Log + &Журнал SQL + + + + Show S&QL submitted by + По&казати SQL, який виконано + + + + &Plot + &Графік + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + + + + + + Project Toolbar + + + + + Extra DB toolbar + + + + + + + Close the current database file + + + + + Ctrl+F4 + + + + + &Revert Changes + &Скасувати зміни + + + + &Write Changes + &Записати зміни + + + + &Database from SQL file... + &База даних з файлу SQL... + + + + &Table from CSV file... + &Таблиці з файлу CSV... + + + + &Database to SQL file... + Базу &даних в файл SQL... + + + + &Create Table... + &Створити таблицю... + + + + &Delete Table... + &Видалити таблицю... + + + + &Modify Table... + &Змінити таблицю... + + + + Create &Index... + Створити і&ндекс... + + + + W&hat's This? + Що &це таке? + + + + &About + + + + + This button opens a new tab for the SQL editor + + + + + &Execute SQL + Ви&конати код SQL + + + + + + Save SQL file + Зберегти файл SQL + + + + &Load Extension... + + + + + Ctrl+E + + + + + Export as CSV file + Експортувати у файл CSV + + + + Export table as comma separated values file + Експортувати таблицю як CSV файл + + + + + Save the current session to a file + Зберегти поточний стан у файл + + + + Open &Project... + + + + + + Load a working session from a file + Завантажити робочий стан із файлу + + + + Copy Create statement + Копіювати CREATE вираз + + + + Copy the CREATE statement of the item to the clipboard + Копіювати CREATE вираз елемента в буффер обміну + + + + Ctrl+Return + + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Encrypted + Зашифрований + + + + Read only + Тільки для читання + + + + Database file is read only. Editing the database is disabled. + База даних тільки для читання. Редагування заборонене. + + + + Database encoding + Кодування бази даних + + + + Database is encrypted using SQLCipher + База даних зашифрована з використанням SQLCipher + + + + + Choose a database file + Вибрати файл бази даних + + + + Could not open database file. +Reason: %1 + Неможливо відкрити файл бази даних. +Причина: %1 + + + + + + Choose a filename to save under + Вибрати ім'я, під яким зберегти дані + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + Вийшла нова версія оглядача для SQLite (%1.%2.%3).<br/><br/>Вона доступна для скачування за посиланням <a href='%4'>%4</a>. + + + + DB Browser for SQLite project file (*.sqbpro) + Файл проекту оглядача для SQLite (*.sqbpro) + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + Скасувати всі зміни, зроблені у файлі бази даних '%1' після останнього збереження? + + + + Choose a file to import + Оберіть файл для імпорту + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + Створити новий файл бази даних для збереження імпортованих даних? +Якщо відповідь Ні, то здійсниться спроба імпортувати дані файлу SQL в поточну базу даних. + + + + File %1 already exists. Please choose a different name. + Файл %1 вже існує. Оберіть інше ім'я. + + + + Error importing data: %1 + Помилка імпортування даних: %1 + + + + Import completed. + Імпорт завершено. + + + + Delete View + Видалити перегляд + + + + Delete Trigger + Видалити тригер + + + + Delete Index + Видалити індекс + + + + Reset Window Layout + + + + + Alt+0 + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + The database is currenctly busy. + + + + + Click here to interrupt the currently running query. + + + + + In-Memory database + + + + + Do you want to save the changes made to the project file '%1'? + + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + + + + + Are you sure you want to delete the view '%1'? + + + + + Are you sure you want to delete the trigger '%1'? + + + + + Are you sure you want to delete the index '%1'? + + + + + Error: could not delete the table. + + + + + Error: could not delete the view. + + + + + Error: could not delete the trigger. + + + + + Error: could not delete the index. + + + + + Message from database engine: +%1 + + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + + + + + Error checking foreign keys after table modification. The changes will be reverted. + + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + + + + + -- EXECUTING SELECTION IN '%1' +-- + + + + + -- EXECUTING LINE IN '%1' +-- + + + + + -- EXECUTING ALL IN '%1' +-- + + + + + + At line %1: + + + + + Result: %1 + + + + + Result: %2 + + + + + Execution finished with errors. + + + + + Execution finished without errors. + + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + + + + + Open Database or Project + + + + + Attach Database... + + + + + Import CSV file(s)... + + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + + + + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + + + + + Project saved to file '%1' + + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Busy (%1) + + + + + Rename Tab + + + + + Duplicate Tab + + + + + Close Tab + + + + + Opening '%1'... + + + + + There was an error opening '%1'... + + + + + Value is not a valid URL or filename: %1 + + + + + %1 rows returned in %2ms + + + + + Window Layout + + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + + + + + Do you want to save the changes made to SQL tabs in a new project file? + + + + + Do you want to save the changes made to the SQL file %1? + + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + + + + + Could not find resource file: %1 + + + + + Choose a project file to open + + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + + + + + Could not open project file for writing. +Reason: %1 + + + + + Collation needed! Proceed? + Потрібно виконати зіставлення! Продовжити? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + Таблиця в базі даних вимагає виконання спеціальної функції зіставлення '%1'. +Якщо Ви продовжите, то можливе псування Вашої бази даних. +Створіть резервну копію! + + + + creating collation + + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + + + + + Please specify the view name + Вкажіть ім'я вигляду + + + + There is already an object with that name. Please choose a different name. + Об'єкт із зазначеним ім'ям уже існує. Виберіть інше ім'я. + + + + View successfully created. + Вигляд успішно створений. + + + + Error creating view: %1 + Помилка створення вигляду: %1 + + + + This action will open a new SQL tab for running: + + + + + Press Help for opening the corresponding SQLite reference page. + + + + + + Delete Table + Видалити таблицю + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + Встановлення значень PRAGMA завершить поточну транзакцію. Встановити значення? + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + + + + + Choose text files + Оберіть текстові файли + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + Помилка під час збереження файлу бази даних. Це означає, що не всі зміни в базу даних було збережено. Спочатку Вам необхідно розв'язати таку помилку. + +%1 + + + + Text files(*.sql *.txt);;All files(*) + Текстові файли(*.sql *.txt);;Всі файли(*) + + + + Modify View + Змінити вид + + + + Modify Trigger + Змінити тригер + + + + Modify Index + Змінити індекс + + + + Modify Table + Змінити таблицю + + + + Select SQL file to open + Обрати файл SQL для відкривання + + + + Select file name + Обрати ім'я файлу + + + + Select extension file + Обрати розширення файлу + + + + Extension successfully loaded. + Розширення успішно завантажено. + + + + Error loading extension: %1 + Помилка завантаження розширення: %1 + + + + + Don't show again + Не показувати наступного разу + + + + New version available. + Доступна нова версія. + + + + NullLineEdit + + + Set to NULL + Встановити в NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + Графік + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + + + + + Columns + Стовпці + + + + X + X + + + + Y1 + + + + + Y2 + + + + + Axis Type + + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + + + + + Line type: + Тип лінії: + + + + + None + Ні + + + + Line + Звичайна + + + + StepLeft + Ступенева, зліва + + + + StepRight + Ступенева, справа + + + + StepCenter + Ступенева, по центру + + + + Impulse + Імпульс + + + + Point shape: + Форма точок: + + + + Cross + Хрест + + + + Plus + Плюс + + + + Circle + Коло + + + + Disc + Диск + + + + Square + Квадрат + + + + Diamond + Ромб + + + + Star + Зірка + + + + Triangle + Трикутник + + + + TriangleInverted + Трикутник перевернутий + + + + CrossSquare + Хрест у квадраті + + + + PlusSquare + Плюс у квадраті + + + + CrossCircle + Хрест у колі + + + + PlusCircle + Плюс у колі + + + + Peace + Світ + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>Зберегти поточний графік...</p><p>Формат файлу вибирається розширенням (png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + Зберегти поточний графік... + + + + + Load all data and redraw plot + + + + + + + Row # + Рядок # + + + + Copy + Копіювати + + + + Print... + + + + + Show legend + + + + + Stacked bars + + + + + Date/Time + + + + + Date + + + + + Time + + + + + + Numeric + + + + + Label + + + + + Invalid + + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + + + + + Choose an axis color + + + + + Choose a filename to save under + Вибрати ім'я, під яким зберегти дані + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;Всі файли(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + + + + + Loading all remaining data for this table took %1ms. + + + + + PreferencesDialog + + + Preferences + Налаштування + + + + &Database + &База даних + + + + Database &encoding + &Кодування бази даних + + + + Open databases with foreign keys enabled. + Відкривати бази даних з увімкненими зовнішніми ключами. + + + + &Foreign keys + &Зовнішні ключі + + + + + + + + + + + + enabled + увімкнені + + + + Default &location + &Розташування за замовчуванням + + + + + + ... + ... + + + + &General + &Загальні + + + + Remember last location + Запам'ятовувати останню директорію + + + + Always use this location + Завжди відкривати це розташування + + + + Remember last location for session only + Запам'ятовувати останню директорію тільки для сесії + + + + Lan&guage + &Мова + + + + Toolbar style + + + + + + + + + Only display the icon + + + + + + + + + Only display the text + + + + + + + + + The text appears beside the icon + + + + + + + + + The text appears under the icon + + + + + + + + + Follow the style + + + + + Automatic &updates + &Стежити за оновленнями + + + + DB file extensions + + + + + Manage + + + + + SQ&L to execute after opening database + SQ&L,який треба виконання після відкривання бази даних + + + + Data &Browser + Оглядач &даних + + + + Remove line breaks in schema &view + Видалити розрив рядка в &схемі даних + + + + Show remote options + Показати віддалені опції + + + + Prefetch block si&ze + Розмір блоку &вибірки + + + + Default field type + Тип даних за замовчуванням + + + + Font + Шрифт + + + + &Font + &Шрифт + + + + Content + Вміст + + + + Symbol limit in cell + Кількість символів у осередку + + + + NULL + NULL + + + + Regular + Звичайні + + + + Binary + Двійкові дані + + + + Background + Фон + + + + Filters + Фільтри + + + + Threshold for completion and calculation on selection + + + + + Show images in cell + + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + + + + + Escape character + Символ екранування + + + + Delay time (&ms) + Час затримки (&мс) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + Час затримки перед застосуванням нового фільтра. Нульове значення припиняє очікування. + + + + &SQL + Р&едактор SQL + + + + Settings name + Ім'я налаштувань + + + + Context + Контекст + + + + Colour + Колір + + + + Bold + Жирний + + + + Italic + Курсив + + + + Underline + Підкреслення + + + + Keyword + Ключове слово + + + + Function + Функція + + + + Table + Таблиця + + + + Comment + Коментар + + + + Identifier + Ідентифікатор + + + + String + Рядок + + + + Current line + Поточна рядок + + + + SQL &editor font size + Розмір шрифту в &редакторі SQL + + + + Tab size + Розмір табуляції + + + + SQL editor &font + &Шрифт у редакторі SQL + + + + Error indicators + Індикатори помилок + + + + Hori&zontal tiling + Гори&зонтальний розподіл + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + Якщо ця опція увімкнена, то SQL редактор і результат запиту будуть розташовані поруч по горизонталі. + + + + Code co&mpletion + Авто&доповнення коду + + + + Main Window + + + + + Database Structure + Структура БД + + + + Browse Data + Переглянути дані + + + + Execute SQL + Виконати SQL + + + + Edit Database Cell + Редагування комірки БД + + + + When this value is changed, all the other color preferences are also set to matching colors. + + + + + Follow the desktop style + + + + + Dark style + + + + + Application style + + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + + + + + Database structure font size + + + + + Font si&ze + + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + + + + + Field display + + + + + Displayed &text + + + + + + + + + + Click to set this color + + + + + Text color + + + + + Background color + + + + + Preview only (N/A) + + + + + Foreground + + + + + SQL &results font size + + + + + &Wrap lines + + + + + Never + + + + + At word boundaries + + + + + At character boundaries + + + + + At whitespace boundaries + + + + + &Quotes for identifiers + + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + + + + + "Double quotes" - Standard SQL (recommended) + + + + + `Grave accents` - Traditional MySQL quotes + + + + + [Square brackets] - Traditional MS SQL Server quotes + + + + + Keywords in &UPPER CASE + + + + + When set, the SQL keywords are completed in UPPER CASE letters. + + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + &Extensions + Р&озширення + + + + Select extensions to load for every database: + Оберіть розширення, щоб завантажувати їх для кожної бази даних: + + + + Add extension + Додати розширення + + + + Remove extension + Видалити розширення + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>Оглядач для SQLite дає змогу використовувати оператор REGEXP 'з коробки'. Але попри<br/>це, можливі кілька різних варіантів реалізацій цього оператора й Ви вільні<br/>у виборі, який саме використовувати. Можна відімкнути нашу реалізацію та використовувати іншу -<br/>шляхом завантаження відповідного розширення. В цьому випадку потрібно перезавантажити програму.</p></body></html> + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + + + + + Allow loading extensions from SQL code + + + + + Clone databases into + Клонувати бази даних до + + + + Proxy + + + + + Configure + + + + + Disable Regular Expression extension + Відімкнути розширення Регулярних Виразів + + + + Remote + Віддалений сервер + + + + CA certificates + СА-сертифікати + + + + + Subject CN + Об'єкт CN + + + + Common Name + Звичайне ім'я + + + + Subject O + Об'єкт O + + + + Organization + Організація + + + + + Valid from + Дійсний з + + + + + Valid to + Дійсний до + + + + + Serial number + Серійний номер + + + + Your certificates + Ваш сертифікат + + + + File + Файл + + + + Subject Common Name + Звичайне ім'я об'єкта + + + + Issuer CN + Розповсюдник CN + + + + Issuer Common Name + Звичайне ім'я розповсюдника + + + + + Choose a directory + Оберіть каталог + + + + The language will change after you restart the application. + Мова зміниться після перезапуску програми. + + + + Select extension file + Обираємо файл розширення + + + + Extensions(*.so *.dylib *.dll);;All files(*) + + + + + Import certificate file + Імпортувати файл сертифіката + + + + No certificates found in this file. + Для цього файлу не знайдено сертифікатів. + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + Ви впевнені, що хочете видалити цей сертифікат? Всі дані сертифіката видаляться з налаштувань програми! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + + + + + ProxyDialog + + + Proxy Configuration + + + + + Pro&xy Type + + + + + Host Na&me + + + + + Port + + + + + Authentication Re&quired + + + + + &User Name + + + + + Password + + + + + None + Ні + + + + System settings + + + + + HTTP + + + + + Socks v5 + + + + + QObject + + + Error importing data + Помилка імпортування даних + + + + from record number %1 + з запису номер %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + + + + + Cancel + Скасувати + + + + All files (*) + + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + + + + + Left + + + + + Right + + + + + Center + + + + + Justify + + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + + + + + DB Browser for SQLite Project Files (*.sqbpro) + + + + + SQL Files (*.sql) + + + + + All Files (*) + + + + + Text Files (*.txt) + + + + + Comma-Separated Values Files (*.csv) + + + + + Tab-Separated Values Files (*.tsv) + + + + + Delimiter-Separated Values Files (*.dsv) + + + + + Concordance DAT files (*.dat) + + + + + JSON Files (*.json *.js) + + + + + XML Files (*.xml) + + + + + Binary Files (*.bin *.dat) + + + + + SVG Files (*.svg) + + + + + Hex Dump Files (*.dat *.bin) + + + + + Extensions (*.so *.dylib *.dll) + + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + + + + + Author + + + + + Size + Розмір + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + Помилка відкривання списку локальних баз даних. +%1 + + + + Error creating local databases list. +%1 + Помилка створення списку локальних баз даних. +%1 + + + + RemoteDock + + + Remote + Віддалений + + + + Local + Локальний + + + + Identity + Ідентичний + + + + Push currently opened database to server + + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Current Database + + + + + Clone + + + + + User + Користувачем + + + + Database + + + + + Branch + + + + + Commits + + + + + Commits for + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + + + + + Back + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + Оновити + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + Select an identity to connect + + + + + Public + + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + Ім'я + + + + Branch + + + + + Last modified + Востаннє змінений + + + + Size + Розмір + + + + Commit + + + + + File + + + + + RemoteModel + + + Name + Ім'я + + + + Last modified + Востаннє змінений + + + + Size + Розмір + + + + Commit + + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + Помилка під час відкривання віддаленого файлу %1. +%2 + + + + Error: Invalid client certificate specified. + Помилка: Вказано неправильний сертифікат клієнта. + + + + Please enter the passphrase for this client certificate in order to authenticate. + Будь ласка, введіть парольну фразу для цього сертифіката клієнта, для автентифікації + + + + Cancel + + + + + Uploading remote database to +%1 + Вивантаження віддаленої бази даних до +%1. {1?} + + + + Downloading remote database from +%1 + Завантаження віддаленої бази даних із +%1. {1?} + + + + + Error: The network is not accessible. + Помилка: Мережа не доступна. + + + + Error: Cannot open the file for sending. + Помилка: Неможливо відкрити файл для відправлення. + + + + RemotePushDialog + + + Push database + + + + + Database na&me to push to + + + + + Commit message + + + + + Database licence + + + + + Public + + + + + Branch + + + + + Force push + + + + + Username + + + + + Database will be public. Everyone has read access to it. + + + + + Database will be private. Only you have access to it. + + + + + Use with care. This can cause remote commits to be deleted. + + + + + RunSql + + + Execution aborted by user + Виконання скасовано користувачем + + + + , %1 rows affected + , %1 рядків постраждало + + + + query executed successfully. Took %1ms%2 + + + + + executing query + + + + + SelectItemsPopup + + + A&vailable + + + + + Sele&cted + + + + + SqlExecutionArea + + + Form + Форма + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + The found pattern must be a whole word + + + + + Whole Words + + + + + Text pattern to find considering the checks in this frame + + + + + Find in editor + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + + + + + Results of the last executed statements + Результати останніх виконаних операторів + + + + This field shows the results and status codes of the last executed statements. + Це поле показує результати та коди статусів останніх виконаних операторів. + + + + Couldn't read file: %1. + Неможливо прочитати файл: %1. + + + + + Couldn't save file: %1. + Неможливо зберегти файл: %1. + + + + Your changes will be lost when reloading it! + + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + (X) Функція abs(X) повертає модуль числа аргументу X. + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + () Функція changes() повертає кількість рядків у базі даних, які було змінено, вставлено або видалено після вдалого виконання INSERT, DELETE або UPDATE. + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + (X,Y,...) Функція coalesce() повертає копію першого аргументу не-NULL, якщо такого немає, то повертає NULL + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + (X,Y) Функція ifnull() повертає копію першого аргументу не-NULL, або якщо обидва аргумента NULL, то повертає NULL. + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + (X,Y) Функція instr(X,Y) повертає кількість символів, починаючи з якого в рядку X знайдено підрядок Y, або 0, якщо такого не знайдено. + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + (X) Функція hex() інтерпретує аргумент як BLOB і повертає рядок в 16-ричній системі числення із вмістом аргументу. + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + () Функція last_insert_rowid() повертає ROWID останнього вставленого рядка. + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + (X) Для строкового значення X, функція length(X) повертає кількість символів (НЕ байтів) від початку рядка до першого символу '\0'. + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + (X,Y) фукнція like() еквівалентна виразу "Y LIKE X". + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + (X,Y,Z) Функція like() еквівалент вираження "Y LIKE X ESCAPE Z". + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + (X) Функція lower(X) повертає копію рядка X, в якій усі ACSII символи переведені в нижній регістр. + + + + (X) ltrim(X) removes spaces from the left side of X. + (X) ltrim(X) видаляє символи пробілів зліва для рядка X. + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + (X1,X2,...) Функція char(X1,X2,...,XN) повертає рядок, складений із символів, переданих як аргументи. + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + (X,Y) функція glob(X,Y) еквівалент вираження "Y GLOB X". + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + (X,Y) Функція ltrim (X,Y) повертає новий рядок шляхом видалення з рядка X зліва будь-якого символу з Y. + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + (X,Y,...) Функція max() повертає аргумент з максимальним значенням, або NULL, якщо хоча б один аргумент дорівнює NULL. + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + (X,Y,...) Функція min() повертає аргумент з мінімальним значенням. + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + (X,Y) Функція nullif(X,Y) повертає перший аргумент, якщо аргументи різні, або NULL, якщо вони однакові. + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + (FORMAT,...) Функція printf(FORMAT,...) працює так само, як printf() зі стандартної бібліотеки мови програмування Сі. + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + (X) Функція quote(X) повертає змінений рядок X, який можна використовувати в SQL виразах. + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + () Функція random() повертає псевдовипадкове цілочисельне значення з діапозона від -9223372036854775808 до +9223372036854775807. + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + (N) Функція randomblob(N) повертає N-байтний BLOB, що містить псевдовипадкові байти. + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + (X,Y,Z) Функція replace(X,Y,Z) повертає новий рядок на основі рядка X, заміною всіх підрядків Y на Z. + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + (X) Функція round(X) округлює X до цілого значення. + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + (X,Y) Функція round(X,Y) округлює X до Y чисел після коми праворуч. + + + + (X) rtrim(X) removes spaces from the right side of X. + (X) rtrim(X) видаляє символи пробілу праворуч від рядка X. + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + (X,Y) Функція rtrim(X,Y) повертає новий рядок шляхом видалення з рядка X праворуч будь-якого символу з рядка Y. + + + + + + + (timestring,modifier,modifier,...) + (timestring,modifier,modifier,...) + + + + (format,timestring,modifier,modifier,...) + (format,timestring,modifier,modifier,...) + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + (X) Функція soundex(X) повертає копію рядка X, кодовану в форматі soundex. + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + (X,Y) substr(X,Y) повертає підрядок з рядка X, починаючи з Y-го символу. + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + (X,Y,Z) Функція substr(X,Y,Z) повертає підрядок з рядка X, починаючи з Y-го символу, завдовжки Z-символів. + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + () Функція total_changes() повертає кількість рядків, змінених за допомогою INSERT, UPDATE або DELETE, починаючи з того моменту, коли під'єднання до бази даних було відкрито. + + + + (X) trim(X) removes spaces from both ends of X. + (X) trim(X) видаляє пробіли з обох сторін рядка X. + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + (X,Y) Функція trim(X,Y) створює новий рядок з X шляхом видалення з обох кінців символів, які присутні в рядку Y. + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + (X) Функція typeof(X) повертає рядок із типом даних вираження X. + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + (X) Функція unicode(X) повертає числове значення UNICODE коду символу. + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + (X) Функція upper(X) повертає копію рядка X, в якій для кожного ASCII символу регістр буде перетворений з нижнього у верхній. + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + (N) Функція zeroblob(N) повертає BLOB розміром N байт зі значеннями 0x00. + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + (X) Функція avg() повертає середнє значення для всіх не-NULL значень групи. + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + (X) Функція count(X) повертає кількість рядків, у яких X не-NULL у групі. + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + (X) Функція group_concat() повертає рядок з усіх значень X не-NULL. + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + (X,Y) Функція group_concat() повертає рядок з усіх значень X не-NULL. Y - роздільник між значеннями X. + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + (X) Агрегатна функція max() повертає максимальне значення для X. + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + (X) Агрегатна функція min() повертає мінімальне не-NULL значення для X. + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + (X) Агрегатні функції sum() і total() повертають суму всіх не-NULL значень для X. + + + + SqliteTableModel + + + reading rows + + + + + loading... + + + + + References %1(%2) +Hold %3Shift and click to jump there + + + + + Error changing data: +%1 + Помилка зміни даних: +%1 + + + + retrieving list of columns + + + + + Fetching data... + + + + + + Cancel + + + + + TableBrowser + + + Browse Data + Переглянути дані + + + + &Table: + &Таблиця: + + + + Select a table to browse data + Оберіть таблицю для перегляду даних + + + + Use this list to select a table to be displayed in the database view + Використовуйте цей список, щоб вибрати таблицю, яку буде показано в переглядачі баз даних + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + + + + + Text pattern to find considering the checks in this frame + + + + + Find in table + + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + The found pattern must be a whole word + + + + + Whole Cell + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + Text to replace with + + + + + Replace with + + + + + Replace next match + + + + + + Replace + + + + + Replace all matches + + + + + Replace all + + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>Прокрутити на початок</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>Натискання цієї кнопки переміщує до початку таблиці.</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 з 0 + + + + Scroll one page downwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + + + + + > + > + + + + Scroll to the end + Прокрутити до кінця + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>Натисніть тут, щоб перейти до зазначеного запису</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>Ця кнопка використовується, щоб переміститися до запису, номер якого зазначений в зоні Перейти до </p></body></html> + + + + Go to: + Перейти до: + + + + Enter record number to browse + Введіть номер запису для перегляду + + + + Type a record number in this area and click the Go to: button to display the record in the database view + Надрукуйте номер запису в цій зоні й натисніть кнопку Перейти до:, щоб показати запис у базі даних + + + + 1 + 1 + + + + Show rowid column + Показати стовпець rowid + + + + Toggle the visibility of the rowid column + Змінити видимість стовпця rowid + + + + Unlock view editing + Розблокувати редагування вигляду + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + Це розблоковує поточний вигляд для редагування. Проте вам необхідно виділити тригери для редагування + + + + Edit display format + Формат показу + + + + Edit the display format of the data in this column + Редагування формату показу для даних у цьому стовпці + + + + + New Record + Додати запис + + + + + Insert a new record in the current table + Додати новий запис у поточну таблицю + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + + + + + + Delete Record + Видалити запис + + + + Delete the current record + Видалити поточний запис + + + + + This button deletes the record or records currently selected in the table + + + + + + Insert new record using default values in browsed table + + + + + Insert Values... + + + + + + Open a dialog for inserting values in a new record + + + + + Export to &CSV + Експортувати в &CSV + + + + + Export the filtered data to CSV + + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + + + + + Save as &view + Зберегти як &вигляд + + + + + Save the current filter, sort column and display formats as a view + + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + + + + + Save Table As... + + + + + + Save the table as currently displayed + + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + + + + + Hide column(s) + + + + + Hide selected column(s) + + + + + Show all columns + + + + + Show all columns that were hidden + + + + + + Set encoding + Кодування + + + + Change the encoding of the text in the table cells + Змінити кодування тексту в цій комірці таблиці + + + + Set encoding for all tables + Встановити кодування для всіх таблиць + + + + Change the default encoding assumed for all tables in the database + Змінити кодування за замовчуванням для всіх таблиць у базі даних + + + + Clear Filters + + + + + Clear all filters + Очистити всі фільтри + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + + + + + Clear Sorting + + + + + Reset the order of rows to the default + + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + + + + + Print + + + + + Print currently browsed table data + + + + + Print currently browsed table data. Print selection if more than one cell is selected. + + + + + Ctrl+P + + + + + Refresh + Оновити + + + + Refresh the data in the selected table + + + + + This button refreshes the data in the currently selected table. + Ця кнопка оновлює дані обраної на цей момент таблиці. + + + + F5 + + + + + Find in cells + + + + + Open the find tool bar which allows you to search for values in the table view below. + + + + + + Bold + Жирний + + + + Ctrl+B + + + + + + Italic + Курсив + + + + + Underline + Підкреслення + + + + Ctrl+U + + + + + + Align Right + + + + + + Align Left + + + + + + Center Horizontally + + + + + + Justify + + + + + + Edit Conditional Formats... + + + + + Edit conditional formats for the current column + + + + + Clear Format + + + + + Clear All Formats + + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + + + + + + Font Color + + + + + + Background Color + + + + + Toggle Format Toolbar + + + + + Show/hide format toolbar + + + + + + This button shows or hides the formatting toolbar of the Data Browser + + + + + Select column + + + + + Ctrl+Space + + + + + Replace text in cells + + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + + + + + + + + , %n column(s) + + + + + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + + + + + Conditional formats for "%1" + + + + + determining row count... + + + + + %1 - %2 of >= %3 + + + + + %1 - %2 of %3 + %1 - %2 з %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + Будь ласка, введіть псевдо-первинний ключ для можливості редагування у цьому виді. Це має бути і'мя унікального стовпця у виді + + + + Delete Records + + + + + Duplicate records + + + + + Duplicate record + Дублікат запису + + + + Ctrl+" + + + + + Adjust rows to contents + + + + + Error deleting record: +%1 + Помилка видалення запису: +%1 + + + + Please select a record first + Будь ласка, спочатку оберіть запис + + + + There is no filter set for this table. View will not be created. + + + + + Please choose a new encoding for all tables. + Оберіть нову систему кодування для всіх таблиць. + + + + Please choose a new encoding for this table. + Оберіть нову систему кодування для цієї таблиці. + + + + %1 +Leave the field empty for using the database encoding. + %1 +Залиште це поле порожнім якщо хочете, щоб використовувалося кодування за замовчуванням. + + + + This encoding is either not valid or not supported. + Кодування невірне або не підтримується. + + + + %1 replacement(s) made. + + + + + VacuumDialog + + + Compact Database + Ущільнення БД + Ущільнення бази даних + + + + Warning: Compacting the database will commit all of your changes. + + + + + Please select the databases to co&mpact: + + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_zh.qm b/src/SqliteDBProcess/src/translations/sqlb_zh.qm new file mode 100644 index 0000000..2cbe4ec Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_zh.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_zh.ts b/src/SqliteDBProcess/src/translations/sqlb_zh.ts new file mode 100644 index 0000000..8ac3fc0 --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_zh.ts @@ -0,0 +1,7008 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + 关于 DB Browser for SQLite + + + + Version + 版本 + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + <html><head/><body><p>DB Browser for SQLite 是一个开源免费的可视化工具,用于创建、设计和编辑 SQLite 数据库文件。</p><p>它以第 2 版 Mozilla 公共许可,以及第 3 版及之后版本的 GNU 通用许可方式授权。你可以在遵循这些许可的条件下修改或重新发布它。</p><p>参阅 <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> 了解细节。</p><p>要获得本程序的更多信息,请访问我们的网站: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">这个软件使用了来自于 </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a> <span style=" font-size:small;">的 GPL/LGPL Qt Toolkit。<br/>参阅 </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> 了解许可条款和其他信息。</span></p><p><span style=" font-size:small;">它还使用了 Mark James 的 Silk 图标集,以第 2.5 和 3.0 版知识共享署名(CCA)许可方式授权。<br/>参阅 </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> 了解细节。</span></p></body></html> + + + + AddRecordDialog + + + Add New Record + 新增记录 + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + 为新增的记录填写满足约束的值。加粗的字段必须填写。 + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + 在值列,你可以选择给对应名字列的值。类型列显示了字段的类型。默认值的显示样式和 NULL 值一样。 + + + + Name + 名称 + + + + Type + 类型 + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + 要插入的值。如果没有修改,就会插入事先填好的默认值。 + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + 当你在上面编辑值时,这里会显示插入新记录所用的 SQL 语句。你可以在保存前手动修改这些语句。 + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">保存</span> 将会把显示的 SQL 语句提交到数据库以插入新记录。</p><p><span style=" font-weight:600;">恢复默认</span> 将会把 <span style=" font-weight:600;">值</span> 恢复成默认值。</p><p><span style=" font-weight:600;">取消</span> 将会关闭此界面,不执行 SQL 语句。</p></body></html> + + + + Auto-increment + + 自增 + + + + + Unique constraint + + 唯一约束 + + + + + Check constraint: %1 + + 检查约束: %1 + + + + + Foreign key: %1 + + 外键: %1 + + + + + Default value: %1 + + 默认值: %1 + + + + + Error adding record. Message from database engine: + +%1 + 添加记录失败。来自数据库引擎的消息: + +%1 + + + + Are you sure you want to restore all the entered values to their defaults? + 你确定要把输入的所有值都恢复成默认值吗? + + + + Application + + + Possible command line arguments: + 可用命令行参数: + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + -o/--option 和 -O/--save-option 选项需要 group/setting=value 格式的参数 + + + + Usage: %1 [options] [<database>|<project>] + + 用法: %1 [选项] [<数据库>|<项目>] + + + + + -h, --help Show command line options + -h, --help 显示命令行选项 + + + + -q, --quit Exit application after running scripts + -q, --quit 在运行脚本后退出应用程序 + + + + -s, --sql <file> Execute this SQL file after opening the DB + -s, --sql <文件> 在打开数据库后执行此 SQL 文件 + + + + -t, --table <table> Browse this table after opening the DB + -t, --table <表> 在打开数据库后浏览此表 + + + + -R, --read-only Open database in read-only mode + -R, --read-only 用只读模式打开数据库 + + + + -o, --option <group>/<setting>=<value> + -o, --option <分组/设置=值> + + + + Run application with this setting temporarily set to value + 临时以此设置运行程序 + + + + -O, --save-option <group>/<setting>=<value> + -O, --save-option <分组/设置=值> + + + + Run application saving this value for this setting + 以此设置运行程序并保存设置 + + + + -v, --version Display the current version + -v, --version 显示当前版本 + + + + <database> Open this SQLite database + <文件> 打开这个 SQLite 数据库 + + + + <project> Open this project file (*.sqbpro) + <项目> 打开这个项目文件 (*.sqbpro) + + + + The -s/--sql option requires an argument + -s/--sql 选项需要一个参数 + + + + The file %1 does not exist + 文件 %1 不存在 + + + + The -t/--table option requires an argument + -t/--table 选项需要一个参数 + + + + Invalid option/non-existant file: %1 + 无效选项/不存在的文件: %1 + + + + SQLite Version + SQLite 版本 + + + + SQLCipher Version %1 (based on SQLite %2) + SQLCipher 版本 %1 (基于 SQLite %2) + + + + DB Browser for SQLite Version %1. + DB Browser for SQLite 版本 %1. + + + + Built for %1, running on %2 + 为 %1 构建,运行于 %2 + + + + Qt Version %1 + Qt 版本 %1 + + + + CipherDialog + + + SQLCipher encryption + SQLCipher 加密 + + + + &Password + 密码(&P) + + + + &Reenter password + 确认密码(&R) + + + + Encr&yption settings + 加密设置(&Y) + + + + SQLCipher &3 defaults + SQLCipher &3 默认 + + + + SQLCipher &4 defaults + SQLCipher &4 默认 + + + + Custo&m + 自定义(&M) + + + + Page si&ze + 页大小(&Z) + + + + &KDF iterations + KDF迭代(&K) + + + + HMAC algorithm + HMAC算法 + + + + KDF algorithm + KDF算法 + + + + Plaintext Header Size + 纯文本文件头大小 + + + + Passphrase + 口令 + + + + Raw key + 原始密钥 + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + 请设置密码以加密数据库。 +注意如果修改了任何其他选项设置,以及每次打开数据库时,您都需要重新输入此密码。 +不填密码表示禁用加密。 +加密过程将花费一些时间,您应该在加密之前备份数据库!修改加密前,未保存的更改将会被应用。 + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + 请输入加密数据库的密码。 +如果此数据库的任何其他设置发生变化,您也需要提供此信息。 + + + + ColumnDisplayFormatDialog + + + Choose display format + 选择显示格式 + + + + Display format + 显示格式 + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + 为列 '%1' 选择显示格式,将在显示之前应用到值。 + + + + Default + 默认 + + + + Decimal number + 十进制数 + + + + Exponent notation + 指数 + + + + Hex blob + 十六进制大型对象 + + + + Hex number + 十六进制数 + + + + Apple NSDate to date + 苹果 NSDate 到日期 + + + + Java epoch (milliseconds) to date + Java 时间戳(毫秒)到日期 + + + + .NET DateTime.Ticks to date + .NET 日期时间(Ticks到日期) + + + + Julian day to date + 儒略日 (Julian day) 到日期 + + + + Unix epoch to local time + Unix 时间戳到本地时间 + + + + Date as dd/mm/yyyy + 日期,格式为 dd/mm/yyyy + + + + Lower case + 小写 + + + + Custom display format must contain a function call applied to %1 + 自定义显示格式必须包含处理 %1 的函数 + + + + Error in custom display format. Message from database engine: + +%1 + 自定义显示格式有误。数据库引擎提供的错误信息为:\n\n%1 + + + + Custom display format must return only one column but it returned %1. + 自定义显示格式必须只返回1列,但目前返回 %1 。 + + + + Octal number + 八进制数 + + + + Round number + 取整数 + + + + Unix epoch to date + Unix 时间到日期 + + + + Upper case + 大写 + + + + Windows DATE to date + Windows 日期到日期 + + + + Custom + 自定义 + + + + CondFormatManager + + + Conditional Format Manager + 条件格式管理器 + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + 此对话框用于创建和编辑条件格式。每个单元格的样式将被设置为首个匹配条件的格式。条件格式可以上下移动,靠前的行优先生效。条件的语法与过滤器相同。空条件将适用于所有值。 + + + + Add new conditional format + 创建新的条件格式 + + + + &Add + 添加(&A) + + + + Remove selected conditional format + 删除选中的条件格式 + + + + &Remove + 删除(&R) + + + + Move selected conditional format up + 上移选中的条件格式 + + + + Move &up + 上移(&U) + + + + Move selected conditional format down + 下移选中的条件格式 + + + + Move &down + 下移(&D) + + + + Foreground + 前景 + + + + Text color + 文本颜色 + + + + Background + 背景 + + + + Background color + 背景颜色 + + + + Font + 字体 + + + + Size + 大小 + + + + Bold + 粗体 + + + + Italic + 斜体 + + + + Underline + 下划线 + + + + Alignment + 对齐 + + + + Condition + 条件 + + + + + Click to select color + 点击选择颜色 + + + + Are you sure you want to clear all the conditional formats of this field? + 确实要清除全部条件格式吗? + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + 请指明想要附加的数据库名 + + + + Invalid file format + 无效的文件格式 + + + + Do you want to save the changes made to the database file %1? + 您是否想保存对数据库文件 %1 做出的更改? + + + + Exporting database to SQL file... + 正在导出数据库到 SQL 文件... + + + + + Cancel + 取消 + + + + Executing SQL... + 正在执行 SQL... + + + + Action cancelled. + 操作已取消。 + + + + This database has already been attached. Its schema name is '%1'. + 此数据库已被附加。它的架构名是 '%1'. + + + + Do you really want to close this temporary database? All data will be lost. + 你确定要关闭此临时数据库吗?所有数据都会丢失。 + + + + Database didn't close correctly, probably still busy + 数据库未正确关闭,可能正忙 + + + + The database is currently busy: + 数据库正忙: + + + + Do you want to abort that other operation? + 确定要放弃操作吗? + + + + + No database file opened + 没有打开数据库文件 + + + + + Error in statement #%1: %2. +Aborting execution%3. + 错误在语句 #%1: %2. +正在放弃执行%3. + + + + + and rolling back + 并回滚 + + + + didn't receive any output from %1 + 未收到来自 %1 的任何输出 + + + + could not execute command: %1 + 未能执行命令: %1 + + + + Cannot delete this object + 无法删除此对象 + + + + Cannot set data on this object + 不能为此数据设置对象 + + + + + A table with the name '%1' already exists in schema '%2'. + 一个与 '%1' 同名的表已经存在于架构 '%2' 中。 + + + + No table with name '%1' exists in schema '%2'. + 架构 '%2' 中不存在表 '%1' 。 + + + + + Cannot find column %1. + 找不到列 %1 。 + + + + Creating savepoint failed. DB says: %1 + 创建保存点失败。数据库显示:%1 + + + + Renaming the column failed. DB says: +%1 + 重命名列失败。数据库显示:\n%1 + + + + + Releasing savepoint failed. DB says: %1 + 释放保存点失败。数据库显示:%1 + + + + Creating new table failed. DB says: %1 + 建立新表失败。数据库显示:%1 + + + + Copying data to new table failed. DB says: +%1 + 复制数据到新表失败。数据库显示:\n%1 + + + + Deleting old table failed. DB says: %1 + 删除旧表失败。数据库显示:%1 + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + 将表 '%1' 重命名为 '%2' 时出错。\n数据库引擎的错误信息:\n%1 + + + + could not get list of db objects: %1 + 未能获取数据库对象列表:%1 + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + 还原某些和这个表关联的对象失败。这个最可能是因为某些列的名称更改了。这里是您可能需要手动修复和执行的 SQL 语句: + + + + + + could not get list of databases: %1 + 无法获取数据库列表: %1 + + + + Error loading extension: %1 + 加载扩展时出错: %1 + + + + could not get column information + 无法获取列信息 + + + + Error setting pragma %1 to %2: %3 + 设置杂注 %1 为 %2 时出错: %3 + + + + File not found. + 文件找不到。 + + + + DbStructureModel + + + Name + 名称 + + + + Object + 对象 + + + + Type + 类型 + + + + Schema + 架构 + + + + Database + 数据库 + + + + Browsables + 可浏览的 + + + + All + 所有 + + + + Temporary + 临时的 + + + + Tables (%1) + 表 (%1) + + + + Indices (%1) + 索引 (%1) + + + + Views (%1) + 视图 (%1) + + + + Triggers (%1) + 触发器 (%1) + + + + EditDialog + + + Edit database cell + 编辑数据库单元格 + + + + Mode: + 模式: + + + + + Image + 图像 + + + + Set as &NULL + 设为&空 + + + + Apply data to cell + 将数据应用到单元格 + + + + This button saves the changes performed in the cell editor to the database cell. + 此按钮把单元格编辑器中的修改应用到数据库单元格中。 + + + + Apply + 应用 + + + + Text + 文本 + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + 这是单元格编辑器支持的模式列表。选择一种模式以查看或编辑当前单元格的数据。 + + + + RTL Text + 右到左文本 + + + + Binary + 二进制 + + + + JSON + JSON + + + + XML + XML + + + + + Automatically adjust the editor mode to the loaded data type + 自动调整编辑器模式为加载的数据的类型 + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + 此复选按钮可启用或禁用编辑器模式的自动切换。当新单元格被选中或新数据被导入时,如果启用了自动切换,模式会调整为检测到的数据类型。之后你也手动切换编辑器的模式。如果你希望浏览各单元格的时候都保持手动选择的模式,请把此按钮切到关闭状态。 + + + + Auto-switch + 自动切换 + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + 此文本编辑器允许你编辑纯文本。还支持JSON或XML格式的代码高亮,自动格式化和验证。\n\n格式错误用红色波浪线表示。 + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + 此Qt编辑器用于右到左的文本(默认文本编辑器不支持这种格式)。当检测到右到左字符时,会自动选择这种编辑器模式。 + + + + Open preview dialog for printing the data currently stored in the cell + 打印预览此单元格中的数据 + + + + Auto-format: pretty print on loading, compact on saving. + 自动格式: 读取时格式化,存储时紧凑化。 + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + 当启用时,自动格式特性将在数据加载时格式化数据,增加换行并缩进以提高可读性。在保存数据时,自动格式特性会通过删除换行、不必要的空白字符的方式来紧凑化数据。 + + + + Word Wrap + 自动换行 + + + + Wrap lines on word boundaries + 在单词边界自动换行 + + + + + Open in default application or browser + 用默认程序或浏览器打开 + + + + Open in application + 用外部程序打开 + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + 将单元格的值视为文件路径或URL,在默认程序或浏览器中打开。 + + + + Save file reference... + 保留文件引用... + + + + Save reference to file + I'm not sure + 将引用保存到文件 + + + + + Open in external application + 在外部程序中编辑 + + + + Autoformat + 自动格式 + + + + &Export... + 导出(&E) + + + + + &Import... + 导入(&I) + + + + + Import from file + 从文件导入 + + + + + Opens a file dialog used to import any kind of data to this database cell. + 打开文件选择对话框,导入任何类型的数据到此数据库单元格。 + + + + Export to file + 导出到文件 + + + + Opens a file dialog used to export the contents of this database cell to a file. + 打开文件选择对话框,导出此数据库单元格的内容到一个文件里。 + + + + Erases the contents of the cell + 删除单元格的内容 + + + + This area displays information about the data present in this database cell + 这个区域显示存在于这个数据库单元格中的数据的相关信息 + + + + Type of data currently in cell + 当前在单元格中的数据的类型 + + + + Size of data currently in table + 当前在表中的数据的大小 + + + + + Print... + 打印... + + + + Open preview dialog for printing displayed image + 打开打印预览对话框,预览图像 + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + 打开打印预览对话框,预览文本 + + + + Copy Hex and ASCII + 拷贝十六进制和 ASCII + + + + Copy selected hexadecimal and ASCII columns to the clipboard + 拷贝选中的十六进制和 ASCII 列到剪贴板中 + + + + Ctrl+Shift+C + + + + + Choose a filename to export data + 选择一个导出数据的文件名 + + + + Type of data currently in cell: %1 Image + 当前在单元格中的数据的类型: %1 图像 + + + + %1x%2 pixel(s) + %1x%2 像素 + + + + Type of data currently in cell: NULL + 当前在单元格中的数据的类型: 空 + + + + + Type of data currently in cell: Text / Numeric + 当前在单元格中的数据的类型: 文本/ 数值 + + + + + Image data can't be viewed in this mode. + 此模式下无法查看图像数据。 + + + + + Try switching to Image or Binary mode. + 尝试切换到图像或二进制模式。 + + + + + Binary data can't be viewed in this mode. + 此模式下无法查看二进制数据。 + + + + + Try switching to Binary mode. + 尝试切换到二进制模式。 + + + + Couldn't save file: %1. + + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + 单元格内数据已被保存到临时文件并用默认程序打开。你可以编辑文件并保存,然后将更改应用到单元格。 + + + + + Image files (%1) + 图像文件 (%1) + + + + Binary files (*.bin) + 二进制文件 (*.bin) + + + + Choose a file to import + 选择一个要导入的文件 + + + + %1 Image + %1 图像 + + + + Invalid data for this mode + 数据对此模式非法 + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + 单元格中包含非法的 %1 数据。原因: %2. 你确实想把它应用到单元格中吗? + + + + + + %n character(s) + + %n 个字符 + + + + + Type of data currently in cell: Valid JSON + 当前在单元格中的数据的类型: 合法的JSON + + + + Type of data currently in cell: Binary + 当前在单元格中的数据的类型: 二进制 + + + + + %n byte(s) + + %n 字节 + + + + + EditIndexDialog + + + &Name + 名称(&N) + + + + Order + 顺序 + + + + &Table + 表(&T) + + + + Edit Index Schema + 编辑索引架构 + + + + &Unique + 唯一(&U) + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + 为了将索引范围限制到表中的一部分,您可以在此指定 WHERE 子句来在表中选择需要索引的部分 + + + + Partial inde&x clause + 部分索引子句(&x) + + + + Colu&mns + 列(&m) + + + + Table column + 表中的列 + + + + Type + 类型 + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + 向索引中添加一个新的表达式列。表达式列包含 SQL 表达式而不是列名。 + + + + Index column + 索引列 + + + + Deleting the old index failed: +%1 + 删除旧索引失败: +%1 + + + + Creating the index failed: +%1 + 创建索引时失败: +%1 + + + + EditTableDialog + + + Edit table definition + 编辑表定义 + + + + Table + + + + + Advanced + 高级 + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + 让表'没有 rowid'。设置此标志需要有一个 INTEGER 类型并被设为主键、非自增的字段。 + + + + Without Rowid + 无 Rowid + + + + Fields + 字段 + + + + Database sche&ma + 数据库架构(&M) + + + + Add + 增加 + + + + Remove + 删除 + + + + Move to top + 移到最上 + + + + Move up + 上移 + + + + Move down + 下移 + + + + Move to bottom + 移到最下 + + + + + Name + 名称 + + + + + Type + 类型 + + + + NN + 非空 + + + + Not null + 非NULL + + + + PK + 主键 + + + + Primary key + 主键 + + + + AI + 自增 + + + + Autoincrement + 自动增值 + + + + U + 唯一 + + + + + + Unique + 唯一 + + + + Default + 默认 + + + + Default value + 默认值 + + + + + + Check + 检查 + + + + Check constraint + 检查约束条件 + + + + Collation + 排序规则 + + + + + + Foreign Key + 外键 + + + + Constraints + 约束 + + + + Add constraint + 增加约束 + + + + Remove constraint + 删除约束 + + + + Columns + + + + + SQL + SQL + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">警告: </span>表中有一些无法解析的定义。编辑并保存表可能会带来问题。</p></body></html> + + + + + Primary Key + 主键 + + + + Add a primary key constraint + 增加主键约束 + + + + Add a foreign key constraint + 增加外键约束 + + + + Add a unique constraint + 增加唯一性约束 + + + + Add a check constraint + 增加检查约束 + + + + Error creating table. Message from database engine: +%1 + 创建表时出错。来自数据库引擎的消息: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + 已存在同名字段。请先重命名已有字段,或为此字段选一个不同的名字。 + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + 每个表只能有一个主键。请修改已有的主键。 + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + 此列是表 %1 的外键,因此它的名字不能改变。 + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + 至少有一行带本字段的记录被设为空。这使得它不可能设置这个标志。请首先更改表数据。 + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + 在这个字段中至少有一行带有一个非整数的值。这使得它不可能设置自增标志。请首先更改表数据。 + + + + Column '%1' has duplicate data. + + 列 '%1' 有重复数据。 + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + 所以无法启用“唯一”标记。请删除重复数据才能启用。 + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + 您是否确认您想删除字段 '%1'? +当前存储在这个字段中的所有数据将会丢失。 + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + 在设置为无 rowid 前,请先添加一个满足以下准则的字段: + - 设置为主键 + - 禁止自增 + + + + ExportDataDialog + + + Export data as CSV + 导出数据为 CSV + + + + Tab&le(s) + 表(&l) + + + + Colu&mn names in first line + 第一行列名(&m) + + + + Fie&ld separator + 字段分隔符(&l) + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + 其它 + + + + &Quote character + 引号(&Q) + + + + " + " + + + + ' + ' + + + + New line characters + 换行符 + + + + Windows: CR+LF (\r\n) + Windows: 回车+换行 (\r\n) + + + + Unix: LF (\n) + Unix: 换行 (\n) + + + + Pretty print + 美化输出 + + + + + Could not open output file: %1 + 打不开输出文件: %1 + + + + + Choose a filename to export data + 选择导出数据的文件名 + + + + Export data as JSON + 导出为 JSON + + + + exporting CSV + 导出 CSV + + + + exporting JSON + 导出 JSON + + + + Please select at least 1 table. + 请至少选1个表 + + + + Choose a directory + 选择一个目录 + + + + Export completed. + 导出完成。 + + + + ExportSqlDialog + + + Export SQL... + 导出 SQL... + + + + Tab&le(s) + 表(&L) + + + + Select All + 全选 + + + + Deselect All + 全不选 + + + + &Options + 选项(&O) + + + + Keep column names in INSERT INTO + 在 INSERT INTO 语句中保留列名 + + + + Multiple rows (VALUES) per INSERT statement + 每条 INSERT 语句中包含多行 (VALUES) + + + + Export everything + 导出所有 + + + + Export schema only + 仅导出架构 + + + + Export data only + 仅导出数据 + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + 保持旧架构 (CREATE TABLE IF NOT EXISTS) + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + 覆盖旧架构 (DROP TABLE, 然后 CREATE TABLE) + + + + Please select at least one table. + 请至少选一个表。 + + + + Choose a filename to export + 选择要导出的文件名 + + + + Export completed. + 导出完成。 + + + + Export cancelled or failed. + 导出被取消或失败。 + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + 查找... + + + + Find and Replace... + 查找并替换... + + + + Print... + 打印... + + + + ExtendedTableWidget + + + Use as Exact Filter + 用于精确过滤 + + + + Containing + 包含 + + + + Not containing + 不包含 + + + + Not equal to + 不等于 + + + + Greater than + 大于 + + + + Less than + 小于 + + + + Greater or equal + 大于等于 + + + + Less or equal + 小于等于 + + + + Between this and... + 在此值和...之间 + + + + Regular expression + 正则表达式 + + + + Edit Conditional Formats... + 编辑条件格式... + + + + Set to NULL + 设置为 NULL + + + + Copy + 复制 + + + + Copy with Headers + 带表头一起拷贝 + + + + Copy as SQL + 拷贝为 SQL + + + + Paste + 粘贴 + + + + Print... + 打印... + + + + Use in Filter Expression + 在过滤器表达式中使用 + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + 剪贴板中的数据范围超过了选择的范围。 +是否仍要插入? + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + <p>部分数据没有被加载。<b>在选择所有行之前是否要加载所有数据?</b><p><p>选择<b>否</b>表示不加载数据并放弃全选。<br/>选择<b>是</b>表示加载所有数据(可能花费一些时间)并进行全选。</p>警告:加载所有数据对于大表格可能占用大量内存。 + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + 不能将当前单元格设置为 NULL。列 %1 有 NOT NULL 约束。 + + + + FileExtensionManager + + + File Extension Manager + 文件扩展名管理器 + + + + &Up + 上(&U) + + + + &Down + 下(&D) + + + + &Add + 添加(&A) + + + + &Remove + 删除(&R) + + + + + Description + 描述 + + + + Extensions + 扩展名 + + + + *.extension + *.扩展名 + + + + FilterLineEdit + + + Filter + 过滤 + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + 这些输入框能让你快速在当前所选表中进行过滤。 +默认情况下,包含输入文本的行会被过滤出来。 +以下操作也支持: +% 通配符 +> 大于 +< 小于 +>= 大于等于 +<= 小于等于 += 等于: 精确匹配 +<> 不等于: 精确反向匹配 +x~y 范围: 值在 x 和 y 之间 +/regexp/ 值符合正则表达式 + + + + Clear All Conditional Formats + 清除所有条件格式 + + + + Use for Conditional Format + 用于条件格式 + + + + Edit Conditional Formats... + 编辑条件格式... + + + + Set Filter Expression + 设置过滤表达式 + + + + What's This? + 这是什么? + + + + Is NULL + 为 NULL + + + + Is not NULL + 非 NULL + + + + Is empty + 为空 + + + + Is not empty + 非空 + + + + Not containing... + 不包含... + + + + Equal to... + 等于... + + + + Not equal to... + 不等于... + + + + Greater than... + 大于... + + + + Less than... + 小于... + + + + Greater or equal... + 大于等于... + + + + Less or equal... + 小于等于... + + + + In range... + 在范围内... + + + + Regular expression... + 正则表达式... + + + + FindReplaceDialog + + + Find and Replace + 查找并替换 + + + + Fi&nd text: + 查找文本(&N): + + + + Re&place with: + 替换为(&P): + + + + Match &exact case + 精确匹配(&E) + + + + Match &only whole words + 全字匹配(&O) + + + + When enabled, the search continues from the other end when it reaches one end of the page + 启用时,搜索到页结尾时,搜索会继续从另一边开始。 + + + + &Wrap around + 循环查找(&W) + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + 设置时,搜索从当前位置往回进行。否则向前搜索。 + + + + Search &backwards + 反向查找(&B) + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + <html><head/><body><p>选中时,只在当前选择的内容中进行搜索。</p></body></html> + + + + &Selection only + 在所选内容中查找(&S) + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>选中时,要查找的模式被解释为 UNIX 正则表达式。参阅 <a href="https://en.wikibooks.org/wiki/Regular_Expressions"> Wikibooks 中的正则表达式</a>.</p></body></html> + + + + Use regular e&xpressions + 使用正则表达式(&X) + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + 从当前位置查找下一出现的位置,按 "反向查找" 处所选的方向进行查找。 + + + + &Find Next + 查找下一个(&F) + + + + F3 + + + + + &Replace + 替换(&R) + + + + Highlight all the occurrences of the text in the page + 高亮本页中所有出现的文本 + + + + F&ind All + 全部高亮(&I) + + + + Replace all the occurrences of the text in the page + 替换本页中所有出现的文本 + + + + Replace &All + 全部替换(&A) + + + + The searched text was not found + 无法找到要查找的文本 + + + + The searched text was not found. + 无法找到要查找的文本。 + + + + The searched text was found one time. + 查找的文本被找到了 1 次。 + + + + The searched text was found %1 times. + 查找的文本被找到了 %1 次。 + + + + The searched text was replaced one time. + 查找的文本被替换了 1 次。 + + + + The searched text was replaced %1 times. + 查找的文本被替换了 %1 次。 + + + + ForeignKeyEditor + + + &Reset + 重置(&R) + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + 外键子句 (ON UPDATE, ON DELETE 等等) + + + + ImportCsvDialog + + + Import CSV file + 导入 CSV 文件 + + + + Table na&me + 表名称(&M) + + + + &Column names in first line + 列名在首行(&C) + + + + Field &separator + 字段分隔符(&S) + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + ; + + + + Other + 其它 + + + + &Quote character + 引号(&Q) + + + + + Other (printable) + 其他(可打印) + + + + + Other (code) + 其他(代码) + + + + " + " + + + + ' + ' + + + + &Encoding + 编码(&E) + + + + UTF-8 + UTF-8 + + + + UTF-16 + UTF-16 + + + + ISO-8859-1 + ISO-8859-1 + + + + Trim fields? + 删除字段头尾空白? + + + + Separate tables + 分离表 + + + + Advanced + 高级 + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + 当从 CSV 文件导入空值到已有表中,并且该列有默认值时,默认值会被插入。选中此项以在这种情况下插入空值。 + + + + Ignore default &values + 忽略默认值(&V) + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + 选中此项以在往没有默认值的非 NULL 列导入空值时终止导入。 + + + + Fail on missing values + 缺值时失败 + + + + Disable data type detection + 禁用类型检测 + + + + Disable the automatic data type detection when creating a new table. + 禁止在创建新表时自动检测数据类型。 + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + 当向有主键的表中导入数据时,可能会产生唯一性约束或索引的冲突。此选项允许你选择处理冲突的策略:默认情况下会取消导入并卷回,也可以选择忽略并跳过冲突的行,或替换表中现有的行。 + + + + Abort import + 取消导入 + + + + Ignore row + 忽略冲突的行 + + + + Replace existing row + 替换现有的行 + + + + Conflict strategy + 冲突策略 + + + + + Deselect All + 全不选 + + + + Match Similar + 匹配相似 + + + + Select All + 全选 + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + 已经有一张叫做 '%1' 的表。只有列数匹配时,才能导入到已经存在的表中。 + + + + There is already a table named '%1'. Do you want to import the data into it? + 已经有一张叫做 '%1' 的表。你想把数据导入到此表中吗? + + + + Creating restore point failed: %1 + 创建还原点失败: %1 + + + + Creating the table failed: %1 + 创建表失败: %1 + + + + importing CSV + 导入 CSV + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + 导入文件 '%1' 用时 %2ms. 其中 %3ms 用在行方程上。 + + + + Inserting row failed: %1 + 插入行失败: %1 + + + + MainWindow + + + DB Browser for SQLite + DB Browser for SQLite + + + + toolBar1 + 工具栏1 + + + + &Wiki + 百科(&W) + + + + Bug &Report... + Bug 上报(&R)... + + + + Feature Re&quest... + 特性请求(&Q)... + + + + Web&site + 网站(&S) + + + + &Donate on Patreon... + 在 Patreon 上捐赠(&D)... + + + + Open &Project... + 打开工程(&P)... + + + + &Attach Database... + 附加数据库(&A)... + + + + + Add another database file to the current database connection + 添加另一个数据库到当前的数据库连接中 + + + + This button lets you add another database file to the current database connection + 此按钮能添加另一个数据库到当前的数据库连接中 + + + + &Set Encryption... + 设置加密(&S)... + + + + This button saves the content of the current SQL editor tab to a file + 此按钮把当前 SQL 编辑器页的内容保存到一个文件 + + + + SQLCipher &FAQ + SQLCipher 常见问题(&F)... + + + + Table(&s) to JSON... + 表到 JSON (&S)... + + + + Export one or more table(s) to a JSON file + 导出一个或多个表到 JSON 文件 + + + + Un/comment block of SQL code + 注释/取消注释SQL代码 + + + + Un/comment block + 注释/取消注释 + + + + Comment or uncomment current line or selected block of code + 注释或取消注释当前行或选中的代码段 + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + 注释或取消注释当前选中的代码段。当没有选中时为当前行。代码段的注释状态由第一行决定。 + + + + Ctrl+/ + + + + + Stop SQL execution + 停止执行SQL + + + + Stop execution + 停止执行 + + + + Stop the currently running SQL script + 停止当前运行的SQL脚本 + + + + &File + 文件(&F) + + + + &Import + 导入(&I) + + + + &Export + 导出(&E) + + + + &Edit + 编辑(&E) + + + + &View + 查看(&V) + + + + &Help + 帮助(&H) + + + + &Remote + 远程(&R) + + + + Execute all/selected SQL + 执行所有/选中的 SQL + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + 此按钮执行当前选中的 SQL 语句。如果没有选中文本,就执行所有的 SQL 语句。 + + + + &Load Extension... + 加载扩展(&L)... + + + + This button executes the SQL statement present in the current editor line + 此按钮执行编辑器当前行中的 SQL 语句 + + + + Shift+F5 + + + + + Sa&ve Project + 保存工程(&V) + + + + + Save SQL file as + SQL 文件另存为 + + + + &Browse Table + 浏览表 + + + + Copy Create statement + 复制 Create 语句 + + + + Copy the CREATE statement of the item to the clipboard + 复制选中项的 CREATE 语句到剪贴板 + + + + Open an existing database file in read only mode + 用只读方式打开一个已有的数据库文件 + + + + Opens the SQLCipher FAQ in a browser window + 用浏览器窗口打开 SQLCipher 常见问题 + + + + User + 用户 + + + + Application + 应用程序 + + + + &Clear + 清除(&C) + + + + DB Sche&ma + 数据库架构(&M) + + + + &New Database... + 新建数据库(&N)... + + + + + Create a new database file + 创建一个新的数据库文件 + + + + This option is used to create a new database file. + 这个选项用于创建一个新的数据库文件。 + + + + Ctrl+N + + + + + + &Open Database... + 打开数据库(&O)... + + + + + + + + Open an existing database file + 打开一个现有的数据库文件 + + + + + + This option is used to open an existing database file. + 这个选项用于打开一个现有的数据库文件。 + + + + Ctrl+O + + + + + &Close Database + 关闭数据库(&C) + + + + + Ctrl+W + + + + + + Revert database to last saved state + 把数据库会退到先前保存的状态 + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + 这个选项用于倒退当前的数据库文件为它最后的保存状态。从最后保存操作开始做出的所有更改将会丢失。 + + + + + Write changes to the database file + 把更改写入到数据库文件 + + + + This option is used to save changes to the database file. + 这个选项用于保存更改到数据库文件。 + + + + Ctrl+S + + + + + Compact &Database... + 压缩数据库(&D)... + + + + Compact the database file, removing space wasted by deleted records + 压缩数据库文件,通过删除记录去掉浪费的空间 + + + + + Compact the database file, removing space wasted by deleted records. + 压缩数据库文件,通过删除记录去掉浪费的空间。 + + + + E&xit + 退出(&X) + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + 从一个 .sql 转储文本文件中导入数据到一个新的或已有的数据库。 + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + 这个选项让你从一个 .sql 转储文本文件中导入数据到一个新的或现有的数据库。SQL 转储文件可以在大多数数据库引擎上创建,包括 MySQL 和 PostgreSQL。 + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + 打开一个向导让您从一个逗号间隔的文本文件导入数据到一个数据库表中。 + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + 打开一个向导让您从一个逗号间隔的文本文件导入数据到一个数据库表中。CSV 文件可以在大多数数据库和电子表格应用程序上创建。 + + + + Export a database to a .sql dump text file. + 导出一个数据库导一个 .sql 转储文本文件。 + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + 这个选项让你导出一个数据库导一个 .sql 转储文本文件。SQL 转储文件包含在大多数数据库引擎上(包括 MySQL 和 PostgreSQL)重新创建数据库所需的所有数据。 + + + + Export a database table as a comma separated text file. + 导出一个数据库表为逗号间隔的文本文件。 + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + 导出一个数据库表为逗号间隔的文本文件,准备好被导入到其他数据库或电子表格应用程序。 + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + 打开“创建表”向导,在那里可以定义在数据库中的一个新表的名称和字段 + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + 打开“删除表”向导,在那里你可以选择要丢弃的一个数据库表。 + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + 打开“修改表”向导,在其中可以重命名一个现有的表。也可以从一个表中添加或删除字段,以及修改字段名称和类型。 + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + 打开“创建索引”向导,在那里可以在一个现有的数据库表上定义一个新索引。 + + + + &Preferences... + 首选项(&P)... + + + + + Open the preferences window. + 打开首选项窗口。 + + + + &DB Toolbar + 数据库工具栏(&D) + + + + Shows or hides the Database toolbar. + 显示或隐藏数据库工具栏。 + + + + Shift+F1 + + + + + &Recently opened + 最近打开(&R) + + + + Open &tab + 打开标签页(&T) + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + 数据库结构 + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + 这是打开的数据库的结构。 +你可以从一个对象行中拖动 SQL 语句,然后拖到其他应用中,或者拖到其他 'DB Browser for SQLite' 的实例中。 + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + 浏览数据 + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + 编辑杂注 + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + 警告: 此杂注无法读取,此值为推断得到。编辑杂注可能会覆盖由 SQLite 扩展重定义的 LIKE。 + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + 执行 SQL + + + + &Tools + 工具(&T) + + + + DB Toolbar + 数据库工具栏 + + + + Edit Database &Cell + 编辑数据库单元格(&C) + + + + SQL &Log + SQL 日志(&L) + + + + Show S&QL submitted by + 显示 SQL 提交自(&Q) + + + + Error Log + 错误记录 + + + + This button clears the contents of the SQL logs + 此按钮清除 SQL 日志的内容 + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + 此面板可以让你自行检查本应用程序执行的所有 SQL 命令的日志。 + + + + &Plot + 图表(&P) + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + 这是当前打开的数据库的结构。 +你可以从名字列拖拽多个对象名字到 SQL 编辑器中,可以用菜单调节拖拽名字的属性。这可以帮助你构建 SQL 语句。 +你可以从架构列拖拽 SQL 语句到 SQL 编辑器或其他应用中。 + + + + + Project Toolbar + 工程工具栏 + + + + Extra DB toolbar + 其他数据库工具栏 + + + + + + Close the current database file + 关闭当前数据库文件 + + + + This button closes the connection to the currently open database file + 此按钮关闭到当前打开的数据库文件的连接 + + + + Ctrl+F4 + + + + + &Revert Changes + 倒退更改(&R) + + + + &Write Changes + 写入更改(&W) + + + + Open SQL file(s) + 打开 SQL 文件 + + + + This button opens files containing SQL statements and loads them in new editor tabs + 此按钮打开包含 SQL 语句的文件,将其载入到新标签页 + + + + Execute line + 执行行 + + + + F1 + + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + 此按钮让你将所有关于打开的数据库的设置保存到一个 DB Browser for SQLite 工程文件。 + + + + This button lets you open a DB Browser for SQLite project file + 此按钮让你打开一个 DB Browser for SQLite 工程文件。 + + + + Open Data&base Read Only... + 只读打开数据库(&B)... + + + + Ctrl+Shift+O + + + + + Save results + 保存结果 + + + + Save the results view + 保存结果视图 + + + + This button lets you save the results of the last executed query + 此按钮让你保存上次执行的查询的结果 + + + + + Find text in SQL editor + 在 SQL 编辑器中查找文本 + + + + Find + 查找 + + + + This button opens the search bar of the editor + 此按钮打开编辑器的查找栏 + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + 在 SQL 编辑器中查找或替换文本 + + + + Find or replace + 查找或替换 + + + + This button opens the find/replace dialog for the current editor tab + 此按钮为当前的编辑器标签页打开查找/替换对话框 + + + + Ctrl+H + + + + + Export to &CSV + 导出到 &CSV + + + + Save as &view + 保存为视图(&V) + + + + Save as view + 保存为视图 + + + + Browse Table + 浏览表 + + + + Shows or hides the Project toolbar. + 显示或隐藏工程工具栏 + + + + Extra DB Toolbar + 其他数据库工具栏 + + + + New In-&Memory Database + 新建内存数据库(&M) + + + + Drag && Drop Qualified Names + 拖拽限定名称 + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + 当拖拽对象到编辑器中时,使用限定名称 (例如 "Table"."Field") + + + + Drag && Drop Enquoted Names + 拖拽引用名字 + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + 当拖拽对象到编辑器中时,使用转移标识符 (例如 "Table1") + + + + &Integrity Check + 完全性检查(&I) + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + 对打开的数据库运行 integrity_check 杂注并在执行 SQL 标签页返回结果。此杂注对整个数据库进行完全性检查。 + + + + &Foreign-Key Check + 外键检查(&F) + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + 对打开的数据库运行 foreign_key_check 杂注并在执行 SQL 标签页返回结果。 + + + + &Quick Integrity Check + 快速完全性检查(&Q) + + + + Run a quick integrity check over the open DB + 对打开的数据库执行快速完全性检查 + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + 对打开的数据库运行 quick_check 杂注并在执行 SQL 标签页返回结果。此命令会执行 integrity_check 的多数检查,但是要快得多。 + + + + &Optimize + 优化(&O) + + + + Attempt to optimize the database + 尝试优化数据库 + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + 对打开的数据库运行 optimize 杂注。可能会执行对未来查询性能有帮助的优化。 + + + + + Print + 打印 + + + + Print text from current SQL editor tab + 从当前的 SQL 编辑器标签页打印文本 + + + + Open a dialog for printing the text in the current SQL editor tab + 打开对话框以从当前的 SQL 编辑器标签页打印文 + + + + Print the structure of the opened database + 打印当前打开的数据库的结构 + + + + Open a dialog for printing the structure of the opened database + 打开对话框以打印当前打开的数据库的结构 + + + + &Save Project As... + 另存为工程(&S)... + + + + + + Save the project in a file selected in a dialog + 将工程保存为文件 + + + + Save A&ll + 全部保存(&L) + + + + + + Save DB file, project file and opened SQL files + 保存数据库文件,工程文件,打开的SQL文件 + + + + Ctrl+Shift+S + + + + + &Database from SQL file... + 从 SQL 文件导入数据库(&D)... + + + + &Table from CSV file... + 从 CSV 文件导入表(&T)... + + + + &Database to SQL file... + 导出数据库到 SQL 文件(&D)... + + + + &Table(s) as CSV file... + 导出表到 CSV 文件(&T)... + + + + &Create Table... + 创建表(&C)... + + + + &Delete Table... + 删除表(&D)... + + + + &Modify Table... + 修改表(&M)... + + + + Create &Index... + 创建索引(&I)... + + + + W&hat's This? + 这是什么(&W)? + + + + &About + 关于(&A) + + + + This button opens a new tab for the SQL editor + 此按钮打开一个 SQL 编辑器的新标签页 + + + + &Execute SQL + 执行 SQL(&E) + + + + + Save the current session to a file + 保存当前会话到一个文件 + + + + + Load a working session from a file + 从一个文件加载工作会话 + + + + + + Save SQL file + 保存 SQL 文件 + + + + + Execute current line + 执行当前行 + + + + Ctrl+E + + + + + Export as CSV file + 导出为 CSV 文件 + + + + Export table as comma separated values file + 导出表为逗号间隔值文件 + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Database encoding + 数据库编码 + + + + + Choose a database file + 选择一个数据库文件 + + + + Ctrl+Return + Ctrl+回车 + + + + Ctrl+D + + + + + Ctrl+I + + + + + Encrypted + 加密的 + + + + Database is encrypted using SQLCipher + 数据库使用 SQLCipher 进行了加密 + + + + Read only + 只读 + + + + Database file is read only. Editing the database is disabled. + 数据库是只读的。编辑被禁止。 + + + + Could not open database file. +Reason: %1 + 无法打开数据库文件。 +原因: %1 + + + + + + Choose a filename to save under + 选择一个文件名保存 + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + 设置或清除杂注值会提交你的当前事务。 +你确定吗? + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + 保存数据库文件时出错。这表明不是所有对数据库的更改都被保存了。你需要先解决以下错误。 + +%1 + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + 有新版本的 DB Browser for SQLite (%1.%2.%3)可用。<br/><br/>请从 <a href='%4'>%4</a> 下载。 + + + + DB Browser for SQLite project file (*.sqbpro) + DB Browser for SQLite 工程文件 (*.sqbpro) + + + + Reset Window Layout + 重置窗口布局 + + + + Alt+0 + + + + + The database is currenctly busy. + 数据库正忙。 + + + + Click here to interrupt the currently running query. + 点击此处中断当前运行的查询。 + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + 你正在执行SQL语句。关闭数据库会停止执行,可能使数据库处于不准确的状态。确实要关闭数据库吗? + + + + Do you want to save the changes made to the project file '%1'? + 是否要保存对工程文件 '%1' 的修改? + + + + Error checking foreign keys after table modification. The changes will be reverted. + 修改表格后的外键检查错误。修改会被回退。 + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + 此表格没有通过外键检查。<br/>你需要执行 '工具 | 外键检查' 并修复发现的问题。 + + + + Edit View %1 + 编辑视图 %1 + + + + Edit Trigger %1 + 编辑触发器 %1 + + + + + At line %1: + 在行 %1: + + + + Result: %1 + 结果: %1 + + + + Result: %2 + 结果: %2 + + + + Execution finished with errors. + 执行已完成,但有错误。 + + + + Execution finished without errors. + 执行完成。 + + + + Opened '%1' in read-only mode from recent file list + 从最近的文件列表中用只读方式打开 %1 + + + + Opened '%1' from recent file list + 从最近的文件列表中打开 %1 + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + (只读) + + + + Open Database or Project + 打开数据库或工程 + + + + Attach Database... + 附加数据库... + + + + Import CSV file(s)... + 导入CSV文件... + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + 选择要应用到拖放的文件的操作。<br/>注意:只有“导入”会处理多个文件。 + + + + + Do you want to save the changes made to SQL tabs in a new project file? + 是否要把对SQL的修改保存为工程文件? + + + + This action will open a new SQL tab with the following statements for you to edit and run: + 此动作会打开包含下列语句的新的 SQL 标签页以编辑并运行: + + + + Rename Tab + 重命名标签 + + + + Duplicate Tab + 复制标签 + + + + Close Tab + 关闭标签 + + + + Opening '%1'... + 正在打开 '%1'... + + + + There was an error opening '%1'... + 打开 '%1' 时出错... + + + + Value is not a valid URL or filename: %1 + 不是正确的URL或文件名:%1 + + + + Do you want to save the changes made to the SQL file %1? + 是否要保存对SQL文件 %1 的修改? + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + 此标签内的SQL语句正在被执行。关闭标签会停止执行,可能使数据库处于不准确的状态。确实要关闭标签吗? + + + + Could not find resource file: %1 + 不能找到资源文件:%1 + + + + Choose a project file to open + 选择一个要打开的工程文件 + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + 此工程文件使用了旧的文件格式,因为它是由 DB Browser for SQLite version 3.10 或更低版本创建的。加载此文件格式依然完全支持,但我们建议你把工程转换到新的格式,因为旧格式支持将来可能会失效。你可以通过打开并重新保存的方式来转换。 + + + + Could not open project file for writing. +Reason: %1 + 未能写入工程文件。 +原因:%1 + + + + Busy (%1) + 正忙 (%1) + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + 您是否确认您想撤销从上次保存以来对数据库文件‘%1’做出的所有更改。? + + + + Choose a file to import + 选择要导入的一个文件 + + + + Text files(*.sql *.txt);;All files(*) + 文本文件(*.sql *.txt);;所有文件(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + 您是否确认您想创建一个新的数据库文件用来存放导入的数据? +如果您会到“否”的话,我们将尝试导入 SQL 文件中的数据到当前数据库。 + + + + Window Layout + 窗口布局 + + + + Simplify Window Layout + 精简窗口布局 + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + 停靠窗口到底部 + + + + Dock Windows at Left Side + 停靠窗口到左侧 + + + + Dock Windows at Top + 停靠窗口到顶部 + + + + File %1 already exists. Please choose a different name. + 文件 %1 已存在。请选择一个不同的名称。 + + + + Error importing data: %1 + 导入数据时出错: %1 + + + + Import completed. + 导入完成。 + + + + Delete View + 删除视图 + + + + Modify View + 修改视图 + + + + Delete Trigger + 删除触发器 + + + + Modify Trigger + 修改触发器 + + + + Delete Index + 删除索引 + + + + + Delete Table + 删除表 + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + 设置 PRAGMA 值将会提交您的当前事务。 +您确定吗? + + + + In-Memory database + 内存数据库 + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + 你确定要删除表 '%1' 吗? +所有关联的数据都会丢失。 + + + + Are you sure you want to delete the view '%1'? + 你确定要删除视图 '%1' 吗? + + + + Are you sure you want to delete the trigger '%1'? + 你确定要删除触发器 '%1' 吗? + + + + Are you sure you want to delete the index '%1'? + 你确定要删除索引 '%1' 吗? + + + + Error: could not delete the table. + 错误: 无法删除表。 + + + + Error: could not delete the view. + 错误: 无法删除视图。 + + + + Error: could not delete the trigger. + 错误: 无法删除触发器。 + + + + Error: could not delete the index. + 错误: 无法删除索引。 + + + + Message from database engine: +%1 + 来自数据库引擎的消息: +%1 + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + 编辑表格之前需要立刻保存所有修改。 +你确定要保存数据库吗? + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + 你已经在执行SQL语句。是否要停止执行并改为执行当前语句?注意,这可能使数据库处于不准确的状态。 + + + + -- EXECUTING SELECTION IN '%1' +-- + -- 执行 '%1' 中所选 +-- + + + + -- EXECUTING LINE IN '%1' +-- + -- 执行 '%1' 中的行 +-- + + + + -- EXECUTING ALL IN '%1' +-- + -- 执行 '%1' 中所有 +-- + + + + %1 rows returned in %2ms + %1 行返回,耗时 %2ms + + + + Choose text files + 选择文本文件 + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + 导入完成。一些外键约束被违反了。请在保存之前修复。 + + + + Modify Index + 修改索引 + + + + Modify Table + 修改表 + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + 是否要把对SQL的修改保存到工程文件 '%1' ? + + + + Select SQL file to open + 选择要打开的 SQL 文件 + + + + Select file name + 选择文件名 + + + + Select extension file + 选择扩展文件 + + + + Extension successfully loaded. + 扩展成功加载。 + + + + Error loading extension: %1 + 加载扩展时出错: %1 + + + + + Don't show again + 不再显示 + + + + New version available. + 新版本可用。 + + + + Project saved to file '%1' + 工程已保存到文件 '%1' + + + + Collation needed! Proceed? + 需要整理! 继续? + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + 数据库中的一个表需要特定的整理方法 '%1' 但本应用程序不了解故无法提供。 +如果您选择继续,小心可能会有不好的事情发生。 +记得备份! + + + + creating collation + 创建整理 + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + 为 SQL 标签页设置新名称。使用 '&&' 字符来允许它作为键盘快捷键。 + + + + Please specify the view name + 请指定视图名称 + + + + There is already an object with that name. Please choose a different name. + 已有同名的对象。请选择一个不同的名称。 + + + + View successfully created. + 视图成功创建。 + + + + Error creating view: %1 + 创建视图时出错: %1 + + + + This action will open a new SQL tab for running: + 此动作会打开新的 SQL 标签页以运行: + + + + Press Help for opening the corresponding SQLite reference page. + 按下帮助以打开对应的 SQLite 参考页。 + + + + NullLineEdit + + + Set to NULL + 设置为 NULL + + + + Alt+Del + + + + + PlotDock + + + Plot + 绘图 + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + <html><head/><body><p>此面板显示当前表或者刚刚执行的查询的列。你可以选择列用做在下面画图时的 X 轴和 Y 轴。表中显示检测到的会影响绘图结果的轴类型。Y 轴只允许选择数值类型,但 X 轴可以选择:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">日期/时间</span>: 格式化的字符串 &quot;yyyy-MM-dd hh:mm:ss&quot; 或 &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">日期</span>: 格式化的字符串 &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">时间</span>: 格式化的字符串 &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">标签</span>: 其他格式的字符串。选这项作为x轴,会绘制条形图,并用值作为条形的标签</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">数值</span>: 整数或实数值</li></ul><p>双击 Y 单元格可以改变图中所用的颜色。</p></body></html> + + + + Columns + + + + + X + X + + + + Y1 + Y1 + + + + Y2 + Y2 + + + + Axis Type + 轴类型 + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + 这是在你在上面选择 x 和 y 值后绘制出的图。 + +点击点可以在图和表格中选中它们。Ctrl+点击以选中一批点。 + +使用鼠标滚轮可以缩放,鼠标拖拽可以改变坐标轴的范围。 + +选择轴或者轴上的标签并拖拽可以缩放此方向。 + + + + Line type: + 线形: + + + + + None + + + + + Line + 折线 + + + + StepLeft + 左阶梯 + + + + StepRight + 右阶梯 + + + + StepCenter + 中阶梯 + + + + Impulse + 脉冲 + + + + Point shape: + 点形: + + + + Cross + + + + + Plus + + + + + Circle + + + + + Disc + 实心点 + + + + Square + 方形 + + + + Diamond + 菱形 + + + + Star + + + + + Triangle + 三角 + + + + TriangleInverted + 倒三角 + + + + CrossSquare + 叉与方形 + + + + PlusSquare + 加与方形 + + + + CrossCircle + 叉与圈 + + + + PlusCircle + 加与圈 + + + + Peace + 和平符号 + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>保存当前图表...</p><p>文件格式按扩展名选择(png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + 保存当前图表... + + + + + Load all data and redraw plot + 载入所有数据并重新绘图 + + + + + + Row # + 行 # + + + + Copy + 复制 + + + + Print... + 打印... + + + + Show legend + 显示图例 + + + + Stacked bars + 堆叠的条形 + + + + Date/Time + 日期/时间 + + + + Date + 日期 + + + + Time + 时间 + + + + + Numeric + 数值 + + + + Label + 标签 + + + + Invalid + 无效的 + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + 载入所有数据并重新绘图。 +警告:由于部分加载机制,现在并没有加载所有的数据。 + + + + Choose an axis color + 选一个坐标轴颜色 + + + + Choose a filename to save under + 选择一个文件名保存 + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;所有文件(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + 图中有曲线,选择的线形只能用到按 X 排列的图中。要么对表排序或者用 X 查询,要么选一种曲线支持的线形:无或者折线。 + + + + Loading all remaining data for this table took %1ms. + 加载表中全部剩余数据花费了%1毫秒。 + + + + PreferencesDialog + + + Preferences + 首选项 + + + + &General + 通用(&G) + + + + Remember last location + 记住上次的位置 + + + + Always use this location + 总是使用此位置 + + + + Remember last location for session only + 仅在会话中记住上次的位置 + + + + Lan&guage + 语言(&G) + + + + Automatic &updates + 自动更新(&A) + + + + &Database + 数据库(&D) + + + + Database &encoding + 数据库编码(&E) + + + + Open databases with foreign keys enabled. + 打开启用了外键的数据库。 + + + + &Foreign keys + 外键(&F) + + + + + + + + + + + + enabled + 启用 + + + + Default &location + 默认位置(&L) + + + + + + ... + ... + + + + Remove line breaks in schema &view + 删除架构视图中的换行(&V) + + + + Show remote options + 显示远程选项 + + + + Prefetch block si&ze + 预取块尺寸(&Z) + + + + SQ&L to execute after opening database + 打开数据库后执行的 SQL(&L) + + + + Default field type + 默认字段类型 + + + + Data &Browser + 数据浏览器(&B) + + + + Font + 字体 + + + + &Font + 字体(&F) + + + + Content + 内容 + + + + Symbol limit in cell + 单元格字符数限制 + + + + NULL + + + + + Regular + 常规 + + + + Binary + 二进制 + + + + Background + 背景 + + + + Filters + 过滤 + + + + Threshold for completion and calculation on selection + 自动完成与汇总限制 + + + + Show images in cell + 显示单元格中图片 + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + 启用此选项可以预览单元格BOLB中包含的图片。但这会影响浏览数据的性能。 + + + + Escape character + 转义字符 + + + + Delay time (&ms) + 延时(毫秒)(&M) + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + 设置应用新过滤值前的等待时间。设为0以禁用等待。 + + + + &SQL + &SQL + + + + Settings name + 设置名称 + + + + Context + 上下文 + + + + Colour + 颜色 + + + + Bold + 粗体 + + + + Italic + 斜体 + + + + Underline + 下划线 + + + + Keyword + 关键字 + + + + Function + 函数 + + + + Table + + + + + Comment + 注释 + + + + Identifier + 识别符 + + + + String + 字符串 + + + + Current line + 当前行 + + + + SQL &editor font size + SQL 编辑器字体大小(&E) + + + + Tab size + Tab 长度 + + + + SQL editor &font + SQL 编辑器字体(&F) + + + + Error indicators + 显示代码错误 + + + + Hori&zontal tiling + 水平平铺(&Z) + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + 如果启用,SQL 编辑器和结果表视图将并排显示,而不是上下显示。 + + + + Code co&mpletion + 自动补全(&M) + + + + Toolbar style + 工具栏风格 + + + + + + + + Only display the icon + 仅显示图标 + + + + + + + + Only display the text + 仅显示文本 + + + + + + + + The text appears beside the icon + 文本在图标旁 + + + + + + + + The text appears under the icon + 文本在图标下 + + + + + + + + Follow the style + 遵循风格 + + + + DB file extensions + 数据库文件扩展 + + + + Manage + 管理 + + + + Main Window + 主窗口 + + + + Database Structure + 数据库结构 + + + + Browse Data + 浏览数据 + + + + Execute SQL + 执行 SQL + + + + Edit Database Cell + 编辑数据库单元格 + + + + When this value is changed, all the other color preferences are also set to matching colors. + 改变这个选项也会改变其他的颜色风格。 + + + + Follow the desktop style + 跟随桌面风格 + + + + Dark style + 黑暗风格 + + + + Application style + 界面风格 + + + + This sets the font size for all UI elements which do not have their own font size option. + 此选项为所有组件设置字体大小,有单独的字体大小选项的组件除外。 + + + + Font size + 字体大小 + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + 当启用时,数据库结构标签页中的架构列里的换行,显示、打印时被移除。 + + + + Database structure font size + 数据库结构字体大小 + + + + Font si&ze + 字体大小(&Z) + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + 启用一些耗费资源的计算的最大行数,包括: +启用自动完成的表中最大行数。 +自动进行求和与平均值的最大选择单元格数量。 +可以设置为0以禁用这些功能。 + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + 这是表启用根据当前值的自动补完的最大的列数量。 +设置成0以禁用补完。 + + + + Field display + 字段显示 + + + + Displayed &text + 显示的文本(&T) + + + + + + + + + Click to set this color + 点击设置颜色 + + + + Text color + 文本颜色 + + + + Background color + 背景颜色 + + + + Preview only (N/A) + 仅预览 (N/A) + + + + Foreground + 前景 + + + + SQL &results font size + SQL 结果的字体大小(&R) + + + + &Wrap lines + 换行(&W) + + + + Never + 永不 + + + + At word boundaries + 按照词边界 + + + + At character boundaries + 按照字母边界 + + + + At whitespace boundaries + 按照空白字符边界 + + + + &Quotes for identifiers + 标识转义(&Q) + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + 选择 SQL 代码中标识的转义方式。 + + + + "Double quotes" - Standard SQL (recommended) + "双引号" - 标准 SQL (推荐) + + + + `Grave accents` - Traditional MySQL quotes + `重音符` - 经典的 MySQL 转义 + + + + [Square brackets] - Traditional MS SQL Server quotes + [方括号] - 经典的 MS SQL Server 转义 + + + + Keywords in &UPPER CASE + 关键字大写(&U) + + + + When set, the SQL keywords are completed in UPPER CASE letters. + 设置时,SQL 关键字被自动补全为大写字母。 + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + 设置时,导致上次执行出错的 SQL 代码行会被高亮。 + + + + Close button on tabs + 标签显示关闭按钮 + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + 如果启用,SQL 编辑器标签页上将显示关闭按钮。无论是否启用,你都可以通过右键菜单或者键盘快捷键来关闭标签。 + + + + &Extensions + 扩展(&E) + + + + Select extensions to load for every database: + 选择每个数据库要加载的扩展: + + + + Add extension + 添加扩展 + + + + Remove extension + 删除扩展 + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + <html><head/><body><p>虽然支持 REGEXP 运算符,但是 SQLite 并没有实现任何正则表达式算法,<br/>而是回调应用程序。DB Browser for SQLite 为您实现了算法,以便您可以<br/>打破常规使用 REGEXP。由于算法有多种可能的实现,您可能想用其他的,<br/>所以您可以禁用算法实现并通过扩展加载您的实现。需要重启应用程序。</p></body></html> + + + + Disable Regular Expression extension + 禁用正则表达式扩展 + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + <html><head/><body><p>SQLite 提供了 SQL 函数用于从共享库中加载扩展。启用这个选项以在SQL代码中使用 <span style=" font-style:italic;">load_extension()</span> 函数。</p><p>因安全原因,加载扩展功能默认被关闭,须在此处手动启用。但即使此选项未启用,仍能通过上方的界面加载扩展。</p></body></html> + + + + Allow loading extensions from SQL code + 允许在SQL代码里加载扩展 + + + + Remote + 远程 + + + + CA certificates + CA 证书 + + + + Proxy + 代理服务器 + + + + Configure + 配置 + + + + + Subject CN + 主题 CN (Subject CN) + + + + Common Name + 公用名称 (Common Name) + + + + Subject O + 主题 O (Subject O) + + + + Organization + 组织 (Organization) + + + + + Valid from + 有效期从 + + + + + Valid to + 有效期到 + + + + + Serial number + 序列号 + + + + Your certificates + 您的证书 + + + + File + 文件 + + + + Subject Common Name + 主题公用名称 (Subject Common Name) + + + + Issuer CN + 签发人 CN (Issuer CN) + + + + Issuer Common Name + 签发人公用名称 (Issuer Common Name) + + + + Clone databases into + 克隆数据库信息 + + + + + Choose a directory + 选择一个目录 + + + + The language will change after you restart the application. + 语言将在重启应用程序后改变。 + + + + Select extension file + 选择扩展文件 + + + + Extensions(*.so *.dylib *.dll);;All files(*) + 扩展(*.so *.dylib *.dll);;所有文件(*) + + + + Import certificate file + 导入证书文件 + + + + No certificates found in this file. + 在文件中找不到证书。 + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + 您确定要删除此证书吗?所有的证书数据都会被从应用设置中删除! + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + 你确定要清除所有保存的设置吗? +所有你做的设置都会丢失,并使用默认值。 + + + + ProxyDialog + + + Proxy Configuration + 代理服务器配置 + + + + Pro&xy Type + 代理服务器类型 + + + + Host Na&me + 主机名 + + + + Port + 端口 + + + + Authentication Re&quired + 要求验证 + + + + &User Name + 用户名 + + + + Password + 密码 + + + + None + + + + + System settings + 跟随系统设置 + + + + HTTP + HTTP + + + + Socks v5 + Socks v5 + + + + QObject + + + Error importing data + 导入数据时出错 + + + + from record number %1 + 自记录编号 %1 + + + + . +%1 + . +%1 + + + + Importing CSV file... + 导入CSV文件... + + + + Cancel + 取消 + + + + All files (*) + 所有文件 (*) + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + SQLite 数据库文件 (*.db *.sqlite *.sqlite3 *.db3) + + + + Left + + + + + Right + + + + + Center + 居中 + + + + Justify + 两段 + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + SQLite 数据库文件 (*.db *.sqlite *.sqlite3 *.db3) + + + + DB Browser for SQLite Project Files (*.sqbpro) + DB Browser for SQLite 工程文件 (*.sqbpro) + + + + SQL Files (*.sql) + SQL 文件 (*.sql) + + + + All Files (*) + 所有文件 (*) + + + + Text Files (*.txt) + 纯文本文件 (*.txt) + + + + Comma-Separated Values Files (*.csv) + CSV (逗号分隔)(*.csv) + + + + Tab-Separated Values Files (*.tsv) + TSV (制表符分隔)(*.tsv) + + + + Delimiter-Separated Values Files (*.dsv) + DSV (分隔符分隔)(*.dsv) + + + + Concordance DAT files (*.dat) + Concordance DAT 文件 (*.dat) + + + + JSON Files (*.json *.js) + JSON 文件 (*.json *.js) + + + + XML Files (*.xml) + XML 文件 (*.xml) + + + + Binary Files (*.bin *.dat) + 二进制文件 (*.bin *.dat) + + + + SVG Files (*.svg) + SVG 文件 (*.svg) + + + + Hex Dump Files (*.dat *.bin) + 十六进制转储文件 (*.dat *.bin) + + + + Extensions (*.so *.dylib *.dll) + 扩展 (*.so *.dylib *.dll) + + + + RemoteCommitsModel + + + Commit ID + 提交ID + + + + Message + 说明 + + + + Date + 日期 + + + + Author + 作者 + + + + Size + 大小 + + + + Authored and committed by %1 + 由 %1 为作者并提交 + + + + Authored by %1, committed by %2 + 由 %1 为作者,由 %2 提交 + + + + RemoteDatabase + + + Error opening local databases list. +%1 + 打开本地数据库列表时出错。 +%1 + + + + Error creating local databases list. +%1 + 创建本地数据库列表时出错。 +%1 + + + + RemoteDock + + + Remote + 远程 + + + + Local + 本地 + + + + Identity + 身份 + + + + Push currently opened database to server + 推送当前打开的数据库到服务器 + + + + DBHub.io + DBHub.io + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + <html><head/><body><p>在此面板,来自 dbhub.io 网站的远程数据库可以被添加到 DB4S。首先你需要一个身份:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">登录 dbhub.io 网站 (使用你的 GitHub 认证或其他什么)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">点击按钮创建 DB4S 证书 (那是你的身份)。 这会给你一个证书文件 (保存到你的本地硬盘里)。</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">前往 DB4S 的设置中的远程选项卡。点击添加证书,选择刚才下载的文件。</li></ol><p>这样,远程面板就会显示你的身份,之后可以添加远程数据库。</p></body></html> + + + + Current Database + 当前数据库 + + + + Clone + 克隆 + + + + User + 用户 + + + + Database + 数据库 + + + + Branch + 分支 + + + + Commits + 提交记录 + + + + Commits for + 提交于 + + + + Delete Database + 删除数据库 + + + + Delete the local clone of this database + 删除此数据库的本地克隆 + + + + Open in Web Browser + 在浏览器中打开 + + + + Open the web page for the current database in your browser + 在你的浏览器中打开当前数据库的网页版 + + + + Clone from Link + 从链接克隆 + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + 使用数据库页面提供的链接,将数据库下载到本地以供编辑。 + + + + Refresh + 刷新 + + + + Reload all data and update the views + 重新载入所有数据并更新视图 + + + + F5 + + + + + Clone Database + 克隆数据库 + + + + Open Database + 打开数据库 + + + + Open the local copy of this database + 打开此数据库的本地拷贝 + + + + Check out Commit + 签出某个提交 + + + + Download and open this specific commit + 下载并打开特定的提交版本 + + + + Check out Latest Commit + 签出最新提交 + + + + Check out the latest commit of the current branch + 从当前分支签出最近一次的提交版本 + + + + Save Revision to File + 将版本另存为文件 + + + + Saves the selected revision of the database to another file + 将选择的版本的数据库保存到另一个文件 + + + + Upload Database + 上传数据库 + + + + Upload this database as a new commit + 将当前数据库作为新的提交上传 + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + <html><head/><body><p>你正在使用内置的,只读的凭据。要上传你的数据库,你需要配置使用你的 DBHub.io 账号。</p><p>还没有 DBHub.io 账号?<a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">注册一个</span></a> 并在 <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">此处</span></a> 导入你的证书。</p><p>要获得在线帮助,点击<a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">这里</span></a>。</p></body></html> + + + + Back + 返回 + + + + Select an identity to connect + 选择要用于连接的凭据 + + + + Public + 公用证书 + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + 将远程服务器上的数据库下载到本地以编辑。 +请输入用于克隆的URL。可通过在网页上点击 +“Clone Database in DB4S”获得数据库的URL。 + + + + Invalid URL: The host name does not match the host name of the current identity. + 无效的URL:主机名与凭据的主机名不符。 + + + + Invalid URL: No branch name specified. + 无效的URL:未指定分支名。 + + + + Invalid URL: No commit ID specified. + 无效的URL:未指定提交ID。 + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + 你已经修改了本地的数据库。此时获取远程提交将覆盖本地的更改。 +确实要继续吗? + + + + The database has unsaved changes. Are you sure you want to push it before saving? + 数据库有未保存的更改,确实要在保存前推送吗? + + + + The database you are trying to delete is currently opened. Please close it before deleting. + 尝试删除的数据库当前已被打开,请先将之关闭。 + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + 将删除本地的数据库,包括你未提交的修改。 +确实要删除此数据库吗? + + + + RemoteLocalFilesModel + + + Name + 名称 + + + + Branch + 分支 + + + + Last modified + 上次修改 + + + + Size + 大小 + + + + Commit + 提交 + + + + File + 文件 + + + + RemoteModel + + + Name + 名称 + + + + Last modified + 上次修改 + + + + Size + 大小 + + + + Commit + 提交 + + + + Size: + 大小: + + + + Last Modified: + 上次修改: + + + + Licence: + 授权: + + + + Default Branch: + 默认分支: + + + + RemoteNetwork + + + Choose a location to save the file + 选择保存位置 + + + + Error opening remote file at %1. +%2 + 打开远程文件 %1 时出错. +%2 + + + + Error: Invalid client certificate specified. + 错误: 指定了错误的客户端证书。 + + + + Please enter the passphrase for this client certificate in order to authenticate. + 请输入客户端证书的口令以进行身份认证。 + + + + Cancel + 取消 + + + + Uploading remote database to +%1 + 正在上传远程数据库到 +%1. {1?} + + + + Downloading remote database from +%1 + 正在下载远程数据库于 +%1. {1?} + + + + + Error: The network is not accessible. + 错误: 网络无法访问。 + + + + Error: Cannot open the file for sending. + 错误: 无法打开文件用于发送。 + + + + RemotePushDialog + + + Push database + 推送数据库 + + + + Database na&me to push to + 推送的数据库名(&m) + + + + Commit message + 提交信息 + + + + Database licence + 数据库许可协议 + + + + Public + 公开 + + + + Branch + 分支 + + + + Force push + 强制推送 + + + + Username + 用户名 + + + + Database will be public. Everyone has read access to it. + 数据库将是公有的。所有人都可以读取它。 + + + + Database will be private. Only you have access to it. + 数据库将是私有的。只有您可以访问它。 + + + + Use with care. This can cause remote commits to be deleted. + 小心使用。这可能会导致远程提交被删除。 + + + + RunSql + + + Execution aborted by user + 操作被用户终止 + + + + , %1 rows affected + ,%1 行数据受影响 + + + + query executed successfully. Took %1ms%2 + 查询执行成功。耗时 %1ms%2 + + + + executing query + 执行查询 + + + + SelectItemsPopup + + + A&vailable + 可用(&V) + + + + Sele&cted + 已选(&C) + + + + SqlExecutionArea + + + Form + 表单 + + + + Find previous match [Shift+F3] + 查找上一个 [Shift+F3] + + + + Find previous match with wrapping + 按顺序查找上一项 + + + + Shift+F3 + + + + + The found pattern must be a whole word + 找到的必须是一个完整的词 + + + + Whole Words + 全字匹配 + + + + Text pattern to find considering the checks in this frame + 符合这里的选择要查找的文本 + + + + Find in editor + 在编辑器中查找 + + + + The found pattern must match in letter case + 搜索必须大小写匹配 + + + + Case Sensitive + 大小写敏感 + + + + Find next match [Enter, F3] + 查找下一个 [Enter, F3] + + + + Find next match with wrapping + 循环查找下一个 + + + + F3 + + + + + Interpret search pattern as a regular expression + 解析查找目标为正则表达式 + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>选中时,要查找的模式被解释为 UNIX 正则表达式。参阅 <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Wikibooks 中的正则表达式</a>.</p></body></html> + + + + Regular Expression + 正则表达式 + + + + + Close Find Bar + 关闭查找栏 + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + <html><head/><body><p>上次执行的语句的结果。</p><p>你可能希望折叠这个窗格并使用 <span style=" font-style:italic;">SQL 日志</span> 区域查看提交自 <span style=" font-style:italic;">用户</span> 的结果。</p></body></html> + + + + Results of the last executed statements + 上次执行语句的结果 + + + + This field shows the results and status codes of the last executed statements. + 这个字段显示最后执行的语句的结果和状态码。 + + + + Couldn't read file: %1. + 无法读取文件: %1。 + + + + + Couldn't save file: %1. + 无法保存文件: %1。 + + + + Your changes will be lost when reloading it! + 重新加载时,你的更改将会丢失! + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + 文件 "%1" 已被其他程序修改。是否要重新加载?%2 + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + + + + + (X) ltrim(X) removes spaces from the left side of X. + + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + + + + + (X) rtrim(X) removes spaces from the right side of X. + + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + + + + + (X) trim(X) removes spaces from both ends of X. + + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + + + + + SqliteTableModel + + + reading rows + 读取行 + + + + loading... + 正在加载... + + + + References %1(%2) +Hold %3Shift and click to jump there + 引用 %1(%2) +按住 %3Shift 并点击以跳转 + + + + Error changing data: +%1 + 更改数据库时出错: +%1 + + + + retrieving list of columns + 正在检索列的列表 + + + + Fetching data... + 正在拉取数据... + + + + + Cancel + 取消 + + + + TableBrowser + + + Browse Data + 浏览数据 + + + + &Table: + 表(&T): + + + + Select a table to browse data + 选择一个表以浏览数据 + + + + Use this list to select a table to be displayed in the database view + 使用这个列表选择一个要显示在数据库视图中的表 + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + 这是数据库表视图。你可以进行以下操作: + - 直接打字以在这里直接编辑。 + - 双击记录以打开单元格编辑窗口。 + - Alt+Del 删除单元格内容,变成NULL。 + - Ctrl+" 重复一份当前记录。 + - Ctrl+' 从上面的单元格拷贝。 + - 标准的复制/粘贴操作。 + + + + Text pattern to find considering the checks in this frame + 符合这里的选择要查找的文本 + + + + Find in table + 在表中查找 + + + + Find previous match [Shift+F3] + 查找上一个 [Shift+F3] + + + + Find previous match with wrapping + 按顺序查找上一项 + + + + Shift+F3 + + + + + Find next match [Enter, F3] + 查找下一个 [Enter, F3] + + + + Find next match with wrapping + 循环查找下一个 + + + + F3 + + + + + The found pattern must match in letter case + 搜索必须大小写匹配 + + + + Case Sensitive + 大小写敏感 + + + + The found pattern must be a whole word + 找到的必须是一个完整的词 + + + + Whole Cell + 单元格匹配 + + + + Interpret search pattern as a regular expression + 解析查找目标为正则表达式 + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + <html><head/><body><p>选中时,搜索关键词被视为UNIX正则表达式。参阅<a href="https://en.wikibooks.org/wiki/Regular_Expressions">Wikibooks 上对正则表达式的介绍</a>。</p></body></html> + + + + Regular Expression + 正则表达式 + + + + + Close Find Bar + 关闭查找栏 + + + + Text to replace with + 要替换的文本 + + + + Replace with + 替换 + + + + Replace next match + 替换下个匹配的文本 + + + + + Replace + 替换 + + + + Replace all matches + 替换所有匹配 + + + + Replace all + 全部替换 + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + <html><head/><body><p>滚动到开始</p></body></html> + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + <html><head/><body><p>点击这个按钮在上面的表视图中导航到最前。</p></body></html> + + + + |< + |< + + + + Scroll one page upwards + 上翻一页 + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + <html><head/><body><p>点击按钮将表中显示的记录向上翻一页。</p></body></html> + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 / 0 + + + + Scroll one page downwards + 下翻一页 + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + <html><head/><body><p>点击按钮将表中显示的记录向下翻一页。</p></body></html> + + + + > + > + + + + Scroll to the end + 滚动到结束 + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + <html><head/><body><p>点击这个按钮在上面的表视图中导航到最后。</p></body></html> + + + + >| + >| + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>点击这里跳到指定的记录</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>这个按钮用于导航到在“转到”区域中指定的记录号。</p></body></html> + + + + Go to: + 转到: + + + + Enter record number to browse + 输入要浏览的记录号 + + + + Type a record number in this area and click the Go to: button to display the record in the database view + 在这个区域中输入一个记录号,并点击“转到:”按钮以在数据库视图中显示记录 + + + + 1 + 1 + + + + Show rowid column + 显示 rowid 列 + + + + Toggle the visibility of the rowid column + 切换 rowid 列的可见性 + + + + Unlock view editing + 解锁视图编辑 + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + 解锁当前视图以编辑。然而,你需要合适的触发器来编辑。 + + + + Edit display format + 编辑显示格式 + + + + Edit the display format of the data in this column + 编辑列中数据的显示格式 + + + + + New Record + 新建记录 + + + + + Insert a new record in the current table + 在当前表中插入一条新记录 + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + <html><head/><body><p>此按钮在数据库中创建新记录。按住鼠标按钮以打开菜单选择不同选项:</p><ul><li><span style=" font-weight:600;">新记录</span>: 用默认值插入一条新记录到数据库中。</li><li><span style=" font-weight:600;">插入值...</span>: 打开对话框编辑要插入的值。可以输入满足约束的值。如果 <span style=" font-weight:600;">新记录</span> 选项失败,对话框也会打开。</li></ul></body></html> + + + + + Delete Record + 删除记录 + + + + Delete the current record + 删除当前记录 + + + + + This button deletes the record or records currently selected in the table + 此按钮删除表里当前选中的记录 + + + + + Insert new record using default values in browsed table + 用默认值插入一条新记录到当前浏览的表中 + + + + Insert Values... + 插入值... + + + + + Open a dialog for inserting values in a new record + 打开对话框以插入值到新记录中 + + + + Export to &CSV + 导出到 &CSV + + + + + Export the filtered data to CSV + 导出当前数据到 CSV + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + 此按钮导出当前浏览、过滤的表的数据 (过滤后,显示格式和列的顺序) 到一个CSV文件。 + + + + Save as &view + 保存为视图(&V) + + + + + Save the current filter, sort column and display formats as a view + 保存当前过滤,列排序和显示格式为视图 + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + 此按钮保存当前浏览表格的设置 (过滤,显示格式和列的顺序) 为SQL视图,之后可以再用SQL语句浏览。 + + + + Save Table As... + 表另存为... + + + + + Save the table as currently displayed + 按当前显示的样子保存表 + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + <html><head/><body><p>此菜单提供以下可应用到当前浏览、过滤的表的选项:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">导出到CSV: 导出当前浏览、过滤的表的数据 (过滤后,显示格式和列的顺序) 到一个CSV文件。</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">保存为视图: 此选项保存当前浏览表格的设置 (过滤,显示格式和列的顺序) 为SQL视图,之后可以再用SQL语句浏览。</li></ul></body></html> + + + + Hide column(s) + 隐藏列 + + + + Hide selected column(s) + 隐藏选中的列 + + + + Show all columns + 显示所有列 + + + + Show all columns that were hidden + 显示所有被隐藏的列 + + + + + Set encoding + 设置编码 + + + + Change the encoding of the text in the table cells + 更改表单元格中文本的编码 + + + + Set encoding for all tables + 设置所有表的编码 + + + + Change the default encoding assumed for all tables in the database + 修改数据库中所有表的默认编码 + + + + Clear Filters + 清除过滤 + + + + Clear all filters + 清除所有过滤 + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + 此按钮将清除当前浏览表的所有在头部输入区的过滤器。 + + + + Clear Sorting + 清除排序 + + + + Reset the order of rows to the default + 将行的顺序重置为默认 + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + 此按钮清除当前浏览的表的列排序,重置为默认值。 + + + + Print + 打印 + + + + Print currently browsed table data + 打印当前浏览表中的数据 + + + + Print currently browsed table data. Print selection if more than one cell is selected. + 打印当前正在浏览的表中的数据。如果选中了多于一个的单元格,就打印选中区域。 + + + + Ctrl+P + + + + + Refresh + 刷新 + + + + Refresh the data in the selected table + 刷新选中表中的数据 + + + + This button refreshes the data in the currently selected table. + 这个按钮刷新在当前选择的表中的数据。 + + + + F5 + + + + + Find in cells + 在单元格中查找 + + + + Open the find tool bar which allows you to search for values in the table view below. + 打开查找栏,可以在其中搜索表内数据。 + + + + + Bold + 粗体 + + + + Ctrl+B + + + + + + Italic + 斜体 + + + + + Underline + 下划线 + + + + Ctrl+U + + + + + + Align Right + 右对齐 + + + + + Align Left + 左对齐 + + + + + Center Horizontally + 垂直居中 + + + + + Justify + 两端对齐 + + + + + Edit Conditional Formats... + 编辑条件格式... + + + + Edit conditional formats for the current column + 为当前列设置条件格式 + + + + Clear Format + 清除格式 + + + + Clear All Formats + 清除全部格式 + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + 清除当前选择的单元格的格式和当前选择的列的条件格式 + + + + + Font Color + 字体颜色 + + + + + Background Color + 背景颜色 + + + + Toggle Format Toolbar + 切换格式工具栏 + + + + Show/hide format toolbar + 显示或隐藏格式工具栏 + + + + + This button shows or hides the formatting toolbar of the Data Browser + 此按钮显示或隐藏浏览数据窗口的格式工具栏 + + + + Select column + 选择列 + + + + Ctrl+Space + + + + + Replace text in cells + 在单元格中替换 + + + + Filter in any column + 在所有列中过滤 + + + + Ctrl+R + + + + + %n row(s) + + %n 行 + + + + + , %n column(s) + + , %n 列 + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + . 求和: %1; 平均值: %2; 最小值: %3; 最大值: %4 + . Sum: %1; Average: %2; Min: %3; Max: %4 + + + + Conditional formats for "%1" + "%1" 的条件格式 + + + + determining row count... + 正在决定行数... + + + + %1 - %2 of >= %3 + %1 - %2 / 超过 %3 + + + + %1 - %2 of %3 + %1 - %2 / %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + 请输入一个伪主键以在当前视图启用编辑。这需要是视图中的一个满足唯一性的列的名字。 + + + + Delete Records + 删除记录 + + + + Duplicate records + 重复记录 + + + + Duplicate record + 重复的记录 + + + + Ctrl+" + + + + + Adjust rows to contents + 按内容调整行高 + + + + Error deleting record: +%1 + 删除记录时出错: +%1 + + + + Please select a record first + 请首先选择一条记录 + + + + There is no filter set for this table. View will not be created. + 此表没有过滤。视图不会被创建。 + + + + Please choose a new encoding for all tables. + 请为所有表选择新的编码。 + + + + Please choose a new encoding for this table. + 请为此表选择新的编码。 + + + + %1 +Leave the field empty for using the database encoding. + %1 +留空此字段以使用数据库默认编码。 + + + + This encoding is either not valid or not supported. + 这种编码非法或者不支持。 + + + + %1 replacement(s) made. + 进行了 %1 次替换。 + + + + VacuumDialog + + + Compact Database + 压缩数据库 + + + + Warning: Compacting the database will commit all of your changes. + 警告: 压缩数据库会提交你的所有修改。 + + + + Please select the databases to co&mpact: + 请选择要压缩的数据库(&M) + + + diff --git a/src/SqliteDBProcess/src/translations/sqlb_zh_TW.qm b/src/SqliteDBProcess/src/translations/sqlb_zh_TW.qm new file mode 100644 index 0000000..191011b Binary files /dev/null and b/src/SqliteDBProcess/src/translations/sqlb_zh_TW.qm differ diff --git a/src/SqliteDBProcess/src/translations/sqlb_zh_TW.ts b/src/SqliteDBProcess/src/translations/sqlb_zh_TW.ts new file mode 100644 index 0000000..51afd52 --- /dev/null +++ b/src/SqliteDBProcess/src/translations/sqlb_zh_TW.ts @@ -0,0 +1,6931 @@ + + + + + AboutDialog + + + About DB Browser for SQLite + + + + + Version + 版本 + + + + <html><head/><body><p>DB Browser for SQLite is an open source, freeware visual tool used to create, design and edit SQLite database files.</p><p>It is bi-licensed under the Mozilla Public License Version 2, as well as the GNU General Public License Version 3 or later. You can modify or redistribute it under the conditions of these licenses.</p><p>See <a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a> and <a href="https://www.mozilla.org/MPL/2.0/index.txt">https://www.mozilla.org/MPL/2.0/index.txt</a> for details.</p><p>For more information on this program please visit our website at: <a href="http://sqlitebrowser.org">http://sqlitebrowser.org</a></p><p><span style=" font-size:small;">This software uses the GPL/LGPL Qt Toolkit from </span><a href="http://qt-project.org/"><span style=" font-size:small;">http://qt-project.org/</span></a><span style=" font-size:small;"><br/>See </span><a href="http://qt-project.org/doc/qt-5/licensing.html"><span style=" font-size:small;">http://qt-project.org/doc/qt-5/licensing.html</span></a><span style=" font-size:small;"> for licensing terms and information.</span></p><p><span style=" font-size:small;">It also uses the Silk icon set by Mark James licensed under a Creative Commons Attribution 2.5 and 3.0 license.<br/>See </span><a href="http://www.famfamfam.com/lab/icons/silk/"><span style=" font-size:small;">http://www.famfamfam.com/lab/icons/silk/</span></a><span style=" font-size:small;"> for details.</span></p></body></html> + + + + + AddRecordDialog + + + Add New Record + + + + + Enter values for the new record considering constraints. Fields in bold are mandatory. + + + + + In the Value column you can specify the value for the field identified in the Name column. The Type column indicates the type of the field. Default values are displayed in the same style as NULL values. + + + + + Name + 名稱 + + + + Type + 類型 + + + + Value + + + + + Values to insert. Pre-filled default values are inserted automatically unless they are changed. + + + + + When you edit the values in the upper frame, the SQL query for inserting this new record is shown here. You can edit manually the query before saving. + + + + + <html><head/><body><p><span style=" font-weight:600;">Save</span> will submit the shown SQL statement to the database for inserting the new record.</p><p><span style=" font-weight:600;">Restore Defaults</span> will restore the initial values in the <span style=" font-weight:600;">Value</span> column.</p><p><span style=" font-weight:600;">Cancel</span> will close this dialog without executing the query.</p></body></html> + + + + + Auto-increment + + + + + + Unique constraint + + + + + + Check constraint: %1 + + + + + + Foreign key: %1 + + + + + + Default value: %1 + + + + + + Error adding record. Message from database engine: + +%1 + + + + + Are you sure you want to restore all the entered values to their defaults? + + + + + Application + + + Possible command line arguments: + 可用命令列參數: + + + + Usage: %1 [options] [<database>|<project>] + + + + + + -h, --help Show command line options + + + + + -q, --quit Exit application after running scripts + + + + + -s, --sql <file> Execute this SQL file after opening the DB + + + + + -t, --table <table> Browse this table after opening the DB + + + + + -R, --read-only Open database in read-only mode + + + + + -o, --option <group>/<setting>=<value> + + + + + Run application with this setting temporarily set to value + + + + + -O, --save-option <group>/<setting>=<value> + + + + + Run application saving this value for this setting + + + + + -v, --version Display the current version + + + + + <database> Open this SQLite database + + + + + <project> Open this project file (*.sqbpro) + + + + + The -s/--sql option requires an argument + -s/--sql 選項需要一個參數 + + + + The file %1 does not exist + 檔案 %1 不存在 + + + + The -t/--table option requires an argument + + + + + The -o/--option and -O/--save-option options require an argument in the form group/setting=value + + + + + Invalid option/non-existant file: %1 + 無效選項/不存在的檔案: %1 + + + + SQLite Version + + + + + SQLCipher Version %1 (based on SQLite %2) + + + + + DB Browser for SQLite Version %1. + + + + + Built for %1, running on %2 + + + + + Qt Version %1 + + + + + CipherDialog + + + SQLCipher encryption + + + + + &Password + + + + + &Reenter password + + + + + Encr&yption settings + + + + + SQLCipher &3 defaults + + + + + SQLCipher &4 defaults + + + + + Custo&m + + + + + Page si&ze + + + + + &KDF iterations + + + + + HMAC algorithm + + + + + KDF algorithm + + + + + Plaintext Header Size + + + + + Passphrase + + + + + Raw key + + + + + Please set a key to encrypt the database. +Note that if you change any of the other, optional, settings you'll need to re-enter them as well every time you open the database file. +Leave the password fields empty to disable the encryption. +The encryption process might take some time and you should have a backup copy of your database! Unsaved changes are applied before modifying the encryption. + + + + + Please enter the key used to encrypt the database. +If any of the other settings were altered for this database file you need to provide this information as well. + + + + + ColumnDisplayFormatDialog + + + Choose display format + + + + + Display format + + + + + Choose a display format for the column '%1' which is applied to each value prior to showing it. + + + + + Default + 預設 + + + + Decimal number + + + + + Exponent notation + + + + + Hex blob + + + + + Hex number + + + + + Apple NSDate to date + + + + + Java epoch (milliseconds) to date + + + + + .NET DateTime.Ticks to date + + + + + Julian day to date + + + + + Unix epoch to local time + + + + + Date as dd/mm/yyyy + + + + + Lower case + + + + + Custom display format must contain a function call applied to %1 + + + + + Error in custom display format. Message from database engine: + +%1 + + + + + Custom display format must return only one column but it returned %1. + + + + + Octal number + + + + + Round number + + + + + Unix epoch to date + + + + + Upper case + + + + + Windows DATE to date + + + + + Custom + + + + + CondFormatManager + + + Conditional Format Manager + + + + + This dialog allows creating and editing conditional formats. Each cell style will be selected by the first accomplished condition for that cell data. Conditional formats can be moved up and down, where those at higher rows take precedence over those at lower. Syntax for conditions is the same as for filters and an empty condition applies to all values. + + + + + Add new conditional format + + + + + &Add + + + + + Remove selected conditional format + + + + + &Remove + + + + + Move selected conditional format up + + + + + Move &up + + + + + Move selected conditional format down + + + + + Move &down + + + + + Foreground + + + + + Text color + + + + + Background + + + + + Background color + + + + + Font + + + + + Size + + + + + Bold + 粗體 + + + + Italic + 斜體 + + + + Underline + 底線 + + + + Alignment + + + + + Condition + + + + + + Click to select color + + + + + Are you sure you want to clear all the conditional formats of this field? + + + + + DBBrowserDB + + + Please specify the database name under which you want to access the attached database + + + + + Invalid file format + + + + + Do you want to save the changes made to the database file %1? + 您是否想儲存對資料庫檔案 %1 做出的修改? + + + + Exporting database to SQL file... + 正在匯出資料庫到 SQL 檔案... + + + + + Cancel + 取消 + + + + Executing SQL... + 正在執行 SQL... + + + + Action cancelled. + 操作已取消。 + + + + This database has already been attached. Its schema name is '%1'. + + + + + Do you really want to close this temporary database? All data will be lost. + + + + + Database didn't close correctly, probably still busy + + + + + The database is currently busy: + + + + + Do you want to abort that other operation? + + + + + + No database file opened + + + + + + Error in statement #%1: %2. +Aborting execution%3. + + + + + + and rolling back + + + + + didn't receive any output from %1 + + + + + could not execute command: %1 + + + + + Cannot delete this object + + + + + Cannot set data on this object + + + + + + A table with the name '%1' already exists in schema '%2'. + + + + + No table with name '%1' exists in schema '%2'. + + + + + + Cannot find column %1. + + + + + Creating savepoint failed. DB says: %1 + + + + + Renaming the column failed. DB says: +%1 + + + + + + Releasing savepoint failed. DB says: %1 + + + + + Creating new table failed. DB says: %1 + + + + + Copying data to new table failed. DB says: +%1 + + + + + Deleting old table failed. DB says: %1 + + + + + Error renaming table '%1' to '%2'. +Message from database engine: +%3 + + + + + could not get list of db objects: %1 + + + + + Restoring some of the objects associated with this table failed. This is most likely because some column names changed. Here's the SQL statement which you might want to fix and execute manually: + + + 還原某些和這個資料表關聯的物件失敗。這個最可能是因為某些列的名稱修改了。這裡是您可能需要手動修復和執行的 SQL 語句: + + + + + + could not get list of databases: %1 + + + + + Error loading extension: %1 + 載入擴充套件時出現錯誤: %1 + + + + could not get column information + + + + + Error setting pragma %1 to %2: %3 + 設定雜注 %1 為 %2 時出現錯誤: %3 + + + + File not found. + 找不到檔案。 + + + + DbStructureModel + + + Name + 名稱 + + + + Object + 對象 + + + + Type + 類型 + + + + Schema + 架構 + + + + Database + + + + + Browsables + + + + + All + + + + + Temporary + + + + + Tables (%1) + 資料表 (%1) + + + + Indices (%1) + 索引 (%1) + + + + Views (%1) + 視圖 (%1) + + + + Triggers (%1) + 觸發器 (%1) + + + + EditDialog + + + Edit database cell + 編輯資料庫儲存格 + + + + Mode: + + + + + This is the list of supported modes for the cell editor. Choose a mode for viewing or editing the data of the current cell. + + + + + RTL Text + + + + + + Image + + + + + JSON + + + + + XML + + + + + + Automatically adjust the editor mode to the loaded data type + + + + + This checkable button enables or disables the automatic switching of the editor mode. When a new cell is selected or new data is imported and the automatic switching is enabled, the mode adjusts to the detected data type. You can then change the editor mode manually. If you want to keep this manually switched mode while moving through the cells, switch the button off. + + + + + Auto-switch + + + + + The text editor modes let you edit plain text, as well as JSON or XML data with syntax highlighting, automatic formatting and validation before saving. + +Errors are indicated with a red squiggle underline. + + + + + This Qt editor is used for right-to-left scripts, which are not supported by the default Text editor. The presence of right-to-left characters is detected and this editor mode is automatically selected. + + + + + Open preview dialog for printing the data currently stored in the cell + + + + + Auto-format: pretty print on loading, compact on saving. + + + + + When enabled, the auto-format feature formats the data on loading, breaking the text in lines and indenting it for maximum readability. On data saving, the auto-format feature compacts the data removing end of lines, and unnecessary whitespace. + + + + + Word Wrap + + + + + Wrap lines on word boundaries + + + + + + Open in default application or browser + + + + + Open in application + + + + + The value is interpreted as a file or URL and opened in the default application or web browser. + + + + + Save file reference... + + + + + Save reference to file + + + + + + Open in external application + + + + + Autoformat + + + + + &Export... + + + + + + &Import... + + + + + + Import from file + + + + + + Opens a file dialog used to import any kind of data to this database cell. + + + + + Export to file + + + + + Opens a file dialog used to export the contents of this database cell to a file. + + + + + + Print... + + + + + Open preview dialog for printing displayed image + + + + + + Ctrl+P + + + + + Open preview dialog for printing displayed text + + + + + Copy Hex and ASCII + + + + + Copy selected hexadecimal and ASCII columns to the clipboard + + + + + Ctrl+Shift+C + + + + + Set as &NULL + + + + + Apply data to cell + + + + + This button saves the changes performed in the cell editor to the database cell. + + + + + Apply + + + + + Text + 純文字檔案 + + + + Binary + 二進位 + + + + Erases the contents of the cell + 刪除儲存格的內容 + + + + This area displays information about the data present in this database cell + 這個區域顯示存在於這個資料庫儲存格中的資料的相關資訊 + + + + Type of data currently in cell + 目前在儲存格中的資料的類型 + + + + Size of data currently in table + 目前在資料表中的資料的大小 + + + + Choose a filename to export data + 選擇一個匯出資料的檔案名稱 + + + + Type of data currently in cell: %1 Image + + + + + %1x%2 pixel(s) + + + + + Type of data currently in cell: NULL + + + + + + Type of data currently in cell: Text / Numeric + 目前在儲存格中的資料的類型: Text 純文字檔案/ Numeric 數值 + + + + + Image data can't be viewed in this mode. + + + + + + Try switching to Image or Binary mode. + + + + + + Binary data can't be viewed in this mode. + + + + + + Try switching to Binary mode. + + + + + + Image files (%1) + + + + + Binary files (*.bin) + + + + + Choose a file to import + 選擇要匯入的一個檔案 + + + + %1 Image + + + + + Invalid data for this mode + + + + + The cell contains invalid %1 data. Reason: %2. Do you really want to apply it to the cell? + + + + + + + %n character(s) + + %n 個字元 + + + + + Type of data currently in cell: Valid JSON + + + + + Couldn't save file: %1. + + + + + The data has been saved to a temporary file and has been opened with the default application. You can now edit the file and, when you are ready, apply the saved new data to the cell editor or cancel any changes. + + + + + Type of data currently in cell: Binary + 目前在儲存格中的資料的類型: Binary 二進位 + + + + + %n byte(s) + + %n 位元組 + + + + + EditIndexDialog + + + &Name + 名稱(&N) + + + + Order + 順序 + + + + &Table + 資料表(&T) + + + + Edit Index Schema + + + + + &Unique + 唯一(&U) + + + + For restricting the index to only a part of the table you can specify a WHERE clause here that selects the part of the table that should be indexed + + + + + Partial inde&x clause + + + + + Colu&mns + + + + + Table column + + + + + Type + 類型 + + + + Add a new expression column to the index. Expression columns contain SQL expression rather than column names. + + + + + Index column + + + + + Deleting the old index failed: +%1 + + + + + Creating the index failed: +%1 + 建立索引時失敗: +%1 + + + + EditTableDialog + + + Edit table definition + 編輯資料表定義 + + + + Table + 資料表 + + + + Advanced + + + + + Make this a 'WITHOUT rowid' table. Setting this flag requires a field of type INTEGER with the primary key flag set and the auto increment flag unset. + + + + + Without Rowid + + + + + Database sche&ma + + + + + Fields + 欄位 + + + + Add + + + + + Remove + + + + + Move to top + + + + + Move up + + + + + Move down + + + + + Move to bottom + + + + + + Name + 名稱 + + + + + Type + 類型 + + + + NN + + + + + Not null + 非空 + + + + PK + PK + + + + Primary key + 主鍵 + + + + AI + AI + + + + Autoincrement + 自動增值 + + + + U + + + + + + + Unique + + + + + Default + 預設 + + + + Default value + 預設值 + + + + + + Check + 檢查 + + + + Check constraint + 檢查約束條件 + + + + Collation + + + + + + + Foreign Key + + + + + Constraints + + + + + Add constraint + + + + + Remove constraint + + + + + Columns + 列列 + + + + SQL + + + + + <html><head/><body><p><span style=" font-weight:600; color:#ff0000;">Warning: </span>There is something with this table definition that our parser doesn't fully understand. Modifying and saving this table might result in problems.</p></body></html> + + + + + + Primary Key + + + + + Add a primary key constraint + + + + + Add a foreign key constraint + + + + + Add a unique constraint + + + + + Add a check constraint + + + + + Error creating table. Message from database engine: +%1 + 建立資料表時出現錯誤。來自資料庫引擎的消息: +%1 + + + + There already is a field with that name. Please rename it first or choose a different name for this field. + + + + + There is at least one row with this field set to NULL. This makes it impossible to set this flag. Please change the table data first. + 至少有一行帶本欄位的記錄被設為空。這使得它不可能設定這個標誌。請首先修改資料表資料。 + + + + There is at least one row with a non-integer value in this field. This makes it impossible to set the AI flag. Please change the table data first. + 在這個欄位中至少有一行帶有一個非整數的值。這使得它不可能設定 AI 標誌。請首先修改資料表資料。 + + + + Column '%1' has duplicate data. + + + + + + This makes it impossible to enable the 'Unique' flag. Please remove the duplicate data, which will allow the 'Unique' flag to then be enabled. + + + + + This column is referenced in a foreign key in table %1 and thus its name cannot be changed. + + + + + + There can only be one primary key for each table. Please modify the existing primary key instead. + + + + + Are you sure you want to delete the field '%1'? +All data currently stored in this field will be lost. + 您是否確認您想刪除欄位 '%1'? +目前存儲在這個欄位中的所有資料將會遺失。 + + + + Please add a field which meets the following criteria before setting the without rowid flag: + - Primary key flag set + - Auto increment disabled + + + + + ExportDataDialog + + + Export data as CSV + 匯出資料為 CSV + + + + Tab&le(s) + + + + + Colu&mn names in first line + + + + + Fie&ld separator + + + + + , + , + + + + ; + ; + + + + Tab + Tab + + + + | + | + + + + + + Other + 其它 + + + + &Quote character + 引號(&Q) + + + + " + " + + + + ' + ' + + + + New line characters + + + + + Windows: CR+LF (\r\n) + + + + + Unix: LF (\n) + + + + + Pretty print + + + + + + Could not open output file: %1 + + + + + + Choose a filename to export data + 選擇匯出資料的檔案名稱 + + + + Export data as JSON + + + + + exporting CSV + + + + + exporting JSON + + + + + Please select at least 1 table. + + + + + Choose a directory + 選擇一個目錄 + + + + Export completed. + 匯出完成。 + + + + ExportSqlDialog + + + Export SQL... + + + + + Tab&le(s) + + + + + Select All + + + + + Deselect All + + + + + &Options + + + + + Keep column names in INSERT INTO + + + + + Multiple rows (VALUES) per INSERT statement + + + + + Export everything + + + + + Export schema only + + + + + Export data only + + + + + Keep old schema (CREATE TABLE IF NOT EXISTS) + + + + + Overwrite old schema (DROP TABLE, then CREATE TABLE) + + + + + Please select at least one table. + + + + + Choose a filename to export + 選擇要匯出的檔案名稱 + + + + Export completed. + 匯出完成。 + + + + Export cancelled or failed. + 匯出取消或失敗。 + + + + ExtendedScintilla + + + + Ctrl+H + + + + + Ctrl+F + + + + + + Ctrl+P + + + + + Find... + + + + + Find and Replace... + + + + + Print... + + + + + ExtendedTableWidget + + + Use as Exact Filter + + + + + Containing + + + + + Not containing + + + + + Not equal to + + + + + Greater than + + + + + Less than + + + + + Greater or equal + + + + + Less or equal + + + + + Between this and... + + + + + Regular expression + + + + + Edit Conditional Formats... + + + + + Set to NULL + + + + + Copy + + + + + Copy with Headers + + + + + Copy as SQL + + + + + Paste + + + + + Print... + + + + + Use in Filter Expression + + + + + Alt+Del + + + + + Ctrl+Shift+C + + + + + Ctrl+Alt+C + + + + + The content of the clipboard is bigger than the range selected. +Do you want to insert it anyway? + + + + + <p>Not all data has been loaded. <b>Do you want to load all data before selecting all the rows?</b><p><p>Answering <b>No</b> means that no more data will be loaded and the selection will not be performed.<br/>Answering <b>Yes</b> might take some time while the data is loaded but the selection will be complete.</p>Warning: Loading all the data might require a great amount of memory for big tables. + + + + + Cannot set selection to NULL. Column %1 has a NOT NULL constraint. + + + + + FileExtensionManager + + + File Extension Manager + + + + + &Up + + + + + &Down + + + + + &Add + + + + + &Remove + + + + + + Description + + + + + Extensions + + + + + *.extension + + + + + FilterLineEdit + + + Filter + 過濾 + + + + These input fields allow you to perform quick filters in the currently selected table. +By default, the rows containing the input text are filtered out. +The following operators are also supported: +% Wildcard +> Greater than +< Less than +>= Equal to or greater +<= Equal to or less += Equal to: exact match +<> Unequal: exact inverse match +x~y Range: values between x and y +/regexp/ Values matching the regular expression + + + + + Clear All Conditional Formats + + + + + Use for Conditional Format + + + + + Edit Conditional Formats... + + + + + Set Filter Expression + + + + + What's This? + 這是什麼? + + + + Is NULL + + + + + Is not NULL + + + + + Is empty + + + + + Is not empty + + + + + Not containing... + + + + + Equal to... + + + + + Not equal to... + + + + + Greater than... + + + + + Less than... + + + + + Greater or equal... + + + + + Less or equal... + + + + + In range... + + + + + Regular expression... + + + + + FindReplaceDialog + + + Find and Replace + + + + + Fi&nd text: + + + + + Re&place with: + + + + + Match &exact case + + + + + Match &only whole words + + + + + When enabled, the search continues from the other end when it reaches one end of the page + + + + + &Wrap around + + + + + When set, the search goes backwards from cursor position, otherwise it goes forward + + + + + Search &backwards + + + + + <html><head/><body><p>When checked, the pattern to find is searched only in the current selection.</p></body></html> + + + + + &Selection only + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Use regular e&xpressions + + + + + Find the next occurrence from the cursor position and in the direction set by "Search backwards" + + + + + &Find Next + + + + + F3 + + + + + &Replace + + + + + Highlight all the occurrences of the text in the page + + + + + F&ind All + + + + + Replace all the occurrences of the text in the page + + + + + Replace &All + + + + + The searched text was not found + + + + + The searched text was not found. + + + + + The searched text was found one time. + + + + + The searched text was found %1 times. + + + + + The searched text was replaced one time. + + + + + The searched text was replaced %1 times. + + + + + ForeignKeyEditor + + + &Reset + + + + + Foreign key clauses (ON UPDATE, ON DELETE etc.) + + + + + ImportCsvDialog + + + Import CSV file + 匯入 CSV 檔案 + + + + Table na&me + + + + + &Column names in first line + 列名在首行(&C) + + + + Field &separator + 欄位分隔符號(&S) + + + + , + , + + + + ; + ; + + + + + Tab + Tab + + + + | + ; + + + + Other + 其它 + + + + &Quote character + 引號(&Q) + + + + + Other (printable) + + + + + + Other (code) + + + + + " + ; + + + + ' + ' + + + + &Encoding + + + + + UTF-8 + + + + + UTF-16 + + + + + ISO-8859-1 + + + + + Trim fields? + + + + + Separate tables + + + + + Advanced + + + + + When importing an empty value from the CSV file into an existing table with a default value for this column, that default value is inserted. Activate this option to insert an empty value instead. + + + + + Ignore default &values + + + + + Activate this option to stop the import when trying to import an empty value into a NOT NULL column without a default value. + + + + + Fail on missing values + + + + + Disable data type detection + + + + + Disable the automatic data type detection when creating a new table. + + + + + When importing into an existing table with a primary key, unique constraints or a unique index there is a chance for a conflict. This option allows you to select a strategy for that case: By default the import is aborted and rolled back but you can also choose to ignore and not import conflicting rows or to replace the existing row in the table. + + + + + Abort import + + + + + Ignore row + + + + + Replace existing row + + + + + Conflict strategy + + + + + + Deselect All + + + + + Match Similar + + + + + Select All + + + + + There is already a table named '%1' and an import into an existing table is only possible if the number of columns match. + + + + + There is already a table named '%1'. Do you want to import the data into it? + + + + + Creating restore point failed: %1 + + + + + Creating the table failed: %1 + + + + + importing CSV + + + + + Importing the file '%1' took %2ms. Of this %3ms were spent in the row function. + + + + + Inserting row failed: %1 + + + + + MainWindow + + + toolBar1 + + + + + Opens the SQLCipher FAQ in a browser window + + + + + Export one or more table(s) to a JSON file + + + + + DB Browser for SQLite + + + + + Open an existing database file in read only mode + + + + + &File + 檔案(&F) + + + + &Import + 匯入(&I) + + + + &Export + 匯出(&E) + + + + &Edit + 編輯(&E) + + + + &View + 查看(&V) + + + + &Help + 幫助(&H) + + + + Edit Database &Cell + + + + + DB Sche&ma + + + + + &Remote + + + + + + Execute current line + 執行目前行 + + + + This button executes the SQL statement present in the current editor line + + + + + Shift+F5 + + + + + Sa&ve Project + + + + + + Save SQL file as + + + + + This button saves the content of the current SQL editor tab to a file + + + + + &Browse Table + + + + + Copy Create statement + + + + + Copy the CREATE statement of the item to the clipboard + + + + + User + 用戶 + + + + Application + 應用程式 + + + + &Clear + 清除(&C) + + + + &New Database... + 新建資料庫(&N)... + + + + + Create a new database file + 建立一個新的資料庫檔 + + + + This option is used to create a new database file. + 這個選項用於建立一個新的資料庫檔案。 + + + + Ctrl+N + + + + + + &Open Database... + 打開資料庫(&O)... + + + + + + + + Open an existing database file + 打開一個現有的資料庫檔 + + + + + + This option is used to open an existing database file. + 這個選項用於打開一個現有的資料庫檔案。 + + + + Ctrl+O + + + + + &Close Database + 關閉資料庫(&C) + + + + + Ctrl+W + + + + + + Revert database to last saved state + 把資料庫退回到先前儲存的狀態 + + + + This option is used to revert the current database file to its last saved state. All changes made since the last save operation are lost. + 這個選項用於倒退目前的資料庫檔為它最後的儲存狀態。從最後儲存操作開始做出的所有修改將會遺失。 + + + + + Write changes to the database file + 把修改寫入到資料庫檔 + + + + This option is used to save changes to the database file. + 這個選項用於儲存修改到資料庫檔案。 + + + + Ctrl+S + + + + + Compact the database file, removing space wasted by deleted records + 壓縮資料庫檔,通過刪除記錄去掉浪費的空間 + + + + + Compact the database file, removing space wasted by deleted records. + 壓縮資料庫檔,通過刪除記錄去掉浪費的空間。 + + + + E&xit + 退出(&X) + + + + Ctrl+Q + + + + + Import data from an .sql dump text file into a new or existing database. + 從一個 .sql 轉儲文字檔中匯入資料到一個新的或已有的資料庫。 + + + + This option lets you import data from an .sql dump text file into a new or existing database. SQL dump files can be created on most database engines, including MySQL and PostgreSQL. + 這個選項讓你從一個 .sql 轉儲文字檔中匯入資料到一個新的或現有的資料庫。SQL 轉儲檔可以在大多數資料庫引擎上建立,包括 MySQL 和 PostgreSQL。 + + + + Open a wizard that lets you import data from a comma separated text file into a database table. + 打開一個引導精靈讓您從一個逗號間隔的文字檔匯入資料到一個資料庫資料表中。 + + + + Open a wizard that lets you import data from a comma separated text file into a database table. CSV files can be created on most database and spreadsheet applications. + 打開一個引導精靈讓您從一個逗號間隔的文字檔匯入資料到一個資料庫資料表中。CSV 檔可以在大多數資料庫和試算資料表應用程式上建立。 + + + + Export a database to a .sql dump text file. + 匯出一個資料庫導一個 .sql 轉儲文字檔案。 + + + + This option lets you export a database to a .sql dump text file. SQL dump files contain all data necessary to recreate the database on most database engines, including MySQL and PostgreSQL. + 這個選項讓你匯出一個資料庫導一個 .sql 轉儲文字檔案。SQL 轉儲檔包含在大多數資料庫引擎上(包括 MySQL 和 PostgreSQL)重新建立資料庫所需的所有資料。 + + + + Export a database table as a comma separated text file. + 匯出一個資料庫資料表為逗號間隔的文字檔案。 + + + + Export a database table as a comma separated text file, ready to be imported into other database or spreadsheet applications. + 匯出一個資料庫資料表為逗號間隔的文字檔,準備好被匯入到其他資料庫或試算資料表應用程式。 + + + + Open the Create Table wizard, where it is possible to define the name and fields for a new table in the database + 打開“建立資料表”引導精靈,在那裡可以定義在資料庫中的一個新資料表的名稱和欄位 + + + + Open the Delete Table wizard, where you can select a database table to be dropped. + 打開“刪除資料表”引導精靈,在那裡你可以選擇要丟棄的一個資料庫資料表。 + + + + Open the Modify Table wizard, where it is possible to rename an existing table. It is also possible to add or delete fields form a table, as well as modify field names and types. + 打開“修改資料表”引導精靈,在其中可以重命名一個現有的資料表。也可以從一個資料表中加入或刪除欄位,以及修改欄位名稱和類型。 + + + + Open the Create Index wizard, where it is possible to define a new index on an existing database table. + 打開“建立索引”引導精靈,在那裡可以在一個現有的資料庫資料表上定義一個新索引。 + + + + &Preferences... + 偏好選項(&P)... + + + + + Open the preferences window. + 打開首選項視窗。 + + + + &DB Toolbar + 資料庫工具列(&D) + + + + Shows or hides the Database toolbar. + 顯示或隱藏資料庫工具列。 + + + + Shift+F1 + + + + + &Recently opened + 最近打開(&R) + + + + Open &tab + 打開標籤頁(&T) + + + + Ctrl+T + + + + + + Database Structure + This has to be equal to the tab title in all the main tabs + + + + + This is the structure of the opened database. +You can drag SQL statements from an object row and drop them into other applications or into another instance of 'DB Browser for SQLite'. + + + + + + + Browse Data + This has to be equal to the tab title in all the main tabs + + + + + Un/comment block of SQL code + + + + + Un/comment block + + + + + Comment or uncomment current line or selected block of code + + + + + Comment or uncomment the selected lines or the current line, when there is no selection. All the block is toggled according to the first line. + + + + + Ctrl+/ + + + + + Stop SQL execution + + + + + Stop execution + + + + + Stop the currently running SQL script + + + + + + Edit Pragmas + This has to be equal to the tab title in all the main tabs + + + + + Warning: this pragma is not readable and this value has been inferred. Writing the pragma might overwrite a redefined LIKE provided by an SQLite extension. + + + + + + Execute SQL + This has to be equal to the tab title in all the main tabs + 執行 SQL + + + + &Tools + + + + + DB Toolbar + + + + + SQL &Log + + + + + Show S&QL submitted by + + + + + Error Log + + + + + This button clears the contents of the SQL logs + + + + + This panel lets you examine a log of all SQL commands issued by the application or by yourself + + + + + &Plot + + + + + This is the structure of the opened database. +You can drag multiple object names from the Name column and drop them into the SQL editor and you can adjust the properties of the dropped names using the context menu. This would help you in composing SQL statements. +You can drag SQL statements from the Schema column and drop them into the SQL editor or into other applications. + + + + + + + Project Toolbar + + + + + Extra DB toolbar + + + + + + + Close the current database file + + + + + This button closes the connection to the currently open database file + + + + + Ctrl+F4 + + + + + &Revert Changes + + + + + &Write Changes + + + + + Compact &Database... + + + + + Execute all/selected SQL + + + + + This button executes the currently selected SQL statements. If no text is selected, all SQL statements are executed. + + + + + &Load Extension... + + + + + Execute line + + + + + &Wiki + + + + + F1 + + + + + Bug &Report... + + + + + Feature Re&quest... + + + + + Web&site + + + + + &Donate on Patreon... + + + + + Open &Project... + + + + + &Attach Database... + + + + + + Add another database file to the current database connection + + + + + This button lets you add another database file to the current database connection + + + + + &Set Encryption... + + + + + SQLCipher &FAQ + + + + + Table(&s) to JSON... + + + + + Open Data&base Read Only... + + + + + Ctrl+Shift+O + + + + + Save results + + + + + Save the results view + + + + + This button lets you save the results of the last executed query + + + + + + Find text in SQL editor + + + + + Find + + + + + This button opens the search bar of the editor + + + + + Ctrl+F + + + + + + Find or replace text in SQL editor + + + + + Find or replace + + + + + This button opens the find/replace dialog for the current editor tab + + + + + Ctrl+H + + + + + Export to &CSV + 匯出到 &CSV + + + + Save as &view + 儲存為視圖(&V) + + + + Save as view + 儲存為視圖 + + + + Browse Table + + + + + Shows or hides the Project toolbar. + + + + + Open SQL file(s) + + + + + This button opens files containing SQL statements and loads them in new editor tabs + + + + + This button lets you save all the settings associated to the open DB to a DB Browser for SQLite project file + + + + + This button lets you open a DB Browser for SQLite project file + + + + + Extra DB Toolbar + + + + + New In-&Memory Database + + + + + Drag && Drop Qualified Names + + + + + + Use qualified names (e.g. "Table"."Field") when dragging the objects and dropping them into the editor + + + + + Drag && Drop Enquoted Names + + + + + + Use escaped identifiers (e.g. "Table1") when dragging the objects and dropping them into the editor + + + + + &Integrity Check + + + + + Runs the integrity_check pragma over the opened database and returns the results in the Execute SQL tab. This pragma does an integrity check of the entire database. + + + + + &Foreign-Key Check + + + + + Runs the foreign_key_check pragma over the opened database and returns the results in the Execute SQL tab + + + + + &Quick Integrity Check + + + + + Run a quick integrity check over the open DB + + + + + Runs the quick_check pragma over the opened database and returns the results in the Execute SQL tab. This command does most of the checking of PRAGMA integrity_check but runs much faster. + + + + + &Optimize + + + + + Attempt to optimize the database + + + + + Runs the optimize pragma over the opened database. This pragma might perform optimizations that will improve the performance of future queries. + + + + + + Print + + + + + Print text from current SQL editor tab + + + + + Open a dialog for printing the text in the current SQL editor tab + + + + + Print the structure of the opened database + + + + + Open a dialog for printing the structure of the opened database + + + + + &Save Project As... + + + + + + + Save the project in a file selected in a dialog + + + + + Save A&ll + + + + + + + Save DB file, project file and opened SQL files + + + + + Ctrl+Shift+S + + + + + &Database from SQL file... + + + + + &Table from CSV file... + + + + + &Database to SQL file... + + + + + &Table(s) as CSV file... + + + + + &Create Table... + + + + + &Delete Table... + + + + + &Modify Table... + + + + + Create &Index... + + + + + W&hat's This? + + + + + &About + + + + + This button opens a new tab for the SQL editor + + + + + &Execute SQL + 執行 SQL(&E) + + + + + Save the current session to a file + 儲存目前會話到一個檔案 + + + + + Load a working session from a file + 從一個檔載入工作會話 + + + + + + Save SQL file + 儲存 SQL 檔案 + + + + Ctrl+E + + + + + Export as CSV file + 匯出為 CSV 檔案 + + + + Export table as comma separated values file + 匯出資料表為逗號間隔值檔案 + + + + Ctrl+L + + + + + + Ctrl+P + + + + + Database encoding + 資料庫編碼 + + + + + Choose a database file + 選擇一個資料庫檔案 + + + + Ctrl+Return + + + + + Ctrl+D + + + + + Ctrl+I + + + + + Reset Window Layout + + + + + Alt+0 + + + + + The database is currenctly busy. + + + + + Click here to interrupt the currently running query. + + + + + Encrypted + + + + + Database is encrypted using SQLCipher + + + + + Read only + + + + + Database file is read only. Editing the database is disabled. + + + + + Could not open database file. +Reason: %1 + + + + + + + Choose a filename to save under + 選擇一個檔案名稱儲存 + + + + Error while saving the database file. This means that not all changes to the database were saved. You need to resolve the following error first. + +%1 + + + + + Do you want to save the changes made to SQL tabs in the project file '%1'? + + + + + A new DB Browser for SQLite version is available (%1.%2.%3).<br/><br/>Please download at <a href='%4'>%4</a>. + + + + + DB Browser for SQLite project file (*.sqbpro) + + + + + Error checking foreign keys after table modification. The changes will be reverted. + + + + + This table did not pass a foreign-key check.<br/>You should run 'Tools | Foreign-Key Check' and fix the reported issues. + + + + + Execution finished with errors. + + + + + Execution finished without errors. + + + + + Are you sure you want to undo all changes made to the database file '%1' since the last save? + 您是否確認您想撤銷從上次儲存以來對資料庫檔‘%1’做出的所有修改。? + + + + Choose a file to import + 選擇要匯入的一個檔案 + + + + Text files(*.sql *.txt);;All files(*) + 文字檔案(*.sql *.txt);;所有擋檔案(*) + + + + Do you want to create a new database file to hold the imported data? +If you answer no we will attempt to import the data in the SQL file to the current database. + 您是否確認您想建立一個新的資料庫檔用來存放匯入的資料? +如果您會到“否”的話,我們將嘗試匯入 SQL 檔中的資料到目前資料庫。 + + + + File %1 already exists. Please choose a different name. + 檔案 %1 已存在。請選擇一個不同的名稱。 + + + + Error importing data: %1 + 匯入資料時出現錯誤: %1 + + + + Import completed. + 匯入完成。 + + + + Delete View + 刪除視圖 + + + + Delete Trigger + 刪除觸發器 + + + + Delete Index + 刪除索引 + + + + + Delete Table + 刪除資料表 + + + + Setting PRAGMA values will commit your current transaction. +Are you sure? + 設定 PRAGMA 值將會提交您的目前事務。. +您確認嗎? + + + + In-Memory database + + + + + Window Layout + + + + + Simplify Window Layout + + + + + Shift+Alt+0 + + + + + Dock Windows at Bottom + + + + + Dock Windows at Left Side + + + + + Dock Windows at Top + + + + + Are you sure you want to delete the table '%1'? +All data associated with the table will be lost. + + + + + Are you sure you want to delete the view '%1'? + + + + + Are you sure you want to delete the trigger '%1'? + + + + + Are you sure you want to delete the index '%1'? + + + + + Error: could not delete the table. + + + + + Error: could not delete the view. + + + + + Error: could not delete the trigger. + + + + + Error: could not delete the index. + + + + + Message from database engine: +%1 + + + + + Editing the table requires to save all pending changes now. +Are you sure you want to save the database? + + + + + Edit View %1 + + + + + Edit Trigger %1 + + + + + You are already executing SQL statements. Do you want to stop them in order to execute the current statements instead? Note that this might leave the database in an inconsistent state. + + + + + -- EXECUTING SELECTION IN '%1' +-- + + + + + -- EXECUTING LINE IN '%1' +-- + + + + + -- EXECUTING ALL IN '%1' +-- + + + + + + At line %1: + + + + + Result: %1 + + + + + Result: %2 + + + + + Setting PRAGMA values or vacuuming will commit your current transaction. +Are you sure? + + + + + Opened '%1' in read-only mode from recent file list + + + + + Opened '%1' from recent file list + + + + + Project saved to file '%1' + + + + + This action will open a new SQL tab with the following statements for you to edit and run: + + + + + Rename Tab + + + + + Duplicate Tab + + + + + Close Tab + + + + + Opening '%1'... + + + + + There was an error opening '%1'... + + + + + Value is not a valid URL or filename: %1 + + + + + %1 rows returned in %2ms + + + + + You are still executing SQL statements. Closing the database now will stop their execution, possibly leaving the database in an inconsistent state. Are you sure you want to close the database? + + + + + Do you want to save the changes made to the project file '%1'? + + + + + Choose text files + + + + + Import completed. Some foreign key constraints are violated. Please fix them before saving. + + + + + Modify View + + + + + Modify Trigger + + + + + Modify Index + + + + + Modify Table + + + + + &%1 %2%3 + &%1 %2%3 + + + + (read only) + + + + + Open Database or Project + + + + + Attach Database... + + + + + Import CSV file(s)... + + + + + Select the action to apply to the dropped file(s). <br/>Note: only 'Import' will process more than one file. + + + + + + + Do you want to save the changes made to SQL tabs in a new project file? + + + + + Do you want to save the changes made to the SQL file %1? + + + + + The statements in this tab are still executing. Closing the tab will stop the execution. This might leave the database in an inconsistent state. Are you sure you want to close the tab? + + + + + Select SQL file to open + 選擇要打開的 SQL 檔案 + + + + Select file name + 選擇檔案名稱 + + + + Select extension file + 選擇擴充套件檔 + + + + Extension successfully loaded. + 擴充套件成功載入。 + + + + Error loading extension: %1 + 載入擴充套件時出現錯誤: %1 + + + + Could not find resource file: %1 + + + + + + Don't show again + 不再顯示 + + + + New version available. + 新版本可用。 + + + + Choose a project file to open + + + + + This project file is using an old file format because it was created using DB Browser for SQLite version 3.10 or lower. Loading this file format is still fully supported but we advice you to convert all your project files to the new file format because support for older formats might be dropped at some point in the future. You can convert your files by simply opening and re-saving them. + + + + + Could not open project file for writing. +Reason: %1 + + + + + Collation needed! Proceed? + + + + + A table in this database requires a special collation function '%1' that this application can't provide without further knowledge. +If you choose to proceed, be aware bad things can happen to your database. +Create a backup! + + + + + creating collation + + + + + Set a new name for the SQL tab. Use the '&&' character to allow using the following character as a keyboard shortcut. + + + + + Please specify the view name + 請指定視圖名稱 + + + + There is already an object with that name. Please choose a different name. + 已有相同名稱的對象。請選擇一個不同的名稱。 + + + + View successfully created. + 成功建立視圖。 + + + + Error creating view: %1 + 建立視圖時出現錯誤: %1 + + + + This action will open a new SQL tab for running: + + + + + Press Help for opening the corresponding SQLite reference page. + + + + + Busy (%1) + + + + + NullLineEdit + + + Set to NULL + + + + + Alt+Del + + + + + PlotDock + + + Plot + 圖表 + + + + <html><head/><body><p>This pane shows the list of columns of the currently browsed table or the just executed query. You can select the columns that you want to be used as X or Y axis for the plot pane below. The table shows detected axis type that will affect the resulting plot. For the Y axis you can only select numeric columns, but for the X axis you will be able to select:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date/Time</span>: strings with format &quot;yyyy-MM-dd hh:mm:ss&quot; or &quot;yyyy-MM-ddThh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Date</span>: strings with format &quot;yyyy-MM-dd&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Time</span>: strings with format &quot;hh:mm:ss&quot;</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Label</span>: other string formats. Selecting this column as X axis will produce a Bars plot with the column values as labels for the bars</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Numeric</span>: integer or real values</li></ul><p>Double-clicking the Y cells you can change the used color for that graph.</p></body></html> + + + + + Columns + 列列 + + + + X + X + + + + Y1 + + + + + Y2 + + + + + Axis Type + + + + + Here is a plot drawn when you select the x and y values above. + +Click on points to select them in the plot and in the table. Ctrl+Click for selecting a range of points. + +Use mouse-wheel for zooming and mouse drag for changing the axis range. + +Select the axes or axes labels to drag and zoom only in that orientation. + + + + + Line type: + + + + + + None + + + + + Line + + + + + StepLeft + + + + + StepRight + + + + + StepCenter + + + + + Impulse + + + + + Point shape: + + + + + Cross + + + + + Plus + + + + + Circle + + + + + Disc + + + + + Square + + + + + Diamond + + + + + Star + + + + + Triangle + + + + + TriangleInverted + + + + + CrossSquare + + + + + PlusSquare + + + + + CrossCircle + + + + + PlusCircle + + + + + Peace + + + + + <html><head/><body><p>Save current plot...</p><p>File format chosen by extension (png, jpg, pdf, bmp)</p></body></html> + <html><head/><body><p>儲存目前圖表...</p><p>檔案格式按副檔名選擇(png, jpg, pdf, bmp)</p></body></html> + + + + Save current plot... + 儲存目前圖表... + + + + + Load all data and redraw plot + + + + + + + Row # + + + + + Copy + + + + + Print... + + + + + Show legend + + + + + Stacked bars + + + + + Date/Time + + + + + Date + + + + + Time + + + + + + Numeric + + + + + Label + + + + + Invalid + + + + + Load all data and redraw plot. +Warning: not all data has been fetched from the table yet due to the partial fetch mechanism. + + + + + Choose an axis color + + + + + Choose a filename to save under + 選擇一個檔案名稱儲存 + + + + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;All Files(*) + PNG(*.png);;JPG(*.jpg);;PDF(*.pdf);;BMP(*.bmp);;所有擋檔案(*) + + + + There are curves in this plot and the selected line style can only be applied to graphs sorted by X. Either sort the table or query by X to remove curves or select one of the styles supported by curves: None or Line. + + + + + Loading all remaining data for this table took %1ms. + + + + + PreferencesDialog + + + Preferences + 首選項 + + + + &General + + + + + Remember last location + + + + + Always use this location + + + + + Remember last location for session only + + + + + Lan&guage + + + + + Show remote options + + + + + Automatic &updates + + + + + &Database + 資料庫(&D) + + + + Database &encoding + 資料庫編碼(&E) + + + + Open databases with foreign keys enabled. + 打開啟用了外鍵的資料庫。 + + + + &Foreign keys + 外鍵(&F) + + + + + + + + + + + + enabled + 啟用 + + + + Default &location + 預設位置(&L) + + + + + + ... + ... + + + + Remove line breaks in schema &view + + + + + Prefetch block si&ze + + + + + SQ&L to execute after opening database + + + + + Default field type + + + + + Data &Browser + + + + + Font + + + + + &Font + + + + + Content + + + + + Symbol limit in cell + + + + + Threshold for completion and calculation on selection + + + + + Show images in cell + + + + + Enable this option to show a preview of BLOBs containing image data in the cells. This can affect the performance of the data browser, however. + + + + + NULL + + + + + Regular + + + + + Binary + 二進位 + + + + Background + + + + + Filters + + + + + Escape character + + + + + Delay time (&ms) + + + + + Set the waiting time before a new filter value is applied. Can be set to 0 for disabling waiting. + + + + + &SQL + &SQL + + + + Settings name + 設定名稱 + + + + Context + 上下文 + + + + Colour + 顏色 + + + + Bold + 粗體 + + + + Italic + 斜體 + + + + Underline + 底線 + + + + Keyword + 關鍵字 + + + + Function + 函數 + + + + Table + 資料表 + + + + Comment + 注釋 + + + + Identifier + 識別符 + + + + String + 字串 + + + + Current line + 目前行 + + + + SQL &editor font size + SQL 編輯器字體大小(&E) + + + + Tab size + + + + + SQL editor &font + + + + + Error indicators + + + + + Hori&zontal tiling + + + + + If enabled the SQL code editor and the result table view are shown side by side instead of one over the other. + + + + + Code co&mpletion + + + + + Toolbar style + + + + + + + + + Only display the icon + + + + + + + + + Only display the text + + + + + + + + + The text appears beside the icon + + + + + + + + + The text appears under the icon + + + + + + + + + Follow the style + + + + + DB file extensions + + + + + Manage + + + + + Main Window + + + + + Database Structure + + + + + Browse Data + + + + + Execute SQL + 執行 SQL + + + + Edit Database Cell + + + + + When this value is changed, all the other color preferences are also set to matching colors. + + + + + Follow the desktop style + + + + + Dark style + + + + + Application style + + + + + This sets the font size for all UI elements which do not have their own font size option. + + + + + Font size + + + + + When enabled, the line breaks in the Schema column of the DB Structure tab, dock and printed output are removed. + + + + + Database structure font size + + + + + Font si&ze + + + + + This is the maximum number of items allowed for some computationally expensive functionalities to be enabled: +Maximum number of rows in a table for enabling the value completion based on current values in the column. +Maximum number of indexes in a selection for calculating sum and average. +Can be set to 0 for disabling the functionalities. + + + + + This is the maximum number of rows in a table for enabling the value completion based on current values in the column. +Can be set to 0 for disabling completion. + + + + + Field display + + + + + Displayed &text + + + + + + + + + + Click to set this color + + + + + Text color + + + + + Background color + + + + + Preview only (N/A) + + + + + Foreground + + + + + SQL &results font size + + + + + &Wrap lines + + + + + Never + + + + + At word boundaries + + + + + At character boundaries + + + + + At whitespace boundaries + + + + + &Quotes for identifiers + + + + + Choose the quoting mechanism used by the application for identifiers in SQL code. + + + + + "Double quotes" - Standard SQL (recommended) + + + + + `Grave accents` - Traditional MySQL quotes + + + + + [Square brackets] - Traditional MS SQL Server quotes + + + + + Keywords in &UPPER CASE + + + + + When set, the SQL keywords are completed in UPPER CASE letters. + + + + + When set, the SQL code lines that caused errors during the last execution are highlighted and the results frame indicates the error in the background + + + + + Close button on tabs + + + + + If enabled, SQL editor tabs will have a close button. In any case, you can use the contextual menu or the keyboard shortcut to close them. + + + + + &Extensions + 擴充套件(&E) + + + + Select extensions to load for every database: + 選擇每個資料庫要載入的擴充套件: + + + + Add extension + 加入擴充套件 + + + + Remove extension + 刪除擴充套件 + + + + <html><head/><body><p>While supporting the REGEXP operator SQLite doesn't implement any regular expression<br/>algorithm but calls back the running application. DB Browser for SQLite implements this<br/>algorithm for you to let you use REGEXP out of the box. However, as there are multiple possible<br/>implementations of this and you might want to use another one, you're free to disable the<br/>application's implementation and load your own by using an extension. Requires restart of the application.</p></body></html> + + + + + Disable Regular Expression extension + + + + + <html><head/><body><p>SQLite provides an SQL function for loading extensions from a shared library file. Activate this if you want to use the <span style=" font-style:italic;">load_extension()</span> function from SQL code.</p><p>For security reasons, extension loading is turned off by default and must be enabled through this setting. You can always load extensions through the GUI, even though this option is disabled.</p></body></html> + + + + + Allow loading extensions from SQL code + + + + + Remote + + + + + CA certificates + + + + + Proxy + + + + + Configure + + + + + + Subject CN + + + + + Common Name + + + + + Subject O + + + + + Organization + + + + + + Valid from + + + + + + Valid to + + + + + + Serial number + + + + + Your certificates + + + + + File + 檔案 + + + + Subject Common Name + + + + + Issuer CN + + + + + Issuer Common Name + + + + + Clone databases into + + + + + + Choose a directory + 選擇一個目錄 + + + + The language will change after you restart the application. + + + + + Select extension file + 選擇擴充套件檔 + + + + Extensions(*.so *.dylib *.dll);;All files(*) + + + + + Import certificate file + + + + + No certificates found in this file. + + + + + Are you sure you want do remove this certificate? All certificate data will be deleted from the application settings! + + + + + Are you sure you want to clear all the saved settings? +All your preferences will be lost and default values will be used. + + + + + ProxyDialog + + + Proxy Configuration + + + + + Pro&xy Type + + + + + Host Na&me + + + + + Port + + + + + Authentication Re&quired + + + + + &User Name + + + + + Password + + + + + None + + + + + System settings + + + + + HTTP + + + + + Socks v5 + + + + + QObject + + + Error importing data + + + + + from record number %1 + + + + + . +%1 + + + + + Importing CSV file... + + + + + Cancel + 取消 + + + + All files (*) + + + + + SQLite database files (*.db *.sqlite *.sqlite3 *.db3) + + + + + Left + + + + + Right + + + + + Center + + + + + Justify + + + + + SQLite Database Files (*.db *.sqlite *.sqlite3 *.db3) + + + + + DB Browser for SQLite Project Files (*.sqbpro) + + + + + SQL Files (*.sql) + + + + + All Files (*) + + + + + Text Files (*.txt) + + + + + Comma-Separated Values Files (*.csv) + + + + + Tab-Separated Values Files (*.tsv) + + + + + Delimiter-Separated Values Files (*.dsv) + + + + + Concordance DAT files (*.dat) + + + + + JSON Files (*.json *.js) + + + + + XML Files (*.xml) + + + + + Binary Files (*.bin *.dat) + + + + + SVG Files (*.svg) + + + + + Hex Dump Files (*.dat *.bin) + + + + + Extensions (*.so *.dylib *.dll) + + + + + RemoteCommitsModel + + + Commit ID + + + + + Message + + + + + Date + + + + + Author + + + + + Size + + + + + Authored and committed by %1 + + + + + Authored by %1, committed by %2 + + + + + RemoteDatabase + + + Error opening local databases list. +%1 + + + + + Error creating local databases list. +%1 + + + + + RemoteDock + + + Remote + + + + + Identity + + + + + Push currently opened database to server + + + + + DBHub.io + + + + + <html><head/><body><p>In this pane, remote databases from dbhub.io website can be added to DB Browser for SQLite. First you need an identity:</p><ol style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Login to the dbhub.io website (use your GitHub credentials or whatever you want)</li><li style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Click the button to &quot;Generate client certificate&quot; (that's your identity). That'll give you a certificate file (save it to your local disk).</li><li style=" margin-top:0px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Go to the Remote tab in DB Browser for SQLite Preferences. Click the button to add a new certificate to DB Browser for SQLite and choose the just downloaded certificate file.</li></ol><p>Now the Remote panel shows your identity and you can add remote databases.</p></body></html> + + + + + Local + + + + + Current Database + + + + + Clone + + + + + User + 用戶 + + + + Database + + + + + Branch + + + + + Commits + + + + + Commits for + + + + + <html><head/><body><p>You are currently using a built-in, read-only identity. For uploading your database, you need to configure and use your DBHub.io account.</p><p>No DBHub.io account yet? <a href="https://dbhub.io/"><span style=" text-decoration: underline; color:#007af4;">Create one now</span></a> and import your certificate <a href="#preferences"><span style=" text-decoration: underline; color:#007af4;">here</span></a> to share your databases.</p><p>For online help visit <a href="https://dbhub.io/about"><span style=" text-decoration: underline; color:#007af4;">here</span></a>.</p></body></html> + + + + + Back + + + + + Delete Database + + + + + Delete the local clone of this database + + + + + Open in Web Browser + + + + + Open the web page for the current database in your browser + + + + + Clone from Link + + + + + Use this to download a remote database for local editing using a URL as provided on the web page of the database. + + + + + Refresh + + + + + Reload all data and update the views + + + + + F5 + + + + + Clone Database + + + + + Open Database + + + + + Open the local copy of this database + + + + + Check out Commit + + + + + Download and open this specific commit + + + + + Check out Latest Commit + + + + + Check out the latest commit of the current branch + + + + + Save Revision to File + + + + + Saves the selected revision of the database to another file + + + + + Upload Database + + + + + Upload this database as a new commit + + + + + Select an identity to connect + + + + + Public + + + + + This downloads a database from a remote server for local editing. +Please enter the URL to clone from. You can generate this URL by +clicking the 'Clone Database in DB4S' button on the web page +of the database. + + + + + Invalid URL: The host name does not match the host name of the current identity. + + + + + Invalid URL: No branch name specified. + + + + + Invalid URL: No commit ID specified. + + + + + You have modified the local clone of the database. Fetching this commit overrides these local changes. +Are you sure you want to proceed? + + + + + The database has unsaved changes. Are you sure you want to push it before saving? + + + + + The database you are trying to delete is currently opened. Please close it before deleting. + + + + + This deletes the local version of this database with all the changes you have not committed yet. Are you sure you want to delete this database? + + + + + RemoteLocalFilesModel + + + Name + 名稱 + + + + Branch + + + + + Last modified + + + + + Size + + + + + Commit + + + + + File + 檔案 + + + + RemoteModel + + + Name + 名稱 + + + + Commit + + + + + Last modified + + + + + Size + + + + + Size: + + + + + Last Modified: + + + + + Licence: + + + + + Default Branch: + + + + + RemoteNetwork + + + Choose a location to save the file + + + + + Error opening remote file at %1. +%2 + + + + + Error: Invalid client certificate specified. + + + + + Please enter the passphrase for this client certificate in order to authenticate. + + + + + Cancel + 取消 + + + + Uploading remote database to +%1 + + + + + Downloading remote database from +%1 + + + + + + Error: The network is not accessible. + + + + + Error: Cannot open the file for sending. + + + + + RemotePushDialog + + + Push database + + + + + Database na&me to push to + + + + + Commit message + + + + + Database licence + + + + + Public + + + + + Branch + + + + + Force push + + + + + Username + + + + + Database will be public. Everyone has read access to it. + + + + + Database will be private. Only you have access to it. + + + + + Use with care. This can cause remote commits to be deleted. + + + + + RunSql + + + Execution aborted by user + + + + + , %1 rows affected + + + + + query executed successfully. Took %1ms%2 + + + + + executing query + + + + + SelectItemsPopup + + + A&vailable + + + + + Sele&cted + + + + + SqlExecutionArea + + + Form + 表單 + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + The found pattern must be a whole word + + + + + Whole Words + + + + + Text pattern to find considering the checks in this frame + + + + + Find in editor + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + <html><head/><body><p>Results of the last executed statements.</p><p>You may want to collapse this panel and use the <span style=" font-style:italic;">SQL Log</span> dock with <span style=" font-style:italic;">User</span> selection instead.</p></body></html> + + + + + Results of the last executed statements + 最後執行語句的結果 + + + + This field shows the results and status codes of the last executed statements. + 這個欄位顯示最後執行的語句的結果和狀態碼。 + + + + Couldn't read file: %1. + + + + + + Couldn't save file: %1. + + + + + Your changes will be lost when reloading it! + + + + + The file "%1" was modified by another program. Do you want to reload it?%2 + + + + + SqlTextEdit + + + Ctrl+/ + + + + + SqlUiLexer + + + (X) The abs(X) function returns the absolute value of the numeric argument X. + + + + + () The changes() function returns the number of database rows that were changed or inserted or deleted by the most recently completed INSERT, DELETE, or UPDATE statement. + + + + + (X1,X2,...) The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively. + + + + + (X,Y,...) The coalesce() function returns a copy of its first non-NULL argument, or NULL if all arguments are NULL + + + + + (X,Y) The glob(X,Y) function is equivalent to the expression "Y GLOB X". + + + + + (X,Y) The ifnull() function returns a copy of its first non-NULL argument, or NULL if both arguments are NULL. + + + + + (X,Y) The instr(X,Y) function finds the first occurrence of string Y within string X and returns the number of prior characters plus 1, or 0 if Y is nowhere found within X. + + + + + (X) The hex() function interprets its argument as a BLOB and returns a string which is the upper-case hexadecimal rendering of the content of that blob. + + + + + () The last_insert_rowid() function returns the ROWID of the last row insert from the database connection which invoked the function. + + + + + (X) For a string value X, the length(X) function returns the number of characters (not bytes) in X prior to the first NUL character. + + + + + (X,Y) The like() function is used to implement the "Y LIKE X" expression. + + + + + (X,Y,Z) The like() function is used to implement the "Y LIKE X ESCAPE Z" expression. + + + + + (X) The load_extension(X) function loads SQLite extensions out of the shared library file named X. +Use of this function must be authorized from Preferences. + + + + + (X,Y) The load_extension(X) function loads SQLite extensions out of the shared library file named X using the entry point Y. +Use of this function must be authorized from Preferences. + + + + + (X) The lower(X) function returns a copy of string X with all ASCII characters converted to lower case. + + + + + (X) ltrim(X) removes spaces from the left side of X. + + + + + (X,Y) The ltrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the left side of X. + + + + + (X,Y,...) The multi-argument max() function returns the argument with the maximum value, or return NULL if any argument is NULL. + + + + + (X,Y,...) The multi-argument min() function returns the argument with the minimum value. + + + + + (X,Y) The nullif(X,Y) function returns its first argument if the arguments are different and NULL if the arguments are the same. + + + + + (FORMAT,...) The printf(FORMAT,...) SQL function works like the sqlite3_mprintf() C-language function and the printf() function from the standard C library. + + + + + (X) The quote(X) function returns the text of an SQL literal which is the value of its argument suitable for inclusion into an SQL statement. + + + + + () The random() function returns a pseudo-random integer between -9223372036854775808 and +9223372036854775807. + + + + + (N) The randomblob(N) function return an N-byte blob containing pseudo-random bytes. + + + + + (X,Y,Z) The replace(X,Y,Z) function returns a string formed by substituting string Z for every occurrence of string Y in string X. + + + + + (X) The round(X) function returns a floating-point value X rounded to zero digits to the right of the decimal point. + + + + + (X,Y) The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. + + + + + (X) rtrim(X) removes spaces from the right side of X. + + + + + (X,Y) The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. + + + + + (X) The soundex(X) function returns a string that is the soundex encoding of the string X. + + + + + (X,Y) substr(X,Y) returns all characters through the end of the string X beginning with the Y-th. + + + + + (X,Y,Z) The substr(X,Y,Z) function returns a substring of input string X that begins with the Y-th character and which is Z characters long. + + + + + () The total_changes() function returns the number of row changes caused by INSERT, UPDATE or DELETE statements since the current database connection was opened. + + + + + (X) trim(X) removes spaces from both ends of X. + + + + + (X,Y) The trim(X,Y) function returns a string formed by removing any and all characters that appear in Y from both ends of X. + + + + + (X) The typeof(X) function returns a string that indicates the datatype of the expression X. + + + + + (X) The unicode(X) function returns the numeric unicode code point corresponding to the first character of the string X. + + + + + (X) The upper(X) function returns a copy of input string X in which all lower-case ASCII characters are converted to their upper-case equivalent. + + + + + (N) The zeroblob(N) function returns a BLOB consisting of N bytes of 0x00. + + + + + + + + (timestring,modifier,modifier,...) + + + + + (format,timestring,modifier,modifier,...) + + + + + (X) The avg() function returns the average value of all non-NULL X within a group. + + + + + (X) The count(X) function returns a count of the number of times that X is not NULL in a group. + + + + + (X) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. + + + + + (X,Y) The group_concat() function returns a string which is the concatenation of all non-NULL values of X. If parameter Y is present then it is used as the separator between instances of X. + + + + + (X) The max() aggregate function returns the maximum value of all values in the group. + + + + + (X) The min() aggregate function returns the minimum non-NULL value of all values in the group. + + + + + + (X) The sum() and total() aggregate functions return sum of all non-NULL values in the group. + + + + + () The number of the row within the current partition. Rows are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition, or in arbitrary order otherwise. + + + + + () The row_number() of the first peer in each group - the rank of the current row with gaps. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () The number of the current row's peer group within its partition - the rank of the current row without gaps. Partitions are numbered starting from 1 in the order defined by the ORDER BY clause in the window definition. If there is no ORDER BY clause, then all rows are considered peers and this function always returns 1. + + + + + () Despite the name, this function always returns a value between 0.0 and 1.0 equal to (rank - 1)/(partition-rows - 1), where rank is the value returned by built-in window function rank() and partition-rows is the total number of rows in the partition. If the partition contains only one row, this function returns 0.0. + + + + + () The cumulative distribution. Calculated as row-number/partition-rows, where row-number is the value returned by row_number() for the last peer in the group and partition-rows the number of rows in the partition. + + + + + (N) Argument N is handled as an integer. This function divides the partition into N groups as evenly as possible and assigns an integer between 1 and N to each group, in the order defined by the ORDER BY clause, or in arbitrary order otherwise. If necessary, larger groups occur first. This function returns the integer value assigned to the group that the current row is a part of. + + + + + (expr) Returns the result of evaluating expression expr against the previous row in the partition. Or, if there is no previous row (because the current row is the first), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows before the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows before the current row, NULL is returned. + + + + + + (expr,offset,default) If default is also provided, then it is returned instead of NULL if the row identified by offset does not exist. + + + + + (expr) Returns the result of evaluating expression expr against the next row in the partition. Or, if there is no next row (because the current row is the last), NULL. + + + + + (expr,offset) If the offset argument is provided, then it must be a non-negative integer. In this case the value returned is the result of evaluating expr against the row offset rows after the current row within the partition. If offset is 0, then expr is evaluated against the current row. If there is no row offset rows after the current row, NULL is returned. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the first row in the window frame for each row. + + + + + (expr) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the last row in the window frame for each row. + + + + + (expr,N) This built-in window function calculates the window frame for each row in the same way as an aggregate window function. It returns the value of expr evaluated against the row N of the window frame. Rows are numbered within the window frame starting from 1 in the order defined by the ORDER BY clause if one is present, or in arbitrary order otherwise. If there is no Nth row in the partition, then NULL is returned. + + + + + SqliteTableModel + + + reading rows + + + + + loading... + + + + + References %1(%2) +Hold %3Shift and click to jump there + + + + + Error changing data: +%1 + 修改資料庫時出現錯誤: +%1 + + + + retrieving list of columns + + + + + Fetching data... + + + + + + Cancel + 取消 + + + + TableBrowser + + + Browse Data + + + + + &Table: + + + + + Select a table to browse data + 選擇一個資料表以瀏覽資料 + + + + Use this list to select a table to be displayed in the database view + 使用這個清單選擇一個要顯示在資料庫視圖中的資料表 + + + + This is the database table view. You can do the following actions: + - Start writing for editing inline the value. + - Double-click any record to edit its contents in the cell editor window. + - Alt+Del for deleting the cell content to NULL. + - Ctrl+" for duplicating the current record. + - Ctrl+' for copying the value from the cell above. + - Standard selection and copy/paste operations. + + + + + Text pattern to find considering the checks in this frame + + + + + Find in table + + + + + Find previous match [Shift+F3] + + + + + Find previous match with wrapping + + + + + Shift+F3 + + + + + Find next match [Enter, F3] + + + + + Find next match with wrapping + + + + + F3 + + + + + The found pattern must match in letter case + + + + + Case Sensitive + + + + + The found pattern must be a whole word + + + + + Whole Cell + + + + + Interpret search pattern as a regular expression + + + + + <html><head/><body><p>When checked, the pattern to find is interpreted as a UNIX regular expression. See <a href="https://en.wikibooks.org/wiki/Regular_Expressions">Regular Expression in Wikibooks</a>.</p></body></html> + + + + + Regular Expression + + + + + + Close Find Bar + + + + + Text to replace with + + + + + Replace with + + + + + Replace next match + + + + + + Replace + + + + + Replace all matches + + + + + Replace all + + + + + <html><head/><body><p>Scroll to the beginning</p></body></html> + + + + + <html><head/><body><p>Clicking this button navigates to the beginning in the table view above.</p></body></html> + + + + + |< + + + + + Scroll one page upwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records upwards in the table view above.</p></body></html> + + + + + < + < + + + + 0 - 0 of 0 + 0 - 0 / 0 + + + + Scroll one page downwards + + + + + <html><head/><body><p>Clicking this button navigates one page of records downwards in the table view above.</p></body></html> + + + + + > + > + + + + Scroll to the end + + + + + <html><head/><body><p>Clicking this button navigates up to the end in the table view above.</p></body></html> + + + + + >| + + + + + <html><head/><body><p>Click here to jump to the specified record</p></body></html> + <html><head/><body><p>點擊這裡跳到指定的記錄</p></body></html> + + + + <html><head/><body><p>This button is used to navigate to the record number specified in the Go to area.</p></body></html> + <html><head/><body><p>這個按鈕用於導航到在“轉到”區域中指定的記錄編號。</p></body></html> + + + + Go to: + 轉到: + + + + Enter record number to browse + 輸入要瀏覽的記錄編號 + + + + Type a record number in this area and click the Go to: button to display the record in the database view + 在這個區域中輸入一個記錄編號,並點擊“轉到:”按鈕以在資料庫視圖中顯示記錄 + + + + 1 + 1 + + + + Show rowid column + + + + + Toggle the visibility of the rowid column + + + + + Unlock view editing + + + + + This unlocks the current view for editing. However, you will need appropriate triggers for editing. + + + + + Edit display format + + + + + Edit the display format of the data in this column + + + + + + New Record + 新建記錄 + + + + + Insert a new record in the current table + 在目前資料表中插入一條新記錄 + + + + <html><head/><body><p>This button creates a new record in the database. Hold the mouse button to open a pop-up menu of different options:</p><ul><li><span style=" font-weight:600;">New Record</span>: insert a new record with default values in the database.</li><li><span style=" font-weight:600;">Insert Values...</span>: open a dialog for entering values before they are inserted in the database. This allows to enter values acomplishing the different constraints. This dialog is also open if the <span style=" font-weight:600;">New Record</span> option fails due to these constraints.</li></ul></body></html> + + + + + + Delete Record + 刪除記錄 + + + + Delete the current record + 刪除目前記錄 + + + + + This button deletes the record or records currently selected in the table + + + + + + Insert new record using default values in browsed table + + + + + Insert Values... + + + + + + Open a dialog for inserting values in a new record + + + + + Export to &CSV + 匯出到 &CSV + + + + + Export the filtered data to CSV + + + + + This button exports the data of the browsed table as currently displayed (after filters, display formats and order column) as a CSV file. + + + + + Save as &view + 儲存為視圖(&V) + + + + + Save the current filter, sort column and display formats as a view + + + + + This button saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements. + + + + + Save Table As... + + + + + + Save the table as currently displayed + + + + + <html><head/><body><p>This popup menu provides the following options applying to the currently browsed and filtered table:</p><ul style="margin-top: 0px; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; -qt-list-indent: 1;"><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Export to CSV: this option exports the data of the browsed table as currently displayed (after filters, display formats and order column) to a CSV file.</li><li style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Save as view: this option saves the current setting of the browsed table (filters, display formats and order column) as an SQL view that you can later browse or use in SQL statements.</li></ul></body></html> + + + + + Hide column(s) + + + + + Hide selected column(s) + + + + + Show all columns + + + + + Show all columns that were hidden + + + + + + Set encoding + + + + + Change the encoding of the text in the table cells + + + + + Set encoding for all tables + + + + + Change the default encoding assumed for all tables in the database + + + + + Clear Filters + + + + + Clear all filters + + + + + + This button clears all the filters set in the header input fields for the currently browsed table. + + + + + Clear Sorting + + + + + Reset the order of rows to the default + + + + + + This button clears the sorting columns specified for the currently browsed table and returns to the default order. + + + + + Print + + + + + Print currently browsed table data + + + + + Print currently browsed table data. Print selection if more than one cell is selected. + + + + + Ctrl+P + + + + + Refresh + + + + + Refresh the data in the selected table + + + + + This button refreshes the data in the currently selected table. + 這個按鈕更新在目前選擇的資料表中的資料。 + + + + F5 + + + + + Find in cells + + + + + Open the find tool bar which allows you to search for values in the table view below. + + + + + + Bold + 粗體 + + + + Ctrl+B + + + + + + Italic + 斜體 + + + + + Underline + 底線 + + + + Ctrl+U + + + + + + Align Right + + + + + + Align Left + + + + + + Center Horizontally + + + + + + Justify + + + + + + Edit Conditional Formats... + + + + + Edit conditional formats for the current column + + + + + Clear Format + + + + + Clear All Formats + + + + + + Clear all cell formatting from selected cells and all conditional formats from selected columns + + + + + + Font Color + + + + + + Background Color + + + + + Toggle Format Toolbar + + + + + Show/hide format toolbar + + + + + + This button shows or hides the formatting toolbar of the Data Browser + + + + + Select column + + + + + Ctrl+Space + + + + + Replace text in cells + + + + + Filter in any column + + + + + Ctrl+R + + + + + %n row(s) + + + + + + + , %n column(s) + + + + + + + . Sum: %1; Average: %2; Min: %3; Max: %4 + + + + + Conditional formats for "%1" + + + + + determining row count... + + + + + %1 - %2 of >= %3 + + + + + %1 - %2 of %3 + %1 - %2 / %3 + + + + Please enter a pseudo-primary key in order to enable editing on this view. This should be the name of a unique column in the view. + + + + + Delete Records + + + + + Duplicate records + + + + + Duplicate record + + + + + Ctrl+" + + + + + Adjust rows to contents + + + + + Error deleting record: +%1 + 刪除記錄時出現錯誤: +%1 + + + + Please select a record first + 請首先選擇一條記錄 + + + + There is no filter set for this table. View will not be created. + + + + + Please choose a new encoding for all tables. + + + + + Please choose a new encoding for this table. + + + + + %1 +Leave the field empty for using the database encoding. + + + + + This encoding is either not valid or not supported. + + + + + %1 replacement(s) made. + + + + + VacuumDialog + + + Compact Database + 壓縮資料庫 + + + + Warning: Compacting the database will commit all of your changes. + + + + + Please select the databases to co&mpact: + + + + diff --git a/src/SqliteDBProcess/src/translations/translations.qrc b/src/SqliteDBProcess/src/translations/translations.qrc new file mode 100644 index 0000000..9dc8486 --- /dev/null +++ b/src/SqliteDBProcess/src/translations/translations.qrc @@ -0,0 +1,21 @@ + + + sqlb_ar_SA.qm + sqlb_cs.qm + sqlb_ru.qm + sqlb_de.qm + sqlb_fr.qm + sqlb_zh.qm + sqlb_zh_TW.qm + sqlb_pl.qm + sqlb_pt_BR.qm + sqlb_en_GB.qm + sqlb_es_ES.qm + sqlb_ko_KR.qm + sqlb_tr.qm + sqlb_uk_UA.qm + sqlb_it.qm + sqlb_ja.qm + sqlb_nl.qm + + diff --git a/src/SqliteDBProcess/src/version.h b/src/SqliteDBProcess/src/version.h new file mode 100644 index 0000000..656e171 --- /dev/null +++ b/src/SqliteDBProcess/src/version.h @@ -0,0 +1,16 @@ +#ifndef GEN_VERSION_H +#define GEN_VERSION_H +#define MAJOR_VERSION 3 +#define MINOR_VERSION 12 +#define PATCH_VERSION 2 + +#define str(s) #s +#define xstr(s) str(s) +#define APP_VERSION xstr(MAJOR_VERSION) "." xstr(MINOR_VERSION) "." xstr(PATCH_VERSION) + +// If it is defined by the compiler, then it is a nightly build, and in the YYYYMMDD format. +#ifndef BUILD_VERSION + #define BUILD_VERSION 0 +#endif + +#endif diff --git a/src/SqliteDBProcess/src/winapp.rc b/src/SqliteDBProcess/src/winapp.rc new file mode 100644 index 0000000..a0559a3 --- /dev/null +++ b/src/SqliteDBProcess/src/winapp.rc @@ -0,0 +1,30 @@ +#include +#include "version.h" + +VS_VERSION_INFO VERSIONINFO +FILEVERSION MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION, 0 +PRODUCTVERSION MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION, 0 +FILEOS VOS_NT_WINDOWS32 +FILETYPE VFT_APP +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "000004B0" + BEGIN + VALUE "FileVersion", APP_VERSION "." xstr(BUILD_VERSION) + VALUE "ProductVersion", APP_VERSION "." xstr(BUILD_VERSION) + VALUE "FileDescription", "DB Browser for SQLite" + VALUE "ProductName", "DB Browser for SQLite" + VALUE "InternalName", "DB Browser for SQLite" + VALUE "OriginalFilename", "DB Browser for SQLite.exe" + VALUE "CompanyName", "DB Browser for SQLite Team" + VALUE "LegalCopyright", "Copyright ?DB Browser for SQLite Team" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x0000, 0x04B0 + END +END + + diff --git a/src/qrc/application_go.png b/src/qrc/application_go.png new file mode 100644 index 0000000..5cc2b0d Binary files /dev/null and b/src/qrc/application_go.png differ diff --git a/src/qrc/application_link.png b/src/qrc/application_link.png new file mode 100644 index 0000000..f8fbb3e Binary files /dev/null and b/src/qrc/application_link.png differ diff --git a/src/qrc/application_side_list.png b/src/qrc/application_side_list.png new file mode 100644 index 0000000..37b4131 Binary files /dev/null and b/src/qrc/application_side_list.png differ diff --git a/src/qrc/bullet_arrow_bottom.png b/src/qrc/bullet_arrow_bottom.png new file mode 100644 index 0000000..1a28d82 Binary files /dev/null and b/src/qrc/bullet_arrow_bottom.png differ diff --git a/src/qrc/bullet_arrow_down.png b/src/qrc/bullet_arrow_down.png new file mode 100644 index 0000000..9b23c06 Binary files /dev/null and b/src/qrc/bullet_arrow_down.png differ diff --git a/src/qrc/bullet_arrow_top.png b/src/qrc/bullet_arrow_top.png new file mode 100644 index 0000000..0ce86d2 Binary files /dev/null and b/src/qrc/bullet_arrow_top.png differ diff --git a/src/qrc/bullet_arrow_up.png b/src/qrc/bullet_arrow_up.png new file mode 100644 index 0000000..24df0f4 Binary files /dev/null and b/src/qrc/bullet_arrow_up.png differ diff --git a/src/qrc/cancel.png b/src/qrc/cancel.png new file mode 100644 index 0000000..c149c2b Binary files /dev/null and b/src/qrc/cancel.png differ diff --git a/src/qrc/chart_curve.png b/src/qrc/chart_curve.png new file mode 100644 index 0000000..01e933a Binary files /dev/null and b/src/qrc/chart_curve.png differ diff --git a/src/qrc/clear_filters.png b/src/qrc/clear_filters.png new file mode 100644 index 0000000..16288fd Binary files /dev/null and b/src/qrc/clear_filters.png differ diff --git a/src/qrc/clear_sorting.png b/src/qrc/clear_sorting.png new file mode 100644 index 0000000..be27fea Binary files /dev/null and b/src/qrc/clear_sorting.png differ diff --git a/src/qrc/cog.png b/src/qrc/cog.png new file mode 100644 index 0000000..67de2c6 Binary files /dev/null and b/src/qrc/cog.png differ diff --git a/src/qrc/cog_go.png b/src/qrc/cog_go.png new file mode 100644 index 0000000..3262767 Binary files /dev/null and b/src/qrc/cog_go.png differ diff --git a/src/qrc/color_swatch.png b/src/qrc/color_swatch.png new file mode 100644 index 0000000..6e6e852 Binary files /dev/null and b/src/qrc/color_swatch.png differ diff --git a/src/qrc/comment_block.png b/src/qrc/comment_block.png new file mode 100644 index 0000000..3b3ee4c Binary files /dev/null and b/src/qrc/comment_block.png differ diff --git a/src/qrc/cross.png b/src/qrc/cross.png new file mode 100644 index 0000000..1514d51 Binary files /dev/null and b/src/qrc/cross.png differ diff --git a/src/qrc/database.png b/src/qrc/database.png new file mode 100644 index 0000000..3d09261 Binary files /dev/null and b/src/qrc/database.png differ diff --git a/src/qrc/database_add.png b/src/qrc/database_add.png new file mode 100644 index 0000000..802bd6c Binary files /dev/null and b/src/qrc/database_add.png differ diff --git a/src/qrc/database_go.png b/src/qrc/database_go.png new file mode 100644 index 0000000..61a8556 Binary files /dev/null and b/src/qrc/database_go.png differ diff --git a/src/qrc/database_link.png b/src/qrc/database_link.png new file mode 100644 index 0000000..4c8204a Binary files /dev/null and b/src/qrc/database_link.png differ diff --git a/src/qrc/database_refresh.png b/src/qrc/database_refresh.png new file mode 100644 index 0000000..ff803be Binary files /dev/null and b/src/qrc/database_refresh.png differ diff --git a/src/qrc/database_save.png b/src/qrc/database_save.png new file mode 100644 index 0000000..44c06dd Binary files /dev/null and b/src/qrc/database_save.png differ diff --git a/src/qrc/document-link.png b/src/qrc/document-link.png new file mode 100644 index 0000000..06df131 Binary files /dev/null and b/src/qrc/document-link.png differ diff --git a/src/qrc/document-open.png b/src/qrc/document-open.png new file mode 100644 index 0000000..ab94046 Binary files /dev/null and b/src/qrc/document-open.png differ diff --git a/src/qrc/edit_cond_formats.png b/src/qrc/edit_cond_formats.png new file mode 100644 index 0000000..3b69aa0 Binary files /dev/null and b/src/qrc/edit_cond_formats.png differ diff --git a/src/qrc/filter.png b/src/qrc/filter.png new file mode 100644 index 0000000..58ec874 Binary files /dev/null and b/src/qrc/filter.png differ diff --git a/src/qrc/folder.png b/src/qrc/folder.png new file mode 100644 index 0000000..784e8fa Binary files /dev/null and b/src/qrc/folder.png differ diff --git a/src/qrc/folder_user.png b/src/qrc/folder_user.png new file mode 100644 index 0000000..f021c3e Binary files /dev/null and b/src/qrc/folder_user.png differ diff --git a/src/qrc/help.png b/src/qrc/help.png new file mode 100644 index 0000000..5c87017 Binary files /dev/null and b/src/qrc/help.png differ diff --git a/src/qrc/hourglass.png b/src/qrc/hourglass.png new file mode 100644 index 0000000..57b03ce Binary files /dev/null and b/src/qrc/hourglass.png differ diff --git a/src/qrc/icons.qrc b/src/qrc/icons.qrc new file mode 100644 index 0000000..3d31be5 --- /dev/null +++ b/src/qrc/icons.qrc @@ -0,0 +1,106 @@ + + + database_add.png + database_go.png + database_refresh.png + database_save.png + table_add.png + table_delete.png + table_edit.png + tag_blue_add.png + tag_blue_delete.png + page_edit.png + page_delete.png + page_add.png + page_green.png + table.png + tag_blue.png + view-refresh.png + picture_delete.png + picture.png + picture_add.png + script.png + script_add.png + script_delete.png + wrench.png + help.png + tab_add.png + resultset_next.png + page_save.png + page_white_database.png + plugin_add.png + plugin_delete.png + table_save.png + resultset_last.png + layout_sidebar.png + bullet_arrow_down.png + bullet_arrow_up.png + sqlitebrowser.png + internet-web-browser.png + package.png + package_go.png + page_key.png + key.png + document-open.png + chart_curve.png + cog.png + clear_filters.png + page_copy.png + resultset_previous.png + resultset_first.png + picture_edit.png + script_edit.png + tag_blue_edit.png + folder.png + database.png + cog_go.png + page_paste.png + folder_user.png + server_go.png + page_find.png + cross.png + page_white_copy.png + page_copy_sql.png + text_replace.png + picture_save.png + application_side_list.png + database_link.png + text_indent.png + printer.png + package_save.png + cancel.png + comment_block.png + hourglass.png + table_row_delete.png + table_row_insert.png + textfield_delete.png + filter.png + tab.png + package_rename.png + page_foreign_key.png + save_all.png + page_white_text.png + color_swatch.png + edit_cond_formats.png + clear_sorting.png + bullet_arrow_bottom.png + bullet_arrow_top.png + text_bold.png + text_italic.png + text_underline.png + text_align_center.png + text_align_justify.png + text_align_left.png + text_align_right.png + page_paintbrush.png + text_paintbrush.png + style.png + style_edit.png + style_delete.png + style_add.png + application_link.png + document-link.png + application_go.png + server_add.png + + diff --git a/src/qrc/internet-web-browser.png b/src/qrc/internet-web-browser.png new file mode 100644 index 0000000..ac5957a Binary files /dev/null and b/src/qrc/internet-web-browser.png differ diff --git a/src/qrc/key.png b/src/qrc/key.png new file mode 100644 index 0000000..4ec1a92 Binary files /dev/null and b/src/qrc/key.png differ diff --git a/src/qrc/layout_sidebar.png b/src/qrc/layout_sidebar.png new file mode 100644 index 0000000..3be27bb Binary files /dev/null and b/src/qrc/layout_sidebar.png differ diff --git a/src/qrc/package.png b/src/qrc/package.png new file mode 100644 index 0000000..da3c2a2 Binary files /dev/null and b/src/qrc/package.png differ diff --git a/src/qrc/package_go.png b/src/qrc/package_go.png new file mode 100644 index 0000000..aace63a Binary files /dev/null and b/src/qrc/package_go.png differ diff --git a/src/qrc/package_rename.png b/src/qrc/package_rename.png new file mode 100644 index 0000000..41bf2be Binary files /dev/null and b/src/qrc/package_rename.png differ diff --git a/src/qrc/package_save.png b/src/qrc/package_save.png new file mode 100644 index 0000000..35eb763 Binary files /dev/null and b/src/qrc/package_save.png differ diff --git a/src/qrc/page_add.png b/src/qrc/page_add.png new file mode 100644 index 0000000..d5bfa07 Binary files /dev/null and b/src/qrc/page_add.png differ diff --git a/src/qrc/page_copy.png b/src/qrc/page_copy.png new file mode 100644 index 0000000..195dc6d Binary files /dev/null and b/src/qrc/page_copy.png differ diff --git a/src/qrc/page_copy_sql.png b/src/qrc/page_copy_sql.png new file mode 100644 index 0000000..3b0e3f8 Binary files /dev/null and b/src/qrc/page_copy_sql.png differ diff --git a/src/qrc/page_delete.png b/src/qrc/page_delete.png new file mode 100644 index 0000000..3141467 Binary files /dev/null and b/src/qrc/page_delete.png differ diff --git a/src/qrc/page_edit.png b/src/qrc/page_edit.png new file mode 100644 index 0000000..046811e Binary files /dev/null and b/src/qrc/page_edit.png differ diff --git a/src/qrc/page_find.png b/src/qrc/page_find.png new file mode 100644 index 0000000..2f19388 Binary files /dev/null and b/src/qrc/page_find.png differ diff --git a/src/qrc/page_foreign_key.png b/src/qrc/page_foreign_key.png new file mode 100644 index 0000000..62dc6d4 Binary files /dev/null and b/src/qrc/page_foreign_key.png differ diff --git a/src/qrc/page_green.png b/src/qrc/page_green.png new file mode 100644 index 0000000..de8e003 Binary files /dev/null and b/src/qrc/page_green.png differ diff --git a/src/qrc/page_key.png b/src/qrc/page_key.png new file mode 100644 index 0000000..d6626cb Binary files /dev/null and b/src/qrc/page_key.png differ diff --git a/src/qrc/page_paintbrush.png b/src/qrc/page_paintbrush.png new file mode 100644 index 0000000..246a2f0 Binary files /dev/null and b/src/qrc/page_paintbrush.png differ diff --git a/src/qrc/page_paste.png b/src/qrc/page_paste.png new file mode 100644 index 0000000..968f073 Binary files /dev/null and b/src/qrc/page_paste.png differ diff --git a/src/qrc/page_save.png b/src/qrc/page_save.png new file mode 100644 index 0000000..caea546 Binary files /dev/null and b/src/qrc/page_save.png differ diff --git a/src/qrc/page_white_copy.png b/src/qrc/page_white_copy.png new file mode 100644 index 0000000..a9f31a2 Binary files /dev/null and b/src/qrc/page_white_copy.png differ diff --git a/src/qrc/page_white_database.png b/src/qrc/page_white_database.png new file mode 100644 index 0000000..bddba1f Binary files /dev/null and b/src/qrc/page_white_database.png differ diff --git a/src/qrc/page_white_text.png b/src/qrc/page_white_text.png new file mode 100644 index 0000000..813f712 Binary files /dev/null and b/src/qrc/page_white_text.png differ diff --git a/src/qrc/picture.png b/src/qrc/picture.png new file mode 100644 index 0000000..4a158fe Binary files /dev/null and b/src/qrc/picture.png differ diff --git a/src/qrc/picture_add.png b/src/qrc/picture_add.png new file mode 100644 index 0000000..d6d3f85 Binary files /dev/null and b/src/qrc/picture_add.png differ diff --git a/src/qrc/picture_delete.png b/src/qrc/picture_delete.png new file mode 100644 index 0000000..cca9f53 Binary files /dev/null and b/src/qrc/picture_delete.png differ diff --git a/src/qrc/picture_edit.png b/src/qrc/picture_edit.png new file mode 100644 index 0000000..9a70c34 Binary files /dev/null and b/src/qrc/picture_edit.png differ diff --git a/src/qrc/picture_save.png b/src/qrc/picture_save.png new file mode 100644 index 0000000..777fb5d Binary files /dev/null and b/src/qrc/picture_save.png differ diff --git a/src/qrc/plugin_add.png b/src/qrc/plugin_add.png new file mode 100644 index 0000000..ae43690 Binary files /dev/null and b/src/qrc/plugin_add.png differ diff --git a/src/qrc/plugin_delete.png b/src/qrc/plugin_delete.png new file mode 100644 index 0000000..d9c3376 Binary files /dev/null and b/src/qrc/plugin_delete.png differ diff --git a/src/qrc/printer.png b/src/qrc/printer.png new file mode 100644 index 0000000..a350d18 Binary files /dev/null and b/src/qrc/printer.png differ diff --git a/src/qrc/resultset_first.png b/src/qrc/resultset_first.png new file mode 100644 index 0000000..b03eaf8 Binary files /dev/null and b/src/qrc/resultset_first.png differ diff --git a/src/qrc/resultset_last.png b/src/qrc/resultset_last.png new file mode 100644 index 0000000..8ec8947 Binary files /dev/null and b/src/qrc/resultset_last.png differ diff --git a/src/qrc/resultset_next.png b/src/qrc/resultset_next.png new file mode 100644 index 0000000..e252606 Binary files /dev/null and b/src/qrc/resultset_next.png differ diff --git a/src/qrc/resultset_previous.png b/src/qrc/resultset_previous.png new file mode 100644 index 0000000..18f9cc1 Binary files /dev/null and b/src/qrc/resultset_previous.png differ diff --git a/src/qrc/save_all.png b/src/qrc/save_all.png new file mode 100644 index 0000000..14e2a7c Binary files /dev/null and b/src/qrc/save_all.png differ diff --git a/src/qrc/script.png b/src/qrc/script.png new file mode 100644 index 0000000..0f9ed4d Binary files /dev/null and b/src/qrc/script.png differ diff --git a/src/qrc/script_add.png b/src/qrc/script_add.png new file mode 100644 index 0000000..d650552 Binary files /dev/null and b/src/qrc/script_add.png differ diff --git a/src/qrc/script_delete.png b/src/qrc/script_delete.png new file mode 100644 index 0000000..e6500ce Binary files /dev/null and b/src/qrc/script_delete.png differ diff --git a/src/qrc/script_edit.png b/src/qrc/script_edit.png new file mode 100644 index 0000000..b4d31ce Binary files /dev/null and b/src/qrc/script_edit.png differ diff --git a/src/qrc/server_add.png b/src/qrc/server_add.png new file mode 100644 index 0000000..3f10a3a Binary files /dev/null and b/src/qrc/server_add.png differ diff --git a/src/qrc/server_go.png b/src/qrc/server_go.png new file mode 100644 index 0000000..540c8e2 Binary files /dev/null and b/src/qrc/server_go.png differ diff --git a/src/qrc/sqlitebrowser.png b/src/qrc/sqlitebrowser.png new file mode 100644 index 0000000..7897a11 Binary files /dev/null and b/src/qrc/sqlitebrowser.png differ diff --git a/src/qrc/style.png b/src/qrc/style.png new file mode 100644 index 0000000..81e41de Binary files /dev/null and b/src/qrc/style.png differ diff --git a/src/qrc/style_add.png b/src/qrc/style_add.png new file mode 100644 index 0000000..e0369c6 Binary files /dev/null and b/src/qrc/style_add.png differ diff --git a/src/qrc/style_delete.png b/src/qrc/style_delete.png new file mode 100644 index 0000000..640f187 Binary files /dev/null and b/src/qrc/style_delete.png differ diff --git a/src/qrc/style_edit.png b/src/qrc/style_edit.png new file mode 100644 index 0000000..25bb5b6 Binary files /dev/null and b/src/qrc/style_edit.png differ diff --git a/src/qrc/tab.png b/src/qrc/tab.png new file mode 100644 index 0000000..3d8207f Binary files /dev/null and b/src/qrc/tab.png differ diff --git a/src/qrc/tab_add.png b/src/qrc/tab_add.png new file mode 100644 index 0000000..d3b9936 Binary files /dev/null and b/src/qrc/tab_add.png differ diff --git a/src/qrc/table.png b/src/qrc/table.png new file mode 100644 index 0000000..abcd936 Binary files /dev/null and b/src/qrc/table.png differ diff --git a/src/qrc/table_add.png b/src/qrc/table_add.png new file mode 100644 index 0000000..2a3e5c4 Binary files /dev/null and b/src/qrc/table_add.png differ diff --git a/src/qrc/table_delete.png b/src/qrc/table_delete.png new file mode 100644 index 0000000..b85916d Binary files /dev/null and b/src/qrc/table_delete.png differ diff --git a/src/qrc/table_edit.png b/src/qrc/table_edit.png new file mode 100644 index 0000000..bfcb024 Binary files /dev/null and b/src/qrc/table_edit.png differ diff --git a/src/qrc/table_row_delete.png b/src/qrc/table_row_delete.png new file mode 100644 index 0000000..d52c57e Binary files /dev/null and b/src/qrc/table_row_delete.png differ diff --git a/src/qrc/table_row_insert.png b/src/qrc/table_row_insert.png new file mode 100644 index 0000000..cfbfc75 Binary files /dev/null and b/src/qrc/table_row_insert.png differ diff --git a/src/qrc/table_save.png b/src/qrc/table_save.png new file mode 100644 index 0000000..25b74d1 Binary files /dev/null and b/src/qrc/table_save.png differ diff --git a/src/qrc/tag_blue.png b/src/qrc/tag_blue.png new file mode 100644 index 0000000..9757fc6 Binary files /dev/null and b/src/qrc/tag_blue.png differ diff --git a/src/qrc/tag_blue_add.png b/src/qrc/tag_blue_add.png new file mode 100644 index 0000000..f135248 Binary files /dev/null and b/src/qrc/tag_blue_add.png differ diff --git a/src/qrc/tag_blue_delete.png b/src/qrc/tag_blue_delete.png new file mode 100644 index 0000000..9fbae67 Binary files /dev/null and b/src/qrc/tag_blue_delete.png differ diff --git a/src/qrc/tag_blue_edit.png b/src/qrc/tag_blue_edit.png new file mode 100644 index 0000000..2a9f626 Binary files /dev/null and b/src/qrc/tag_blue_edit.png differ diff --git a/src/qrc/text_align_center.png b/src/qrc/text_align_center.png new file mode 100644 index 0000000..57beb38 Binary files /dev/null and b/src/qrc/text_align_center.png differ diff --git a/src/qrc/text_align_justify.png b/src/qrc/text_align_justify.png new file mode 100644 index 0000000..2fbdd69 Binary files /dev/null and b/src/qrc/text_align_justify.png differ diff --git a/src/qrc/text_align_left.png b/src/qrc/text_align_left.png new file mode 100644 index 0000000..6c8fcc1 Binary files /dev/null and b/src/qrc/text_align_left.png differ diff --git a/src/qrc/text_align_right.png b/src/qrc/text_align_right.png new file mode 100644 index 0000000..a150257 Binary files /dev/null and b/src/qrc/text_align_right.png differ diff --git a/src/qrc/text_bold.png b/src/qrc/text_bold.png new file mode 100644 index 0000000..889ae80 Binary files /dev/null and b/src/qrc/text_bold.png differ diff --git a/src/qrc/text_indent.png b/src/qrc/text_indent.png new file mode 100644 index 0000000..9364532 Binary files /dev/null and b/src/qrc/text_indent.png differ diff --git a/src/qrc/text_italic.png b/src/qrc/text_italic.png new file mode 100644 index 0000000..8482ac8 Binary files /dev/null and b/src/qrc/text_italic.png differ diff --git a/src/qrc/text_paintbrush.png b/src/qrc/text_paintbrush.png new file mode 100644 index 0000000..6187693 Binary files /dev/null and b/src/qrc/text_paintbrush.png differ diff --git a/src/qrc/text_replace.png b/src/qrc/text_replace.png new file mode 100644 index 0000000..877f82f Binary files /dev/null and b/src/qrc/text_replace.png differ diff --git a/src/qrc/text_underline.png b/src/qrc/text_underline.png new file mode 100644 index 0000000..90d0df2 Binary files /dev/null and b/src/qrc/text_underline.png differ diff --git a/src/qrc/textfield_delete.png b/src/qrc/textfield_delete.png new file mode 100644 index 0000000..c7bd58b Binary files /dev/null and b/src/qrc/textfield_delete.png differ diff --git a/src/qrc/view-refresh.png b/src/qrc/view-refresh.png new file mode 100644 index 0000000..3fd71d6 Binary files /dev/null and b/src/qrc/view-refresh.png differ diff --git a/src/qrc/wrench.png b/src/qrc/wrench.png new file mode 100644 index 0000000..5c8213f Binary files /dev/null and b/src/qrc/wrench.png differ